Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for BICconst (0.18 sec)

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

    (ORconst [c] (ORconst [d] x)) => (ORconst [c|d] x)
    (XORconst [c] (MOVWconst [d])) => (MOVWconst [c^d])
    (XORconst [c] (XORconst [d] x)) => (XORconst [c^d] x)
    (BICconst [c] (MOVWconst [d])) => (MOVWconst [d&^c])
    (BICconst [c] (BICconst [d] x)) => (BICconst [c|d] x)
    (MVN (MOVWconst [c])) => (MOVWconst [^c])
    (MOVBreg (MOVWconst [c])) => (MOVWconst [int32(int8(c))])
    (MOVBUreg (MOVWconst [c])) => (MOVWconst [int32(uint8(c))])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteARM.go

    		return true
    	}
    	// match: (BICconst [c] (MOVWconst [d]))
    	// result: (MOVWconst [d&^c])
    	for {
    		c := auxIntToInt32(v.AuxInt)
    		if v_0.Op != OpARMMOVWconst {
    			break
    		}
    		d := auxIntToInt32(v_0.AuxInt)
    		v.reset(OpARMMOVWconst)
    		v.AuxInt = int32ToAuxInt(d &^ c)
    		return true
    	}
    	// match: (BICconst [c] (BICconst [d] x))
    	// result: (BICconst [c|d] x)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARMOps.go

    		{name: "XORconst", argLength: 1, reg: gp11, asm: "EOR", aux: "Int32"}, // arg0 ^ auxInt
    		{name: "BIC", argLength: 2, reg: gp21, asm: "BIC"},                    // arg0 &^ arg1
    		{name: "BICconst", argLength: 1, reg: gp11, asm: "BIC", aux: "Int32"}, // arg0 &^ auxInt
    
    		// bit extraction, AuxInt = Width<<8 | LSB
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 41K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/opGen.go

    				{1, 22527}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 g R12 R14
    			},
    			outputs: []outputInfo{
    				{0, 21503}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R12 R14
    			},
    		},
    	},
    	{
    		name:    "BICconst",
    		auxType: auxInt32,
    		argLen:  1,
    		asm:     arm.ABIC,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 22527}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 g R12 R14
    			},
    			outputs: []outputInfo{
    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