From c7f832061fea59fd6abd125f26c8ca1faec695a5 Mon Sep 17 00:00:00 2001 From: Vladimir Marko Date: Fri, 24 Jan 2014 17:55:18 +0000 Subject: Refactor verification results. Rename VerificationMethodsData to VerificationResults. Create new class VerifiedMethod to hold all the data for a given method. Change-Id: Ife1ac67cede20f3a2f9c7f5345f08a851cf1ed20 --- compiler/driver/compiler_driver.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'compiler/driver/compiler_driver.h') diff --git a/compiler/driver/compiler_driver.h b/compiler/driver/compiler_driver.h index eef94a1fc1..f8aa868017 100644 --- a/compiler/driver/compiler_driver.h +++ b/compiler/driver/compiler_driver.h @@ -44,7 +44,7 @@ class DexCompilationUnit; class DexFileToMethodInlinerMap; class OatWriter; class TimingLogger; -class VerifiedMethodsData; +class VerificationResults; enum CompilerBackend { kQuick, @@ -92,7 +92,7 @@ class CompilerDriver { // enabled. "image_classes" lets the compiler know what classes it // can assume will be in the image, with NULL implying all available // classes. - explicit CompilerDriver(VerifiedMethodsData* verified_methods_data, + explicit CompilerDriver(VerificationResults* verification_results, DexFileToMethodInlinerMap* method_inliner_map, CompilerBackend compiler_backend, InstructionSet instruction_set, InstructionSetFeatures instruction_set_features, @@ -109,8 +109,8 @@ class CompilerDriver { void CompileOne(const mirror::ArtMethod* method, TimingLogger& timings) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); - VerifiedMethodsData* GetVerifiedMethodsData() const { - return verified_methods_data_; + VerificationResults* GetVerificationResults() const { + return verification_results_; } DexFileToMethodInlinerMap* GetMethodInlinerMap() const { @@ -486,7 +486,7 @@ class CompilerDriver { std::vector methods_to_patch_; std::vector classes_to_patch_; - VerifiedMethodsData* verified_methods_data_; + VerificationResults* verification_results_; DexFileToMethodInlinerMap* method_inliner_map_; CompilerBackend compiler_backend_; -- cgit v1.2.3-59-g8ed1b