Home
last modified time | relevance | path

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

/art/runtime/
Dart_method-inl.h146 inline void ArtMethod::SetDexCacheResolvedMethod(uint16_t method_index, ArtMethod* new_method, in SetDexCacheResolvedMethod() argument
153 DCHECK(new_method == nullptr || new_method->GetDeclaringClass() != nullptr); in SetDexCacheResolvedMethod()
156 new_method, in SetDexCacheResolvedMethod()
Dclass_linker.cc6852 ArtMethod& new_method = *out; in LinkInterfaceMethods() local
6853 new_method.CopyFrom(mir_method, image_pointer_size_); in LinkInterfaceMethods()
6854 new_method.SetAccessFlags(new_method.GetAccessFlags() | kAccMiranda | kAccCopied); in LinkInterfaceMethods()
6855 DCHECK_NE(new_method.GetAccessFlags() & kAccAbstract, 0u) in LinkInterfaceMethods()
6857 move_table.emplace(mir_method, &new_method); in LinkInterfaceMethods()
6867 ArtMethod& new_method = *out; in LinkInterfaceMethods() local
6868 new_method.CopyFrom(def_method, image_pointer_size_); in LinkInterfaceMethods()
6875 new_method.SetAccessFlags((new_method.GetAccessFlags() | kSetFlags) & kMaskFlags); in LinkInterfaceMethods()
6876 move_table.emplace(def_method, &new_method); in LinkInterfaceMethods()
6880 ArtMethod& new_method = *out; in LinkInterfaceMethods() local
[all …]
Dclass_linker.h875 static MethodTranslation CreateTranslatedMethod(ArtMethod* new_method) { in CreateTranslatedMethod() argument
876 return MethodTranslation(Type::kTranslation, new_method); in CreateTranslatedMethod()
Dart_method.h415 ArtMethod* new_method,
/art/compiler/optimizing/
Dinliner.cc650 ArtMethod* new_method = nullptr; in TryInlinePolymorphicCallToSameTarget() local
652 new_method = ic.GetTypeAt(i)->GetEmbeddedImTableEntry( in TryInlinePolymorphicCallToSameTarget()
654 if (new_method->IsRuntimeMethod()) { in TryInlinePolymorphicCallToSameTarget()
661 new_method = ic.GetTypeAt(i)->GetEmbeddedVTableEntry(method_index, pointer_size); in TryInlinePolymorphicCallToSameTarget()
663 DCHECK(new_method != nullptr); in TryInlinePolymorphicCallToSameTarget()
665 actual_method = new_method; in TryInlinePolymorphicCallToSameTarget()
666 } else if (actual_method != new_method) { in TryInlinePolymorphicCallToSameTarget()
/art/runtime/mirror/
Dclass-inl.h1091 ArtMethod* new_method = visitor(method); in FixupNativePointers() local
1092 if (method != new_method) { in FixupNativePointers()
1093 dest->SetEmbeddedVTableEntryUnchecked(i, new_method, pointer_size); in FixupNativePointers()
1099 ArtMethod* new_method = visitor(method); in FixupNativePointers() local
1100 if (method != new_method) { in FixupNativePointers()
1102 new_method, in FixupNativePointers()
/art/test/004-JniTest/
Djni_test.cc688 jmethodID new_method = env_->GetMethodID(concrete_class_, "<init>", "()V"); in TestCalls() local
689 jobject obj = env_->NewObject(concrete_class_, new_method); in TestCalls()