diff options
author | 2018-11-07 15:39:48 +0000 | |
---|---|---|
committer | 2018-11-08 10:26:57 +0000 | |
commit | 1a2a5cd58b7b667b664a7c20a4887a6cd89b4776 (patch) | |
tree | 8f92ca17ba6f8324881f52aa741ad5ed0f87016a /compiler/driver/compiler_driver.h | |
parent | a5175541c197e7bf9b03651ea5da4e64a2ac2d27 (diff) |
Move profile compilation info to CompilerOptions.
Remove one HInliner dependency on the CompilerDriver.
Test: m test-art-host-gtest
Test: testrunner.py --host --optimizing
Change-Id: If6f0ab864095641b5697c8c6f5100520f91d5e53
Diffstat (limited to 'compiler/driver/compiler_driver.h')
-rw-r--r-- | compiler/driver/compiler_driver.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/compiler/driver/compiler_driver.h b/compiler/driver/compiler_driver.h index f42e555410..b0f2dac683 100644 --- a/compiler/driver/compiler_driver.h +++ b/compiler/driver/compiler_driver.h @@ -99,8 +99,7 @@ class CompilerDriver { Compiler::Kind compiler_kind, HashSet<std::string>* image_classes, size_t thread_count, - int swap_fd, - const ProfileCompilationInfo* profile_compilation_info); + int swap_fd); ~CompilerDriver(); @@ -266,10 +265,6 @@ class CompilerDriver { return &compiled_method_storage_; } - const ProfileCompilationInfo* GetProfileCompilationInfo() const { - return profile_compilation_info_; - } - // Is `boot_image_filename` the name of a core image (small boot // image used for ART testing only)? static bool IsCoreImageFilename(const std::string& boot_image_filename) { @@ -419,9 +414,6 @@ class CompilerDriver { CompiledMethodStorage compiled_method_storage_; - // Info for profile guided compilation. - const ProfileCompilationInfo* const profile_compilation_info_; - size_t max_arena_alloc_; // Compiler for dex to dex (quickening). |