diff options
author | 2022-09-27 14:47:22 +0200 | |
---|---|---|
committer | 2022-09-30 09:01:08 +0200 | |
commit | d46716b7fae296d48dff663ced83889a7e2a9a11 (patch) | |
tree | ae4729d8711ffd040c451548b092355313e81f52 /compiler/driver/compiler_options.cc | |
parent | 35be57fee6702d3847177343ab91899ba402eb9c (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.cc')
-rw-r--r-- | compiler/driver/compiler_options.cc | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/compiler/driver/compiler_options.cc b/compiler/driver/compiler_options.cc index a531bc91ff..8c2c8f30f9 100644 --- a/compiler/driver/compiler_options.cc +++ b/compiler/driver/compiler_options.cc @@ -31,7 +31,6 @@ #include "cmdline_parser.h" #include "compiler_options_map-inl.h" #include "dex/dex_file-inl.h" -#include "dex/verification_results.h" #include "runtime.h" #include "scoped_thread_state_change-inl.h" #include "simple_compiler_options_map.h" @@ -49,7 +48,6 @@ CompilerOptions::CompilerOptions() no_inline_from_(), dex_files_for_oat_file_(), image_classes_(), - verification_results_(nullptr), compiler_type_(CompilerType::kAotCompiler), image_type_(ImageType::kNone), multi_image_(false), @@ -156,11 +154,6 @@ bool CompilerOptions::IsPreloadedClass(const char* pretty_descriptor) const { return preloaded_classes_.find(std::string_view(pretty_descriptor)) != preloaded_classes_.end(); } -const VerificationResults* CompilerOptions::GetVerificationResults() const { - DCHECK(Runtime::Current()->IsAotCompiler()); - return verification_results_; -} - bool CompilerOptions::ShouldCompileWithClinitCheck(ArtMethod* method) const { if (method != nullptr && Runtime::Current()->IsAotCompiler() && |