Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for cmp6 (6.04 sec)

  1. 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)
  2. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	CMPQ (BX), $7                           // 48833b07
    	CMPQ (R11), $7                          // 49833b07
    	CMPQ DX, $7                             // 4883fa07
    	CMPQ R11, $7                            // 4983fb07
    	CMPQ (BX), DX                           // 483913
    	CMPQ (BX), R11                          // 4c391b
    	CMPQ (R11), DX                          // 493913
    	CMPQ (R11), R11                         // 4d391b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 21:38:44 UTC 2021
    - 581.9K bytes
    - Viewed (0)
Back to top