Searched defs:mUnit (Results 1 - 2 of 2) sorted by relevance

/art/compiler/driver/
H A Dcompiler_driver-inl.h40 const DexCompilationUnit* mUnit) {
41 DCHECK_EQ(dex_cache->GetDexFile(), mUnit->GetDexFile());
42 DCHECK_EQ(class_loader.Get(), mUnit->GetClassLoader().Get());
44 mUnit->GetClassLinker()->ResolveType(cls_index, dex_cache, class_loader);
57 const DexCompilationUnit* mUnit) {
58 DCHECK_EQ(dex_cache->GetDexFile(), mUnit->GetDexFile());
59 DCHECK_EQ(class_loader.Get(), mUnit->GetClassLoader().Get());
61 mUnit->GetDexFile()->GetMethodId(mUnit->GetDexMethodIndex());
62 return ResolveClass(soa, dex_cache, class_loader, referrer_method_id.class_idx_, mUnit);
35 ResolveClass( const ScopedObjectAccess& soa, Handle<mirror::DexCache> dex_cache, Handle<mirror::ClassLoader> class_loader, dex::TypeIndex cls_index, const DexCompilationUnit* mUnit) argument
53 ResolveCompilingMethodsClass( const ScopedObjectAccess& soa, Handle<mirror::DexCache> dex_cache, Handle<mirror::ClassLoader> class_loader, const DexCompilationUnit* mUnit) argument
102 ResolveMethod( ScopedObjectAccess& soa, Handle<mirror::DexCache> dex_cache, Handle<mirror::ClassLoader> class_loader, const DexCompilationUnit* mUnit, uint32_t method_idx, InvokeType invoke_type) argument
[all...]
H A Dcompiler_driver.cc1439 const DexCompilationUnit* mUnit,
1445 Handle<mirror::DexCache> dex_cache(mUnit->GetDexCache());
1447 Handle<mirror::ClassLoader> class_loader = mUnit->GetClassLoader();
1450 ? ResolveCompilingMethodsClass(soa, dex_cache, class_loader, mUnit) : nullptr;
1462 bool CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit, argument
1466 ArtField* resolved_field = ComputeInstanceFieldInfo(field_idx, mUnit, is_put, soa);
1486 bool CompilerDriver::IsSafeCast(const DexCompilationUnit* mUnit, uint32_t dex_pc) { argument
1491 DCHECK(mUnit->GetVerifiedMethod() != nullptr);
1492 bool result = mUnit->GetVerifiedMethod()->IsSafeCast(dex_pc);
1438 ComputeInstanceFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit, bool is_put, const ScopedObjectAccess& soa) argument

Completed in 48 milliseconds