Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MOVSSconst1 (0.12 sec)

  1. src/cmd/compile/internal/ssa/_gen/386Ops.go

    		// MOVSXconst2 loads the constant from that address.
    		// MOVSXconst1 returns a pointer, but we type it as uint32 because it can never point to the Go heap.
    		{name: "MOVSSconst1", reg: gp01, typ: "UInt32", aux: "Float32"},
    		{name: "MOVSDconst1", reg: gp01, typ: "UInt32", aux: "Float64"},
    		{name: "MOVSSconst2", argLength: 1, reg: gpfp, asm: "MOVSS"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite386.go

    func rewriteValue386_Op386MOVSSconst(v *Value) bool {
    	b := v.Block
    	config := b.Func.Config
    	typ := &b.Func.Config.Types
    	// match: (MOVSSconst [c])
    	// cond: config.ctxt.Flag_shared
    	// result: (MOVSSconst2 (MOVSSconst1 [c]))
    	for {
    		c := auxIntToFloat32(v.AuxInt)
    		if !(config.ctxt.Flag_shared) {
    			break
    		}
    		v.reset(Op386MOVSSconst2)
    		v0 := b.NewValue0(v.Pos, Op386MOVSSconst1, typ.UInt32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/opGen.go

    	},
    	{
    		name:   "FlagGT_UGT",
    		argLen: 0,
    		reg:    regInfo{},
    	},
    	{
    		name:   "FlagGT_ULT",
    		argLen: 0,
    		reg:    regInfo{},
    	},
    	{
    		name:    "MOVSSconst1",
    		auxType: auxFloat32,
    		argLen:  0,
    		reg: regInfo{
    			outputs: []outputInfo{
    				{0, 239}, // AX CX DX BX BP SI DI
    			},
    		},
    	},
    	{
    		name:    "MOVSDconst1",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top