2016-07-01 15:01:06 +02:00
|
|
|
/* This file is part of the dynarmic project.
|
|
|
|
* Copyright (c) 2016 MerryMage
|
|
|
|
* This software may be used and distributed according to the terms of the GNU
|
|
|
|
* General Public License version 2 or any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
#include "backend_x64/reg_alloc.h"
|
|
|
|
#include "common/assert.h"
|
|
|
|
#include "common/x64/emitter.h"
|
|
|
|
|
|
|
|
namespace Dynarmic {
|
|
|
|
namespace BackendX64 {
|
|
|
|
|
2016-07-23 00:55:00 +02:00
|
|
|
static Gen::X64Reg HostLocToX64(HostLoc loc) {
|
|
|
|
DEBUG_ASSERT(HostLocIsRegister(loc));
|
|
|
|
// HostLoc is ordered such that the numbers line up.
|
|
|
|
return static_cast<Gen::X64Reg>(loc);
|
|
|
|
}
|
2016-07-01 15:01:06 +02:00
|
|
|
|
|
|
|
static Gen::OpArg SpillToOpArg(HostLoc loc) {
|
2016-08-02 14:46:12 +02:00
|
|
|
static_assert(std::is_same<decltype(JitState{}.Spill[0]), u64&>::value, "Spill must be u64");
|
2016-07-23 00:55:00 +02:00
|
|
|
DEBUG_ASSERT(HostLocIsSpill(loc));
|
2016-07-01 15:01:06 +02:00
|
|
|
|
|
|
|
size_t i = static_cast<size_t>(loc) - static_cast<size_t>(HostLoc::FirstSpill);
|
2016-08-02 14:46:12 +02:00
|
|
|
return Gen::MDisp(Gen::R15, static_cast<int>(offsetof(JitState, Spill) + i * sizeof(u64)));
|
2016-07-01 15:01:06 +02:00
|
|
|
}
|
|
|
|
|
2016-08-02 14:46:12 +02:00
|
|
|
Gen::X64Reg RegAlloc::DefRegister(IR::Inst* def_inst, HostLocList desired_locations) {
|
2016-07-23 00:55:00 +02:00
|
|
|
DEBUG_ASSERT(std::all_of(desired_locations.begin(), desired_locations.end(), HostLocIsRegister));
|
|
|
|
DEBUG_ASSERT_MSG(ValueLocations(def_inst).empty(), "def_inst has already been defined");
|
2016-07-01 15:01:06 +02:00
|
|
|
|
|
|
|
HostLoc location = SelectARegister(desired_locations);
|
|
|
|
|
|
|
|
if (IsRegisterOccupied(location)) {
|
|
|
|
SpillRegister(location);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update state
|
2016-08-03 01:25:42 +02:00
|
|
|
LocInfo(location) = HostLocInfo{def_inst, HostLocState::Def};
|
2016-07-23 00:55:00 +02:00
|
|
|
return HostLocToX64(location);
|
|
|
|
}
|
|
|
|
|
2016-08-02 14:46:12 +02:00
|
|
|
Gen::X64Reg RegAlloc::UseDefRegister(IR::Value use_value, IR::Inst* def_inst, HostLocList desired_locations) {
|
2016-07-23 00:55:00 +02:00
|
|
|
if (!use_value.IsImmediate()) {
|
|
|
|
return UseDefRegister(use_value.GetInst(), def_inst, desired_locations);
|
|
|
|
}
|
2016-07-01 15:01:06 +02:00
|
|
|
|
2016-07-23 00:55:00 +02:00
|
|
|
return LoadImmediateIntoRegister(use_value, DefRegister(def_inst, desired_locations));
|
2016-07-01 15:01:06 +02:00
|
|
|
}
|
|
|
|
|
2016-08-02 14:46:12 +02:00
|
|
|
Gen::X64Reg RegAlloc::UseDefRegister(IR::Inst* use_inst, IR::Inst* def_inst, HostLocList desired_locations) {
|
2016-07-23 00:55:00 +02:00
|
|
|
DEBUG_ASSERT(std::all_of(desired_locations.begin(), desired_locations.end(), HostLocIsRegister));
|
|
|
|
DEBUG_ASSERT_MSG(ValueLocations(def_inst).empty(), "def_inst has already been defined");
|
|
|
|
DEBUG_ASSERT_MSG(!ValueLocations(use_inst).empty(), "use_inst has not been defined");
|
2016-07-01 15:01:06 +02:00
|
|
|
|
2016-07-23 00:55:00 +02:00
|
|
|
// TODO: Optimize the case when this is the last use_inst use.
|
2016-08-02 14:46:12 +02:00
|
|
|
Gen::X64Reg use_reg = UseRegister(use_inst, any_gpr);
|
2016-07-23 00:55:00 +02:00
|
|
|
Gen::X64Reg def_reg = DefRegister(def_inst, desired_locations);
|
2016-08-02 14:46:12 +02:00
|
|
|
code->MOV(64, Gen::R(def_reg), Gen::R(use_reg));
|
2016-07-01 15:01:06 +02:00
|
|
|
return def_reg;
|
|
|
|
}
|
|
|
|
|
2016-08-02 14:46:12 +02:00
|
|
|
Gen::X64Reg RegAlloc::UseRegister(IR::Value use_value, HostLocList desired_locations) {
|
2016-07-23 00:55:00 +02:00
|
|
|
if (!use_value.IsImmediate()) {
|
|
|
|
return UseRegister(use_value.GetInst(), desired_locations);
|
|
|
|
}
|
|
|
|
|
|
|
|
return LoadImmediateIntoRegister(use_value, ScratchRegister(desired_locations));
|
|
|
|
}
|
|
|
|
|
2016-08-02 14:46:12 +02:00
|
|
|
Gen::X64Reg RegAlloc::UseRegister(IR::Inst* use_inst, HostLocList desired_locations) {
|
2016-07-23 00:55:00 +02:00
|
|
|
DEBUG_ASSERT(std::all_of(desired_locations.begin(), desired_locations.end(), HostLocIsRegister));
|
|
|
|
DEBUG_ASSERT_MSG(!ValueLocations(use_inst).empty(), "use_inst has not been defined");
|
2016-07-01 15:01:06 +02:00
|
|
|
|
2016-07-23 00:55:00 +02:00
|
|
|
HostLoc current_location = ValueLocations(use_inst).front();
|
2016-07-01 15:01:06 +02:00
|
|
|
auto iter = std::find(desired_locations.begin(), desired_locations.end(), current_location);
|
|
|
|
if (iter != desired_locations.end()) {
|
2016-08-02 14:46:12 +02:00
|
|
|
ASSERT(LocInfo(current_location).state == HostLocState::Idle ||
|
|
|
|
LocInfo(current_location).state == HostLocState::Use);
|
2016-07-01 15:01:06 +02:00
|
|
|
|
|
|
|
// Update state
|
2016-08-02 14:46:12 +02:00
|
|
|
LocInfo(current_location).state = HostLocState::Use;
|
2016-07-23 00:55:00 +02:00
|
|
|
DecrementRemainingUses(use_inst);
|
2016-07-01 15:01:06 +02:00
|
|
|
|
2016-07-23 00:55:00 +02:00
|
|
|
return HostLocToX64(current_location);
|
2016-07-01 15:01:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
HostLoc new_location = SelectARegister(desired_locations);
|
|
|
|
|
|
|
|
if (HostLocIsSpill(current_location)) {
|
|
|
|
if (IsRegisterOccupied(new_location)) {
|
|
|
|
SpillRegister(new_location);
|
|
|
|
}
|
|
|
|
|
2016-08-02 14:46:12 +02:00
|
|
|
EmitMove(new_location, current_location);
|
2016-07-01 15:01:06 +02:00
|
|
|
|
2016-08-02 14:46:12 +02:00
|
|
|
LocInfo(new_location) = LocInfo(current_location);
|
|
|
|
LocInfo(new_location).state = HostLocState::Use;
|
|
|
|
LocInfo(current_location) = {};
|
2016-07-23 00:55:00 +02:00
|
|
|
DecrementRemainingUses(use_inst);
|
2016-07-01 15:01:06 +02:00
|
|
|
} else if (HostLocIsRegister(current_location)) {
|
2016-08-02 14:46:12 +02:00
|
|
|
ASSERT(LocInfo(current_location).state == HostLocState::Idle);
|
2016-07-01 15:01:06 +02:00
|
|
|
|
2016-08-02 14:46:12 +02:00
|
|
|
EmitExchange(new_location, current_location);
|
2016-07-01 15:01:06 +02:00
|
|
|
|
2016-08-02 14:46:12 +02:00
|
|
|
std::swap(LocInfo(new_location), LocInfo(current_location));
|
|
|
|
LocInfo(new_location).state = HostLocState::Use;
|
2016-07-23 00:55:00 +02:00
|
|
|
DecrementRemainingUses(use_inst);
|
2016-07-01 15:01:06 +02:00
|
|
|
} else {
|
|
|
|
ASSERT_MSG(0, "Invalid current_location");
|
|
|
|
}
|
|
|
|
|
2016-07-23 00:55:00 +02:00
|
|
|
return HostLocToX64(new_location);
|
2016-07-01 15:01:06 +02:00
|
|
|
}
|
|
|
|
|
2016-08-02 14:46:12 +02:00
|
|
|
Gen::X64Reg RegAlloc::UseScratchRegister(IR::Value use_value, HostLocList desired_locations) {
|
2016-07-23 00:55:00 +02:00
|
|
|
if (!use_value.IsImmediate()) {
|
|
|
|
return UseScratchRegister(use_value.GetInst(), desired_locations);
|
|
|
|
}
|
|
|
|
|
|
|
|
return LoadImmediateIntoRegister(use_value, ScratchRegister(desired_locations));
|
|
|
|
}
|
|
|
|
|
2016-08-02 14:46:12 +02:00
|
|
|
Gen::X64Reg RegAlloc::UseScratchRegister(IR::Inst* use_inst, HostLocList desired_locations) {
|
2016-07-23 00:55:00 +02:00
|
|
|
DEBUG_ASSERT(std::all_of(desired_locations.begin(), desired_locations.end(), HostLocIsRegister));
|
|
|
|
DEBUG_ASSERT_MSG(!ValueLocations(use_inst).empty(), "use_inst has not been defined");
|
|
|
|
ASSERT_MSG(use_inst->use_count != 0, "use_inst ran out of uses. (Use-d an IR::Inst* too many times)");
|
2016-07-18 16:11:16 +02:00
|
|
|
|
2016-07-23 00:55:00 +02:00
|
|
|
HostLoc current_location = ValueLocations(use_inst).front();
|
2016-07-18 16:11:16 +02:00
|
|
|
HostLoc new_location = SelectARegister(desired_locations);
|
|
|
|
|
|
|
|
if (HostLocIsSpill(current_location)) {
|
|
|
|
if (IsRegisterOccupied(new_location)) {
|
|
|
|
SpillRegister(new_location);
|
|
|
|
}
|
|
|
|
|
2016-08-02 14:46:12 +02:00
|
|
|
EmitMove(new_location, current_location);
|
2016-07-18 16:11:16 +02:00
|
|
|
|
2016-08-02 14:46:12 +02:00
|
|
|
LocInfo(new_location).state = HostLocState::Scratch;
|
2016-07-23 00:55:00 +02:00
|
|
|
DecrementRemainingUses(use_inst);
|
2016-07-18 16:11:16 +02:00
|
|
|
} else if (HostLocIsRegister(current_location)) {
|
2016-08-02 14:46:12 +02:00
|
|
|
ASSERT(LocInfo(current_location).state == HostLocState::Idle);
|
2016-07-18 16:11:16 +02:00
|
|
|
|
|
|
|
if (IsRegisterOccupied(new_location)) {
|
|
|
|
SpillRegister(new_location);
|
2016-07-21 22:48:45 +02:00
|
|
|
if (current_location != new_location) {
|
2016-08-02 14:46:12 +02:00
|
|
|
EmitMove(new_location, current_location);
|
2016-07-21 22:48:45 +02:00
|
|
|
}
|
|
|
|
} else {
|
2016-08-02 14:46:12 +02:00
|
|
|
EmitMove(new_location, current_location);
|
2016-07-18 16:11:16 +02:00
|
|
|
}
|
|
|
|
|
2016-08-02 14:46:12 +02:00
|
|
|
LocInfo(new_location).state = HostLocState::Scratch;
|
2016-07-23 00:55:00 +02:00
|
|
|
DecrementRemainingUses(use_inst);
|
2016-07-18 16:11:16 +02:00
|
|
|
} else {
|
|
|
|
ASSERT_MSG(0, "Invalid current_location");
|
|
|
|
}
|
|
|
|
|
2016-07-23 00:55:00 +02:00
|
|
|
return HostLocToX64(new_location);
|
2016-07-18 16:11:16 +02:00
|
|
|
}
|
|
|
|
|
2016-08-02 14:46:12 +02:00
|
|
|
Gen::X64Reg RegAlloc::ScratchRegister(HostLocList desired_locations) {
|
2016-07-23 00:55:00 +02:00
|
|
|
DEBUG_ASSERT(std::all_of(desired_locations.begin(), desired_locations.end(), HostLocIsRegister));
|
2016-07-01 15:01:06 +02:00
|
|
|
|
|
|
|
HostLoc location = SelectARegister(desired_locations);
|
|
|
|
|
|
|
|
if (IsRegisterOccupied(location)) {
|
|
|
|
SpillRegister(location);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update state
|
2016-08-02 14:46:12 +02:00
|
|
|
LocInfo(location).state = HostLocState::Scratch;
|
2016-07-23 00:55:00 +02:00
|
|
|
|
|
|
|
return HostLocToX64(location);
|
|
|
|
}
|
|
|
|
|
|
|
|
Gen::X64Reg RegAlloc::LoadImmediateIntoRegister(IR::Value imm, Gen::X64Reg reg) {
|
|
|
|
ASSERT_MSG(imm.IsImmediate(), "imm is not an immediate");
|
|
|
|
|
|
|
|
switch (imm.GetType()) {
|
|
|
|
case IR::Type::U1:
|
|
|
|
code->MOV(32, R(reg), Gen::Imm32(imm.GetU1()));
|
|
|
|
break;
|
|
|
|
case IR::Type::U8:
|
|
|
|
code->MOV(32, R(reg), Gen::Imm32(imm.GetU8()));
|
|
|
|
break;
|
|
|
|
case IR::Type::U32:
|
|
|
|
code->MOV(32, R(reg), Gen::Imm32(imm.GetU32()));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ASSERT_MSG(false, "This should never happen.");
|
|
|
|
}
|
2016-07-01 15:01:06 +02:00
|
|
|
|
2016-07-23 00:55:00 +02:00
|
|
|
return reg;
|
2016-07-01 15:01:06 +02:00
|
|
|
}
|
|
|
|
|
2016-07-23 00:55:00 +02:00
|
|
|
void RegAlloc::HostCall(IR::Inst* result_def, IR::Value arg0_use, IR::Value arg1_use, IR::Value arg2_use, IR::Value arg3_use) {
|
2016-07-11 16:28:10 +02:00
|
|
|
constexpr HostLoc AbiReturn = HostLoc::RAX;
|
|
|
|
#ifdef _WIN32
|
|
|
|
constexpr std::array<HostLoc, 4> AbiArgs = { HostLoc::RCX, HostLoc::RDX, HostLoc::R8, HostLoc::R9 };
|
|
|
|
/// Caller-saved registers other than AbiReturn or AbiArgs
|
|
|
|
constexpr std::array<HostLoc, 2> OtherCallerSave = { HostLoc::R10, HostLoc::R11 };
|
|
|
|
#else
|
|
|
|
constexpr std::array<HostLoc, 4> AbiArgs = { HostLoc::RDI, HostLoc::RSI, HostLoc::RDX, HostLoc::RCX };
|
|
|
|
/// Caller-saved registers other than AbiReturn or AbiArgs
|
|
|
|
constexpr std::array<HostLoc, 4> OtherCallerSave = { HostLoc::R8, HostLoc::R9, HostLoc::R10, HostLoc::R11 };
|
|
|
|
#endif
|
|
|
|
|
2016-07-23 00:55:00 +02:00
|
|
|
const std::array<IR::Value*, 4> args = {&arg0_use, &arg1_use, &arg2_use, &arg3_use};
|
2016-07-11 16:28:10 +02:00
|
|
|
|
|
|
|
// TODO: This works but almost certainly leads to suboptimal generated code.
|
|
|
|
|
|
|
|
for (HostLoc caller_save : OtherCallerSave) {
|
|
|
|
ScratchRegister({caller_save});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (result_def) {
|
|
|
|
DefRegister(result_def, {AbiReturn});
|
|
|
|
} else {
|
|
|
|
ScratchRegister({AbiReturn});
|
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t i = 0; i < AbiArgs.size(); i++) {
|
2016-07-23 00:55:00 +02:00
|
|
|
if (!args[i]->IsEmpty()) {
|
|
|
|
UseScratchRegister(*args[i], {AbiArgs[i]});
|
2016-07-11 16:28:10 +02:00
|
|
|
} else {
|
|
|
|
ScratchRegister({AbiArgs[i]});
|
|
|
|
}
|
|
|
|
}
|
2016-07-21 22:48:45 +02:00
|
|
|
|
|
|
|
ScratchRegister({HostLoc::RSP});
|
|
|
|
code->MOV(64, Gen::R(Gen::RSP), Gen::MDisp(Gen::R15, offsetof(JitState, save_host_RSP)));
|
2016-07-11 16:28:10 +02:00
|
|
|
}
|
|
|
|
|
2016-08-02 14:46:12 +02:00
|
|
|
HostLoc RegAlloc::SelectARegister(HostLocList desired_locations) const {
|
2016-07-01 15:01:06 +02:00
|
|
|
std::vector<HostLoc> candidates = desired_locations;
|
|
|
|
|
|
|
|
// Find all locations that have not been allocated..
|
|
|
|
auto allocated_locs = std::partition(candidates.begin(), candidates.end(), [this](auto loc){
|
|
|
|
return !this->IsRegisterAllocated(loc);
|
|
|
|
});
|
|
|
|
candidates.erase(allocated_locs, candidates.end());
|
|
|
|
ASSERT_MSG(!candidates.empty(), "All candidate registers have already been allocated");
|
|
|
|
|
|
|
|
// Selects the best location out of the available locations.
|
|
|
|
// TODO: Actually do LRU or something. Currently we just try to pick something without a value if possible.
|
|
|
|
|
|
|
|
std::partition(candidates.begin(), candidates.end(), [this](auto loc){
|
|
|
|
return !this->IsRegisterOccupied(loc);
|
|
|
|
});
|
|
|
|
|
|
|
|
return candidates.front();
|
|
|
|
}
|
|
|
|
|
2016-07-23 00:55:00 +02:00
|
|
|
std::vector<HostLoc> RegAlloc::ValueLocations(IR::Inst* value) const {
|
2016-07-01 15:01:06 +02:00
|
|
|
std::vector<HostLoc> locations;
|
|
|
|
|
2016-07-23 00:55:00 +02:00
|
|
|
for (size_t i = 0; i < HostLocCount; i++)
|
2016-08-02 14:46:12 +02:00
|
|
|
if (hostloc_info[i].value == value)
|
2016-07-23 00:55:00 +02:00
|
|
|
locations.emplace_back(static_cast<HostLoc>(i));
|
2016-07-01 15:01:06 +02:00
|
|
|
|
|
|
|
return locations;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RegAlloc::IsRegisterOccupied(HostLoc loc) const {
|
2016-08-02 14:46:12 +02:00
|
|
|
return GetLocInfo(loc).value != nullptr;
|
2016-07-01 15:01:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool RegAlloc::IsRegisterAllocated(HostLoc loc) const {
|
2016-08-02 14:46:12 +02:00
|
|
|
return GetLocInfo(loc).state != HostLocState::Idle;
|
2016-07-01 15:01:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void RegAlloc::SpillRegister(HostLoc loc) {
|
|
|
|
ASSERT_MSG(HostLocIsRegister(loc), "Only registers can be spilled");
|
2016-08-02 14:46:12 +02:00
|
|
|
ASSERT_MSG(LocInfo(loc).state == HostLocState::Idle, "Allocated registers cannot be spilled");
|
2016-07-01 15:01:06 +02:00
|
|
|
ASSERT_MSG(IsRegisterOccupied(loc), "There is no need to spill unoccupied registers");
|
|
|
|
ASSERT_MSG(!IsRegisterAllocated(loc), "Registers that have been allocated must not be spilt");
|
|
|
|
|
|
|
|
HostLoc new_loc = FindFreeSpill();
|
|
|
|
|
2016-08-02 14:46:12 +02:00
|
|
|
EmitMove(new_loc, loc);
|
2016-07-01 15:01:06 +02:00
|
|
|
|
2016-08-02 14:46:12 +02:00
|
|
|
LocInfo(new_loc).value = LocInfo(loc).value;
|
|
|
|
LocInfo(loc).value = nullptr;
|
2016-07-01 15:01:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
HostLoc RegAlloc::FindFreeSpill() const {
|
|
|
|
for (size_t i = 0; i < SpillCount; i++)
|
|
|
|
if (!IsRegisterOccupied(HostLocSpill(i)))
|
|
|
|
return HostLocSpill(i);
|
|
|
|
|
|
|
|
ASSERT_MSG(0, "All spill locations are full");
|
|
|
|
}
|
|
|
|
|
|
|
|
void RegAlloc::EndOfAllocScope() {
|
2016-08-02 14:46:12 +02:00
|
|
|
for (auto& iter : hostloc_info) {
|
|
|
|
iter.state = HostLocState::Idle;
|
|
|
|
if (iter.value && iter.value->use_count == 0)
|
|
|
|
iter.value = nullptr;
|
|
|
|
}
|
2016-07-01 15:01:06 +02:00
|
|
|
}
|
|
|
|
|
2016-07-23 00:55:00 +02:00
|
|
|
void RegAlloc::DecrementRemainingUses(IR::Inst* value) {
|
|
|
|
ASSERT_MSG(value->use_count > 0, "value doesn't have any remaining uses");
|
|
|
|
value->use_count--;
|
2016-07-11 23:43:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void RegAlloc::AssertNoMoreUses() {
|
2016-08-02 14:46:12 +02:00
|
|
|
ASSERT(std::all_of(hostloc_info.begin(), hostloc_info.end(), [](const auto& i){ return !i.value; }));
|
2016-07-11 23:43:53 +02:00
|
|
|
}
|
|
|
|
|
2016-07-04 15:37:50 +02:00
|
|
|
void RegAlloc::Reset() {
|
2016-08-02 14:46:12 +02:00
|
|
|
hostloc_info.fill({});
|
|
|
|
}
|
|
|
|
|
|
|
|
void RegAlloc::EmitMove(HostLoc to, HostLoc from) {
|
|
|
|
const auto& from_info = LocInfo(from);
|
|
|
|
|
|
|
|
if (HostLocIsXMM(to) && HostLocIsSpill(from)) {
|
|
|
|
if (from_info.GetType() == IR::Type::F64) {
|
|
|
|
code->MOVSD(HostLocToX64(to), SpillToOpArg(from));
|
|
|
|
} else if (from_info.GetType() == IR::Type::F32) {
|
|
|
|
code->MOVSS(HostLocToX64(to), SpillToOpArg(from));
|
|
|
|
} else {
|
|
|
|
ASSERT_MSG(false, "Tried to move a non-fp value into an XMM register");
|
|
|
|
}
|
|
|
|
} else if (HostLocIsSpill(to) && HostLocIsXMM(from)) {
|
|
|
|
if (from_info.GetType() == IR::Type::F64) {
|
|
|
|
code->MOVSD(SpillToOpArg(to), HostLocToX64(from));
|
|
|
|
} else if (from_info.GetType() == IR::Type::F32) {
|
|
|
|
code->MOVSS(SpillToOpArg(to), HostLocToX64(from));
|
|
|
|
} else {
|
|
|
|
ASSERT_MSG(false, "Tried to move a non-fp value into an XMM register");
|
|
|
|
}
|
|
|
|
} else if (HostLocIsXMM(to) && HostLocIsXMM(from)) {
|
|
|
|
code->MOVAPS(HostLocToX64(to), Gen::R(HostLocToX64(from)));
|
|
|
|
} else if (HostLocIsGPR(to) && HostLocIsSpill(from)) {
|
|
|
|
code->MOV(64, Gen::R(HostLocToX64(to)), SpillToOpArg(from));
|
|
|
|
} else if (HostLocIsSpill(to) && HostLocIsGPR(from)) {
|
|
|
|
code->MOV(64, SpillToOpArg(to), Gen::R(HostLocToX64(from)));
|
|
|
|
} else if (HostLocIsGPR(to) && HostLocIsGPR(from)){
|
|
|
|
code->MOV(64, Gen::R(HostLocToX64(to)), Gen::R(HostLocToX64(from)));
|
|
|
|
} else {
|
|
|
|
ASSERT_MSG(false, "Invalid RegAlloc::EmitMove");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void RegAlloc::EmitExchange(HostLoc a, HostLoc b) {
|
|
|
|
if (HostLocIsGPR(a) && HostLocIsGPR(b)) {
|
|
|
|
code->XCHG(64, Gen::R(HostLocToX64(a)), Gen::R(HostLocToX64(b)));
|
|
|
|
} else if (HostLocIsXMM(a) && HostLocIsXMM(b)) {
|
|
|
|
ASSERT_MSG(false, "Exchange is unnecessary for XMM registers");
|
|
|
|
} else {
|
|
|
|
ASSERT_MSG(false, "Invalid RegAlloc::EmitExchange");
|
|
|
|
}
|
2016-07-04 15:37:50 +02:00
|
|
|
}
|
|
|
|
|
2016-07-01 15:01:06 +02:00
|
|
|
} // namespace BackendX64
|
|
|
|
} // namespace Dynarmic
|