Home
last modified time | relevance | path

Searched refs:callee_save_methods_ (Results 1 – 4 of 4) sorted by relevance

/art/tools/cpp-define-generator/
Doffset_runtime.def35 // Offset of field Runtime::callee_save_methods_[kSaveAllCalleeSaves]
37 // Offset of field Runtime::callee_save_methods_[kSaveRefsOnly]
39 // Offset of field Runtime::callee_save_methods_[kSaveRefsAndArgs]
41 // Offset of field Runtime::callee_save_methods_[kSaveEverything]
/art/runtime/
Druntime-inl.h80 return reinterpret_cast<ArtMethod*>(callee_save_methods_[static_cast<size_t>(type)]); in GetCalleeSaveMethodUnchecked()
Druntime.h381 return callee_save_methods_[static_cast<size_t>(type)] != 0u; in HasCalleeSaveMethod()
398 return OFFSETOF_MEMBER(Runtime, callee_save_methods_[static_cast<size_t>(type)]); in GetCalleeSaveMethodOffset()
720 uint64_t callee_save_methods_[kCalleeSaveSize]; variable
Druntime.cc271 std::fill(callee_save_methods_, callee_save_methods_ + arraysize(callee_save_methods_), 0u); in Runtime()
1841 auto* m = reinterpret_cast<ArtMethod*>(callee_save_methods_[i]); in VisitConstantRoots()
2057 callee_save_methods_[static_cast<size_t>(type)] = reinterpret_cast<uintptr_t>(method); in SetCalleeSaveMethod()
2062 callee_save_methods_[i] = reinterpret_cast<uintptr_t>(nullptr); in ClearCalleeSaveMethods()