mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-09 12:08:05 +03:00

The logging was broken in958cbf38a4
(DSPTool doesn't use dolphin's logging system, so it just produced nothing; the same thing affected comparing before693a29f8ce
). AssemblerError::LabelAlreadyExists (previously ERR_LABEL_EXISTS) simply was never used.
99 lines
2 KiB
C++
99 lines
2 KiB
C++
// Copyright 2009 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "Core/DSP/LabelMap.h"
|
|
|
|
#include <algorithm>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "Common/Logging/Log.h"
|
|
#include "Core/DSP/DSPTables.h"
|
|
|
|
namespace DSP
|
|
{
|
|
struct LabelMap::Label
|
|
{
|
|
Label(std::string lbl, s32 address, LabelType ltype)
|
|
: name(std::move(lbl)), addr(address), type(ltype)
|
|
{
|
|
}
|
|
std::string name;
|
|
s32 addr;
|
|
LabelType type;
|
|
};
|
|
|
|
LabelMap::LabelMap() = default;
|
|
|
|
LabelMap::~LabelMap() = default;
|
|
|
|
void LabelMap::RegisterDefaults()
|
|
{
|
|
for (const auto& reg_name_label : regnames)
|
|
{
|
|
if (reg_name_label.name != nullptr)
|
|
RegisterLabel(reg_name_label.name, reg_name_label.addr);
|
|
}
|
|
|
|
for (const auto& predefined_label : pdlabels)
|
|
{
|
|
if (predefined_label.name != nullptr)
|
|
RegisterLabel(predefined_label.name, predefined_label.addr);
|
|
}
|
|
}
|
|
|
|
bool LabelMap::RegisterLabel(std::string label, u16 lval, LabelType type)
|
|
{
|
|
const std::optional<u16> old_value = GetLabelValue(label);
|
|
if (old_value)
|
|
{
|
|
if (old_value != lval)
|
|
{
|
|
fmt::print("Attempted to redefine label {} from {:04x} to {:04x}\n", label, lval, *old_value);
|
|
return false;
|
|
}
|
|
else
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
labels.emplace_back(std::move(label), lval, type);
|
|
return true;
|
|
}
|
|
|
|
void LabelMap::DeleteLabel(std::string_view label)
|
|
{
|
|
const auto iter = std::find_if(labels.cbegin(), labels.cend(),
|
|
[&label](const auto& entry) { return entry.name == label; });
|
|
|
|
if (iter == labels.cend())
|
|
return;
|
|
|
|
labels.erase(iter);
|
|
}
|
|
|
|
std::optional<u16> LabelMap::GetLabelValue(std::string_view name, LabelType type) const
|
|
{
|
|
for (const auto& label : labels)
|
|
{
|
|
if (name == label.name)
|
|
{
|
|
if ((type & label.type) != 0)
|
|
{
|
|
return label.addr;
|
|
}
|
|
else
|
|
{
|
|
fmt::print("Wrong label type requested. {}\n", name);
|
|
}
|
|
}
|
|
}
|
|
|
|
return std::nullopt;
|
|
}
|
|
|
|
void LabelMap::Clear()
|
|
{
|
|
labels.clear();
|
|
}
|
|
} // namespace DSP
|