2016-07-01 14:01:06 +01: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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2016-08-17 15:53:36 +01:00
|
|
|
#include <array>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include <boost/optional.hpp>
|
2016-08-24 20:07:08 +01:00
|
|
|
#include <xbyak.h>
|
2016-07-01 14:01:06 +01:00
|
|
|
|
2016-08-07 18:08:48 +01:00
|
|
|
#include "backend_x64/block_of_code.h"
|
2016-08-24 20:07:08 +01:00
|
|
|
#include "backend_x64/hostloc.h"
|
2017-02-21 23:38:36 +00:00
|
|
|
#include "backend_x64/oparg.h"
|
2016-07-01 14:01:06 +01:00
|
|
|
#include "common/common_types.h"
|
2016-08-17 15:53:36 +01:00
|
|
|
#include "frontend/ir/microinstruction.h"
|
|
|
|
#include "frontend/ir/value.h"
|
2016-07-01 14:01:06 +01:00
|
|
|
|
|
|
|
namespace Dynarmic {
|
|
|
|
namespace BackendX64 {
|
|
|
|
|
2017-02-24 18:42:59 +00:00
|
|
|
struct HostLocInfo {
|
|
|
|
public:
|
|
|
|
bool IsLocked() const {
|
|
|
|
return is_being_used;
|
|
|
|
}
|
|
|
|
bool IsEmpty() const {
|
2017-02-24 19:08:58 +00:00
|
|
|
return !is_being_used && values.empty();
|
2017-02-24 18:42:59 +00:00
|
|
|
}
|
2017-02-24 20:14:02 +00:00
|
|
|
bool IsLastUse() const {
|
|
|
|
return !is_being_used && std::all_of(values.begin(), values.end(), [](const auto& inst) { return !inst->HasUses(); });
|
2017-02-24 18:42:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ContainsValue(const IR::Inst* inst) const {
|
|
|
|
return std::find(values.begin(), values.end(), inst) != values.end();
|
|
|
|
}
|
|
|
|
|
2017-02-24 20:19:50 +00:00
|
|
|
void ReadLock() {
|
|
|
|
ASSERT(!is_scratch);
|
2017-02-24 18:42:59 +00:00
|
|
|
is_being_used = true;
|
|
|
|
}
|
2017-02-24 20:19:50 +00:00
|
|
|
void WriteLock() {
|
|
|
|
ASSERT(!is_being_used);
|
|
|
|
is_being_used = true;
|
|
|
|
is_scratch = true;
|
|
|
|
}
|
2017-02-24 18:42:59 +00:00
|
|
|
void AddValue(IR::Inst* inst) {
|
|
|
|
values.push_back(inst);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EndOfAllocScope() {
|
|
|
|
const auto to_erase = std::remove_if(values.begin(), values.end(), [](const auto& inst){ return !inst->HasUses(); });
|
|
|
|
values.erase(to_erase, values.end());
|
|
|
|
|
|
|
|
is_being_used = false;
|
2017-02-24 20:19:50 +00:00
|
|
|
is_scratch = false;
|
2017-02-24 18:42:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2017-02-24 19:08:58 +00:00
|
|
|
std::vector<IR::Inst*> values;
|
2017-02-24 18:42:59 +00:00
|
|
|
bool is_being_used = false;
|
2017-02-24 20:19:50 +00:00
|
|
|
bool is_scratch = false;
|
2017-02-24 18:42:59 +00:00
|
|
|
};
|
|
|
|
|
2016-07-01 14:01:06 +01:00
|
|
|
class RegAlloc final {
|
|
|
|
public:
|
2016-09-07 12:08:48 +01:00
|
|
|
explicit RegAlloc(BlockOfCode* code) : code(code) {}
|
2016-07-01 14:01:06 +01:00
|
|
|
|
|
|
|
/// Late-def
|
2016-08-24 20:07:08 +01:00
|
|
|
Xbyak::Reg64 DefGpr(IR::Inst* def_inst, HostLocList desired_locations = any_gpr) {
|
2017-02-24 19:08:58 +00:00
|
|
|
HostLoc location = ScratchHostLocReg(desired_locations);
|
|
|
|
DefineValue(def_inst, location);
|
|
|
|
return HostLocToReg64(location);
|
2016-08-24 20:07:08 +01:00
|
|
|
}
|
|
|
|
Xbyak::Xmm DefXmm(IR::Inst* def_inst, HostLocList desired_locations = any_xmm) {
|
2017-02-24 19:08:58 +00:00
|
|
|
HostLoc location = ScratchHostLocReg(desired_locations);
|
|
|
|
DefineValue(def_inst, location);
|
|
|
|
return HostLocToXmm(location);
|
2016-08-24 20:07:08 +01:00
|
|
|
}
|
2016-08-05 14:10:39 +01:00
|
|
|
void RegisterAddDef(IR::Inst* def_inst, const IR::Value& use_inst);
|
2016-07-01 14:01:06 +01:00
|
|
|
/// Early-use, Late-def
|
2016-08-24 20:07:08 +01:00
|
|
|
Xbyak::Reg64 UseDefGpr(IR::Value use_value, IR::Inst* def_inst, HostLocList desired_locations = any_gpr) {
|
2017-02-24 19:08:58 +00:00
|
|
|
HostLoc location = UseScratchHostLocReg(use_value, desired_locations);
|
|
|
|
DefineValue(def_inst, location);
|
|
|
|
return HostLocToReg64(location);
|
2016-08-24 20:07:08 +01:00
|
|
|
}
|
|
|
|
Xbyak::Xmm UseDefXmm(IR::Value use_value, IR::Inst* def_inst, HostLocList desired_locations = any_xmm) {
|
2017-02-24 19:08:58 +00:00
|
|
|
HostLoc location = UseScratchHostLocReg(use_value, desired_locations);
|
|
|
|
DefineValue(def_inst, location);
|
|
|
|
return HostLocToXmm(location);
|
2016-08-24 20:07:08 +01:00
|
|
|
}
|
|
|
|
std::tuple<OpArg, Xbyak::Reg64> UseDefOpArgGpr(IR::Value use_value, IR::Inst* def_inst, HostLocList desired_locations = any_gpr) {
|
|
|
|
OpArg op;
|
|
|
|
HostLoc host_loc;
|
|
|
|
std::tie(op, host_loc) = UseDefOpArgHostLocReg(use_value, def_inst, desired_locations);
|
|
|
|
return std::make_tuple(op, HostLocToReg64(host_loc));
|
|
|
|
}
|
2016-08-26 18:50:08 +01:00
|
|
|
std::tuple<OpArg, Xbyak::Xmm> UseDefOpArgXmm(IR::Value use_value, IR::Inst* def_inst, HostLocList desired_locations = any_xmm) {
|
2016-08-24 20:07:08 +01:00
|
|
|
OpArg op;
|
|
|
|
HostLoc host_loc;
|
|
|
|
std::tie(op, host_loc) = UseDefOpArgHostLocReg(use_value, def_inst, desired_locations);
|
|
|
|
return std::make_tuple(op, HostLocToXmm(host_loc));
|
|
|
|
}
|
2016-07-01 14:01:06 +01:00
|
|
|
/// Early-use
|
2016-08-24 20:07:08 +01:00
|
|
|
Xbyak::Reg64 UseGpr(IR::Value use_value, HostLocList desired_locations = any_gpr) {
|
|
|
|
return HostLocToReg64(UseHostLocReg(use_value, desired_locations));
|
|
|
|
}
|
|
|
|
Xbyak::Xmm UseXmm(IR::Value use_value, HostLocList desired_locations = any_xmm) {
|
|
|
|
return HostLocToXmm(UseHostLocReg(use_value, desired_locations));
|
|
|
|
}
|
|
|
|
OpArg UseOpArg(IR::Value use_value, HostLocList desired_locations);
|
2016-07-18 15:11:16 +01:00
|
|
|
/// Early-use, Destroyed
|
2016-08-24 20:07:08 +01:00
|
|
|
Xbyak::Reg64 UseScratchGpr(IR::Value use_value, HostLocList desired_locations = any_gpr) {
|
|
|
|
return HostLocToReg64(UseScratchHostLocReg(use_value, desired_locations));
|
|
|
|
}
|
|
|
|
Xbyak::Xmm UseScratchXmm(IR::Value use_value, HostLocList desired_locations = any_xmm) {
|
|
|
|
return HostLocToXmm(UseScratchHostLocReg(use_value, desired_locations));
|
|
|
|
}
|
2016-07-01 14:01:06 +01:00
|
|
|
/// Early-def, Late-use, single-use
|
2016-08-24 20:07:08 +01:00
|
|
|
Xbyak::Reg64 ScratchGpr(HostLocList desired_locations = any_gpr) {
|
|
|
|
return HostLocToReg64(ScratchHostLocReg(desired_locations));
|
|
|
|
}
|
|
|
|
Xbyak::Xmm ScratchXmm(HostLocList desired_locations = any_xmm) {
|
|
|
|
return HostLocToXmm(ScratchHostLocReg(desired_locations));
|
|
|
|
}
|
2016-07-01 14:01:06 +01:00
|
|
|
|
2016-07-11 15:28:10 +01:00
|
|
|
/// Late-def for result register, Early-use for all arguments, Each value is placed into registers according to host ABI.
|
2016-07-22 23:55:00 +01:00
|
|
|
void HostCall(IR::Inst* result_def = nullptr, IR::Value arg0_use = {}, IR::Value arg1_use = {}, IR::Value arg2_use = {}, IR::Value arg3_use = {});
|
2016-07-11 15:28:10 +01:00
|
|
|
|
2016-07-01 14:01:06 +01:00
|
|
|
// TODO: Values in host flags
|
|
|
|
|
|
|
|
void EndOfAllocScope();
|
|
|
|
|
2016-07-11 22:43:53 +01:00
|
|
|
void AssertNoMoreUses();
|
|
|
|
|
2016-07-04 14:37:50 +01:00
|
|
|
void Reset();
|
|
|
|
|
2016-07-01 14:01:06 +01:00
|
|
|
private:
|
2016-08-02 13:46:12 +01:00
|
|
|
HostLoc SelectARegister(HostLocList desired_locations) const;
|
2016-08-19 03:13:38 +01:00
|
|
|
boost::optional<HostLoc> ValueLocation(const IR::Inst* value) const;
|
2016-08-05 14:10:39 +01:00
|
|
|
|
2017-02-24 19:08:58 +00:00
|
|
|
void DefineValue(IR::Inst* def_inst, HostLoc host_loc);
|
|
|
|
|
2016-08-24 20:07:08 +01:00
|
|
|
std::tuple<OpArg, HostLoc> UseDefOpArgHostLocReg(IR::Value use_value, IR::Inst* def_inst, HostLocList desired_locations);
|
|
|
|
HostLoc UseHostLocReg(IR::Value use_value, HostLocList desired_locations);
|
|
|
|
HostLoc UseHostLocReg(IR::Inst* use_inst, HostLocList desired_locations);
|
|
|
|
HostLoc UseScratchHostLocReg(IR::Value use_value, HostLocList desired_locations);
|
|
|
|
HostLoc UseScratchHostLocReg(IR::Inst* use_inst, HostLocList desired_locations);
|
|
|
|
HostLoc ScratchHostLocReg(HostLocList desired_locations);
|
2016-07-01 14:01:06 +01:00
|
|
|
|
2016-08-24 20:07:08 +01:00
|
|
|
HostLoc LoadImmediateIntoHostLocReg(IR::Value imm, HostLoc reg);
|
2016-08-05 14:10:39 +01:00
|
|
|
|
2017-02-24 19:42:36 +00:00
|
|
|
void Move(HostLoc to, HostLoc from);
|
2017-02-24 19:58:16 +00:00
|
|
|
void CopyToScratch(HostLoc to, HostLoc from);
|
2017-02-24 19:42:36 +00:00
|
|
|
void Exchange(HostLoc a, HostLoc b);
|
|
|
|
void MoveOutOfTheWay(HostLoc reg);
|
|
|
|
|
2016-07-01 14:01:06 +01:00
|
|
|
void SpillRegister(HostLoc loc);
|
|
|
|
HostLoc FindFreeSpill() const;
|
|
|
|
|
2016-08-07 18:08:48 +01:00
|
|
|
BlockOfCode* code = nullptr;
|
2016-07-01 14:01:06 +01:00
|
|
|
|
2016-08-02 13:46:12 +01:00
|
|
|
std::array<HostLocInfo, HostLocCount> hostloc_info;
|
|
|
|
HostLocInfo& LocInfo(HostLoc loc) {
|
2016-11-30 19:42:41 +00:00
|
|
|
DEBUG_ASSERT(loc != HostLoc::RSP && loc != HostLoc::R15);
|
2016-08-02 13:46:12 +01:00
|
|
|
return hostloc_info[static_cast<size_t>(loc)];
|
|
|
|
}
|
2016-08-16 19:52:46 +01:00
|
|
|
const HostLocInfo& LocInfo(HostLoc loc) const {
|
2016-11-30 19:42:41 +00:00
|
|
|
DEBUG_ASSERT(loc != HostLoc::RSP && loc != HostLoc::R15);
|
2016-08-02 13:46:12 +01:00
|
|
|
return hostloc_info[static_cast<size_t>(loc)];
|
|
|
|
}
|
2016-07-01 14:01:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace BackendX64
|
|
|
|
} // namespace Dynarmic
|