Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for BTQ (0.04 sec)

  1. test/codegen/bits.go

    func bitcheck64_constleft(a uint64) (n int) {
    	// amd64:"BTQ\t[$]63"
    	if a&(1<<63) != 0 {
    		return 1
    	}
    	// amd64:"BTQ\t[$]60"
    	if a&(1<<60) != 0 {
    		return 1
    	}
    	// amd64:"BTL\t[$]0"
    	if a&(1<<0) != 0 {
    		return 1
    	}
    	return 0
    }
    
    func bitcheck64_constright(a [8]uint64) (n int) {
    	// amd64:"BTQ\t[$]63"
    	if (a[0]>>63)&1 != 0 {
    		return 1
    	}
    	// amd64:"BTQ\t[$]63"
    	if a[1]>>63 != 0 {
    		return 1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. src/hash/crc32/crc32_amd64.s

    	// BX = 8 - BX. We need to process this many bytes to align.
    	SUBQ $1, BX
    	XORQ $7, BX
    
    	BTQ $0, BX
    	JNC align_2
    
    	CRC32B (SI), AX
    	DECQ CX
    	INCQ SI
    
    align_2:
    	BTQ $1, BX
    	JNC align_4
    
    	CRC32W (SI), AX
    
    	SUBQ $2, CX
    	ADDQ $2, SI
    
    align_4:
    	BTQ $2, BX
    	JNC aligned
    
    	CRC32L (SI), AX
    
    	SUBQ $4, CX
    	ADDQ $4, SI
    
    aligned:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 01 21:52:00 UTC 2018
    - 5.4K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/anames.go

    	"BLSMSKQ",
    	"BLSRL",
    	"BLSRQ",
    	"BOUNDL",
    	"BOUNDW",
    	"BSFL",
    	"BSFQ",
    	"BSFW",
    	"BSRL",
    	"BSRQ",
    	"BSRW",
    	"BSWAPL",
    	"BSWAPQ",
    	"BTCL",
    	"BTCQ",
    	"BTCW",
    	"BTL",
    	"BTQ",
    	"BTRL",
    	"BTRQ",
    	"BTRW",
    	"BTSL",
    	"BTSQ",
    	"BTSW",
    	"BTW",
    	"BYTE",
    	"BZHIL",
    	"BZHIQ",
    	"CBW",
    	"CDQ",
    	"CDQE",
    	"CLAC",
    	"CLC",
    	"CLD",
    	"CLDEMOTE",
    	"CLFLUSH",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    // mutandis, for UGE and SETAE, and CC and SETCC.
    ((NE|EQ) (TESTL (SHLL (MOVLconst [1]) x) y)) => ((ULT|UGE) (BTL x y))
    ((NE|EQ) (TESTQ (SHLQ (MOVQconst [1]) x) y)) => ((ULT|UGE) (BTQ x y))
    ((NE|EQ) (TESTLconst [c] x)) && isUint32PowerOfTwo(int64(c))
        => ((ULT|UGE) (BTLconst [int8(log32(c))] x))
    ((NE|EQ) (TESTQconst [c] x)) && isUint64PowerOfTwo(int64(c))
        => ((ULT|UGE) (BTQconst [int8(log32(c))] x))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	BTL R11, R11                            // 450fa3db
    	BTQ $7, (BX)                            // 480fba2307
    	BTQ $7, (R11)                           // 490fba2307
    	BTQ $7, DX                              // 480fbae207
    	BTQ $7, R11                             // 490fbae307
    	BTQ DX, (BX)                            // 480fa313
    	BTQ R11, (BX)                           // 4c0fa31b
    	BTQ DX, (R11)                           // 490fa313
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 21:38:44 UTC 2021
    - 581.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		// bit test/set/clear operations
    		{name: "BTL", argLength: 2, reg: gp2flags, asm: "BTL", typ: "Flags"},                                           // test whether bit arg0%32 in arg1 is set
    		{name: "BTQ", argLength: 2, reg: gp2flags, asm: "BTQ", typ: "Flags"},                                           // test whether bit arg0%64 in arg1 is set
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  7. src/cmd/compile/internal/ssa/rewriteAMD64.go

    		if !(c > d) {
    			break
    		}
    		v.reset(OpAMD64BTLconst)
    		v.AuxInt = int8ToAuxInt(c - d)
    		v.AddArg(x)
    		return true
    	}
    	// match: (BTLconst [0] s:(SHRQ x y))
    	// result: (BTQ y x)
    	for {
    		if auxIntToInt8(v.AuxInt) != 0 {
    			break
    		}
    		s := v_0
    		if s.Op != OpAMD64SHRQ {
    			break
    		}
    		y := s.Args[1]
    		x := s.Args[0]
    		v.reset(OpAMD64BTQ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/opGen.go

    			inputs: []inputInfo{
    				{0, 49151}, // AX CX DX BX SP BP SI DI R8 R9 R10 R11 R12 R13 R15
    				{1, 49151}, // AX CX DX BX SP BP SI DI R8 R9 R10 R11 R12 R13 R15
    			},
    		},
    	},
    	{
    		name:   "BTQ",
    		argLen: 2,
    		asm:    x86.ABTQ,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 49151}, // AX CX DX BX SP BP SI DI R8 R9 R10 R11 R12 R13 R15
    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