Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for XORL (0.1 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)
    
    (SHRQ x (MOV(Q|L)const [c])) => (SHRQconst [int8(c&63)] 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/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)
Back to top