2020-04-23 15:25:11 +01:00
|
|
|
/* This file is part of the dynarmic project.
|
|
|
|
* Copyright (c) 2020 MerryMage
|
|
|
|
* SPDX-License-Identifier: 0BSD
|
|
|
|
*/
|
2016-08-24 20:07:08 +01:00
|
|
|
|
2018-03-29 12:46:29 +01:00
|
|
|
#include <algorithm>
|
|
|
|
#include <vector>
|
|
|
|
|
2016-08-24 20:07:08 +01:00
|
|
|
#include <xbyak.h>
|
|
|
|
|
2018-08-14 19:13:47 +01:00
|
|
|
#include "backend/x64/abi.h"
|
2018-09-28 21:12:17 +01:00
|
|
|
#include "backend/x64/block_of_code.h"
|
2016-08-24 20:07:08 +01:00
|
|
|
#include "common/common_types.h"
|
|
|
|
#include "common/iterator_util.h"
|
|
|
|
|
2020-04-08 11:46:36 +01:00
|
|
|
namespace Dynarmic::Backend::X64 {
|
2016-08-24 20:07:08 +01:00
|
|
|
|
|
|
|
constexpr size_t XMM_SIZE = 16;
|
|
|
|
|
|
|
|
struct FrameInfo {
|
2020-04-23 15:25:11 +01:00
|
|
|
size_t stack_subtraction;
|
|
|
|
size_t xmm_offset;
|
|
|
|
size_t frame_offset;
|
2016-08-24 20:07:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static FrameInfo CalculateFrameInfo(size_t num_gprs, size_t num_xmms, size_t frame_size) {
|
2020-04-23 15:25:11 +01:00
|
|
|
// We are initially 8 byte aligned because the return value is pushed onto an aligned stack after a call.
|
|
|
|
const size_t rsp_alignment = (num_gprs % 2 == 0) ? 8 : 0;
|
|
|
|
const size_t total_xmm_size = num_xmms * XMM_SIZE;
|
2016-08-24 20:07:08 +01:00
|
|
|
|
2020-04-23 15:25:11 +01:00
|
|
|
if (frame_size & 0xF) {
|
|
|
|
frame_size += 0x10 - (frame_size & 0xF);
|
2016-08-24 20:07:08 +01:00
|
|
|
}
|
|
|
|
|
2020-04-23 15:25:11 +01:00
|
|
|
return {
|
|
|
|
rsp_alignment + total_xmm_size + frame_size + ABI_SHADOW_SPACE,
|
|
|
|
frame_size + ABI_SHADOW_SPACE,
|
|
|
|
ABI_SHADOW_SPACE,
|
|
|
|
};
|
2016-08-24 20:07:08 +01:00
|
|
|
}
|
|
|
|
|
2016-08-31 23:53:16 +01:00
|
|
|
template<typename RegisterArrayT>
|
2018-09-28 21:12:17 +01:00
|
|
|
void ABI_PushRegistersAndAdjustStack(BlockOfCode& code, size_t frame_size, const RegisterArrayT& regs) {
|
2016-08-24 20:07:08 +01:00
|
|
|
using namespace Xbyak::util;
|
|
|
|
|
2016-08-31 23:53:16 +01:00
|
|
|
const size_t num_gprs = std::count_if(regs.begin(), regs.end(), HostLocIsGPR);
|
|
|
|
const size_t num_xmms = std::count_if(regs.begin(), regs.end(), HostLocIsXMM);
|
2016-08-24 20:07:08 +01:00
|
|
|
|
|
|
|
FrameInfo frame_info = CalculateFrameInfo(num_gprs, num_xmms, frame_size);
|
|
|
|
|
2016-08-31 23:53:16 +01:00
|
|
|
for (HostLoc gpr : regs) {
|
2016-08-24 20:07:08 +01:00
|
|
|
if (HostLocIsGPR(gpr)) {
|
2018-02-03 14:28:57 +00:00
|
|
|
code.push(HostLocToReg64(gpr));
|
2016-08-24 20:07:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (frame_info.stack_subtraction != 0) {
|
2018-02-03 14:28:57 +00:00
|
|
|
code.sub(rsp, u32(frame_info.stack_subtraction));
|
2016-08-24 20:07:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
size_t xmm_offset = frame_info.xmm_offset;
|
2016-08-31 23:53:16 +01:00
|
|
|
for (HostLoc xmm : regs) {
|
2016-08-24 20:07:08 +01:00
|
|
|
if (HostLocIsXMM(xmm)) {
|
2020-06-09 21:25:57 +01:00
|
|
|
if (code.HasAVX()) {
|
2018-09-28 21:12:17 +01:00
|
|
|
code.vmovaps(code.xword[rsp + xmm_offset], HostLocToXmm(xmm));
|
|
|
|
} else {
|
|
|
|
code.movaps(code.xword[rsp + xmm_offset], HostLocToXmm(xmm));
|
|
|
|
}
|
2016-08-24 20:07:08 +01:00
|
|
|
xmm_offset += XMM_SIZE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-31 23:53:16 +01:00
|
|
|
template<typename RegisterArrayT>
|
2018-09-28 21:12:17 +01:00
|
|
|
void ABI_PopRegistersAndAdjustStack(BlockOfCode& code, size_t frame_size, const RegisterArrayT& regs) {
|
2016-08-24 20:07:08 +01:00
|
|
|
using namespace Xbyak::util;
|
|
|
|
|
2016-08-31 23:53:16 +01:00
|
|
|
const size_t num_gprs = std::count_if(regs.begin(), regs.end(), HostLocIsGPR);
|
|
|
|
const size_t num_xmms = std::count_if(regs.begin(), regs.end(), HostLocIsXMM);
|
2016-08-24 20:07:08 +01:00
|
|
|
|
|
|
|
FrameInfo frame_info = CalculateFrameInfo(num_gprs, num_xmms, frame_size);
|
|
|
|
|
|
|
|
size_t xmm_offset = frame_info.xmm_offset;
|
2016-08-31 23:53:16 +01:00
|
|
|
for (HostLoc xmm : regs) {
|
2016-08-24 20:07:08 +01:00
|
|
|
if (HostLocIsXMM(xmm)) {
|
2020-06-09 21:25:57 +01:00
|
|
|
if (code.HasAVX()) {
|
2018-09-28 21:12:17 +01:00
|
|
|
code.vmovaps(HostLocToXmm(xmm), code.xword[rsp + xmm_offset]);
|
|
|
|
} else {
|
|
|
|
code.movaps(HostLocToXmm(xmm), code.xword[rsp + xmm_offset]);
|
|
|
|
}
|
2016-08-24 20:07:08 +01:00
|
|
|
xmm_offset += XMM_SIZE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (frame_info.stack_subtraction != 0) {
|
2018-02-03 14:28:57 +00:00
|
|
|
code.add(rsp, u32(frame_info.stack_subtraction));
|
2016-08-24 20:07:08 +01:00
|
|
|
}
|
|
|
|
|
2016-08-31 23:53:16 +01:00
|
|
|
for (HostLoc gpr : Common::Reverse(regs)) {
|
2016-08-24 20:07:08 +01:00
|
|
|
if (HostLocIsGPR(gpr)) {
|
2018-02-03 14:28:57 +00:00
|
|
|
code.pop(HostLocToReg64(gpr));
|
2016-08-24 20:07:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-28 21:12:17 +01:00
|
|
|
void ABI_PushCalleeSaveRegistersAndAdjustStack(BlockOfCode& code, size_t frame_size) {
|
2016-08-31 23:53:16 +01:00
|
|
|
ABI_PushRegistersAndAdjustStack(code, frame_size, ABI_ALL_CALLEE_SAVE);
|
|
|
|
}
|
|
|
|
|
2018-09-28 21:12:17 +01:00
|
|
|
void ABI_PopCalleeSaveRegistersAndAdjustStack(BlockOfCode& code, size_t frame_size) {
|
2016-08-31 23:53:16 +01:00
|
|
|
ABI_PopRegistersAndAdjustStack(code, frame_size, ABI_ALL_CALLEE_SAVE);
|
|
|
|
}
|
|
|
|
|
2018-09-28 21:12:17 +01:00
|
|
|
void ABI_PushCallerSaveRegistersAndAdjustStack(BlockOfCode& code, size_t frame_size) {
|
2016-08-31 23:53:16 +01:00
|
|
|
ABI_PushRegistersAndAdjustStack(code, frame_size, ABI_ALL_CALLER_SAVE);
|
|
|
|
}
|
|
|
|
|
2018-09-28 21:12:17 +01:00
|
|
|
void ABI_PopCallerSaveRegistersAndAdjustStack(BlockOfCode& code, size_t frame_size) {
|
2016-08-31 23:53:16 +01:00
|
|
|
ABI_PopRegistersAndAdjustStack(code, frame_size, ABI_ALL_CALLER_SAVE);
|
|
|
|
}
|
|
|
|
|
2018-09-28 21:12:17 +01:00
|
|
|
void ABI_PushCallerSaveRegistersAndAdjustStackExcept(BlockOfCode& code, HostLoc exception) {
|
2018-02-12 18:17:39 +00:00
|
|
|
std::vector<HostLoc> regs;
|
|
|
|
std::remove_copy(ABI_ALL_CALLER_SAVE.begin(), ABI_ALL_CALLER_SAVE.end(), std::back_inserter(regs), exception);
|
|
|
|
ABI_PushRegistersAndAdjustStack(code, 0, regs);
|
|
|
|
}
|
|
|
|
|
2018-09-28 21:12:17 +01:00
|
|
|
void ABI_PopCallerSaveRegistersAndAdjustStackExcept(BlockOfCode& code, HostLoc exception) {
|
2018-02-12 18:17:39 +00:00
|
|
|
std::vector<HostLoc> regs;
|
|
|
|
std::remove_copy(ABI_ALL_CALLER_SAVE.begin(), ABI_ALL_CALLER_SAVE.end(), std::back_inserter(regs), exception);
|
|
|
|
ABI_PopRegistersAndAdjustStack(code, 0, regs);
|
|
|
|
}
|
|
|
|
|
2020-04-08 11:46:36 +01:00
|
|
|
} // namespace Dynarmic::Backend::X64
|