summaryrefslogtreecommitdiff
path: root/runtime/interpreter/interpreter.cc
diff options
context:
space:
mode:
author Neha Jain <jainne@google.com> 2022-07-26 21:10:06 +0000
committer Nicolas Geoffray <ngeoffray@google.com> 2022-07-27 13:55:20 +0000
commit93d6dcb6972185c82db5b87d1648380968736f1a (patch)
treedf62706ef22e23ee7926a042a3a83c7489a10bb3 /runtime/interpreter/interpreter.cc
parent37dc7d4cb5661b1e263faab9db0d5fba424c7c72 (diff)
Revert "Reland "Use the thread local cache in interpreter / unresolved entrypoints""
This reverts commit b86527a04011bbc97cbb1ce80c515e3b720dc5b5. Reason for revert: b/240233684 Change-Id: I4e1c844ff66942df6ad1720010404fea22be684d
Diffstat (limited to 'runtime/interpreter/interpreter.cc')
-rw-r--r--runtime/interpreter/interpreter.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/interpreter/interpreter.cc b/runtime/interpreter/interpreter.cc
index 6f0a5c9212..0ffc38beeb 100644
--- a/runtime/interpreter/interpreter.cc
+++ b/runtime/interpreter/interpreter.cc
@@ -511,7 +511,7 @@ void EnterInterpreterFromDeoptimize(Thread* self,
new_dex_pc = dex_pc + instr->SizeInCodeUnits();
} else if (instr->IsInvoke()) {
DCHECK(deopt_method_type == DeoptimizationMethodType::kDefault);
- if (IsStringInit(*instr, shadow_frame->GetMethod())) {
+ if (IsStringInit(instr, shadow_frame->GetMethod())) {
uint16_t this_obj_vreg = GetReceiverRegisterForStringInit(instr);
// Move the StringFactory.newStringFromChars() result into the register representing
// "this object" when invoking the string constructor in the original dex instruction.