Home | History | Annotate | Download | only in mips

Lines Matching refs:Instr

227 typedef int32_t Instr;
707 extern const Instr kPopInstruction;
709 extern const Instr kPushInstruction;
711 extern const Instr kPushRegPattern;
713 extern const Instr kPopRegPattern;
714 extern const Instr kLwRegFpOffsetPattern;
715 extern const Instr kSwRegFpOffsetPattern;
716 extern const Instr kLwRegFpNegOffsetPattern;
717 extern const Instr kSwRegFpNegOffsetPattern;
719 extern const Instr kRtMask;
720 extern const Instr kLwSwInstrTypeMask;
721 extern const Instr kLwSwInstrArgumentMask;
722 extern const Instr kLwSwOffsetMask;
725 const Instr rtCallRedirInstr = SPECIAL | BREAK | call_rt_redirected << 6;
727 const Instr nopInstr = 0;
740 inline Instr InstructionBits() const {
741 return *reinterpret_cast<const Instr*>(this);
745 inline void SetInstructionBits(Instr value) {
746 *reinterpret_cast<Instr*>(this) = value;