Home | History | Annotate | Download | only in interpreter

Lines Matching defs:ExecuteGotoImpl

248 JValue ExecuteGotoImpl(Thread*, const DexFile::CodeItem*, ShadowFrame&, JValue) {
252 // Explicit definitions of ExecuteGotoImpl.
254 JValue ExecuteGotoImpl<true, false>(Thread* self, const DexFile::CodeItem* code_item,
257 JValue ExecuteGotoImpl<false, false>(Thread* self, const DexFile::CodeItem* code_item,
260 JValue ExecuteGotoImpl<true, true>(Thread* self, const DexFile::CodeItem* code_item,
263 JValue ExecuteGotoImpl<false, true>(Thread* self, const DexFile::CodeItem* code_item,
356 return ExecuteGotoImpl<false, true>(self, code_item, shadow_frame, result_register);
358 return ExecuteGotoImpl<false, false>(self, code_item, shadow_frame, result_register);
383 return ExecuteGotoImpl<true, true>(self, code_item, shadow_frame, result_register);
385 return ExecuteGotoImpl<true, false>(self, code_item, shadow_frame, result_register);