Home
last modified time | relevance | path

Searched refs:ArtMethod (Results 151 – 175 of 272) sorted by relevance

1234567891011

/art/compiler/optimizing/
Dinstruction_builder.h35 class ArtMethod; variable
66 void BuildIntrinsic(ArtMethod* method);
268 ArtMethod* method,
274 bool BuildSimpleIntrinsic(ArtMethod* method,
/art/runtime/
Druntime_callbacks.cc108 bool RuntimeCallbacks::IsMethodSafeToJit(ArtMethod* m) { in IsMethodSafeToJit()
119 bool RuntimeCallbacks::IsMethodBeingInspected(ArtMethod* m) { in IsMethodBeingInspected()
128 bool RuntimeCallbacks::MethodNeedsDebugVersion(ArtMethod* m) { in MethodNeedsDebugVersion()
322 void RuntimeCallbacks::RegisterNativeMethod(ArtMethod* method, in RegisterNativeMethod()
Dreflection.h31 class ArtMethod; variable
110 ArtMethod* constructor,
Dhidden_api_test.cc69 ArtMethod* getArtMethod(const char* class_name, const char* name, const char* signature) { in getArtMethod()
73 ArtMethod* art_method = jni::DecodeArtMethod(method_id); in getArtMethod()
109 ArtMethod* class1_init_;
110 ArtMethod* class1_method1_;
111 ArtMethod* class1_method1_i_;
112 ArtMethod* class1_method12_;
114 ArtMethod* class12_method1_;
116 ArtMethod* class2_method1_;
117 ArtMethod* class2_method1_i_;
119 ArtMethod* class3_method1_;
[all …]
Dmonitor_objects_stack_visitor.cc26 ArtMethod* m = GetMethod(); in VisitFrame()
Dmonitor.cc162 ArtMethod* lock_owner_method; in SetLockingMethod()
178 ArtMethod* m = GetMethod(); in SetLockingMethod()
192 ArtMethod* method_; in SetLockingMethod()
207 ArtMethod* lock_owner_method = owner->GetCurrentMethod(&lock_owner_dex_pc); in SetLockingMethodNoProxy()
342 ArtMethod* method = nullptr; in AtraceMonitorLockImpl()
349 ArtMethod* m = stack_visitor->GetMethod(); in AtraceMonitorLockImpl()
400 ArtMethod* owners_method, in PrettyContentionInfo()
458 ArtMethod* owners_method; in Lock()
484 ArtMethod* m = self->GetCurrentMethod(&pc); in Lock()
489 << ArtMethod::PrettyMethod(m) << "(" << (filename != nullptr ? filename : "null") in Lock()
[all …]
Dimage.cc146 ArtMethod* ImageHeader::GetImageMethod(ImageMethod index) const { in GetImageMethod()
148 return reinterpret_cast<ArtMethod*>(image_methods_[index]); in GetImageMethod()
Dhidden_api.h185 explicit MemberSignature(ArtMethod* method) REQUIRES_SHARED(Locks::mutator_lock_);
232 inline ArtMethod* GetInterfaceMemberIfProxy(ArtMethod* method) in GetInterfaceMemberIfProxy()
280 ALWAYS_INLINE inline uint32_t GetRuntimeFlags(ArtMethod* method) in GetRuntimeFlags()
/art/runtime/dex/
Ddex_file_annotations.cc68 explicit ClassData(ArtMethod* method) REQUIRES_SHARED(Locks::mutator_lock_) in REQUIRES_SHARED()
119 ArtMethod* method, in ClassData()
130 ArtMethod* method_;
305 inline const AnnotationSetItem* FindAnnotationSetForMethod(ArtMethod* method) in FindAnnotationSetForMethod()
315 const ParameterAnnotationsItem* FindAnnotationsItemForMethod(ArtMethod* method) in FindAnnotationsItemForMethod()
401 ArtMethod* create_annotation_method = in ProcessEncodedAnnotation()
518 ArtMethod* method = class_linker->ResolveMethodWithoutInvokeType( in ProcessAnnotationValue()
711 ArtMethod* annotation_method = in CreateAnnotationMember()
744 ArtMethod* annotation_member_init = in CreateAnnotationMember()
1031 ObjPtr<mirror::Object> GetAnnotationDefaultValue(ArtMethod* method) { in GetAnnotationDefaultValue()
[all …]
/art/test/004-ReferenceMap/
Dstack_walk_refmap_jni.cc44 ArtMethod* m = GetMethod(); in VisitFrame()
/art/test/564-checker-irreducible-loop/smali/
DIrreducibleLoop.smali36 # The else part: a block uses the ArtMethod and branches to
38 # ArtMethod was a live_in of the last block before the loop, but did not have
/art/runtime/arch/
Dstub_test.cc80 ArtMethod* referrer) { in Invoke3WithReferrer()
86 Thread* self, ArtMethod* referrer, size_t hidden) { in Invoke3WithReferrerAndHidden()
1046 ArtMethod* referrer, StubTest* test) in GetSetBooleanStatic()
1076 static void GetSetByteStatic(ArtField* f, Thread* self, ArtMethod* referrer, in GetSetByteStatic()
1108 ArtMethod* referrer, StubTest* test) in GetSetBooleanInstance()
1143 Thread* self, ArtMethod* referrer, StubTest* test) in GetSetByteInstance()
1177 static void GetSetCharStatic(ArtField* f, Thread* self, ArtMethod* referrer, in GetSetCharStatic()
1208 ArtMethod* referrer, StubTest* test) in GetSetShortStatic()
1239 Thread* self, ArtMethod* referrer, StubTest* test) in GetSetCharInstance()
1273 Thread* self, ArtMethod* referrer, StubTest* test) in GetSetShortInstance()
[all …]
/art/runtime/interpreter/
Dinterpreter_common.h129 bool DoCall(ArtMethod* called_method, Thread* self, ShadowFrame& shadow_frame,
132 bool UseFastInterpreterToInterpreterInvoke(ArtMethod* method)
147 ArtMethod* method,
246 ArtMethod* sf_method = shadow_frame.GetMethod(); in DoInvoke()
252 ArtMethod* resolved_method; in DoInvoke()
256 resolved_method = reinterpret_cast<ArtMethod*>(tls_value); in DoInvoke()
276 ArtMethod* called_method; in DoInvoke()
410 ArtMethod* referrer) in ResolveMethodHandle()
418 ArtMethod* referrer) in ResolveMethodType()
805 ArtMethod* method = shadow_frame.GetMethod(); in ResolveString()
[all …]
Dinterpreter_common.cc70 bool UseFastInterpreterToInterpreterInvoke(ArtMethod* method) { in UseFastInterpreterToInterpreterInvoke()
100 ArtMethod* method, in SendMethodExitEvents()
133 ArtMethod* method,
142 ArtMethod* method,
239 static ALWAYS_INLINE bool DoCallCommon(ArtMethod* called_method,
258 ArtMethod* caller, in ArtInterpreterToCompiledCodeBridge()
263 ArtMethod* method = shadow_frame->GetMethod(); in ArtInterpreterToCompiledCodeBridge()
566 ArtMethod* invoke_method = in DO_VAR_HANDLE_ACCESSOR()
636 ArtMethod* referrer, in GetArgumentForBootstrapMethod()
718 ArtMethod* referrer, in PackArgumentForBootstrapMethod()
[all …]
/art/test/661-oat-writer-layout/
Doat_writer_layout.cc40 ArtMethod* art_method = exec->GetArtMethod(); in Java_Main_getOatMethodQuickCode()
/art/openjdkjvmti/
Devents.cc629 art::ArtMethod* method, in MethodEntered()
646 art::ArtMethod* method, in MethodExited()
701 art::ArtMethod* method, in MethodExited()
752 art::ArtMethod* method, in MethodUnwind()
782 art::ArtMethod* method, in DexPcMoved()
808 art::ArtMethod* method_p, in FieldRead()
815 art::ReflectiveHandle<art::ArtMethod> method(rhs.NewHandle(method_p)); in FieldRead()
835 art::ArtMethod* method_p, in FieldWritten()
844 art::ReflectiveHandle<art::ArtMethod> method(rhs.NewHandle(method_p)); in FieldWritten()
870 art::ArtMethod* method_p, in FieldWritten()
[all …]
/art/dex2oat/linker/
Dimage_test.cc126 ArtMethod* origin = iface_klass->FindInterfaceMethod("defaultMethod", "()V", pointer_size); in TEST_F()
136 ArtMethod* copied = FindCopiedMethod(origin, impl_klass); in TEST_F()
/art/runtime/arch/x86/
Dfault_handler_x86.cc281 ArtMethod** out_method, in GetMethodAndReturnPcAndSp()
302 *out_method = reinterpret_cast<ArtMethod*>(uc->CTX_METHOD); in GetMethodAndReturnPcAndSp()
306 *out_method = *reinterpret_cast<ArtMethod**>(*out_sp); in GetMethodAndReturnPcAndSp()
/art/runtime/native/
Djava_lang_invoke_MethodHandleImpl.cc49 ArtMethod* const method = handle->GetTargetMethod(); in MethodHandleImpl_getMemberInternal()
/art/compiler/jni/quick/
Djni_compiler.h27 class ArtMethod; variable
/art/runtime/entrypoints/quick/
Dcallee_save_frame.h35 class ArtMethod; variable
/art/test/004-StackWalk/
Dstack_walk_jni.cc42 ArtMethod* m = GetMethod(); in VisitFrame()
/art/runtime/mirror/
Dthrowable.cc121 ArtMethod* method = method_trace->GetElementPtrSize<ArtMethod*>(i, ptr_size); in Dump()
Dclass_ext-inl.h170 VisitMethods<kReadBarrierOption>([&](ArtMethod* method) { in VisitNativeRoots()
181 ArtMethod* method = arr->GetElementPtrSize<ArtMethod*>(i, pointer_size); in VisitMethods()
/art/runtime/verifier/
Dverifier_deps.h36 class ArtMethod; variable
107 ArtMethod* method)
290 ArtMethod* method)
316 ArtMethod* method)

1234567891011