• Home
  • Raw
  • Download

Lines Matching defs:Rt

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()
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()
1508 void MIPSAssembler::SEB(int Rd, int Rt) // sign-extend byte (mips32r2) in SEB()
1514 void MIPSAssembler::SEH(int Rd, int Rt) // sign-extend half-word (mips32r2) in SEH()
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()
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()
1602 void MIPSAssembler::SLL(int Rd, int Rt, int shft) in SLL()
1608 void MIPSAssembler::SLLV(int Rd, int Rt, int Rs) in SLLV()
1614 void MIPSAssembler::SRL(int Rd, int Rt, int shft) in SRL()
1620 void MIPSAssembler::SRLV(int Rd, int Rt, int Rs) in SRLV()
1626 void MIPSAssembler::SRA(int Rd, int Rt, int shft) in SRA()
1632 void MIPSAssembler::SRAV(int Rd, int Rt, int Rs) in SRAV()
1638 void MIPSAssembler::ROTR(int Rd, int Rt, int shft) // mips32r2 in ROTR()
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()
1663 void MIPSAssembler::RORIsyn(int Rd, int Rt, int rot) in RORIsyn()
1686 void MIPSAssembler::WSBH(int Rd, int Rt) // mips32r2 in WSBH()
1699 void MIPSAssembler::LW(int Rt, int Rbase, int16_t offset) in LW()
1704 void MIPSAssembler::SW(int Rt, int Rbase, int16_t offset) in SW()
1710 void MIPSAssembler::LB(int Rt, int Rbase, int16_t offset) in LB()
1715 void MIPSAssembler::LBU(int Rt, int Rbase, int16_t offset) in LBU()
1720 void MIPSAssembler::SB(int Rt, int Rbase, int16_t offset) in SB()
1726 void MIPSAssembler::LH(int Rt, int Rbase, int16_t offset) in LH()
1731 void MIPSAssembler::LHU(int Rt, int Rbase, int16_t offset) in LHU()
1736 void MIPSAssembler::SH(int Rt, int Rbase, int16_t offset) in SH()
1741 void MIPSAssembler::LUI(int Rt, int16_t offset) in LUI()
1760 void MIPSAssembler::MOVN(int Rd, int Rs, int Rt) in MOVN()
1766 void MIPSAssembler::MOVZ(int Rd, int Rs, int Rt) in MOVZ()
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()
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()