Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    	ORL DX, (BX)                            // 0913
    	ORL R11, (BX)                           // 44091b
    	ORL DX, (R11)                           // 410913
    	ORL R11, (R11)                          // 45091b
    	ORL DX, DX                              // 09d2 or 0bd2
    	ORL R11, DX                             // 4409da or 410bd3
    	ORL DX, R11                             // 4109d3 or 440bda
    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(c)
    			v.AddArg(x)
    			return true
    		}
    		break
    	}
    	// match: (ORL x x)
    	// result: x
    	for {
    		x := v_0
    		if x != v_1 {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (ORL x l:(MOVLload [off] {sym} ptr mem))
    	// cond: canMergeLoadClobber(v, l, x) && clobber(l)
    	// result: (ORLload x [off] {sym} ptr mem)
    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