Home
last modified time | relevance | path

Searched refs:thread_deps (Results 1 – 2 of 2) sorted by relevance

/art/runtime/verifier/
Dverifier_deps.cc505 VerifierDeps* thread_deps = GetThreadLocalVerifierDeps(); in MaybeRecordVerificationStatus() local
506 if (thread_deps != nullptr) { in MaybeRecordVerificationStatus()
507 DexFileDeps* dex_deps = thread_deps->GetDexFileDeps(dex_file); in MaybeRecordVerificationStatus()
515 VerifierDeps* thread_deps = GetThreadLocalVerifierDeps(); in MaybeRecordClassResolution() local
516 if (thread_deps != nullptr) { in MaybeRecordClassResolution()
517 thread_deps->AddClassResolution(dex_file, type_idx, klass); in MaybeRecordClassResolution()
524 VerifierDeps* thread_deps = GetThreadLocalVerifierDeps(); in MaybeRecordFieldResolution() local
525 if (thread_deps != nullptr) { in MaybeRecordFieldResolution()
526 thread_deps->AddFieldResolution(dex_file, field_idx, field); in MaybeRecordFieldResolution()
533 VerifierDeps* thread_deps = GetThreadLocalVerifierDeps(); in MaybeRecordMethodResolution() local
[all …]
/art/compiler/driver/
Dcompiler_driver.cc2023 verifier::VerifierDeps* thread_deps = worker->GetThread()->GetVerifierDeps(); in Verify() local
2025 verifier_deps->MergeWith(*thread_deps, dex_files_for_oat_file_); in Verify()
2026 delete thread_deps; in Verify()