Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RRX (0.01 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm/armasm/gnu.go

    			X = ""
    			if arg.Sign < 0 {
    				X = "-"
    			}
    			X += gnuArg(inst, -1, arg.Index)
    			if arg.Shift == ShiftLeft && arg.Count == 0 {
    				// nothing
    			} else if arg.Shift == RotateRightExt {
    				X += ", rrx"
    			} else {
    				X += fmt.Sprintf(", %s #%d", strings.ToLower(arg.Shift.String()), arg.Count)
    			}
    		} else {
    			X = fmt.Sprintf("#%d", arg.Offset)
    		}
    
    		switch arg.Mode {
    		case AddrOffset:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 14 17:21:52 UTC 2016
    - 3.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm/armasm/inst.go

    	RotateRight      Shift = 3 // right rotate
    	RotateRightExt   Shift = 4 // right rotate through carry (Count will always be 1)
    )
    
    var shiftName = [...]string{
    	"LSL", "LSR", "ASR", "ROR", "RRX",
    }
    
    func (s Shift) String() string {
    	if s < 5 {
    		return shiftName[s]
    	}
    	return fmt.Sprintf("Shift(%d)", int(s))
    }
    
    // A RegShift is a register shifted by a constant.
    type RegShift struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 7.5K bytes
    - Viewed (0)
Back to top