From 1a2a5cd58b7b667b664a7c20a4887a6cd89b4776 Mon Sep 17 00:00:00 2001 From: Vladimir Marko Date: Wed, 7 Nov 2018 15:39:48 +0000 Subject: 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 --- compiler/driver/compiler_driver.h | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'compiler/driver/compiler_driver.h') 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* 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). -- cgit v1.2.3-59-g8ed1b