Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for MOVLconst (0.13 sec)

  1. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (NEGQ (MOVQconst [c])) => (MOVQconst [-c])
    (NEGL (MOVLconst [c])) => (MOVLconst [-c])
    (MULQconst [c] (MOVQconst [d])) => (MOVQconst [int64(c)*d])
    (MULLconst [c] (MOVLconst [d])) => (MOVLconst [c*d])
    (ANDQconst [c] (MOVQconst [d])) => (MOVQconst [int64(c)&d])
    (ANDLconst [c] (MOVLconst [d])) => (MOVLconst [c&d])
    (ORQconst [c] (MOVQconst [d])) => (MOVQconst [int64(c)|d])
    (ORLconst [c] (MOVLconst [d])) => (MOVLconst [c|d])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite386.go

    		return true
    	}
    	// match: (ORLconst [c] _)
    	// cond: c==-1
    	// result: (MOVLconst [-1])
    	for {
    		c := auxIntToInt32(v.AuxInt)
    		if !(c == -1) {
    			break
    		}
    		v.reset(Op386MOVLconst)
    		v.AuxInt = int32ToAuxInt(-1)
    		return true
    	}
    	// match: (ORLconst [c] (MOVLconst [d]))
    	// result: (MOVLconst [c|d])
    	for {
    		c := auxIntToInt32(v.AuxInt)
    		if v_0.Op != Op386MOVLconst {
    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/rewriteAMD64.go

    	}
    	// match: (ORLconst [c] _)
    	// cond: c==-1
    	// result: (MOVLconst [-1])
    	for {
    		c := auxIntToInt32(v.AuxInt)
    		if !(c == -1) {
    			break
    		}
    		v.reset(OpAMD64MOVLconst)
    		v.AuxInt = int32ToAuxInt(-1)
    		return true
    	}
    	// match: (ORLconst [c] (MOVLconst [d]))
    	// result: (MOVLconst [c|d])
    	for {
    		c := auxIntToInt32(v.AuxInt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/386Ops.go

    		{name: "MOVWLSX", argLength: 1, reg: gp11, asm: "MOVWLSX"}, // sign extend arg0 from int16 to int32
    		{name: "MOVWLZX", argLength: 1, reg: gp11, asm: "MOVWLZX"}, // zero extend arg0 from int16 to int32
    
    		{name: "MOVLconst", reg: gp01, asm: "MOVL", typ: "UInt32", aux: "Int32", rematerializeable: true}, // 32 low bits of auxint
    
    		{name: "CVTTSD2SL", argLength: 1, reg: fpgp, asm: "CVTTSD2SL"}, // convert float64 to int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "MOVLQSX", argLength: 1, reg: gp11, asm: "MOVLQSX"}, // sign extend arg0 from int32 to int64
    		{name: "MOVLQZX", argLength: 1, reg: gp11, asm: "MOVL"},    // zero extend arg0 from int32 to int64
    
    		{name: "MOVLconst", reg: gp01, asm: "MOVL", typ: "UInt32", aux: "Int32", rematerializeable: true}, // 32 low bits of auxint
    		{name: "MOVQconst", reg: gp01, asm: "MOVQ", typ: "UInt64", aux: "Int64", rematerializeable: true}, // auxint
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  6. src/cmd/compile/internal/ssa/opGen.go

    			inputs: []inputInfo{
    				{0, 239}, // AX CX DX BX BP SI DI
    			},
    			outputs: []outputInfo{
    				{0, 239}, // AX CX DX BX BP SI DI
    			},
    		},
    	},
    	{
    		name:              "MOVLconst",
    		auxType:           auxInt32,
    		argLen:            0,
    		rematerializeable: true,
    		asm:               x86.AMOVL,
    		reg: regInfo{
    			outputs: []outputInfo{
    				{0, 239}, // AX CX DX BX BP SI DI
    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