diff options
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). |