From a297b55dd8be424c7cdd4328356431d62e833d8f Mon Sep 17 00:00:00 2001 From: Mathieu Chartier Date: Wed, 7 Nov 2018 11:41:01 -0800 Subject: Delete IsClassToCompile Compiled classes filtering is no longer a thing. Bug: 26687569 Bug: 76145463 Test: test-art-host Change-Id: Iaf4b9dcea5d9fe1eae564fbd6d373af2fdc87b14 --- compiler/driver/compiler_driver.h | 8 -------- 1 file changed, 8 deletions(-) (limited to 'compiler/driver/compiler_driver.h') 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* 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> classes_to_compile_; - std::atomic number_of_soft_verifier_failures_; bool had_hard_verifier_failure_; -- cgit v1.2.3-59-g8ed1b