diff options
author | 2022-07-13 18:06:50 +0100 | |
---|---|---|
committer | 2022-07-19 08:54:54 +0000 | |
commit | 16032a421a08fb6396de8e8f168a62fe29a0f7ad (patch) | |
tree | 584c7bf4038538139ecf3b319699d723b23a43b4 /runtime/interpreter/interpreter_switch_impl-inl.h | |
parent | cca4c6e6ad7bf54604eb516d54441c414be6ca53 (diff) |
Use the thread local cache in interpreter / unresolved entrypoints
Refactor and cleanup how we lookup the method to invoke. Also remove old
mterp related code.
Test: test.py
Change-Id: I135b38c45612c5266b51c0eb39a67ac988541ae7
Diffstat (limited to 'runtime/interpreter/interpreter_switch_impl-inl.h')
-rw-r--r-- | runtime/interpreter/interpreter_switch_impl-inl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/interpreter/interpreter_switch_impl-inl.h b/runtime/interpreter/interpreter_switch_impl-inl.h index 62bf7d8fa3..2858daf968 100644 --- a/runtime/interpreter/interpreter_switch_impl-inl.h +++ b/runtime/interpreter/interpreter_switch_impl-inl.h @@ -353,7 +353,7 @@ class InstructionHandler { template<InvokeType type, bool is_range> HANDLER_ATTRIBUTES bool HandleInvoke() { - bool success = DoInvoke<type, is_range, do_access_check, /*is_mterp=*/ false>( + bool success = DoInvoke<type, is_range, do_access_check>( Self(), shadow_frame_, inst_, inst_data_, ResultRegister()); return PossiblyHandlePendingExceptionOnInvoke(!success); } |