Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for TESTQ (0.04 sec)

  1. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	TESTL R11, R11                          // 4585db
    	TESTQ $-249346713, (BX)                 // 48f703674523f1
    	TESTQ $-249346713, (R11)                // 49f703674523f1
    	TESTQ $-249346713, DX                   // 48f7c2674523f1
    	TESTQ $-249346713, R11                  // 49f7c3674523f1
    	TESTQ DX, (BX)                          // 488513
    	TESTQ R11, (BX)                         // 4c851b
    	TESTQ DX, (R11)                         // 498513
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 21:38:44 UTC 2021
    - 581.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		// TESTx: compare (arg0 & arg1) to 0
    		{name: "TESTQ", argLength: 2, reg: gp2flags, commutative: true, asm: "TESTQ", typ: "Flags"},
    		{name: "TESTL", argLength: 2, reg: gp2flags, commutative: true, asm: "TESTL", typ: "Flags"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  3. src/runtime/mbitmap.go

    //		}
    //		// Use addr.
    //		...
    //	}
    //
    // nosplit because it is used during write barriers and must not be preempted.
    //
    //go:nosplit
    func (tp typePointers) nextFast() (typePointers, uintptr) {
    	// TESTQ/JEQ
    	if tp.mask == 0 {
    		return tp, 0
    	}
    	// BSFQ
    	var i int
    	if goarch.PtrSize == 8 {
    		i = sys.TrailingZeros64(uint64(tp.mask))
    	} else {
    		i = sys.TrailingZeros32(uint32(tp.mask))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/opGen.go

    		asm:            x86.ABTCQ,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 4295032831}, // AX CX DX BX SP BP SI DI R8 R9 R10 R11 R12 R13 g R15 SB
    			},
    		},
    	},
    	{
    		name:        "TESTQ",
    		argLen:      2,
    		commutative: true,
    		asm:         x86.ATESTQ,
    		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