diff options
author | 2024-05-17 10:37:36 +0200 | |
---|---|---|
committer | 2024-06-20 16:19:04 +0000 | |
commit | 05a5ff2a4152571e8e82ba4c407cf0fba0a57ddd (patch) | |
tree | 734fecaae333684a016f0a29be400fd32b9f87c2 /runtime/compiler_callbacks.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/compiler_callbacks.h')
-rw-r--r-- | runtime/compiler_callbacks.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/compiler_callbacks.h b/runtime/compiler_callbacks.h index cd6f6b893b..e196b0b921 100644 --- a/runtime/compiler_callbacks.h +++ b/runtime/compiler_callbacks.h @@ -25,7 +25,9 @@ namespace art HIDDEN { +class ClassLinker; class CompilerDriver; +class InternTable; namespace mirror { @@ -48,6 +50,8 @@ class CompilerCallbacks { virtual ~CompilerCallbacks() { } + virtual ClassLinker* CreateAotClassLinker(InternTable* intern_table) = 0; + virtual void AddUncompilableMethod(MethodReference ref) = 0; virtual void AddUncompilableClass(ClassReference ref) = 0; virtual void ClassRejected(ClassReference ref) = 0; |