Lines Matching refs:Instr
189 typedef int32_t Instr;
721 extern const Instr kPopInstruction;
723 extern const Instr kPushInstruction;
725 extern const Instr kPushRegPattern;
727 extern const Instr kPopRegPattern;
728 extern const Instr kLwRegFpOffsetPattern;
729 extern const Instr kSwRegFpOffsetPattern;
730 extern const Instr kLwRegFpNegOffsetPattern;
731 extern const Instr kSwRegFpNegOffsetPattern;
733 extern const Instr kRtMask;
734 extern const Instr kLwSwInstrTypeMask;
735 extern const Instr kLwSwInstrArgumentMask;
736 extern const Instr kLwSwOffsetMask;
739 const Instr rtCallRedirInstr = SPECIAL | BREAK | call_rt_redirected << 6;
741 const Instr nopInstr = 0;
754 inline Instr InstructionBits() const {
755 return *reinterpret_cast<const Instr*>(this);
759 inline void SetInstructionBits(Instr value) {
760 *reinterpret_cast<Instr*>(this) = value;