Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ANDW (0.03 sec)

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

      && c < 0
      => (ANDconst [c] x)
    (AND x (MOVDconst [c]))
      && is32Bit(c)
      && c >= 0
      => (MOVWZreg (ANDWconst <typ.UInt32> [int32(c)] x))
    
    (ANDW x (MOVDconst [c])) => (ANDWconst [int32(c)] x)
    
    ((AND|ANDW)const [c] ((AND|ANDW)const [d] x)) => ((AND|ANDW)const [c&d] x)
    
    ((OR|XOR) x (MOVDconst [c])) && isU32Bit(c) => ((OR|XOR)const [c] x)
    ((OR|XOR)W x (MOVDconst [c])) => ((OR|XOR)Wconst [int32(c)] x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/arm64.s

    	EOR	$(1<<63), R1                        // EOR	$-9223372036854775808, R1       // 210041d2
    	EOR	$(1<<63-1), R1                      // EOR	$9223372036854775807, R1        // 21f840d2
    	ANDW	$0x3ff00000, R2                     // ANDW	$1072693248, R2                 // 42240c12
    	BICW	$0x3ff00000, R2                     // BICW	$1072693248, R2                 // 42540212
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 94.9K bytes
    - Viewed (0)
Back to top