summaryrefslogtreecommitdiff
path: root/runtime/stack.cc
diff options
context:
space:
mode:
author Nicolas Geoffray <ngeoffray@google.com> 2021-12-21 08:32:42 +0000
committer Nicolas Geoffray <ngeoffray@google.com> 2021-12-21 08:34:40 +0000
commit854af03cd58d9972d768fabfe410a04cef66a44c (patch)
tree660cfed72d511ff4474c2b3be19865784d91ee53 /runtime/stack.cc
parent2d908aec4549d07a84dd786376281b962145678e (diff)
Reland "More entrypoint handling cleanup."
This reverts commit 8cedd8b45854cb971510a435909573a5855092d2. Reason for revert: Fixed test Change-Id: I551912891b65cac9927dcdb89033113f290d913c
Diffstat (limited to 'runtime/stack.cc')
-rw-r--r--runtime/stack.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/stack.cc b/runtime/stack.cc
index 7f1f47f2bc..e0b87de2cd 100644
--- a/runtime/stack.cc
+++ b/runtime/stack.cc
@@ -682,6 +682,7 @@ static void AssertPcIsWithinQuickCode(ArtMethod* method, uintptr_t pc)
uintptr_t code_start = reinterpret_cast<uintptr_t>(code);
CHECK(code_start <= pc && pc <= (code_start + code_size))
<< method->PrettyMethod()
+ << " " << Runtime::Current()->GetInstrumentation()->EntryPointString(code)
<< " pc=" << std::hex << pc
<< " code_start=" << code_start
<< " code_size=" << code_size;