• Home
  • Raw
  • Download

Lines Matching defs:Rt

1445 void MIPSAssembler::ADDU(int Rd, int Rs, int Rt)  in ADDU()
1452 void MIPSAssembler::ADDIU(int Rt, int Rs, int16_t imm) in ADDIU()
1458 void MIPSAssembler::SUBU(int Rd, int Rs, int Rt) in SUBU()
1465 void MIPSAssembler::SUBIU(int Rt, int Rs, int16_t imm) // really addiu(d, s, -j) in SUBIU()
1476 void MIPSAssembler::MUL(int Rd, int Rs, int Rt) in MUL()
1482 void MIPSAssembler::MULT(int Rs, int Rt) // dest is hi,lo in MULT()
1487 void MIPSAssembler::MULTU(int Rs, int Rt) // dest is hi,lo in MULTU()
1492 void MIPSAssembler::MADD(int Rs, int Rt) // hi,lo = hi,lo + Rs * Rt in MADD()
1497 void MIPSAssembler::MADDU(int Rs, int Rt) // hi,lo = hi,lo + Rs * Rt in MADDU()
1503 void MIPSAssembler::MSUB(int Rs, int Rt) // hi,lo = hi,lo - Rs * Rt in MSUB()
1508 void MIPSAssembler::MSUBU(int Rs, int Rt) // hi,lo = hi,lo - Rs * Rt in MSUBU()
1514 void MIPSAssembler::SEB(int Rd, int Rt) // sign-extend byte (mips32r2) in SEB()
1520 void MIPSAssembler::SEH(int Rd, int Rt) // sign-extend half-word (mips32r2) in SEH()
1533 void MIPSAssembler::SLT(int Rd, int Rs, int Rt) in SLT()
1539 void MIPSAssembler::SLTI(int Rt, int Rs, int16_t imm) in SLTI()
1545 void MIPSAssembler::SLTU(int Rd, int Rs, int Rt) in SLTU()
1551 void MIPSAssembler::SLTIU(int Rt, int Rs, int16_t imm) in SLTIU()
1563 void MIPSAssembler::AND(int Rd, int Rs, int Rt) in AND()
1569 void MIPSAssembler::ANDI(int Rt, int Rs, uint16_t imm) // todo: support larger immediate in ANDI()
1575 void MIPSAssembler::OR(int Rd, int Rs, int Rt) in OR()
1581 void MIPSAssembler::ORI(int Rt, int Rs, uint16_t imm) in ORI()
1586 void MIPSAssembler::NOR(int Rd, int Rs, int Rt) in NOR()
1597 void MIPSAssembler::XOR(int Rd, int Rs, int Rt) in XOR()
1603 void MIPSAssembler::XORI(int Rt, int Rs, uint16_t imm) // todo: support larger immediate in XORI()
1608 void MIPSAssembler::SLL(int Rd, int Rt, int shft) in SLL()
1614 void MIPSAssembler::SLLV(int Rd, int Rt, int Rs) in SLLV()
1620 void MIPSAssembler::SRL(int Rd, int Rt, int shft) in SRL()
1626 void MIPSAssembler::SRLV(int Rd, int Rt, int Rs) in SRLV()
1632 void MIPSAssembler::SRA(int Rd, int Rt, int shft) in SRA()
1638 void MIPSAssembler::SRAV(int Rd, int Rt, int Rs) in SRAV()
1644 void MIPSAssembler::ROTR(int Rd, int Rt, int shft) // mips32r2 in ROTR()
1651 void MIPSAssembler::ROTRV(int Rd, int Rt, int Rs) // mips32r2 in ROTRV()
1659 void MIPSAssembler::RORsyn(int Rd, int Rt, int Rs) in RORsyn()
1669 void MIPSAssembler::RORIsyn(int Rd, int Rt, int rot) in RORIsyn()
1692 void MIPSAssembler::WSBH(int Rd, int Rt) // mips32r2 in WSBH()
1705 void MIPSAssembler::LW(int Rt, int Rbase, int16_t offset) in LW()
1710 void MIPSAssembler::SW(int Rt, int Rbase, int16_t offset) in SW()
1716 void MIPSAssembler::LB(int Rt, int Rbase, int16_t offset) in LB()
1721 void MIPSAssembler::LBU(int Rt, int Rbase, int16_t offset) in LBU()
1726 void MIPSAssembler::SB(int Rt, int Rbase, int16_t offset) in SB()
1732 void MIPSAssembler::LH(int Rt, int Rbase, int16_t offset) in LH()
1737 void MIPSAssembler::LHU(int Rt, int Rbase, int16_t offset) in LHU()
1742 void MIPSAssembler::SH(int Rt, int Rbase, int16_t offset) in SH()
1747 void MIPSAssembler::LUI(int Rt, int16_t offset) in LUI()
1766 void MIPSAssembler::MOVN(int Rd, int Rs, int Rt) in MOVN()
1772 void MIPSAssembler::MOVZ(int Rd, int Rs, int Rt) in MOVZ()
1818 void MIPSAssembler::BEQ(int Rs, int Rt, const char* label) in BEQ()
1825 void MIPSAssembler::BNE(int Rs, int Rt, const char* label) in BNE()
1884 void MIPSAssembler::BGE(int Rs, int Rt, const char* label) in BGE()
1890 void MIPSAssembler::BGEU(int Rs, int Rt, const char* label) in BGEU()
1896 void MIPSAssembler::BGT(int Rs, int Rt, const char* label) in BGT()
1902 void MIPSAssembler::BGTU(int Rs, int Rt, const char* label) in BGTU()
1908 void MIPSAssembler::BLE(int Rs, int Rt, const char* label) in BLE()
1914 void MIPSAssembler::BLEU(int Rs, int Rt, const char* label) in BLEU()
1920 void MIPSAssembler::BLT(int Rs, int Rt, const char* label) in BLT()
1926 void MIPSAssembler::BLTU(int Rs, int Rt, const char* label) in BLTU()