Home | History | Annotate | Download | only in mips

Lines Matching refs:instr

244   void Format(Instruction* instr, const char* format);
252 inline uint16_t ReadHU(int32_t addr, Instruction* instr);
253 inline int16_t ReadH(int32_t addr, Instruction* instr);
255 inline void WriteH(int32_t addr, uint16_t value, Instruction* instr);
256 inline void WriteH(int32_t addr, int16_t value, Instruction* instr);
258 inline int ReadW(int32_t addr, Instruction* instr);
259 inline void WriteW(int32_t addr, int value, Instruction* instr);
261 inline double ReadD(int32_t addr, Instruction* instr);
262 inline void WriteD(int32_t addr, double value, Instruction* instr);
273 void DecodeTypeRegister(Instruction* instr);
276 void ConfigureTypeRegister(Instruction* instr,
283 void DecodeTypeImmediate(Instruction* instr);
284 void DecodeTypeJump(Instruction* instr);
287 void SoftwareInterrupt(Instruction* instr);
290 void InstructionDecode(Instruction* instr);
292 void BranchDelayInstructionDecode(Instruction* instr) {
293 if (instr->IsForbiddenInBranchDelay()) {
296 instr->OpcodeValue());
298 InstructionDecode(instr);
302 static void CheckICache(v8::internal::HashMap* i_cache, Instruction* instr);
348 Instr break_instr_;