Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/internal/obj/arm64/doc.go

    Examples:
    
    	FMADDD F30, F20, F3, F29    <=>    fmadd d29, d3, d30, d20
    	FNMSUBS F7, F25, F7, F22    <=>    fnmsub s22, s7, s7, s25
    
    (4) BFI, BFXIL, SBFIZ, SBFX, UBFIZ, UBFX $<lsb>, <Rn>, $<width>, <Rd>
    
    Examples:
    
    	BFIW $16, R20, $6, R0      <=>    bfi w0, w20, #16, #6
    	UBFIZ $34, R26, $5, R20    <=>    ubfiz x20, x26, #34, #5
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	JMP -1(PC)                                 // ffffff17
    	BFIW $16, R20, $6, R0                      // 80161033
    	BFI $27, R21, $21, R25                     // b95265b3
    	BFXILW $3, R27, $23, R14                   // 6e670333
    	BFXIL $26, R8, $16, R20                    // 14a55ab3
    	BICW R7@>15, R5, R16                       // b03ce70a
    	BIC R12@>13, R12, R19                      // 9335ec8a
    	BICSW R25->20, R3, R20                     // 7450b96a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 01:11:41 UTC 2023
    - 43.9K bytes
    - Viewed (0)
  5. 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)
  6. 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