summaryrefslogtreecommitdiff
path: root/compiler/driver/compiler_driver.h
diff options
context:
space:
mode:
author Vladimir Marko <vmarko@google.com> 2018-11-08 10:28:48 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2018-11-08 10:28:48 +0000
commit82b67b2ef24a2475e88135ec63aa50270aad0254 (patch)
treef08befc96a48e721f40f597a13949b7aed68602f /compiler/driver/compiler_driver.h
parentb1fcebe160ace50dfd38efae7439640b2ac4268f (diff)
parent1a2a5cd58b7b667b664a7c20a4887a6cd89b4776 (diff)
Merge "Move profile compilation info to CompilerOptions."
Diffstat (limited to 'compiler/driver/compiler_driver.h')
-rw-r--r--compiler/driver/compiler_driver.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/compiler/driver/compiler_driver.h b/compiler/driver/compiler_driver.h
index 4866faf01e..94efdd8304 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();
@@ -247,10 +246,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) {
@@ -394,9 +389,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).