diff options
author | Andreas Gampe <agampe@google.com> | 2017-04-24 17:59:09 -0700 |
---|---|---|
committer | Andreas Gampe <agampe@google.com> | 2017-05-30 16:26:35 -0700 |
commit | d482e73fe26cb9161511a80e3db39e08b9808ab6 (patch) | |
tree | 0b8c874f24c211e4e3d87083f8017580aa23ff63 /compiler/driver/compiler_driver-inl.h | |
parent | a14100ccf51cc63a5c472188d1e2d337627e49eb (diff) |
ART: More header cleanup - runtime.h
Remove unnecessary runtime.h includes. Refactor other headers
(move to forward declarations) to make this possible.
Test: mmma art
Change-Id: I297f0ad444ba92169edd16d8c7cbe95bb6dbb800
Diffstat (limited to 'compiler/driver/compiler_driver-inl.h')
-rw-r--r-- | compiler/driver/compiler_driver-inl.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/compiler/driver/compiler_driver-inl.h b/compiler/driver/compiler_driver-inl.h index 582330611d..8cc1cc38e2 100644 --- a/compiler/driver/compiler_driver-inl.h +++ b/compiler/driver/compiler_driver-inl.h @@ -24,10 +24,11 @@ #include "base/enums.h" #include "class_linker-inl.h" #include "dex_compilation_unit.h" +#include "handle_scope-inl.h" #include "mirror/class_loader.h" #include "mirror/dex_cache-inl.h" +#include "runtime.h" #include "scoped_thread_state_change-inl.h" -#include "handle_scope-inl.h" namespace art { @@ -149,6 +150,11 @@ inline ArtMethod* CompilerDriver::ResolveMethod( return resolved_method; } +inline VerificationResults* CompilerDriver::GetVerificationResults() const { + DCHECK(Runtime::Current()->IsAotCompiler()); + return verification_results_; +} + } // namespace art #endif // ART_COMPILER_DRIVER_COMPILER_DRIVER_INL_H_ |