Lines Matching refs:Runtime
26 inline QuickMethodFrameInfo Runtime::GetRuntimeMethodFrameInfo(mirror::ArtMethod* method) { in GetRuntimeMethodFrameInfo()
32 if (method == GetCalleeSaveMethodUnchecked(Runtime::kRefsAndArgs)) { in GetRuntimeMethodFrameInfo()
33 return GetCalleeSaveMethodFrameInfo(Runtime::kRefsAndArgs); in GetRuntimeMethodFrameInfo()
34 } else if (method == GetCalleeSaveMethodUnchecked(Runtime::kSaveAll)) { in GetRuntimeMethodFrameInfo()
35 return GetCalleeSaveMethodFrameInfo(Runtime::kSaveAll); in GetRuntimeMethodFrameInfo()
37 DCHECK(method == GetCalleeSaveMethodUnchecked(Runtime::kRefsOnly)); in GetRuntimeMethodFrameInfo()
38 return GetCalleeSaveMethodFrameInfo(Runtime::kRefsOnly); in GetRuntimeMethodFrameInfo()
42 inline mirror::ArtMethod* Runtime::GetResolutionMethod() { in GetResolutionMethod()
47 inline mirror::ArtMethod* Runtime::GetImtConflictMethod() { in GetImtConflictMethod()
52 inline mirror::ArtMethod* Runtime::GetImtUnimplementedMethod() { in GetImtUnimplementedMethod()
57 inline mirror::ObjectArray<mirror::ArtMethod>* Runtime::GetDefaultImt() in GetDefaultImt()
63 inline mirror::ArtMethod* Runtime::GetCalleeSaveMethod(CalleeSaveType type) in GetCalleeSaveMethod()
69 inline mirror::ArtMethod* Runtime::GetCalleeSaveMethodUnchecked(CalleeSaveType type) in GetCalleeSaveMethodUnchecked()