Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for BFXIL (0.04 sec)

  1. test/codegen/bitfield.go

    	return (x << 24 >> 12) | (y & 0xfff0000000000fff)
    }
    
    // bfxil
    func bfxil1(x, y uint64) uint64 {
    	// arm64:"BFXIL\t[$]5, R[0-9]+, [$]12",-"LSL",-"LSR",-"AND"
    	return ((x >> 5) & 0xfff) | (y & 0xfffffffffffff000)
    }
    
    func bfxil2(x, y uint64) uint64 {
    	// arm64:"BFXIL\t[$]12, R[0-9]+, [$]40",-"LSL",-"LSR",-"AND"
    	return (x << 12 >> 24) | (y & 0xffffff0000000000)
    }
    
    // sbfiz
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 06:11:32 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/anames.go

    	"ADRP",
    	"AESD",
    	"AESE",
    	"AESIMC",
    	"AESMC",
    	"AND",
    	"ANDS",
    	"ANDSW",
    	"ANDW",
    	"ASR",
    	"ASRW",
    	"AT",
    	"BCC",
    	"BCS",
    	"BEQ",
    	"BFI",
    	"BFIW",
    	"BFM",
    	"BFMW",
    	"BFXIL",
    	"BFXILW",
    	"BGE",
    	"BGT",
    	"BHI",
    	"BHS",
    	"BIC",
    	"BICS",
    	"BICSW",
    	"BICW",
    	"BLE",
    	"BLO",
    	"BLS",
    	"BLT",
    	"BMI",
    	"BNE",
    	"BPL",
    	"BRK",
    	"BVC",
    	"BVS",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 01:40:37 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/tables.go

    	AESMC:     "AESMC",
    	AND:       "AND",
    	ANDS:      "ANDS",
    	ASR:       "ASR",
    	ASRV:      "ASRV",
    	AT:        "AT",
    	B:         "B",
    	BFI:       "BFI",
    	BFM:       "BFM",
    	BFXIL:     "BFXIL",
    	BIC:       "BIC",
    	BICS:      "BICS",
    	BIF:       "BIF",
    	BIT:       "BIT",
    	BL:        "BL",
    	BLR:       "BLR",
    	BR:        "BR",
    	BRK:       "BRK",
    	BSL:       "BSL",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 211.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/plan9x.go

    			rno := uint16(r)
    			if rno <= uint16(WZR) {
    				op += "W"
    			}
    		}
    		args[1], args[2] = args[2], args[1]
    
    	case STLXRB, STLXRH, STXRB, STXRH:
    		args[1], args[2] = args[2], args[1]
    
    	case BFI, BFXIL, SBFIZ, SBFX, UBFIZ, UBFX:
    		if r, ok := inst.Args[0].(Reg); ok {
    			rno := uint16(r)
    			if rno <= uint16(WZR) {
    				op += "W"
    			}
    		}
    		args[1], args[2], args[3] = args[3], args[1], args[2]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 17K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"BFM","Bits":"1|0|1|1|0|0|1|1|0|1|immr:6|imms:6|Rn:5|Rd:5","Arch":"64-bit variant","Syntax":"BFM <Xd>, <Xn>, #<immr>, #<imms>","Code":"","Alias":"This instruction is used by the aliases BFI and BFXIL."},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
  10. 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)
Back to top