diff options
| author | 2025-01-28 09:08:16 -0800 | |
|---|---|---|
| committer | 2025-01-28 09:08:16 -0800 | |
| commit | fd5005e31e77f2112b503557a3aabb170379697b (patch) | |
| tree | 87ef6774e1fa4c760dfaa389dc7c66052e4a5910 /compiler/optimizing/code_generator.h | |
| parent | c3670a7340134fd9adf13d155c61a8ed1acb3efc (diff) | |
| parent | a4bb8c918283b24da3939faf44d13db3bab597d8 (diff) | |
Remove unused dex_pc from InvokeRuntime am: a4bb8c9182
Original change: https://android-review.googlesource.com/c/platform/art/+/3455352
Change-Id: I3f91f32bdd2ab1ebaa580a79c7490562ae40b47e
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'compiler/optimizing/code_generator.h')
| -rw-r--r-- | compiler/optimizing/code_generator.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/compiler/optimizing/code_generator.h b/compiler/optimizing/code_generator.h index f242866412..741d3fb589 100644 --- a/compiler/optimizing/code_generator.h +++ b/compiler/optimizing/code_generator.h @@ -641,11 +641,12 @@ class CodeGenerator : public DeletableArenaObject<kArenaAllocCodeGenerator> { DataType::Type field_type, const FieldAccessCallingConvention& calling_convention); +// TODO(solanes): Remove dex_pc from this method void GenerateUnresolvedFieldAccess( HInstruction* field_access, DataType::Type field_type, uint32_t field_index, - uint32_t dex_pc, + [[maybe_unused]] uint32_t dex_pc, const FieldAccessCallingConvention& calling_convention); static void CreateLoadClassRuntimeCallLocationSummary(HLoadClass* cls, @@ -677,10 +678,8 @@ class CodeGenerator : public DeletableArenaObject<kArenaAllocCodeGenerator> { void SetDisassemblyInformation(DisassemblyInformation* info) { disasm_info_ = info; } DisassemblyInformation* GetDisassemblyInformation() const { return disasm_info_; } - // TODO(solanes): Remove `dex_pc` now that it is unused. virtual void InvokeRuntime(QuickEntrypointEnum entrypoint, HInstruction* instruction, - uint32_t dex_pc, SlowPathCode* slow_path = nullptr) = 0; // Check if the desired_string_load_kind is supported. If it is, return it, |