Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for XORL (0.04 sec)

  1. test/codegen/bits.go

    	n += a &^ (1 << 0)
    
    	return n
    }
    
    func bitcompl32(a, b uint32) (n uint32) {
    	// amd64:"BTCL"
    	n += b ^ (1 << (a & 31))
    
    	// amd64:"XORL\t[$]-2147483648"
    	n += a ^ (1 << 31)
    
    	// amd64:"XORL\t[$]268435456"
    	n += a ^ (1 << 28)
    
    	// amd64:"XORL\t[$]1"
    	n += a ^ (1 << 0)
    
    	return n
    }
    
    // check direct operation on memory with constant and shifted constant sources
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. src/runtime/asm_amd64.s

    #endif
    
    #ifdef NEED_EXT_FEATURES_CX
    	MOVL	$0x80000001, AX
    	CPUID
    	ANDL	$NEED_EXT_FEATURES_CX, CX
    	CMPL	CX, $NEED_EXT_FEATURES_CX
    	JNE	bad_cpu
    #endif
    
    #ifdef NEED_OS_SUPPORT_AX
    	XORL    CX, CX
    	XGETBV
    	ANDL	$NEED_OS_SUPPORT_AX, AX
    	CMPL	AX, $NEED_OS_SUPPORT_AX
    	JNE	bad_cpu
    #endif
    
    #ifdef NEED_DARWIN_SUPPORT
    	MOVQ	$commpage64_version, BX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/opGen.go

    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 239}, // AX CX DX BX BP SI DI
    			},
    			outputs: []outputInfo{
    				{0, 239}, // AX CX DX BX BP SI DI
    			},
    		},
    	},
    	{
    		name:         "XORL",
    		argLen:       2,
    		commutative:  true,
    		resultInArg0: true,
    		clobberFlags: true,
    		asm:          x86.AXORL,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{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