Home
last modified time | relevance | path

Searched defs:method (Results 1 – 25 of 104) sorted by relevance

12345

/art/runtime/
Dinstrumentation.cc89 static void UpdateEntrypoints(ArtMethod* method, const void* quick_code) in UpdateEntrypoints()
117 void Instrumentation::InstallStubsForMethod(ArtMethod* method) { in InstallStubsForMethod()
659 void Instrumentation::UpdateMethodsCode(ArtMethod* method, const void* quick_code) { in UpdateMethodsCode()
682 bool Instrumentation::AddDeoptimizedMethod(ArtMethod* method) { in AddDeoptimizedMethod()
692 bool Instrumentation::IsDeoptimizedMethod(ArtMethod* method) { in IsDeoptimizedMethod()
704 bool Instrumentation::RemoveDeoptimizedMethod(ArtMethod* method) { in RemoveDeoptimizedMethod()
717 void Instrumentation::Deoptimize(ArtMethod* method) { in Deoptimize()
740 void Instrumentation::Undeoptimize(ArtMethod* method) { in Undeoptimize()
776 bool Instrumentation::IsDeoptimized(ArtMethod* method) { in IsDeoptimized()
797 ArtMethod* method; in DisableDeoptimization() local
[all …]
Dreflection_test.cc84 void ReflectionTestMakeExecutable(ArtMethod** method, in ReflectionTestMakeExecutable()
133 ArtMethod* method; in InvokeNopMethod() local
142 ArtMethod* method; in InvokeIdentityByteMethod() local
167 ArtMethod* method; in InvokeIdentityIntMethod() local
192 ArtMethod* method; in InvokeIdentityDoubleMethod() local
217 ArtMethod* method; in InvokeSumIntIntMethod() local
246 ArtMethod* method; in InvokeSumIntIntIntMethod() local
285 ArtMethod* method; in InvokeSumIntIntIntIntMethod() local
329 ArtMethod* method; in InvokeSumIntIntIntIntIntMethod() local
378 ArtMethod* method; in InvokeSumDoubleDoubleMethod() local
[all …]
Dinstrumentation.h276 ArtMethod* method, uint32_t dex_pc) const in MethodEnterEvent()
285 ArtMethod* method, uint32_t dex_pc, in MethodExitEvent()
300 ArtMethod* method, uint32_t dex_pc) const in DexPcMovedEvent()
308 void BackwardBranch(Thread* thread, ArtMethod* method, int32_t offset) const in BackwardBranch()
317 ArtMethod* method, uint32_t dex_pc, in FieldReadEvent()
327 ArtMethod* method, uint32_t dex_pc, in FieldWriteEvent()
Dtrace.cc104 uint32_t Trace::EncodeTraceMethod(ArtMethod* method) { in EncodeTraceMethod()
120 uint32_t Trace::EncodeTraceMethodAndAction(ArtMethod* method, TraceAction action) { in EncodeTraceMethodAndAction()
630 ArtMethod* method = DecodeTraceMethod(tmid); in DumpBuf() local
744 ArtMethod* method, uint32_t new_dex_pc) { in DexPcMoved()
751 ArtMethod* method, uint32_t dex_pc, ArtField* field) in FieldRead()
759 ArtMethod* method, uint32_t dex_pc, ArtField* field, in FieldWritten()
768 ArtMethod* method, uint32_t dex_pc ATTRIBUTE_UNUSED) { in MethodEntered()
777 ArtMethod* method, uint32_t dex_pc ATTRIBUTE_UNUSED, in MethodExited()
787 ArtMethod* method, uint32_t dex_pc ATTRIBUTE_UNUSED) { in MethodUnwind()
801 void Trace::BackwardBranch(Thread* /*thread*/, ArtMethod* method, in BackwardBranch()
[all …]
Dprofiler.cc97 ArtMethod* method = thread->GetCurrentMethod(nullptr); in GetSample() local
403 bool BackgroundMethodSamplingProfiler::ProcessMethod(ArtMethod* method) { in ProcessMethod()
438 void BackgroundMethodSamplingProfiler::RecordMethod(ArtMethod* method) { in RecordMethod()
451 ArtMethod* method = stack.front().first; in RecordStack() local
485 void ProfileSampleResults::Put(ArtMethod* method) { in Put()
520 ArtMethod* method = inst_loc.first; in PutStack() local
549 MethodReference method = current->GetMethod(); in PutStack() local
580 ArtMethod *method = meth_iter.first; in Write() local
605 MethodReference method = method_iter.first; in Write() local
712 uint32_t ProfileSampleResults::Hash(ArtMethod* method) { in Hash()
[all …]
/art/runtime/mirror/
Dabstract_method.cc24 bool AbstractMethod::CreateFromArtMethod(ArtMethod* method) { in CreateFromArtMethod()
39 void AbstractMethod::SetArtMethod(ArtMethod* method) { in SetArtMethod()
Dclass.cc351 ArtMethod* method = FindDeclaredVirtualMethod(name, signature, pointer_size); in FindInterfaceMethod() local
370 ArtMethod* method = FindDeclaredVirtualMethod(name, signature, pointer_size); in FindInterfaceMethod() local
389 ArtMethod* method = FindDeclaredVirtualMethod(dex_cache, dex_method_idx, pointer_size); in FindInterfaceMethod() local
408 for (auto& method : GetDirectMethods(pointer_size)) { in FindDeclaredDirectMethod() local
418 for (auto& method : GetDirectMethods(pointer_size)) { in FindDeclaredDirectMethod() local
429 for (auto& method : GetDirectMethods(pointer_size)) { in FindDeclaredDirectMethod() local
441 ArtMethod* method = klass->FindDeclaredDirectMethod(name, signature, pointer_size); in FindDirectMethod() local
452 ArtMethod* method = klass->FindDeclaredDirectMethod(name, signature, pointer_size); in FindDirectMethod() local
463 ArtMethod* method = klass->FindDeclaredDirectMethod(dex_cache, dex_method_idx, pointer_size); in FindDirectMethod() local
473 for (auto& method : GetVirtualMethods(pointer_size)) { in FindDeclaredVirtualMethod() local
[all …]
Ddex_cache-inl.h58 auto* method = GetResolvedMethods()->GetElementPtrSize<ArtMethod*>(method_idx, ptr_size); in GetResolvedMethod() local
67 inline void DexCache::SetResolvedMethod(uint32_t idx, ArtMethod* method, size_t ptr_size) { in SetResolvedMethod()
Dmethod.cc54 Method* Method::CreateFromArtMethod(Thread* self, ArtMethod* method) { in CreateFromArtMethod()
95 Constructor* Constructor::CreateFromArtMethod(Thread* self, ArtMethod* method) { in CreateFromArtMethod()
Dclass-inl.h164 inline void Class::SetEmbeddedImTableEntry(uint32_t i, ArtMethod* method, size_t pointer_size) { in SetEmbeddedImTableEntry()
207 uint32_t i, ArtMethod* method, size_t pointer_size) { in SetEmbeddedVTableEntryUnchecked()
211 inline void Class::SetEmbeddedVTableEntry(uint32_t i, ArtMethod* method, size_t pointer_size) { in SetEmbeddedVTableEntry()
304 inline bool Class::ResolvedMethodAccessTest(Class* access_to, ArtMethod* method, in ResolvedMethodAccessTest()
346 inline bool Class::CanAccessResolvedMethod(Class* access_to, ArtMethod* method, in CanAccessResolvedMethod()
352 inline bool Class::CheckResolvedMethodAccess(Class* access_to, ArtMethod* method, in CheckResolvedMethodAccess()
371 inline ArtMethod* Class::FindVirtualMethodForInterface(ArtMethod* method, size_t pointer_size) { in FindVirtualMethodForInterface()
387 inline ArtMethod* Class::FindVirtualMethodForVirtual(ArtMethod* method, size_t pointer_size) { in FindVirtualMethodForVirtual()
394 inline ArtMethod* Class::FindVirtualMethodForSuper(ArtMethod* method, size_t pointer_size) { in FindVirtualMethodForSuper()
399 inline ArtMethod* Class::FindVirtualMethodForVirtualOrInterface(ArtMethod* method, in FindVirtualMethodForVirtualOrInterface()
/art/runtime/arch/arm/
Dquick_entrypoints_cc_arm.cc28 static void quick_invoke_reg_setup(ArtMethod* method, uint32_t* args, uint32_t args_size, in quick_invoke_reg_setup()
104 extern "C" void art_quick_invoke_stub(ArtMethod* method, uint32_t* args, uint32_t args_size, in art_quick_invoke_stub()
111 extern "C" void art_quick_invoke_static_stub(ArtMethod* method, uint32_t* args, in art_quick_invoke_static_stub()
/art/test/044-proxy/src/
DFloatSelect.java25 public float method(float a, float b); in method() method
29 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { in invoke()
/art/test/124-missing-classes/src/
DMain.java42 MissingClass method() { in method() method in Main.ClassWithMissingMethodReturnType
57 void method(MissingClass arg) {} in method() method in Main.ClassWithMissingMethodParameterType
/art/runtime/jit/
Djit_instrumentation.cc29 explicit JitCompileTask(ArtMethod* method, JitInstrumentationCache* cache) in JitCompileTask()
66 void JitInstrumentationCache::SignalCompiled(Thread* self, ArtMethod* method) { in SignalCompiled()
76 void JitInstrumentationCache::AddSamples(Thread* self, ArtMethod* method, size_t count) { in AddSamples()
Djit_code_cache.cc96 const void* JitCodeCache::GetCodeFor(ArtMethod* method) { in GetCodeFor()
109 void JitCodeCache::SaveCompiledCode(ArtMethod* method, const void* old_code_ptr) { in SaveCompiledCode()
/art/test/435-new-instance/src/
DTestInterface.java18 public void method(); in method() method
DTestClass.java20 public void method() {}; in method() method in TestClass
/art/compiler/jit/
Djit_compiler.cc58 extern "C" bool jit_compile_method(void* handle, ArtMethod* method, Thread* self) in jit_compile_method()
140 bool JitCompiler::CompileMethod(Thread* self, ArtMethod* method) { in CompileMethod()
238 bool JitCompiler::AddToCodeCache(ArtMethod* method, const CompiledMethod* compiled_method, in AddToCodeCache()
297 bool JitCompiler::MakeExecutable(CompiledMethod* compiled_method, ArtMethod* method) { in MakeExecutable()
/art/test/508-referrer-method/src/p1/
DPackagePrivateA.java20 protected static int method() { in method() method in PackagePrivateA
/art/compiler/dex/quick/
Ddex_file_method_inliner.cc501 InlineMethod method; in AnalyseMethodCode() local
644 InlineMethod method; in GenInline() local
824 bool DexFileMethodInliner::AddInlineMethod(int32_t method_idx, const InlineMethod& method) { in AddInlineMethod()
840 MIR* move_result, const InlineMethod& method) { in GenInlineConst()
862 MIR* move_result, const InlineMethod& method) { in GenInlineReturnArg()
901 MIR* move_result, const InlineMethod& method) { in GenInlineIGet()
950 MIR* move_result, const InlineMethod& method) { in GenInlineIPut()
/art/runtime/entrypoints/
Dentrypoint_utils-inl.h63 ArtMethod* method, in CheckObjectAlloc()
144 ArtMethod* method, in AllocObjectFromCode()
196 ArtMethod* method, in CheckArrayAlloc()
232 ArtMethod* method, in AllocArrayFromCode()
255 ArtMethod* method, in AllocArrayFromCodeResolved()
450 ArtMethod* method = klass->FindVirtualMethodForInterface( in FindMethodFromCode() local
/art/test/511-clinit-interface/src/
DMain.java26 public static void method() { in method() method in Main
/art/runtime/entrypoints/jni/
Djni_entrypoints.cc37 ArtMethod* method = self->GetCurrentMethod(nullptr); in artFindNativeMethod() local
/art/compiler/
Dcommon_compiler_test.cc44 void CommonCompilerTest::MakeExecutable(ArtMethod* method) { in MakeExecutable()
241 void CommonCompilerTest::CompileMethod(ArtMethod* method) { in CompileMethod()
258 ArtMethod* method = klass->FindDirectMethod(method_name, signature, pointer_size); in CompileDirectMethod() local
272 ArtMethod* method = klass->FindVirtualMethod(method_name, signature, pointer_size); in CompileVirtualMethod() local
/art/compiler/optimizing/
Dintrinsics.cc73 static Intrinsics GetIntrinsic(InlineMethod method) { in GetIntrinsic()
340 InlineMethod method; in Run() local

12345