Home | History | Annotate | Download | only in mips

Lines Matching refs:Instr

173 typedef int32_t Instr;
581 extern const Instr kPopInstruction;
583 extern const Instr kPushInstruction;
585 extern const Instr kPushRegPattern;
587 extern const Instr kPopRegPattern;
588 extern const Instr kLwRegFpOffsetPattern;
589 extern const Instr kSwRegFpOffsetPattern;
590 extern const Instr kLwRegFpNegOffsetPattern;
591 extern const Instr kSwRegFpNegOffsetPattern;
593 extern const Instr kRtMask;
594 extern const Instr kLwSwInstrTypeMask;
595 extern const Instr kLwSwInstrArgumentMask;
596 extern const Instr kLwSwOffsetMask;
599 const Instr rtCallRedirInstr = SPECIAL | BREAK | call_rt_redirected << 6;
601 const Instr nopInstr = 0;
614 inline Instr InstructionBits() const {
615 return *reinterpret_cast<const Instr*>(this);
619 inline void SetInstructionBits(Instr value) {
620 *reinterpret_cast<Instr*>(this) = value;