Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for BFXIL (0.07 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		// extract width bits of arg1 starting at bit lsb and insert at low end of result, copy other bits from arg0
    		{name: "BFXIL", argLength: 2, reg: gp21nog, asm: "BFXIL", aux: "ARM64BitField", resultInArg0: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    	=> (BFI [armBFAuxInt(lc-rc, 64-lc)] x y)
    // bfxil
    (OR (UBFX [bfc] x) (ANDconst [ac] y)) && ac == ^(1<<uint(bfc.getARM64BFwidth())-1)
    	=> (BFXIL [bfc] y x)
    (ORshiftLL [sc] (UBFX [bfc] x) (SRLconst [sc] y)) && sc == bfc.getARM64BFwidth()
    	=> (BFXIL [bfc] y x)
    (ORshiftRL [rc] (ANDconst [ac] y) (SLLconst [lc] x)) && lc < rc && ac == ^((1<<uint(64-rc)-1))
    	=> (BFXIL [armBFAuxInt(rc-lc, 64-rc)] y x)
    
    // FP simplification
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteARM64.go

    			v.AddArg2(y, x)
    			return true
    		}
    		break
    	}
    	// match: (OR (UBFX [bfc] x) (ANDconst [ac] y))
    	// cond: ac == ^(1<<uint(bfc.getARM64BFwidth())-1)
    	// result: (BFXIL [bfc] y x)
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			if v_0.Op != OpARM64UBFX {
    				continue
    			}
    			bfc := auxIntToArm64BitField(v_0.AuxInt)
    			x := v_0.Args[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/opGen.go

    			},
    			outputs: []outputInfo{
    				{0, 670826495}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15 R16 R17 R19 R20 R21 R22 R23 R24 R25 R26 R30
    			},
    		},
    	},
    	{
    		name:         "BFXIL",
    		auxType:      auxARM64BitField,
    		argLen:       2,
    		resultInArg0: true,
    		asm:          arm64.ABFXIL,
    		reg: regInfo{
    			inputs: []inputInfo{
    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