Home | History | Annotate | Download | only in mips64

Lines Matching refs:MemOperand

354 // Class MemOperand represents a memory operand in load and store instructions.
355 class MemOperand : public Operand {
363 explicit MemOperand(Register rn, int32_t offset = 0);
364 explicit MemOperand(Register rn, int32_t unit, int32_t multiplier,
805 void lb(Register rd, const MemOperand& rs);
806 void lbu(Register rd, const MemOperand& rs);
807 void lh(Register rd, const MemOperand& rs);
808 void lhu(Register rd, const MemOperand& rs);
809 void lw(Register rd, const MemOperand& rs);
810 void lwu(Register rd, const MemOperand& rs);
811 void lwl(Register rd, const MemOperand& rs);
812 void lwr(Register rd, const MemOperand& rs);
813 void sb(Register rd, const MemOperand& rs);
814 void sh(Register rd, const MemOperand& rs);
815 void sw(Register rd, const MemOperand& rs);
816 void swl(Register rd, const MemOperand& rs);
817 void swr(Register rd, const MemOperand& rs);
818 void ldl(Register rd, const MemOperand& rs);
819 void ldr(Register rd, const MemOperand& rs);
820 void sdl(Register rd, const MemOperand& rs);
821 void sdr(Register rd, const MemOperand& rs);
822 void ld(Register rd, const MemOperand& rs);
823 void sd(Register rd, const MemOperand& rs);
838 void pref(int32_t hint, const MemOperand& rs);
917 void lwc1(FPURegister fd, const MemOperand& src);
918 void ldc1(FPURegister fd, const MemOperand& src);
920 void swc1(FPURegister fs, const MemOperand& dst);
921 void sdc1(FPURegister fs, const MemOperand& dst);
1233 void LoadRegPlusOffsetToAt(const MemOperand& src);