From d46716b7fae296d48dff663ced83889a7e2a9a11 Mon Sep 17 00:00:00 2001 From: Vladimir Marko Date: Tue, 27 Sep 2022 14:47:22 +0200 Subject: Move `VerificationResults` to dex2oat/. Test: m test-art-host-gtest Test: testrunner.py --host --optimizing Change-Id: Iff62c9b8c6e553113cbd12765bf0f691bbe24227 --- compiler/driver/compiler_options.cc | 7 ------- 1 file changed, 7 deletions(-) (limited to 'compiler/driver/compiler_options.cc') 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() && -- cgit v1.2.3-59-g8ed1b