Home
last modified time | relevance | path

Searched refs:verified_method (Results 1 – 7 of 7) sorted by relevance

/art/compiler/dex/
Dverification_results.cc51 const VerifiedMethod* verified_method = VerifiedMethod::Create(method_verifier, compile); in ProcessVerifiedMethod() local
52 if (verified_method == nullptr) { in ProcessVerifiedMethod()
64 DCHECK_EQ(it->second->GetDevirtMap().size(), verified_method->GetDevirtMap().size()); in ProcessVerifiedMethod()
65 DCHECK_EQ(it->second->GetSafeCastSet().size(), verified_method->GetSafeCastSet().size()); in ProcessVerifiedMethod()
70 delete verified_method; in ProcessVerifiedMethod()
73 verified_methods_.Put(ref, verified_method); in ProcessVerifiedMethod()
Dverified_method.cc46 std::unique_ptr<VerifiedMethod> verified_method( in Create() local
53 verified_method->GenerateDevirtMap(method_verifier); in Create()
58 !verified_method->GenerateDequickenMap(method_verifier)) { in Create()
64 verified_method->GenerateSafeCastSet(method_verifier); in Create()
67 return verified_method.release(); in Create()
/art/compiler/driver/
Ddex_compilation_unit.cc32 const VerifiedMethod* verified_method, in DexCompilationUnit() argument
41 verified_method_(verified_method), in DexCompilationUnit()
Ddex_compilation_unit.h44 const VerifiedMethod* verified_method,
Dcompiler_driver.cc583 const VerifiedMethod* verified_method = in CompileMethod() local
596 (verified_method != nullptr) in CompileMethod()
612 const VerifiedMethod* verified_method = in CompileMethod() local
619 verified_method != nullptr && in CompileMethod()
621 !verified_method->HasRuntimeThrow() && in CompileMethod()
622 (verified_method->GetEncounteredVerificationFailures() & in CompileMethod()
2796 const VerifiedMethod* verified_method = GetVerifiedMethod(&dex_file, method_idx); in IsMethodVerifiedWithoutFailures() local
2797 if (verified_method != nullptr) { in IsMethodVerifiedWithoutFailures()
2798 return !verified_method->HasVerificationFailures(); in IsMethodVerifiedWithoutFailures()
/art/compiler/optimizing/
Doptimizing_compiler.cc798 const VerifiedMethod* verified_method = compiler_driver->GetVerifiedMethod(&dex_file, method_idx); in Compile() local
799 DCHECK(!verified_method->HasRuntimeThrow()); in Compile()
802 verified_method->GetEncounteredVerificationFailures())) { in Compile()
/art/compiler/
DAndroid.mk25 dex/verified_method.cc \