diff options
Diffstat (limited to 'compiler/driver/compiler_driver.h')
-rw-r--r-- | compiler/driver/compiler_driver.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/compiler/driver/compiler_driver.h b/compiler/driver/compiler_driver.h index 94efdd8304..714b2d1fc8 100644 --- a/compiler/driver/compiler_driver.h +++ b/compiler/driver/compiler_driver.h @@ -209,9 +209,6 @@ class CompilerDriver { return compiled_method_storage_.DedupeEnabled(); } - // Checks whether the provided class should be compiled, i.e., is in classes_to_compile_. - bool IsClassToCompile(const char* descriptor) const; - // Checks whether profile guided compilation is enabled and if the method should be compiled // according to the profile file. bool ShouldCompileBasedOnProfile(const MethodReference& method_ref) const; @@ -368,11 +365,6 @@ class CompilerDriver { // Dex2Oat rather than implicitly by CompileAll(). HashSet<std::string>* image_classes_; - // Specifies the classes that will be compiled. Note that if classes_to_compile_ is null, - // all classes are eligible for compilation (duplication filters etc. will still apply). - // This option may be restricted to the boot image, depending on a flag in the implementation. - std::unique_ptr<HashSet<std::string>> classes_to_compile_; - std::atomic<uint32_t> number_of_soft_verifier_failures_; bool had_hard_verifier_failure_; |