Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for RRX (0.13 sec)

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

    		}
    		return Mem{Base: Reg((x >> 16) & (1<<4 - 1)), Mode: mode}
    
    	case arg_R_rotate:
    		Rm := Reg(x & (1<<4 - 1))
    		typ, count := decodeShift(x)
    		// ROR #0 here means ROR #0, but decodeShift rewrites to RRX #1.
    		if typ == RotateRightExt {
    			return Rm
    		}
    		return RegShift{Rm, typ, count}
    
    	case arg_R_shift_R:
    		Rm := Reg(x & (1<<4 - 1))
    		Rs := Reg((x >> 8) & (1<<4 - 1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 12.6K bytes
    - Viewed (0)
Back to top