diff options
author | Vladimir Marko <vmarko@google.com> | 2014-01-24 17:55:18 +0000 |
---|---|---|
committer | Vladimir Marko <vmarko@google.com> | 2014-01-28 11:22:42 +0000 |
commit | c7f832061fea59fd6abd125f26c8ca1faec695a5 (patch) | |
tree | 183afb5dfc1f4e6fb81f14707caffa558d31dbcc /compiler/llvm | |
parent | 7ea5dafc81b2bba7cabad26130bb75dc8f709803 (diff) | |
download | art-c7f832061fea59fd6abd125f26c8ca1faec695a5.zip art-c7f832061fea59fd6abd125f26c8ca1faec695a5.tar.gz art-c7f832061fea59fd6abd125f26c8ca1faec695a5.tar.bz2 |
Refactor verification results.
Rename VerificationMethodsData to VerificationResults.
Create new class VerifiedMethod to hold all the data for
a given method.
Change-Id: Ife1ac67cede20f3a2f9c7f5345f08a851cf1ed20
Diffstat (limited to 'compiler/llvm')
-rw-r--r-- | compiler/llvm/compiler_llvm.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/llvm/compiler_llvm.cc b/compiler/llvm/compiler_llvm.cc index 35d1ecd..8f996fa 100644 --- a/compiler/llvm/compiler_llvm.cc +++ b/compiler/llvm/compiler_llvm.cc @@ -20,7 +20,7 @@ #include "base/stl_util.h" #include "class_linker.h" #include "compiled_method.h" -#include "dex/verified_methods_data.h" +#include "dex/verification_results.h" #include "driver/compiler_driver.h" #include "driver/dex_compilation_unit.h" #include "globals.h" @@ -157,7 +157,7 @@ CompileDexMethod(DexCompilationUnit* dex_compilation_unit, InvokeType invoke_typ dex_compilation_unit->GetDexMethodIndex()); return new CompiledMethod(*compiler_driver_, compiler_driver_->GetInstructionSet(), cunit->GetElfObject(), - *compiler_driver_->GetVerifiedMethodsData()->GetDexGcMap(mref), + *compiler_driver_->GetVerificationResults()->GetDexGcMap(mref), cunit->GetDexCompilationUnit()->GetSymbol()); } |