Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for cmpl (0.05 sec)

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

    	CMPL (BX), $7                           // 833b07
    	CMPL (R11), $7                          // 41833b07
    	CMPL DX, $7                             // 83fa07
    	CMPL R11, $7                            // 4183fb07
    	CMPL (BX), DX                           // 3913
    	CMPL (BX), R11                          // 44391b
    	CMPL (R11), DX                          // 413913
    	CMPL (R11), R11                         // 45391b
    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

    			b.resetWithControl(BlockAMD64LE, cmp)
    			return true
    		}
    		// match: (If (SETG cmp) yes no)
    		// result: (GT cmp yes no)
    		for b.Controls[0].Op == OpAMD64SETG {
    			v_0 := b.Controls[0]
    			cmp := v_0.Args[0]
    			b.resetWithControl(BlockAMD64GT, cmp)
    			return true
    		}
    		// match: (If (SETGE cmp) yes no)
    		// result: (GE cmp yes no)
    		for b.Controls[0].Op == OpAMD64SETGE {
    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