• Home
  • Raw
  • Download

Lines Matching defs:Rs

608         int Rd, int Rm, int Rs, int Rn) {  in MLA()
621 int Rd, int Rm, int Rs) { in MUL()
631 int RdLo, int RdHi, int Rm, int Rs) { in UMULL()
1084 int Rd, int Rm, int Rs) in SMUL()
1123 int Rd, int Rm, int Rs) in SMULW()
1143 int Rd, int Rm, int Rs, int Rn) in SMLA()
1439 void MIPSAssembler::ADDU(int Rd, int Rs, int Rt) in ADDU()
1446 void MIPSAssembler::ADDIU(int Rt, int Rs, int16_t imm) in ADDIU()
1452 void MIPSAssembler::SUBU(int Rd, int Rs, int Rt) in SUBU()
1459 void MIPSAssembler::SUBIU(int Rt, int Rs, int16_t imm) // really addiu(d, s, -j) in SUBIU()
1465 void MIPSAssembler::NEGU(int Rd, int Rs) // really subu(d, zero, s) in NEGU()
1470 void MIPSAssembler::MUL(int Rd, int Rs, int Rt) in MUL()
1476 void MIPSAssembler::MULT(int Rs, int Rt) // dest is hi,lo in MULT()
1481 void MIPSAssembler::MULTU(int Rs, int Rt) // dest is hi,lo in MULTU()
1486 void MIPSAssembler::MADD(int Rs, int Rt) // hi,lo = hi,lo + Rs * Rt in MADD()
1491 void MIPSAssembler::MADDU(int Rs, int Rt) // hi,lo = hi,lo + Rs * Rt in MADDU()
1497 void MIPSAssembler::MSUB(int Rs, int Rt) // hi,lo = hi,lo - Rs * Rt in MSUB()
1502 void MIPSAssembler::MSUBU(int Rs, int Rt) // hi,lo = hi,lo - Rs * Rt in MSUBU()
1527 void MIPSAssembler::SLT(int Rd, int Rs, int Rt) in SLT()
1533 void MIPSAssembler::SLTI(int Rt, int Rs, int16_t imm) in SLTI()
1539 void MIPSAssembler::SLTU(int Rd, int Rs, int Rt) in SLTU()
1545 void MIPSAssembler::SLTIU(int Rt, int Rs, int16_t imm) in SLTIU()
1557 void MIPSAssembler::AND(int Rd, int Rs, int Rt) in AND()
1563 void MIPSAssembler::ANDI(int Rt, int Rs, uint16_t imm) // todo: support larger immediate in ANDI()
1569 void MIPSAssembler::OR(int Rd, int Rs, int Rt) in OR()
1575 void MIPSAssembler::ORI(int Rt, int Rs, uint16_t imm) in ORI()
1580 void MIPSAssembler::NOR(int Rd, int Rs, int Rt) in NOR()
1586 void MIPSAssembler::NOT(int Rd, int Rs) in NOT()
1591 void MIPSAssembler::XOR(int Rd, int Rs, int Rt) in XOR()
1597 void MIPSAssembler::XORI(int Rt, int Rs, uint16_t imm) // todo: support larger immediate in XORI()
1608 void MIPSAssembler::SLLV(int Rd, int Rt, int Rs) in SLLV()
1620 void MIPSAssembler::SRLV(int Rd, int Rt, int Rs) in SRLV()
1632 void MIPSAssembler::SRAV(int Rd, int Rt, int Rs) in SRAV()
1645 void MIPSAssembler::ROTRV(int Rd, int Rt, int Rs) // mips32r2 in ROTRV()
1653 void MIPSAssembler::RORsyn(int Rd, int Rt, int Rs) in RORsyn()
1672 void MIPSAssembler::CLO(int Rd, int Rs) in CLO()
1679 void MIPSAssembler::CLZ(int Rd, int Rs) in CLZ()
1753 void MIPSAssembler::MOVE(int Rd, int Rs) in MOVE()
1760 void MIPSAssembler::MOVN(int Rd, int Rs, int Rt) in MOVN()
1766 void MIPSAssembler::MOVZ(int Rd, int Rs, int Rt) in MOVZ()
1782 void MIPSAssembler::MTHI(int Rs) in MTHI()
1787 void MIPSAssembler::MTLO(int Rs) in MTLO()
1812 void MIPSAssembler::BEQ(int Rs, int Rt, const char* label) in BEQ()
1819 void MIPSAssembler::BNE(int Rs, int Rt, const char* label) in BNE()
1826 void MIPSAssembler::BLEZ(int Rs, const char* label) in BLEZ()
1833 void MIPSAssembler::BLTZ(int Rs, const char* label) in BLTZ()
1840 void MIPSAssembler::BGTZ(int Rs, const char* label) in BGTZ()
1848 void MIPSAssembler::BGEZ(int Rs, const char* label) in BGEZ()
1855 void MIPSAssembler::JR(int Rs) in JR()
1868 void MIPSAssembler::BEQZ(int Rs, const char* label) in BEQZ()
1878 void MIPSAssembler::BGE(int Rs, int Rt, const char* label) in BGE()
1884 void MIPSAssembler::BGEU(int Rs, int Rt, const char* label) in BGEU()
1890 void MIPSAssembler::BGT(int Rs, int Rt, const char* label) in BGT()
1896 void MIPSAssembler::BGTU(int Rs, int Rt, const char* label) in BGTU()
1902 void MIPSAssembler::BLE(int Rs, int Rt, const char* label) in BLE()
1908 void MIPSAssembler::BLEU(int Rs, int Rt, const char* label) in BLEU()
1914 void MIPSAssembler::BLT(int Rs, int Rt, const char* label) in BLT()
1920 void MIPSAssembler::BLTU(int Rs, int Rt, const char* label) in BLTU()