Lines Matching defs:rd
603 void bfi(const Register& rd, const Register& rn, int lsb, int width) { in bfi()
610 void bfxil(const Register& rd, const Register& rn, int lsb, int width) { in bfxil()
618 void asr(const Register& rd, const Register& rn, int shift) { in asr()
624 void sbfiz(const Register& rd, const Register& rn, int lsb, int width) { in sbfiz()
631 void sbfx(const Register& rd, const Register& rn, int lsb, int width) { in sbfx()
638 void sxtb(const Register& rd, const Register& rn) { sbfm(rd, rn, 0, 7); } in sxtb()
641 void sxth(const Register& rd, const Register& rn) { sbfm(rd, rn, 0, 15); } in sxth()
644 void sxtw(const Register& rd, const Register& rn) { sbfm(rd, rn, 0, 31); } in sxtw()
648 void lsl(const Register& rd, const Register& rn, int shift) { in lsl()
655 void lsr(const Register& rd, const Register& rn, int shift) { in lsr()
661 void ubfiz(const Register& rd, const Register& rn, int lsb, int width) { in ubfiz()
668 void ubfx(const Register& rd, const Register& rn, int lsb, int width) { in ubfx()
675 void uxtb(const Register& rd, const Register& rn) { ubfm(rd, rn, 0, 7); } in uxtb()
678 void uxth(const Register& rd, const Register& rn) { ubfm(rd, rn, 0, 15); } in uxth()
681 void uxtw(const Register& rd, const Register& rn) { ubfm(rd, rn, 0, 31); } in uxtw()
719 void ror(const Register& rd, const Register& rs, unsigned shift) { in ror()
2107 static Instr Rd(CPURegister rd) { in Rd()
2150 static Instr RdSP(Register rd) { in RdSP()