From 8447d84d847d4562d7a7bce62768c27e7d20a9aa Mon Sep 17 00:00:00 2001 From: Anwar Ghuloum Date: Tue, 30 Apr 2013 17:27:40 -0700 Subject: 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 --- src/compiler/driver/compiler_driver.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'src/compiler/driver/compiler_driver.h') 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* 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 stats_; -- cgit v1.2.3