Lines Matching refs:inst

98             const Instruction* inst, uint16_t inst_data, JValue* result);
103 static inline bool DoInvoke(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst,
105 const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
106 const uint32_t vregC = (is_range) ? inst->VRegC_3rc() : inst->VRegC_35c();
121 return DoCall<is_range, do_access_check>(called_method, self, shadow_frame, inst, inst_data,
130 const Instruction* inst, uint16_t inst_data,
132 const uint32_t vregC = (is_range) ? inst->VRegC_3rc() : inst->VRegC_35c();
140 const uint32_t vtable_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
154 return DoCall<is_range, false>(called_method, self, shadow_frame, inst, inst_data, result);
161 bool DoFieldGet(Thread* self, ShadowFrame& shadow_frame, const Instruction* inst,
167 bool DoIGetQuick(ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data)
174 bool DoFieldPut(Thread* self, const ShadowFrame& shadow_frame, const Instruction* inst,
180 bool DoIPutQuick(const ShadowFrame& shadow_frame, const Instruction* inst, uint16_t inst_data)
285 bool DoFilledNewArray(const Instruction* inst, const ShadowFrame& shadow_frame,
290 static inline int32_t DoPackedSwitch(const Instruction* inst, const ShadowFrame& shadow_frame,
293 DCHECK(inst->Opcode() == Instruction::PACKED_SWITCH);
294 const uint16_t* switch_data = reinterpret_cast<const uint16_t*>(inst) + inst->VRegB_31t();
295 int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data));
318 static inline int32_t DoSparseSwitch(const Instruction* inst, const ShadowFrame& shadow_frame,
321 DCHECK(inst->Opcode() == Instruction::SPARSE_SWITCH);
322 const uint16_t* switch_data = reinterpret_cast<const uint16_t*>(inst) + inst->VRegB_31t();
323 int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data));
355 NO_RETURN void UnexpectedOpcode(const Instruction* inst, const ShadowFrame& shadow_frame)
359 static inline void TraceExecution(const ShadowFrame& shadow_frame, const Instruction* inst,
368 << inst->DumpString(shadow_frame.GetMethod()->GetDexFile()) << "\n";
395 const Instruction* inst, uint16_t inst_data, \
416 const Instruction* inst, uint16_t inst_data, \