Searched refs:GetFpSpills (Results 1 – 6 of 6) sorted by relevance
/art/runtime/ |
D | nterp_helpers.cc | 98 fp_spills = x86::X86CalleeSaveFrame::GetFpSpills(CalleeSaveType::kSaveAllCalleeSaves); in NterpGetFrameEntrySize() 105 fp_spills = x86_64::X86_64CalleeSaveFrame::GetFpSpills(CalleeSaveType::kSaveAllCalleeSaves); in NterpGetFrameEntrySize() 110 fp_spills = arm::ArmCalleeSaveFrame::GetFpSpills(CalleeSaveType::kSaveAllCalleeSaves); in NterpGetFrameEntrySize() 114 fp_spills = arm64::Arm64CalleeSaveFrame::GetFpSpills(CalleeSaveType::kSaveAllCalleeSaves); in NterpGetFrameEntrySize() 119 fp_spills = riscv64::Riscv64CalleeSaveFrame::GetFpSpills(CalleeSaveType::kSaveAllCalleeSaves); in NterpGetFrameEntrySize() 183 RuntimeCalleeSaveFrame::GetFpSpills(CalleeSaveType::kSaveAllCalleeSaves); in NterpFrameInfo()
|
/art/runtime/arch/x86/ |
D | callee_save_frame_x86.h | 59 static constexpr uint32_t GetFpSpills(CalleeSaveType type) { in GetFpSpills() function 68 2 * POPCOUNT(GetFpSpills(type)) /* fprs */ + in GetFrameSize() 74 return QuickMethodFrameInfo(GetFrameSize(type), GetCoreSpills(type), GetFpSpills(type)); in GetMethodFrameInfo() 81 2 * POPCOUNT(GetFpSpills(type))) * static_cast<size_t>(kX86PointerSize); in GetFpr1Offset()
|
/art/runtime/arch/x86_64/ |
D | callee_save_frame_x86_64.h | 69 static constexpr uint32_t GetFpSpills(CalleeSaveType type) { in GetFpSpills() function 79 POPCOUNT(GetFpSpills(type)) /* fprs */ + in GetFrameSize() 85 return QuickMethodFrameInfo(GetFrameSize(type), GetCoreSpills(type), GetFpSpills(type)); in GetMethodFrameInfo() 92 POPCOUNT(GetFpSpills(type))) * static_cast<size_t>(kX86_64PointerSize); in GetFpr1Offset()
|
/art/runtime/arch/arm/ |
D | callee_save_frame_arm.h | 70 static constexpr uint32_t GetFpSpills(CalleeSaveType type) { in GetFpSpills() function 81 POPCOUNT(GetFpSpills(type)) /* fprs */ + in GetFrameSize() 87 return QuickMethodFrameInfo(GetFrameSize(type), GetCoreSpills(type), GetFpSpills(type)); in GetMethodFrameInfo() 94 POPCOUNT(GetFpSpills(type))) * static_cast<size_t>(kArmPointerSize); in GetFpr1Offset()
|
/art/runtime/arch/riscv64/ |
D | callee_save_frame_riscv64.h | 94 static constexpr uint32_t GetFpSpills(CalleeSaveType type) { in GetFpSpills() function 105 POPCOUNT(GetFpSpills(type)) /* fprs */ + 1 /* Method* */) * in GetFrameSize() 112 return QuickMethodFrameInfo(GetFrameSize(type), GetCoreSpills(type), GetFpSpills(type)); in GetMethodFrameInfo() 117 return GetFrameSize(type) - (POPCOUNT(GetCoreSpills(type)) + POPCOUNT(GetFpSpills(type))) * in GetFpr1Offset()
|
/art/runtime/arch/arm64/ |
D | callee_save_frame_arm64.h | 93 static constexpr uint32_t GetFpSpills(CalleeSaveType type) { in GetFpSpills() function 104 POPCOUNT(GetFpSpills(type)) /* fprs */ + in GetFrameSize() 110 return QuickMethodFrameInfo(GetFrameSize(type), GetCoreSpills(type), GetFpSpills(type)); in GetMethodFrameInfo() 117 POPCOUNT(GetFpSpills(type))) * static_cast<size_t>(kArm64PointerSize); in GetFpr1Offset()
|