Home | History | Annotate | Download | only in runtime

Lines Matching full:runtime

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