diff options
author | 2025-01-17 14:57:07 +0000 | |
---|---|---|
committer | 2025-01-28 01:46:34 -0800 | |
commit | babd7207698261b59894f8520dc464526e411b5c (patch) | |
tree | 33886f51a94f72751976636a69df9ccd00df775a /compiler/optimizing/intrinsics_x86_64.cc | |
parent | b3ca9f3c87bc935ae56e7647c91e2158971fb47d (diff) |
Remove explicit dex_pc from RecordPcInfo
Special cases considered:
* Frame entry (hardcoded to be 0) or block entry.
* Native debuggable + slow paths, which is the only case where we
use the instruction's dex_pc.
Test: m test-art-host-gtest
Test: art/test/testrunner/testrunner.py --host --64 -b --optimizing
Change-Id: Ic5e0a6b5106395b891a9a45ea48da39dfb44a0a5
Diffstat (limited to 'compiler/optimizing/intrinsics_x86_64.cc')
-rw-r--r-- | compiler/optimizing/intrinsics_x86_64.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/intrinsics_x86_64.cc b/compiler/optimizing/intrinsics_x86_64.cc index 18963bf135..14c1ef90aa 100644 --- a/compiler/optimizing/intrinsics_x86_64.cc +++ b/compiler/optimizing/intrinsics_x86_64.cc @@ -4375,7 +4375,7 @@ void IntrinsicCodeGeneratorX86_64::VisitMethodHandleInvokeExact(HInvoke* invoke) __ call(Address( method, ArtMethod::EntryPointFromQuickCompiledCodeOffset(art::PointerSize::k64).SizeValue())); - codegen_->RecordPcInfo(invoke, invoke->GetDexPc(), slow_path); + codegen_->RecordPcInfo(invoke, slow_path); __ Bind(slow_path->GetExitLabel()); } |