HomeSort by relevance Sort by last modified time
    Searched defs:art_method (Results 1 - 5 of 5) sorted by null

  /art/compiler/optimizing/
intrinsics.cc 20 #include "art_method-inl.h"
121 ArtMethod* art_method = invoke->GetResolvedMethod(); local
123 return (art_method->IsFinal() || art_method->GetDeclaringClass()->IsFinal());
144 ArtMethod* art_method = invoke->GetResolvedMethod(); local
145 if (art_method != nullptr && art_method->IsIntrinsic()) {
146 Intrinsics intrinsic = static_cast<Intrinsics>(art_method->GetIntrinsic());
150 << art_method->PrettyMethod()
stack_map_test.cc 19 #include "art_method.h"
133 ArtMethod art_method; local
143 stream.BeginInlineInfoEntry(&art_method, 3, number_of_dex_registers_in_inline_info);
145 stream.BeginInlineInfoEntry(&art_method, 2, number_of_dex_registers_in_inline_info);
417 ArtMethod art_method; local
427 stream.BeginInlineInfoEntry(&art_method, 3, number_of_dex_registers_in_inline_info);
760 ArtMethod art_method; local
    [all...]
  /art/runtime/native/
java_lang_reflect_Executable.cc 21 #include "art_method-inl.h"
92 ArtMethod* art_method = executable.Get()->GetArtMethod(); local
93 if (art_method->GetDeclaringClass()->IsProxyClass()) {
101 if (!annotations::GetParametersMetadataForMethod(art_method, &names, &access_flags)) {
109 art_method->PrettyMethod().c_str()).c_str());
120 art_method->PrettyMethod().c_str(),
  /art/runtime/openjdkjvmti/
ti_method.cc 35 #include "art_method-inl.h"
100 art::ArtMethod* art_method = art::jni::DecodeArtMethod(method); local
102 if (art_method->IsNative()) {
111 if (art_method->IsProxyMethod() || art_method->IsAbstract()) {
113 art::ArtMethod* base_method = art_method->GetInterfaceMethodIfProxy(art::kRuntimePointerSize);
122 DCHECK_NE(art_method->GetCodeItemOffset(), 0u);
123 *size_ptr = art_method->GetCodeItem()->ins_size_;
134 art::ArtMethod* art_method = art::jni::DecodeArtMethod(method); local
136 if (art_method->IsNative())
163 art::ArtMethod* art_method = art::jni::DecodeArtMethod(method); local
230 art::ArtMethod* art_method = art::jni::DecodeArtMethod(method); local
247 art::ArtMethod* art_method = art::jni::DecodeArtMethod(method); local
279 art::ArtMethod* art_method = art::jni::DecodeArtMethod(method); local
313 art::ArtMethod* art_method = art::jni::DecodeArtMethod(method); local
367 art::ArtMethod* art_method = art::jni::DecodeArtMethod(method); local
    [all...]
  /art/imgdiag/
imgdiag.cc 32 #include "art_method-inl.h"
603 ArtMethod* art_method = reinterpret_cast<ArtMethod*>(remote_obj); local
612 art_method_dirty_objects.push_back(art_method);
699 auto art_method = art_method_dirty_objects[i]; local
701 os << reinterpret_cast<void*>(art_method) << ", ";
721 auto art_method = reinterpret_cast<ArtMethod*>(obj); local
725 FixUpRemotePointer(art_method->GetDeclaringClass(), remote_contents, boot_map);
736 art_method->GetDataPtrSize(pointer_size)) << ", ";
739 art_method->GetEntryPointFromQuickCompiledCodePtrSize(pointer_size))
741 os << " isNative? " << (art_method->IsNative() ? "yes" : "no") << ", "
809 auto art_method = reinterpret_cast<ArtMethod*>(obj); local
    [all...]

Completed in 189 milliseconds