Searched defs:resolved (Results 1 - 4 of 4) sorted by relevance

/art/runtime/mirror/
H A Ddex_cache-inl.h46 inline void DexCache::SetResolvedType(uint32_t type_idx, Class* resolved) { argument
48 DCHECK(resolved == nullptr || !resolved->IsErroneous());
49 GetResolvedTypes()->Set(type_idx, resolved);
/art/runtime/
H A Ddex_file.cc1214 mirror::String* resolved = linker_->ResolveString(dex_file_, jval_.i, *dex_cache_); local
1215 field->SetObject<kTransactionActive>(field->GetDeclaringClass(), resolved);
1220 mirror::Class* resolved = linker_->ResolveType(dex_file_, jval_.i, *dex_cache_, local
1222 field->SetObject<kTransactionActive>(field->GetDeclaringClass(), resolved);
H A Dclass_linker.cc520 // Ensure void type is resolved in the core's dex cache so java.lang.Void is correctly
547 // as the types of the field can't be resolved prior to the runtime being
2249 // size when the class becomes resolved.
2314 * The class has been prepared and resolved but possibly not yet verified
3600 // Make sure all classes referenced by catch blocks are resolved.
3680 // dex caches with all types resolved during verification.
3699 // v1 gets assigned a type of resolved class Foo
3758 // Ensure exception types are resolved so that they don't need resolution to be delivered,
3877 // Must hold lock on object when resolved.
4471 // This will notify waiters on klass that saw the not yet resolved
5620 mirror::String* resolved = dex_cache->GetResolvedString(string_idx); local
5643 mirror::Class* resolved = dex_cache->GetResolvedType(type_idx); local
5679 mirror::ArtMethod* resolved = dex_cache->GetResolvedMethod(method_idx); local
5830 mirror::ArtField* resolved = dex_cache->GetResolvedField(field_idx); local
5872 mirror::ArtField* resolved = dex_cache->GetResolvedField(field_idx); local
[all...]
/art/compiler/driver/
H A Dcompiler_driver.cc105 DumpStat(resolved_types_, unresolved_types_, "types resolved");
106 DumpStat(resolved_instance_fields_, unresolved_instance_fields_, "instance fields resolved");
108 "static fields resolved");
122 oss << static_cast<InvokeType>(i) << " methods were AOT resolved";
216 // Indicate that a method of the given type was resolved at compile time.
246 // Indicate that a method of the given type was able to be resolved directly from boot.
670 // Add to set of types to resolve if not already in the dex cache resolved types
740 // exceptions are resolved by the verifier when there is a catch block in an interested method.
1041 void CompilerDriver::ProcessedInstanceField(bool resolved) { argument
1042 if (!resolved) {
1049 ProcessedStaticField(bool resolved, bool local) argument
[all...]

Completed in 116 milliseconds