Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for And16 (0.33 sec)

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

    (And32 (And32 i:(Const32 <t>) z) x) && (z.Op != OpConst32 && x.Op != OpConst32) => (And32 i (And32 <t> z x))
    (And16 (And16 i:(Const16 <t>) z) x) && (z.Op != OpConst16 && x.Op != OpConst16) => (And16 i (And16 <t> z x))
    (And8  (And8  i:(Const8  <t>) z) x) && (z.Op != OpConst8  && x.Op != OpConst8)  => (And8  i (And8  <t> z x))
    
    // x | (C | z) -> C | (x | z)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "Mod32u", argLength: 2},
    	{name: "Mod64", argLength: 2, aux: "Bool"},
    	{name: "Mod64u", argLength: 2},
    
    	{name: "And8", argLength: 2, commutative: true}, // arg0 & arg1
    	{name: "And16", argLength: 2, commutative: true},
    	{name: "And32", argLength: 2, commutative: true},
    	{name: "And64", argLength: 2, commutative: true},
    
    	{name: "Or8", argLength: 2, commutative: true}, // arg0 | arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/opGen.go

    		name:    "Mod64u",
    		argLen:  2,
    		generic: true,
    	},
    	{
    		name:        "And8",
    		argLen:      2,
    		commutative: true,
    		generic:     true,
    	},
    	{
    		name:        "And16",
    		argLen:      2,
    		commutative: true,
    		generic:     true,
    	},
    	{
    		name:        "And32",
    		argLen:      2,
    		commutative: true,
    		generic:     true,
    	},
    	{
    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