Home | History | Annotate | Download | only in mips

Lines Matching refs:Instr

172 typedef int32_t Instr;
570 extern const Instr kPopInstruction;
572 extern const Instr kPushInstruction;
574 extern const Instr kPushRegPattern;
576 extern const Instr kPopRegPattern;
577 extern const Instr kLwRegFpOffsetPattern;
578 extern const Instr kSwRegFpOffsetPattern;
579 extern const Instr kLwRegFpNegOffsetPattern;
580 extern const Instr kSwRegFpNegOffsetPattern;
582 extern const Instr kRtMask;
583 extern const Instr kLwSwInstrTypeMask;
584 extern const Instr kLwSwInstrArgumentMask;
585 extern const Instr kLwSwOffsetMask;
588 const Instr rtCallRedirInstr = SPECIAL | BREAK | call_rt_redirected << 6;
590 const Instr nopInstr = 0;
603 inline Instr InstructionBits() const {
604 return *reinterpret_cast<const Instr*>(this);
608 inline void SetInstructionBits(Instr value) {
609 *reinterpret_cast<Instr*>(this) = value;