Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    (And(32|16|8) ...) => (ANDW ...)
    
    (Or64 ...) => (OR ...)
    (Or(32|16|8) ...) => (ORW ...)
    
    (Xor64 ...) => (XOR ...)
    (Xor(32|16|8) ...) => (XORW ...)
    
    (Neg64 ...) => (NEG ...)
    (Neg(32|16|8) ...) => (NEGW ...)
    (Neg32F ...) => (FNEGS ...)
    (Neg64F ...) => (FNEG ...)
    
    (Com64 ...) => (NOT ...)
    (Com(32|16|8) ...) => (NOTW ...)
    (NOT x) => (XOR (MOVDconst [-1]) x)
    (NOTW x) => (XORWconst [-1] x)
    
    // Lowering boolean ops
    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/compile/internal/ssa/_gen/S390XOps.go

    		// unary ops
    		{name: "NEG", argLength: 1, reg: gp11, asm: "NEG", clobberFlags: true},   // -arg0
    		{name: "NEGW", argLength: 1, reg: gp11, asm: "NEGW", clobberFlags: true}, // -arg0
    
    		{name: "NOT", argLength: 1, reg: gp11, resultInArg0: true, clobberFlags: true},  // ^arg0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
Back to top