diff options
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; |