Searched refs:GetFpSpills (Results 1 – 6 of 6) sorted by relevance
/art/runtime/arch/x86/ |
D | callee_save_frame_x86.h | 58 static constexpr uint32_t GetFpSpills(CalleeSaveType type) { in GetFpSpills() function 67 2 * POPCOUNT(GetFpSpills(type)) /* fprs */ + in GetFrameSize() 73 return QuickMethodFrameInfo(GetFrameSize(type), GetCoreSpills(type), GetFpSpills(type)); in GetMethodFrameInfo() 80 2 * POPCOUNT(GetFpSpills(type))) * static_cast<size_t>(kX86PointerSize); in GetFpr1Offset()
|
/art/runtime/arch/x86_64/ |
D | callee_save_frame_x86_64.h | 68 static constexpr uint32_t GetFpSpills(CalleeSaveType type) { in GetFpSpills() function 78 POPCOUNT(GetFpSpills(type)) /* fprs */ + in GetFrameSize() 84 return QuickMethodFrameInfo(GetFrameSize(type), GetCoreSpills(type), GetFpSpills(type)); in GetMethodFrameInfo() 91 POPCOUNT(GetFpSpills(type))) * static_cast<size_t>(kX86_64PointerSize); in GetFpr1Offset()
|
/art/runtime/arch/arm/ |
D | callee_save_frame_arm.h | 69 static constexpr uint32_t GetFpSpills(CalleeSaveType type) { in GetFpSpills() function 80 POPCOUNT(GetFpSpills(type)) /* fprs */ + in GetFrameSize() 86 return QuickMethodFrameInfo(GetFrameSize(type), GetCoreSpills(type), GetFpSpills(type)); in GetMethodFrameInfo() 93 POPCOUNT(GetFpSpills(type))) * static_cast<size_t>(kArmPointerSize); in GetFpr1Offset()
|
/art/runtime/arch/mips64/ |
D | callee_save_frame_mips64.h | 85 static constexpr uint32_t GetFpSpills(CalleeSaveType type) { in GetFpSpills() function 96 POPCOUNT(GetFpSpills(type)) /* fprs */ + in GetFrameSize() 102 return QuickMethodFrameInfo(GetFrameSize(type), GetCoreSpills(type), GetFpSpills(type)); in GetMethodFrameInfo() 109 POPCOUNT(GetFpSpills(type))) * static_cast<size_t>(kMips64PointerSize); in GetFpr1Offset()
|
/art/runtime/arch/arm64/ |
D | callee_save_frame_arm64.h | 92 static constexpr uint32_t GetFpSpills(CalleeSaveType type) { in GetFpSpills() function 103 POPCOUNT(GetFpSpills(type)) /* fprs */ + in GetFrameSize() 109 return QuickMethodFrameInfo(GetFrameSize(type), GetCoreSpills(type), GetFpSpills(type)); in GetMethodFrameInfo() 116 POPCOUNT(GetFpSpills(type))) * static_cast<size_t>(kArm64PointerSize); in GetFpr1Offset()
|
/art/runtime/arch/mips/ |
D | callee_save_frame_mips.h | 94 static constexpr uint32_t GetFpSpills(CalleeSaveType type) { in GetFpSpills() function 105 POPCOUNT(GetFpSpills(type)) /* fprs */ + in GetFrameSize() 111 return QuickMethodFrameInfo(GetFrameSize(type), GetCoreSpills(type), GetFpSpills(type)); in GetMethodFrameInfo() 118 POPCOUNT(GetFpSpills(type))) * static_cast<size_t>(kMipsPointerSize); in GetFpr1Offset()
|