Lines Matching refs:Rt
273 void ADDU(int Rd, int Rs, int Rt);
274 void ADDIU(int Rt, int Rs, int16_t imm);
275 void SUBU(int Rd, int Rs, int Rt);
276 void SUBIU(int Rt, int Rs, int16_t imm);
278 void MUL(int Rd, int Rs, int Rt);
279 void MULT(int Rs, int Rt); // dest is hi,lo
280 void MULTU(int Rs, int Rt); // dest is hi,lo
281 void MADD(int Rs, int Rt); // hi,lo = hi,lo + Rs * Rt
282 void MADDU(int Rs, int Rt); // hi,lo = hi,lo + Rs * Rt
283 void MSUB(int Rs, int Rt); // hi,lo = hi,lo - Rs * Rt
284 void MSUBU(int Rs, int Rt); // hi,lo = hi,lo - Rs * Rt
285 void SEB(int Rd, int Rt); // sign-extend byte (mips32r2)
286 void SEH(int Rd, int Rt); // sign-extend half-word (mips32r2)
294 void SLT(int Rd, int Rs, int Rt);
295 void SLTI(int Rt, int Rs, int16_t imm);
296 void SLTU(int Rd, int Rs, int Rt);
297 void SLTIU(int Rt, int Rs, int16_t imm);
305 void AND(int Rd, int Rs, int Rt);
307 void OR(int Rd, int Rs, int Rt);
308 void ORI(int Rt, int Rs, uint16_t imm);
309 void NOR(int Rd, int Rs, int Rt);
311 void XOR(int Rd, int Rs, int Rt);
312 void XORI(int Rt, int Rs, uint16_t imm);
314 void SLL(int Rd, int Rt, int shft);
315 void SLLV(int Rd, int Rt, int Rs);
316 void SRL(int Rd, int Rt, int shft);
317 void SRLV(int Rd, int Rt, int Rs);
318 void SRA(int Rd, int Rt, int shft);
319 void SRAV(int Rd, int Rt, int Rs);
320 void ROTR(int Rd, int Rt, int shft); // mips32r2
321 void ROTRV(int Rd, int Rt, int Rs); // mips32r2
322 void RORsyn(int Rd, int Rs, int Rt); // synthetic: d = s rotated by t
323 void RORIsyn(int Rd, int Rt, int rot); // synthetic: d = s rotated by immed
327 void WSBH(int Rd, int Rt);
335 void LW(int Rt, int Rbase, int16_t offset);
336 void SW(int Rt, int Rbase, int16_t offset);
337 void LB(int Rt, int Rbase, int16_t offset);
338 void LBU(int Rt, int Rbase, int16_t offset);
339 void SB(int Rt, int Rbase, int16_t offset);
340 void LH(int Rt, int Rbase, int16_t offset);
341 void LHU(int Rt, int Rbase, int16_t offset);
342 void SH(int Rt, int Rbase, int16_t offset);
343 void LUI(int Rt, int16_t offset);
351 void MOVN(int Rd, int Rs, int Rt);
352 void MOVZ(int Rd, int Rs, int Rt);
364 void BEQ(int Rs, int Rt, const char* label);
365 void BNE(int Rs, int Rt, const char* label);
381 void BGE(int Rs, int Rt, const char* label);
382 void BGEU(int Rs, int Rt, const char* label);
383 void BGT(int Rs, int Rt, const char* label);
384 void BGTU(int Rs, int Rt, const char* label);
385 void BLE(int Rs, int Rt, const char* label);
386 void BLEU(int Rs, int Rt, const char* label);
387 void BLT(int Rs, int Rt, const char* label);
388 void BLTU(int Rs, int Rt, const char* label);