Home | History | Annotate | Download | only in mips

Lines Matching refs:Instr

251   void Format(Instruction* instr, const char* format);
259 inline uint16_t ReadHU(int32_t addr, Instruction* instr);
260 inline int16_t ReadH(int32_t addr, Instruction* instr);
262 inline void WriteH(int32_t addr, uint16_t value, Instruction* instr);
263 inline void WriteH(int32_t addr, int16_t value, Instruction* instr);
265 inline int ReadW(int32_t addr, Instruction* instr);
266 inline void WriteW(int32_t addr, int value, Instruction* instr);
268 inline double ReadD(int32_t addr, Instruction* instr);
269 inline void WriteD(int32_t addr, double value, Instruction* instr);
280 void DecodeTypeRegister(Instruction* instr);
283 void ConfigureTypeRegister(Instruction* instr,
290 void DecodeTypeImmediate(Instruction* instr);
291 void DecodeTypeJump(Instruction* instr);
294 void SoftwareInterrupt(Instruction* instr);
299 void HandleStop(uint32_t code, Instruction* instr);
300 bool IsStopInstruction(Instruction* instr);
309 void InstructionDecode(Instruction* instr);
311 void BranchDelayInstructionDecode(Instruction* instr) {
312 if (instr->InstructionBits() == nopInstr) {
315 set_register(pc, reinterpret_cast<int32_t>(instr) +
320 if (instr->IsForbiddenInBranchDelay()) {
323 instr->OpcodeValue());
325 InstructionDecode(instr);
329 static void CheckICache(v8::internal::HashMap* i_cache, Instruction* instr);
383 Instr break_instr_;