mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 13:20:27 -06:00
SymbolDB: Normalize variable names
Normalizes variable naming so that it adheres to our coding style While we're at it do minor cleanup relating to modified lines
This commit is contained in:
@ -28,25 +28,25 @@ void Symbol::Rename(const std::string& symbol_name)
|
||||
|
||||
void SymbolDB::List()
|
||||
{
|
||||
for (const auto& func : functions)
|
||||
for (const auto& func : m_functions)
|
||||
{
|
||||
DEBUG_LOG(OSHLE, "%s @ %08x: %i bytes (hash %08x) : %i calls", func.second.name.c_str(),
|
||||
func.second.address, func.second.size, func.second.hash, func.second.numCalls);
|
||||
func.second.address, func.second.size, func.second.hash, func.second.num_calls);
|
||||
}
|
||||
INFO_LOG(OSHLE, "%zu functions known in this program above.", functions.size());
|
||||
INFO_LOG(OSHLE, "%zu functions known in this program above.", m_functions.size());
|
||||
}
|
||||
|
||||
void SymbolDB::Clear(const char* prefix)
|
||||
{
|
||||
// TODO: honor prefix
|
||||
functions.clear();
|
||||
checksumToFunction.clear();
|
||||
m_functions.clear();
|
||||
m_checksum_to_function.clear();
|
||||
}
|
||||
|
||||
void SymbolDB::Index()
|
||||
{
|
||||
int i = 0;
|
||||
for (auto& func : functions)
|
||||
for (auto& func : m_functions)
|
||||
{
|
||||
func.second.index = i++;
|
||||
}
|
||||
@ -54,7 +54,7 @@ void SymbolDB::Index()
|
||||
|
||||
Symbol* SymbolDB::GetSymbolFromName(const std::string& name)
|
||||
{
|
||||
for (auto& func : functions)
|
||||
for (auto& func : m_functions)
|
||||
{
|
||||
if (func.second.function_name == name)
|
||||
return &func.second;
|
||||
@ -67,7 +67,7 @@ std::vector<Symbol*> SymbolDB::GetSymbolsFromName(const std::string& name)
|
||||
{
|
||||
std::vector<Symbol*> symbols;
|
||||
|
||||
for (auto& func : functions)
|
||||
for (auto& func : m_functions)
|
||||
{
|
||||
if (func.second.function_name == name)
|
||||
symbols.push_back(&func.second);
|
||||
@ -78,18 +78,18 @@ std::vector<Symbol*> SymbolDB::GetSymbolsFromName(const std::string& name)
|
||||
|
||||
Symbol* SymbolDB::GetSymbolFromHash(u32 hash)
|
||||
{
|
||||
XFuncPtrMap::iterator iter = checksumToFunction.find(hash);
|
||||
if (iter != checksumToFunction.end())
|
||||
return *iter->second.begin();
|
||||
else
|
||||
auto iter = m_checksum_to_function.find(hash);
|
||||
if (iter == m_checksum_to_function.end())
|
||||
return nullptr;
|
||||
|
||||
return *iter->second.begin();
|
||||
}
|
||||
|
||||
std::vector<Symbol*> SymbolDB::GetSymbolsFromHash(u32 hash)
|
||||
{
|
||||
const auto iter = checksumToFunction.find(hash);
|
||||
const auto iter = m_checksum_to_function.find(hash);
|
||||
|
||||
if (iter == checksumToFunction.cend())
|
||||
if (iter == m_checksum_to_function.cend())
|
||||
return {};
|
||||
|
||||
return {iter->second.cbegin(), iter->second.cend()};
|
||||
@ -97,5 +97,5 @@ std::vector<Symbol*> SymbolDB::GetSymbolsFromHash(u32 hash)
|
||||
|
||||
void SymbolDB::AddCompleteSymbol(const Symbol& symbol)
|
||||
{
|
||||
functions.emplace(symbol.address, symbol);
|
||||
m_functions.emplace(symbol.address, symbol);
|
||||
}
|
||||
|
Reference in New Issue
Block a user