summaryrefslogtreecommitdiff
path: root/compiler/driver/compiler_options.h
diff options
context:
space:
mode:
author Vladimir Marko <vmarko@google.com> 2022-09-27 14:47:22 +0200
committer Vladimir Marko <vmarko@google.com> 2022-09-30 09:01:08 +0200
commitd46716b7fae296d48dff663ced83889a7e2a9a11 (patch)
treeae4729d8711ffd040c451548b092355313e81f52 /compiler/driver/compiler_options.h
parent35be57fee6702d3847177343ab91899ba402eb9c (diff)
Move `VerificationResults` to dex2oat/.
Test: m test-art-host-gtest Test: testrunner.py --host --optimizing Change-Id: Iff62c9b8c6e553113cbd12765bf0f691bbe24227
Diffstat (limited to 'compiler/driver/compiler_options.h')
-rw-r--r--compiler/driver/compiler_options.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/compiler/driver/compiler_options.h b/compiler/driver/compiler_options.h
index 20f54bdecd..1afa2c5d34 100644
--- a/compiler/driver/compiler_options.h
+++ b/compiler/driver/compiler_options.h
@@ -49,7 +49,6 @@ class DexFile;
enum class InstructionSet;
class InstructionSetFeatures;
class ProfileCompilationInfo;
-class VerificationResults;
// Enum for CheckProfileMethodsCompiled. Outside CompilerOptions so it can be forward-declared.
enum class ProfileMethodsCheck : uint8_t {
@@ -305,8 +304,6 @@ class CompilerOptions final {
// classes. `pretty_descriptor` should be the result of calling `PrettyDescriptor`.
bool IsPreloadedClass(const char* pretty_descriptor) const;
- const VerificationResults* GetVerificationResults() const;
-
bool ParseCompilerOptions(const std::vector<std::string>& options,
bool ignore_unrecognized,
std::string* error_msg);
@@ -423,9 +420,6 @@ class CompilerOptions final {
// boot image extension compilation.
HashSet<std::string> preloaded_classes_;
- // Results of AOT verification.
- const VerificationResults* verification_results_;
-
CompilerType compiler_type_;
ImageType image_type_;
bool multi_image_;