From 854af03cd58d9972d768fabfe410a04cef66a44c Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Tue, 21 Dec 2021 08:32:42 +0000 Subject: Reland "More entrypoint handling cleanup." This reverts commit 8cedd8b45854cb971510a435909573a5855092d2. Reason for revert: Fixed test Change-Id: I551912891b65cac9927dcdb89033113f290d913c --- runtime/stack.cc | 1 + 1 file changed, 1 insertion(+) (limited to 'runtime/stack.cc') 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(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; -- cgit v1.2.3-59-g8ed1b