mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-12-26 01:04:58 +01:00
location_descriptor: Provide operator<< string overload (#24)
This commit is contained in:
parent
5c8bf5a15d
commit
b40d19c3b7
4 changed files with 39 additions and 13 deletions
|
|
@ -91,30 +91,22 @@ const size_t& Block::CycleCount() const {
|
|||
return cycle_count;
|
||||
}
|
||||
|
||||
static std::string LocDescToString(const LocationDescriptor& loc) {
|
||||
return fmt::format("{{{},{},{},{}}}",
|
||||
loc.PC(),
|
||||
loc.TFlag() ? "T" : "!T",
|
||||
loc.EFlag() ? "E" : "!E",
|
||||
loc.FPSCR().Value());
|
||||
}
|
||||
|
||||
static std::string TerminalToString(const Terminal& terminal_variant) {
|
||||
switch (terminal_variant.which()) {
|
||||
case 1: {
|
||||
auto terminal = boost::get<IR::Term::Interpret>(terminal_variant);
|
||||
return fmt::format("Interpret{{{}}}", LocDescToString(terminal.next));
|
||||
return fmt::format("Interpret{{{}}}", terminal.next);
|
||||
}
|
||||
case 2: {
|
||||
return "ReturnToDispatch{}";
|
||||
}
|
||||
case 3: {
|
||||
auto terminal = boost::get<IR::Term::LinkBlock>(terminal_variant);
|
||||
return fmt::format("LinkBlock{{{}}}", LocDescToString(terminal.next));
|
||||
return fmt::format("LinkBlock{{{}}}", terminal.next);
|
||||
}
|
||||
case 4: {
|
||||
auto terminal = boost::get<IR::Term::LinkBlockFast>(terminal_variant);
|
||||
return fmt::format("LinkBlockFast{{{}}}", LocDescToString(terminal.next));
|
||||
return fmt::format("LinkBlockFast{{{}}}", terminal.next);
|
||||
}
|
||||
case 5: {
|
||||
return "PopRSBHint{}";
|
||||
|
|
@ -135,11 +127,11 @@ static std::string TerminalToString(const Terminal& terminal_variant) {
|
|||
std::string DumpBlock(const IR::Block& block) {
|
||||
std::string ret;
|
||||
|
||||
ret += fmt::format("Block: location={}\n", LocDescToString(block.Location()));
|
||||
ret += fmt::format("Block: location={}\n", block.Location());
|
||||
ret += fmt::format("cycles={}", block.CycleCount());
|
||||
ret += fmt::format(", entry_cond={}", Arm::CondToString(block.GetCondition(), true));
|
||||
if (block.GetCondition() != Arm::Cond::AL) {
|
||||
ret += fmt::format(", cond_fail={}", LocDescToString(block.ConditionFailedLocation()));
|
||||
ret += fmt::format(", cond_fail={}", block.ConditionFailedLocation());
|
||||
}
|
||||
ret += '\n';
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue