Lines Matching refs:OpRd
268 void AssemblerMIPS32::emitRdRtSa(IValueT Opcode, const Operand *OpRd, in emitRdRtSa() argument
271 const IValueT Rd = encodeGPRegister(OpRd, "Rd", InsnName); in emitRdRtSa()
281 void AssemblerMIPS32::emitRdRsRt(IValueT Opcode, const Operand *OpRd, in emitRdRsRt() argument
284 const IValueT Rd = encodeGPRegister(OpRd, "Rd", InsnName); in emitRdRsRt()
407 void AssemblerMIPS32::addu(const Operand *OpRd, const Operand *OpRs, in addu() argument
410 emitRdRsRt(Opcode, OpRd, OpRs, OpRt, "addu"); in addu()
413 void AssemblerMIPS32::and_(const Operand *OpRd, const Operand *OpRs, in and_() argument
416 emitRdRsRt(Opcode, OpRd, OpRs, OpRt, "and"); in and_()
525 void AssemblerMIPS32::clz(const Operand *OpRd, const Operand *OpRs) { in clz() argument
527 const IValueT Rd = encodeGPRegister(OpRd, "Rd", "clz"); in clz()
654 void AssemblerMIPS32::jalr(const Operand *OpRs, const Operand *OpRd) { in jalr() argument
658 (OpRd == nullptr) ? 31 : encodeGPRegister(OpRd, "Rd", "jalr"); in jalr()
772 void AssemblerMIPS32::mfhi(const Operand *OpRd) { in mfhi() argument
774 IValueT Rd = encodeGPRegister(OpRd, "Rd", "mfhi"); in mfhi()
779 void AssemblerMIPS32::mflo(const Operand *OpRd) { in mflo() argument
781 IValueT Rd = encodeGPRegister(OpRd, "Rd", "mflo"); in mflo()
796 void AssemblerMIPS32::move(const Operand *OpRd, const Operand *OpRs) { in move() argument
798 const Type DstType = OpRd->getType(); in move()
804 mtc1(OpRs, OpRd); in move()
806 mfc1(OpRd, OpRs); in move()
811 mov_s(OpRd, OpRs); in move()
814 mov_d(OpRd, OpRs); in move()
821 const IValueT Rd = encodeGPRegister(OpRd, "Rd", "pseudo-move"); in move()
837 void AssemblerMIPS32::movf(const Operand *OpRd, const Operand *OpRs, in movf() argument
840 const IValueT Rd = encodeGPRegister(OpRd, "Rd", "movf"); in movf()
854 void AssemblerMIPS32::movn(const Operand *OpRd, const Operand *OpRs, in movn() argument
857 emitRdRsRt(Opcode, OpRd, OpRs, OpRt, "movn"); in movn()
872 void AssemblerMIPS32::movt(const Operand *OpRd, const Operand *OpRs, in movt() argument
875 const IValueT Rd = encodeGPRegister(OpRd, "Rd", "movt"); in movt()
895 void AssemblerMIPS32::movz(const Operand *OpRd, const Operand *OpRs, in movz() argument
898 emitRdRsRt(Opcode, OpRd, OpRs, OpRt, "movz"); in movz()
926 void AssemblerMIPS32::mul(const Operand *OpRd, const Operand *OpRs, in mul() argument
929 emitRdRsRt(Opcode, OpRd, OpRs, OpRt, "mul"); in mul()
954 void AssemblerMIPS32::nor(const Operand *OpRd, const Operand *OpRs, in nor() argument
957 emitRdRsRt(Opcode, OpRd, OpRs, OpRt, "nor"); in nor()
960 void AssemblerMIPS32::or_(const Operand *OpRd, const Operand *OpRs, in or_() argument
963 emitRdRsRt(Opcode, OpRd, OpRs, OpRt, "or"); in or_()
984 void AssemblerMIPS32::sll(const Operand *OpRd, const Operand *OpRt, in sll() argument
987 emitRdRtSa(Opcode, OpRd, OpRt, Sa, "sll"); in sll()
990 void AssemblerMIPS32::sllv(const Operand *OpRd, const Operand *OpRt, in sllv() argument
993 emitRdRsRt(Opcode, OpRd, OpRs, OpRt, "sllv"); in sllv()
996 void AssemblerMIPS32::slt(const Operand *OpRd, const Operand *OpRs, in slt() argument
999 emitRdRsRt(Opcode, OpRd, OpRs, OpRt, "slt"); in slt()
1008 void AssemblerMIPS32::sltu(const Operand *OpRd, const Operand *OpRs, in sltu() argument
1011 emitRdRsRt(Opcode, OpRd, OpRs, OpRt, "sltu"); in sltu()
1030 void AssemblerMIPS32::sra(const Operand *OpRd, const Operand *OpRt, in sra() argument
1033 emitRdRtSa(Opcode, OpRd, OpRt, Sa, "sra"); in sra()
1036 void AssemblerMIPS32::srl(const Operand *OpRd, const Operand *OpRt, in srl() argument
1039 emitRdRtSa(Opcode, OpRd, OpRt, Sa, "srl"); in srl()
1042 void AssemblerMIPS32::srav(const Operand *OpRd, const Operand *OpRt, in srav() argument
1045 emitRdRsRt(Opcode, OpRd, OpRs, OpRt, "srav"); in srav()
1048 void AssemblerMIPS32::srlv(const Operand *OpRd, const Operand *OpRt, in srlv() argument
1051 emitRdRsRt(Opcode, OpRd, OpRs, OpRt, "srlv"); in srlv()
1066 void AssemblerMIPS32::subu(const Operand *OpRd, const Operand *OpRs, in subu() argument
1069 emitRdRsRt(Opcode, OpRd, OpRs, OpRt, "subu"); in subu()
1185 void AssemblerMIPS32::xor_(const Operand *OpRd, const Operand *OpRs, in xor_() argument
1188 emitRdRsRt(Opcode, OpRd, OpRs, OpRt, "xor"); in xor_()