Lines Matching refs:method

291   uintptr_t GetEntryPointOf(ArtMethod* method) const override  in GetEntryPointOf()
293 return reinterpret_cast<uintptr_t>(method->GetEntryPointFromQuickCompiledCodePtrSize( in GetEntryPointOf()
300 ArtMethod* method,
380 ArtMethod* method,
388 ArtMethod* method,
734 ArtMethod* method, in TryCompile() argument
776 DCHECK(Runtime::Current()->IsAotCompiler() || method != nullptr); in TryCompile()
777 if (method != nullptr) { in TryCompile()
781 containing_class = &method->GetClassDef(); in TryCompile()
782 interpreter_metadata = method->GetQuickenedInfo(); in TryCompile()
806 if (method != nullptr) { in TryCompile()
807 graph->SetArtMethod(method); in TryCompile()
903 ArtMethod* method, in TryCompileIntrinsic() argument
933 DCHECK(method != nullptr); in TryCompileIntrinsic()
934 graph->SetArtMethod(method); in TryCompileIntrinsic()
961 builder.BuildIntrinsicGraph(method); in TryCompileIntrinsic()
983 VLOG(compiler) << "Intrinsic method is not leaf: " << method->GetIntrinsic() in TryCompileIntrinsic()
991 VLOG(compiler) << "Compiled intrinsic: " << method->GetIntrinsic() in TryCompileIntrinsic()
1022 ArtMethod* method = in Compile() local
1025 DCHECK_EQ(method == nullptr, soa.Self()->IsExceptionPending()); in Compile()
1029 handles.NewHandle(method != nullptr ? method->GetDeclaringClass() : nullptr); in Compile()
1043 if (method != nullptr && UNLIKELY(method->IsIntrinsic())) { in Compile()
1050 method, in Compile()
1062 method, in Compile()
1143 ArtMethod* method = runtime->GetClassLinker()->LookupResolvedMethod( in JniCompile() local
1145 if (method != nullptr && UNLIKELY(method->IsIntrinsic())) { in JniCompile()
1148 Handle<mirror::Class> compiling_class = handles.NewHandle(method->GetDeclaringClass()); in JniCompile()
1168 method, in JniCompile()
1202 bool EncodeArtMethodInInlineInfo(ArtMethod* method ATTRIBUTE_UNUSED) { in EncodeArtMethodInInlineInfo()
1210 ArtMethod* method, in JitCompile() argument
1223 method->GetDeclaringClass()->GetClassLoader())); in JitCompile()
1224 Handle<mirror::DexCache> dex_cache(hs.NewHandle(method->GetDexCache())); in JitCompile()
1225 DCHECK(method->IsCompilable()); in JitCompile()
1227 const DexFile* dex_file = method->GetDexFile(); in JitCompile()
1228 const uint16_t class_def_idx = method->GetClassDefIndex(); in JitCompile()
1229 const dex::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset()); in JitCompile()
1230 const uint32_t method_idx = method->GetDexMethodIndex(); in JitCompile()
1231 const uint32_t access_flags = method->GetAccessFlags(); in JitCompile()
1236 if (UNLIKELY(method->IsNative())) { in JitCompile()
1255 method, in JitCompile()
1288 method, in JitCompile()
1303 Runtime::Current()->GetJit()->AddMemoryUsage(method, allocator.BytesUsed()); in JitCompile()
1305 jit_logger->WriteLog(code, jni_compiled_method.GetCode().size(), method); in JitCompile()
1316 Handle<mirror::Class> compiling_class = handles.NewHandle(method->GetDeclaringClass()); in JitCompile()
1336 method, in JitCompile()
1353 method, in JitCompile()
1396 method, in JitCompile()
1411 Runtime::Current()->GetJit()->AddMemoryUsage(method, allocator.BytesUsed()); in JitCompile()
1413 jit_logger->WriteLog(code, code_allocator.GetMemory().size(), method); in JitCompile()