Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ANDQ (0.14 sec)

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

    	ANDQ DX, (BX)                           // 482113
    	ANDQ R11, (BX)                          // 4c211b
    	ANDQ DX, (R11)                          // 492113
    	ANDQ R11, (R11)                         // 4d211b
    	ANDQ DX, DX                             // 4821d2 or 4823d2
    	ANDQ R11, DX                            // 4c21da or 4923d3
    	ANDQ DX, R11                            // 4921d3 or 4c23da
    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/rewriteAMD64.go

    			v.AuxInt = int32ToAuxInt(int32(c))
    			v.AddArg(x)
    			return true
    		}
    		break
    	}
    	// match: (ANDQ x x)
    	// result: x
    	for {
    		x := v_0
    		if x != v_1 {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (ANDQ x l:(MOVQload [off] {sym} ptr mem))
    	// cond: canMergeLoadClobber(v, l, x) && clobber(l)
    	// result: (ANDQload x [off] {sym} ptr mem)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
Back to top