Home | History | Annotate | Download | only in mips

Lines Matching defs:MemOperand

388 // Class MemOperand represents a memory operand in load and store instructions.
389 class MemOperand : public Operand {
391 explicit MemOperand(Register rn, int32_t offset = 0);
744 void lb(Register rd, const MemOperand& rs);
745 void lbu(Register rd, const MemOperand& rs);
746 void lh(Register rd, const MemOperand& rs);
747 void lhu(Register rd, const MemOperand& rs);
748 void lw(Register rd, const MemOperand& rs);
749 void lwl(Register rd, const MemOperand& rs);
750 void lwr(Register rd, const MemOperand& rs);
751 void sb(Register rd, const MemOperand& rs);
752 void sh(Register rd, const MemOperand& rs);
753 void sw(Register rd, const MemOperand& rs);
754 void swl(Register rd, const MemOperand& rs);
755 void swr(Register rd, const MemOperand& rs);
794 void lwc1(FPURegister fd, const MemOperand& src);
795 void ldc1(FPURegister fd, const MemOperand& src);
797 void swc1(FPURegister fs, const MemOperand& dst);
798 void sdc1(FPURegister fs, const MemOperand& dst);
1194 void LoadRegPlusOffsetToAt(const MemOperand& src);