Home | History | Annotate | Download | only in mips64

Lines Matching refs:Instr

534   static const int kInstrSize = sizeof(Instr);
1076 static Instr instr_at(byte* pc) { return *reinterpret_cast<Instr*>(pc); }
1077 static void instr_at_put(byte* pc, Instr instr) {
1078 *reinterpret_cast<Instr*>(pc) = instr;
1080 Instr instr_at(int pos) { return *reinterpret_cast<Instr*>(buffer_ + pos); }
1081 void instr_at_put(int pos, Instr instr) {
1082 *reinterpret_cast<Instr*>(buffer_ + pos) = instr;
1086 static bool IsBranch(Instr instr);
1087 static bool IsBeq(Instr instr);
1088 static bool IsBne(Instr instr);
1090 static bool IsJump(Instr instr);
1091 static bool IsJ(Instr instr);
1092 static bool IsLui(Instr instr);
1093 static bool IsOri(Instr instr);
1095 static bool IsJal(Instr instr);
1096 static bool IsJr(Instr instr);
1097 static bool IsJalr(Instr instr);
1099 static bool IsNop(Instr instr, unsigned int type);
1100 static bool IsPop(Instr instr);
1101 static bool IsPush(Instr instr);
1102 static bool IsLwRegFpOffset(Instr instr);
1103 static bool IsSwRegFpOffset(Instr instr);
1104 static bool IsLwRegFpNegOffset(Instr instr);
1105 static bool IsSwRegFpNegOffset(Instr instr);
1107 static Register GetRtReg(Instr instr);
1108 static Register GetRsReg(Instr instr);
1109 static Register GetRdReg(Instr instr);
1111 static uint32_t GetRt(Instr instr);
1112 static uint32_t GetRtField(Instr instr);
1113 static uint32_t GetRs(Instr instr);
1114 static uint32_t GetRsField(Instr instr);
1115 static uint32_t GetRd(Instr instr);
1116 static uint32_t GetRdField(Instr instr);
1117 static uint32_t GetSa(Instr instr);
1118 static uint32_t GetSaField(Instr instr);
1119 static uint32_t GetOpcodeField(Instr instr);
1120 static uint32_t GetFunction(Instr instr);
1121 static uint32_t GetFunctionField(Instr instr);
1122 static uint32_t GetImmediate16(Instr instr);
1123 static uint32_t GetLabelConst(Instr instr);
1125 static int32_t GetBranchOffset(Instr instr);
1126 static bool IsLw(Instr instr);
1127 static int16_t GetLwOffset(Instr instr);
1128 static Instr SetLwOffset(Instr instr, int16_t offset);
1130 static bool IsSw(Instr instr);
1131 static Instr SetSwOffset(Instr instr, int16_t offset);
1132 static bool IsAddImmediate(Instr instr);
1133 static Instr SetAddImmediateOffset(Instr instr, int16_t offset);
1135 static bool IsAndImmediate(Instr instr);
1136 static bool IsEmittedConstant(Instr instr);
1251 inline void emit(Instr x);