diff options
author | 2024-05-17 10:37:36 +0200 | |
---|---|---|
committer | 2024-06-20 16:19:04 +0000 | |
commit | 05a5ff2a4152571e8e82ba4c407cf0fba0a57ddd (patch) | |
tree | 734fecaae333684a016f0a29be400fd32b9f87c2 /runtime/class_linker.h | |
parent | 9e9f99747ad3bdb06be114263c732c39fba9a692 (diff) |
Move some classes from `runtime/` to `dex2oat/`.
Move the transactional interpreter, `AotClassLinker`,
`Transaction` and `SdkChecker`.
Test: m test-art-host-gtest
Test: testrunner.py --host --optimizing
Change-Id: If001e06711ee345ce5b937ed764e66b26a0abcd6
Diffstat (limited to 'runtime/class_linker.h')
-rw-r--r-- | runtime/class_linker.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/runtime/class_linker.h b/runtime/class_linker.h index 660e4be20e..bc9f5931ee 100644 --- a/runtime/class_linker.h +++ b/runtime/class_linker.h @@ -954,10 +954,13 @@ class EXPORT ClassLinker { REQUIRES_SHARED(Locks::mutator_lock_); virtual bool IsTransactionAborted() const; - // Vist transaction roots for AOT compilation. + // Visit transaction roots for AOT compilation. virtual void VisitTransactionRoots(RootVisitor* visitor) REQUIRES_SHARED(Locks::mutator_lock_); + // Get transactional switch interpreter entrypoint for AOT compilation. + virtual const void* GetTransactionalInterpreter(); + void RemoveDexFromCaches(const DexFile& dex_file); ClassTable* GetBootClassTable() REQUIRES_SHARED(Locks::classlinker_classes_lock_) { return boot_class_table_.get(); |