Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ORQ (0.02 sec)

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

    // but ORQ is the only one I've actually seen occur.
    (ORQ (MOVQconst [c]) (MOVQconst [d])) => (MOVQconst [c|d])
    
    // generic simplifications
    // TODO: more of this
    (ADDQ x (NEGQ y)) => (SUBQ x y)
    (ADDL x (NEGL y)) => (SUBL x y)
    (SUBQ x x) => (MOVQconst [0])
    (SUBL x x) => (MOVLconst [0])
    (ANDQ x x) => x
    (ANDL x x) => x
    (ORQ x x)  => x
    (ORL x x)  => 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

    GLOBL masks<>(SB),RODATA,$256
    
    // func checkASM() bool
    TEXT ·checkASM(SB),NOSPLIT,$0-1
    	// check that masks<>(SB) and shifts<>(SB) are aligned to 16-byte
    	MOVQ	$masks<>(SB), AX
    	MOVQ	$shifts<>(SB), BX
    	ORQ	BX, AX
    	TESTQ	$15, AX
    	SETEQ	ret+0(FP)
    	RET
    
    // these are arguments to pshufb. They move data down from
    // the high bytes of the register to the low bytes of the register.
    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