summaryrefslogtreecommitdiffstats
path: root/src/compiler/driver/compiler_driver.h
diff options
context:
space:
mode:
authorAnwar Ghuloum <anwarg@google.com>2013-04-30 17:27:40 -0700
committerAnwar Ghuloum <anwarg@google.com>2013-04-30 20:32:59 -0700
commit8447d84d847d4562d7a7bce62768c27e7d20a9aa (patch)
tree46aad5bf1bc3d3ce28b24ef1fcc5463224083991 /src/compiler/driver/compiler_driver.h
parent88fc036842eb3c48acd5d3b01e75b3012c996d90 (diff)
downloadandroid_art-8447d84d847d4562d7a7bce62768c27e7d20a9aa.tar.gz
android_art-8447d84d847d4562d7a7bce62768c27e7d20a9aa.tar.bz2
android_art-8447d84d847d4562d7a7bce62768c27e7d20a9aa.zip
Compile filter for small applications and methods
Adds a filter per method and program size (in method count). Right now, options are treated as runtime options...but we might want to change this and separate options for compilers and runtime. Change-Id: I8c3e925116119af8ffa95ff09f77bcfdd173767b
Diffstat (limited to 'src/compiler/driver/compiler_driver.h')
-rw-r--r--src/compiler/driver/compiler_driver.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/compiler/driver/compiler_driver.h b/src/compiler/driver/compiler_driver.h
index a20e5ef585..7c37c6a083 100644
--- a/src/compiler/driver/compiler_driver.h
+++ b/src/compiler/driver/compiler_driver.h
@@ -67,7 +67,7 @@ class CompilerDriver {
// can assume will be in the image, with NULL implying all available
// classes.
explicit CompilerDriver(CompilerBackend compiler_backend, InstructionSet instruction_set, bool image,
- size_t thread_count, bool support_debugging, bool light_mode,
+ size_t thread_count, bool support_debugging,
const std::set<std::string>* image_classes,
bool dump_stats, bool dump_timings);
@@ -84,10 +84,6 @@ class CompilerDriver {
return support_debugging_;
}
- bool IsLightMode() const {
- return light_mode_;
- }
-
InstructionSet GetInstructionSet() const {
return instruction_set_;
}
@@ -331,7 +327,6 @@ class CompilerDriver {
bool image_;
size_t thread_count_;
bool support_debugging_;
- const bool light_mode_;
uint64_t start_ns_;
UniquePtr<AOTCompilationStats> stats_;