summaryrefslogtreecommitdiff
path: root/libdexfile
diff options
context:
space:
mode:
author Vladimir Marko <vmarko@google.com> 2025-02-04 10:26:33 +0000
committer VladimĂ­r Marko <vmarko@google.com> 2025-02-07 07:06:12 -0800
commit08f1b58976bae5514a0d6877b4e8f68ff15bcafb (patch)
treecda31472d1a3367f730fa77a06c876c35a2ce250 /libdexfile
parent95cebecfa36d6275ae078b649aae3d6ed7622716 (diff)
Remove cdex support from `ArtMethod`...
... and a few other places in `runtime/`. Test: m test-art-host-gtest Test: testrunner.py --host --optimizing Bug: 325430813 Change-Id: Ied837bffed78b1fe4c4d381772b8c1933b76f6c0
Diffstat (limited to 'libdexfile')
-rw-r--r--libdexfile/dex/code_item_accessors.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/libdexfile/dex/code_item_accessors.h b/libdexfile/dex/code_item_accessors.h
index 5952b2d7ea..bfdf30b066 100644
--- a/libdexfile/dex/code_item_accessors.h
+++ b/libdexfile/dex/code_item_accessors.h
@@ -30,7 +30,6 @@ struct CodeItem;
struct TryItem;
} // namespace dex
-class ArtMethod;
class DexFile;
class DexInstructionIterator;
template <typename Iter>
@@ -43,8 +42,6 @@ class CodeItemInstructionAccessor {
ALWAYS_INLINE CodeItemInstructionAccessor(const DexFile& dex_file,
const dex::CodeItem* code_item);
- ALWAYS_INLINE explicit CodeItemInstructionAccessor(ArtMethod* method);
-
ALWAYS_INLINE DexInstructionIterator begin() const;
ALWAYS_INLINE DexInstructionIterator end() const;
@@ -155,8 +152,6 @@ class CodeItemDebugInfoAccessor : public CodeItemDataAccessor {
const dex::CodeItem* code_item,
uint32_t dex_method_index);
- ALWAYS_INLINE explicit CodeItemDebugInfoAccessor(ArtMethod* method);
-
uint32_t DebugInfoOffset() const {
return debug_info_offset_;
}