Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for XORQconst (0.24 sec)

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

    (ORQ x (MOVQconst [c])) && is32Bit(c) => (ORQconst [int32(c)] x)
    (ORQ x (MOVLconst [c])) => (ORQconst [c] x)
    (ORL x (MOVLconst [c])) => (ORLconst [c] x)
    
    (XORQ x (MOVQconst [c])) && is32Bit(c) => (XORQconst [int32(c)] x)
    (XORL x (MOVLconst [c])) => (XORLconst [c] x)
    
    (SHLQ x (MOV(Q|L)const [c])) => (SHLQconst [int8(c&63)] x)
    (SHLL x (MOV(Q|L)const [c])) => (SHLLconst [int8(c&31)] x)
    
    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/_gen/AMD64Ops.go

    		{name: "XORL", argLength: 2, reg: gp21, asm: "XORL", commutative: true, resultInArg0: true, clobberFlags: true},                                                 // arg0 ^ arg1
    		{name: "XORQconst", argLength: 1, reg: gp11, asm: "XORQ", aux: "Int32", resultInArg0: true, clobberFlags: true},                                                 // arg0 ^ auxint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  3. src/cmd/compile/internal/ssa/rewriteAMD64.go

    			v.AddArg(x)
    			return true
    		}
    		break
    	}
    	return false
    }
    func rewriteValueAMD64_OpAMD64XORQconst(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (XORQconst [c] (XORQconst [d] x))
    	// result: (XORQconst [c ^ d] x)
    	for {
    		c := auxIntToInt32(v.AuxInt)
    		if v_0.Op != OpAMD64XORQconst {
    			break
    		}
    		d := auxIntToInt32(v_0.AuxInt)
    		x := v_0.Args[0]
    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/opGen.go

    			},
    			outputs: []outputInfo{
    				{0, 49135}, // AX CX DX BX BP SI DI R8 R9 R10 R11 R12 R13 R15
    			},
    		},
    	},
    	{
    		name:         "XORQconst",
    		auxType:      auxInt32,
    		argLen:       1,
    		resultInArg0: true,
    		clobberFlags: true,
    		asm:          x86.AXORQ,
    		reg: regInfo{
    			inputs: []inputInfo{
    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