Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SBBQ (0.04 sec)

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

    	SBBQ DX, (BX)                           // 481913
    	SBBQ R11, (BX)                          // 4c191b
    	SBBQ DX, (R11)                          // 491913
    	SBBQ R11, (R11)                         // 4d191b
    	SBBQ DX, DX                             // 4819d2 or 481bd2
    	SBBQ R11, DX                            // 4c19da or 491bd3
    	SBBQ DX, R11                            // 4919d3 or 4c1bda
    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(0)
    		return true
    	}
    	return false
    }
    func rewriteValueAMD64_OpAMD64SBBQ(v *Value) bool {
    	v_2 := v.Args[2]
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (SBBQ x (MOVQconst [c]) borrow)
    	// cond: is32Bit(c)
    	// result: (SBBQconst x [int32(c)] borrow)
    	for {
    		x := v_0
    		if v_1.Op != OpAMD64MOVQconst {
    			break
    		}
    		c := auxIntToInt64(v_1.AuxInt)
    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