• Home
  • Raw
  • Download

Lines Matching refs:Rt

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