Home
last modified time | relevance | path

Searched refs:GetCoreSpills (Results 1 – 5 of 5) sorted by relevance

/art/runtime/arch/x86/
Dcallee_save_frame_x86.h51 static constexpr uint32_t GetCoreSpills(CalleeSaveType type) { in GetCoreSpills() function
66 return RoundUp((POPCOUNT(GetCoreSpills(type)) /* gprs */ + in GetFrameSize()
73 return QuickMethodFrameInfo(GetFrameSize(type), GetCoreSpills(type), GetFpSpills(type)); in GetMethodFrameInfo()
79 (POPCOUNT(GetCoreSpills(type)) + in GetFpr1Offset()
86 POPCOUNT(GetCoreSpills(type)) * static_cast<size_t>(kX86PointerSize); in GetGpr1Offset()
/art/runtime/arch/x86_64/
Dcallee_save_frame_x86_64.h61 static constexpr uint32_t GetCoreSpills(CalleeSaveType type) { in GetCoreSpills() function
77 return RoundUp((POPCOUNT(GetCoreSpills(type)) /* gprs */ + in GetFrameSize()
84 return QuickMethodFrameInfo(GetFrameSize(type), GetCoreSpills(type), GetFpSpills(type)); in GetMethodFrameInfo()
90 (POPCOUNT(GetCoreSpills(type)) + in GetFpr1Offset()
97 POPCOUNT(GetCoreSpills(type)) * static_cast<size_t>(kX86_64PointerSize); in GetGpr1Offset()
/art/runtime/arch/arm/
Dcallee_save_frame_arm.h61 static constexpr uint32_t GetCoreSpills(CalleeSaveType type) { in GetCoreSpills() function
79 return RoundUp((POPCOUNT(GetCoreSpills(type)) /* gprs */ + in GetFrameSize()
86 return QuickMethodFrameInfo(GetFrameSize(type), GetCoreSpills(type), GetFpSpills(type)); in GetMethodFrameInfo()
92 (POPCOUNT(GetCoreSpills(type)) + in GetFpr1Offset()
99 POPCOUNT(GetCoreSpills(type)) * static_cast<size_t>(kArmPointerSize); in GetGpr1Offset()
/art/runtime/arch/arm64/
Dcallee_save_frame_arm64.h84 static constexpr uint32_t GetCoreSpills(CalleeSaveType type) { in GetCoreSpills() function
102 return RoundUp((POPCOUNT(GetCoreSpills(type)) /* gprs */ + in GetFrameSize()
109 return QuickMethodFrameInfo(GetFrameSize(type), GetCoreSpills(type), GetFpSpills(type)); in GetMethodFrameInfo()
115 (POPCOUNT(GetCoreSpills(type)) + in GetFpr1Offset()
122 POPCOUNT(GetCoreSpills(type)) * static_cast<size_t>(kArm64PointerSize); in GetGpr1Offset()
/art/runtime/
Dnterp_helpers.cc88 RuntimeCalleeSaveFrame::GetCoreSpills(CalleeSaveType::kSaveAllCalleeSaves); in NterpGetFrameEntrySize()
112 RuntimeCalleeSaveFrame::GetCoreSpills(CalleeSaveType::kSaveAllCalleeSaves); in NterpFrameInfo()