reg_alloc: Properly encapsulate HostLocInfo
This commit is contained in:
parent
469bb6253f
commit
65cccf070e
2 changed files with 91 additions and 62 deletions
|
@ -52,8 +52,8 @@ HostLoc RegAlloc::DefHostLocReg(IR::Inst* def_inst, HostLocList desired_location
|
||||||
SpillRegister(location);
|
SpillRegister(location);
|
||||||
}
|
}
|
||||||
|
|
||||||
LocInfo(location).is_being_used = true;
|
LocInfo(location).Lock();
|
||||||
LocInfo(location).def = def_inst;
|
LocInfo(location).Def(def_inst);
|
||||||
|
|
||||||
DEBUG_ASSERT(LocInfo(location).IsDef());
|
DEBUG_ASSERT(LocInfo(location).IsDef());
|
||||||
return location;
|
return location;
|
||||||
|
@ -69,7 +69,7 @@ void RegAlloc::RegisterAddDef(IR::Inst* def_inst, const IR::Value& use_inst) {
|
||||||
|
|
||||||
DEBUG_ASSERT_MSG(ValueLocation(use_inst.GetInst()), "use_inst must already be defined");
|
DEBUG_ASSERT_MSG(ValueLocation(use_inst.GetInst()), "use_inst must already be defined");
|
||||||
HostLoc location = *ValueLocation(use_inst.GetInst());
|
HostLoc location = *ValueLocation(use_inst.GetInst());
|
||||||
LocInfo(location).values.emplace_back(def_inst);
|
LocInfo(location).AddValue(def_inst);
|
||||||
use_inst.GetInst()->DecrementRemainingUses();
|
use_inst.GetInst()->DecrementRemainingUses();
|
||||||
DEBUG_ASSERT(LocInfo(location).IsIdle());
|
DEBUG_ASSERT(LocInfo(location).IsIdle());
|
||||||
}
|
}
|
||||||
|
@ -91,8 +91,8 @@ HostLoc RegAlloc::UseDefHostLocReg(IR::Inst* use_inst, IR::Inst* def_inst, HostL
|
||||||
HostLoc current_location = *ValueLocation(use_inst);
|
HostLoc current_location = *ValueLocation(use_inst);
|
||||||
auto& loc_info = LocInfo(current_location);
|
auto& loc_info = LocInfo(current_location);
|
||||||
if (loc_info.IsIdle()) {
|
if (loc_info.IsIdle()) {
|
||||||
loc_info.is_being_used = true;
|
loc_info.Lock();
|
||||||
loc_info.def = def_inst;
|
loc_info.Def(def_inst);
|
||||||
DEBUG_ASSERT(loc_info.IsUseDef());
|
DEBUG_ASSERT(loc_info.IsUseDef());
|
||||||
if (HostLocIsSpill(current_location)) {
|
if (HostLocIsSpill(current_location)) {
|
||||||
HostLoc new_location = SelectARegister(desired_locations);
|
HostLoc new_location = SelectARegister(desired_locations);
|
||||||
|
@ -136,12 +136,12 @@ std::tuple<OpArg, HostLoc> RegAlloc::UseDefOpArgHostLocReg(IR::Value use_value,
|
||||||
auto& loc_info = LocInfo(current_location);
|
auto& loc_info = LocInfo(current_location);
|
||||||
if (!loc_info.IsIdle()) {
|
if (!loc_info.IsIdle()) {
|
||||||
if (HostLocIsSpill(current_location)) {
|
if (HostLocIsSpill(current_location)) {
|
||||||
loc_info.is_being_used = true;
|
loc_info.Lock();
|
||||||
DEBUG_ASSERT(loc_info.IsUse());
|
DEBUG_ASSERT(loc_info.IsUse());
|
||||||
return std::make_tuple(SpillToOpArg(current_location), DefHostLocReg(def_inst, desired_locations));
|
return std::make_tuple(SpillToOpArg(current_location), DefHostLocReg(def_inst, desired_locations));
|
||||||
} else {
|
} else {
|
||||||
loc_info.is_being_used = true;
|
loc_info.Lock();
|
||||||
loc_info.def = def_inst;
|
loc_info.Def(def_inst);
|
||||||
DEBUG_ASSERT(loc_info.IsUseDef());
|
DEBUG_ASSERT(loc_info.IsUseDef());
|
||||||
return std::make_tuple(HostLocToX64(current_location), current_location);
|
return std::make_tuple(HostLocToX64(current_location), current_location);
|
||||||
}
|
}
|
||||||
|
@ -180,7 +180,7 @@ HostLoc RegAlloc::UseHostLocReg(IR::Inst* use_inst, HostLocList desired_location
|
||||||
LocInfo(current_location) = {};
|
LocInfo(current_location) = {};
|
||||||
DEBUG_ASSERT(LocInfo(new_location).IsUse());
|
DEBUG_ASSERT(LocInfo(new_location).IsUse());
|
||||||
} else {
|
} else {
|
||||||
LocInfo(new_location).is_being_used = true;
|
LocInfo(new_location).Lock();
|
||||||
DEBUG_ASSERT(LocInfo(new_location).IsScratch());
|
DEBUG_ASSERT(LocInfo(new_location).IsScratch());
|
||||||
}
|
}
|
||||||
return new_location;
|
return new_location;
|
||||||
|
@ -231,7 +231,7 @@ HostLoc RegAlloc::UseScratchHostLocReg(IR::Inst* use_inst, HostLocList desired_l
|
||||||
|
|
||||||
if (HostLocIsSpill(current_location)) {
|
if (HostLocIsSpill(current_location)) {
|
||||||
EmitMove(new_location, current_location);
|
EmitMove(new_location, current_location);
|
||||||
LocInfo(new_location).is_being_used = true;
|
LocInfo(new_location).Lock();
|
||||||
use_inst->DecrementRemainingUses();
|
use_inst->DecrementRemainingUses();
|
||||||
DEBUG_ASSERT(LocInfo(new_location).IsScratch());
|
DEBUG_ASSERT(LocInfo(new_location).IsScratch());
|
||||||
return new_location;
|
return new_location;
|
||||||
|
@ -246,8 +246,8 @@ HostLoc RegAlloc::UseScratchHostLocReg(IR::Inst* use_inst, HostLocList desired_l
|
||||||
ASSERT(LocInfo(current_location).IsIdle());
|
ASSERT(LocInfo(current_location).IsIdle());
|
||||||
}
|
}
|
||||||
|
|
||||||
LocInfo(new_location).is_being_used = true;
|
LocInfo(new_location) = {};
|
||||||
LocInfo(new_location).values.clear();
|
LocInfo(new_location).Lock();
|
||||||
use_inst->DecrementRemainingUses();
|
use_inst->DecrementRemainingUses();
|
||||||
DEBUG_ASSERT(LocInfo(new_location).IsScratch());
|
DEBUG_ASSERT(LocInfo(new_location).IsScratch());
|
||||||
return new_location;
|
return new_location;
|
||||||
|
@ -266,7 +266,7 @@ HostLoc RegAlloc::ScratchHostLocReg(HostLocList desired_locations) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update state
|
// Update state
|
||||||
LocInfo(location).is_being_used = true;
|
LocInfo(location).Lock();
|
||||||
|
|
||||||
DEBUG_ASSERT(LocInfo(location).IsScratch());
|
DEBUG_ASSERT(LocInfo(location).IsScratch());
|
||||||
return location;
|
return location;
|
||||||
|
@ -329,9 +329,8 @@ HostLoc RegAlloc::SelectARegister(HostLocList desired_locations) const {
|
||||||
|
|
||||||
boost::optional<HostLoc> RegAlloc::ValueLocation(const IR::Inst* value) const {
|
boost::optional<HostLoc> RegAlloc::ValueLocation(const IR::Inst* value) const {
|
||||||
for (size_t i = 0; i < HostLocCount; i++)
|
for (size_t i = 0; i < HostLocCount; i++)
|
||||||
for (const IR::Inst* v : hostloc_info[i].values)
|
if (hostloc_info[i].ContainsValue(value))
|
||||||
if (v == value)
|
return boost::make_optional<HostLoc>(static_cast<HostLoc>(i));
|
||||||
return boost::make_optional<HostLoc>(static_cast<HostLoc>(i));
|
|
||||||
|
|
||||||
return boost::none;
|
return boost::none;
|
||||||
}
|
}
|
||||||
|
@ -339,17 +338,18 @@ boost::optional<HostLoc> RegAlloc::ValueLocation(const IR::Inst* value) const {
|
||||||
bool RegAlloc::IsRegisterOccupied(HostLoc loc) const {
|
bool RegAlloc::IsRegisterOccupied(HostLoc loc) const {
|
||||||
const auto& info = LocInfo(loc);
|
const auto& info = LocInfo(loc);
|
||||||
|
|
||||||
return !info.values.empty() || info.def;
|
return !info.IsEmpty();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool RegAlloc::IsRegisterAllocated(HostLoc loc) const {
|
bool RegAlloc::IsRegisterAllocated(HostLoc loc) const {
|
||||||
return LocInfo(loc).is_being_used;
|
return !LocInfo(loc).IsIdle();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool RegAlloc::IsLastUse(const IR::Inst* inst) const {
|
bool RegAlloc::IsLastUse(const IR::Inst*) const {
|
||||||
if (inst->UseCount() > 1)
|
//if (inst->UseCount() > 1)
|
||||||
return false;
|
// return false;
|
||||||
return LocInfo(*ValueLocation(inst)).values.size() == 1;
|
//return LocInfo(*ValueLocation(inst)).values.size() == 1;
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
void RegAlloc::SpillRegister(HostLoc loc) {
|
void RegAlloc::SpillRegister(HostLoc loc) {
|
||||||
|
@ -375,22 +375,14 @@ HostLoc RegAlloc::FindFreeSpill() const {
|
||||||
|
|
||||||
void RegAlloc::EndOfAllocScope() {
|
void RegAlloc::EndOfAllocScope() {
|
||||||
for (auto& iter : hostloc_info) {
|
for (auto& iter : hostloc_info) {
|
||||||
iter.is_being_used = false;
|
iter.EndOfAllocScope();
|
||||||
if (iter.def) {
|
|
||||||
iter.values.clear();
|
|
||||||
iter.values.emplace_back(iter.def);
|
|
||||||
iter.def = nullptr;
|
|
||||||
}
|
|
||||||
if (!iter.values.empty()) {
|
|
||||||
auto to_erase = std::remove_if(iter.values.begin(), iter.values.end(),
|
|
||||||
[](const auto& inst){ return !inst->HasUses(); });
|
|
||||||
iter.values.erase(to_erase, iter.values.end());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void RegAlloc::AssertNoMoreUses() {
|
void RegAlloc::AssertNoMoreUses() {
|
||||||
ASSERT(std::all_of(hostloc_info.begin(), hostloc_info.end(), [](const auto& i){ return i.values.empty(); }));
|
if (!std::all_of(hostloc_info.begin(), hostloc_info.end(), [](const auto& i){ return i.IsEmpty(); })) {
|
||||||
|
ASSERT_MSG(false, "bad");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void RegAlloc::Reset() {
|
void RegAlloc::Reset() {
|
||||||
|
@ -438,15 +430,15 @@ std::tuple<HostLoc, bool> RegAlloc::UseHostLoc(IR::Inst* use_inst, HostLocList d
|
||||||
SpillRegister(new_location);
|
SpillRegister(new_location);
|
||||||
}
|
}
|
||||||
EmitMove(new_location, current_location);
|
EmitMove(new_location, current_location);
|
||||||
LocInfo(new_location).is_being_used = true;
|
LocInfo(new_location).Lock();
|
||||||
LocInfo(new_location).values.emplace_back(use_inst);
|
LocInfo(new_location).AddValue(use_inst);
|
||||||
use_inst->DecrementRemainingUses();
|
use_inst->DecrementRemainingUses();
|
||||||
DEBUG_ASSERT(LocInfo(new_location).IsUse());
|
DEBUG_ASSERT(LocInfo(new_location).IsUse());
|
||||||
return std::make_tuple(new_location, false);
|
return std::make_tuple(new_location, false);
|
||||||
} else {
|
} else {
|
||||||
bool was_being_used = LocInfo(current_location).is_being_used;
|
bool was_being_used = LocInfo(current_location).IsLocked();
|
||||||
ASSERT(LocInfo(current_location).IsUse() || LocInfo(current_location).IsIdle());
|
ASSERT(LocInfo(current_location).IsUse() || LocInfo(current_location).IsIdle());
|
||||||
LocInfo(current_location).is_being_used = true;
|
LocInfo(current_location).Lock();
|
||||||
use_inst->DecrementRemainingUses();
|
use_inst->DecrementRemainingUses();
|
||||||
DEBUG_ASSERT(LocInfo(current_location).IsUse());
|
DEBUG_ASSERT(LocInfo(current_location).IsUse());
|
||||||
return std::make_tuple(current_location, was_being_used);
|
return std::make_tuple(current_location, was_being_used);
|
||||||
|
@ -454,8 +446,8 @@ std::tuple<HostLoc, bool> RegAlloc::UseHostLoc(IR::Inst* use_inst, HostLocList d
|
||||||
}
|
}
|
||||||
|
|
||||||
if (HostLocIsSpill(current_location)) {
|
if (HostLocIsSpill(current_location)) {
|
||||||
bool was_being_used = LocInfo(current_location).is_being_used;
|
bool was_being_used = LocInfo(current_location).IsLocked();
|
||||||
LocInfo(current_location).is_being_used = true;
|
LocInfo(current_location).Lock();
|
||||||
use_inst->DecrementRemainingUses();
|
use_inst->DecrementRemainingUses();
|
||||||
DEBUG_ASSERT(LocInfo(current_location).IsUse());
|
DEBUG_ASSERT(LocInfo(current_location).IsUse());
|
||||||
return std::make_tuple(current_location, was_being_used);
|
return std::make_tuple(current_location, was_being_used);
|
||||||
|
@ -464,7 +456,7 @@ std::tuple<HostLoc, bool> RegAlloc::UseHostLoc(IR::Inst* use_inst, HostLocList d
|
||||||
ASSERT(LocInfo(current_location).IsIdle());
|
ASSERT(LocInfo(current_location).IsIdle());
|
||||||
EmitExchange(new_location, current_location);
|
EmitExchange(new_location, current_location);
|
||||||
std::swap(LocInfo(new_location), LocInfo(current_location));
|
std::swap(LocInfo(new_location), LocInfo(current_location));
|
||||||
LocInfo(new_location).is_being_used = true;
|
LocInfo(new_location).Lock();
|
||||||
use_inst->DecrementRemainingUses();
|
use_inst->DecrementRemainingUses();
|
||||||
DEBUG_ASSERT(LocInfo(new_location).IsUse());
|
DEBUG_ASSERT(LocInfo(new_location).IsUse());
|
||||||
return std::make_tuple(new_location, false);
|
return std::make_tuple(new_location, false);
|
||||||
|
|
|
@ -22,6 +22,64 @@
|
||||||
namespace Dynarmic {
|
namespace Dynarmic {
|
||||||
namespace BackendX64 {
|
namespace BackendX64 {
|
||||||
|
|
||||||
|
struct HostLocInfo {
|
||||||
|
public:
|
||||||
|
bool IsIdle() const {
|
||||||
|
return !is_being_used;
|
||||||
|
}
|
||||||
|
bool IsLocked() const {
|
||||||
|
return is_being_used;
|
||||||
|
}
|
||||||
|
bool IsEmpty() const {
|
||||||
|
return !is_being_used && !def && values.empty();
|
||||||
|
}
|
||||||
|
bool IsScratch() const {
|
||||||
|
return is_being_used && !def && values.empty();
|
||||||
|
}
|
||||||
|
bool IsUse() const {
|
||||||
|
return is_being_used && !def && !values.empty();
|
||||||
|
}
|
||||||
|
bool IsDef() const {
|
||||||
|
return is_being_used && def && values.empty();
|
||||||
|
}
|
||||||
|
bool IsUseDef() const {
|
||||||
|
return is_being_used && def && !values.empty();
|
||||||
|
}
|
||||||
|
|
||||||
|
bool ContainsValue(const IR::Inst* inst) const {
|
||||||
|
return std::find(values.begin(), values.end(), inst) != values.end();
|
||||||
|
}
|
||||||
|
|
||||||
|
void Lock() {
|
||||||
|
is_being_used = true;
|
||||||
|
}
|
||||||
|
void AddValue(IR::Inst* inst) {
|
||||||
|
values.push_back(inst);
|
||||||
|
}
|
||||||
|
void Def(IR::Inst* inst) {
|
||||||
|
ASSERT(!def);
|
||||||
|
def = 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());
|
||||||
|
|
||||||
|
if (def) {
|
||||||
|
ASSERT(values.empty());
|
||||||
|
AddValue(def);
|
||||||
|
def = nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
is_being_used = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
std::vector<IR::Inst*> values; // early value
|
||||||
|
IR::Inst* def = nullptr; // late value
|
||||||
|
bool is_being_used = false;
|
||||||
|
};
|
||||||
|
|
||||||
class RegAlloc final {
|
class RegAlloc final {
|
||||||
public:
|
public:
|
||||||
explicit RegAlloc(BlockOfCode* code) : code(code) {}
|
explicit RegAlloc(BlockOfCode* code) : code(code) {}
|
||||||
|
@ -114,27 +172,6 @@ private:
|
||||||
|
|
||||||
BlockOfCode* code = nullptr;
|
BlockOfCode* code = nullptr;
|
||||||
|
|
||||||
struct HostLocInfo {
|
|
||||||
std::vector<IR::Inst*> values; // early value
|
|
||||||
IR::Inst* def = nullptr; // late value
|
|
||||||
bool is_being_used = false;
|
|
||||||
|
|
||||||
bool IsIdle() const {
|
|
||||||
return !is_being_used;
|
|
||||||
}
|
|
||||||
bool IsScratch() const {
|
|
||||||
return is_being_used && !def && values.empty();
|
|
||||||
}
|
|
||||||
bool IsUse() const {
|
|
||||||
return is_being_used && !def && !values.empty();
|
|
||||||
}
|
|
||||||
bool IsDef() const {
|
|
||||||
return is_being_used && def && values.empty();
|
|
||||||
}
|
|
||||||
bool IsUseDef() const {
|
|
||||||
return is_being_used && def && !values.empty();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
std::array<HostLocInfo, HostLocCount> hostloc_info;
|
std::array<HostLocInfo, HostLocCount> hostloc_info;
|
||||||
HostLocInfo& LocInfo(HostLoc loc) {
|
HostLocInfo& LocInfo(HostLoc loc) {
|
||||||
DEBUG_ASSERT(loc != HostLoc::RSP && loc != HostLoc::R15);
|
DEBUG_ASSERT(loc != HostLoc::RSP && loc != HostLoc::R15);
|
||||||
|
|
Loading…
Reference in a new issue