summaryrefslogtreecommitdiff
path: root/compiler/driver/compiler_driver.h
diff options
context:
space:
mode:
author Mathieu Chartier <mathieuc@google.com> 2018-11-07 11:41:01 -0800
committer Mathieu Chartier <mathieuc@google.com> 2018-11-08 08:59:24 -0800
commita297b55dd8be424c7cdd4328356431d62e833d8f (patch)
tree4e1ff9218394e44fc8c99d13d4d6fe92851c6b5f /compiler/driver/compiler_driver.h
parenta5de05da46e8a93436e68e7e0d242dce46269527 (diff)
Delete IsClassToCompile
Compiled classes filtering is no longer a thing. Bug: 26687569 Bug: 76145463 Test: test-art-host Change-Id: Iaf4b9dcea5d9fe1eae564fbd6d373af2fdc87b14
Diffstat (limited to 'compiler/driver/compiler_driver.h')
-rw-r--r--compiler/driver/compiler_driver.h8
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_;