2014-04-12 18:57:58 -04:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 00:38:14 -05:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-12 18:57:58 -04:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <map>
|
2015-05-06 03:06:12 -04:00
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
|
|
|
#include "common/common_types.h"
|
2014-04-12 18:57:58 -04:00
|
|
|
|
2016-09-17 20:38:01 -04:00
|
|
|
struct TSymbol {
|
|
|
|
u32 address = 0;
|
2014-04-12 18:57:58 -04:00
|
|
|
std::string name;
|
2016-09-17 20:38:01 -04:00
|
|
|
u32 size = 0;
|
|
|
|
u32 type = 0;
|
2014-04-12 18:57:58 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::map<u32, TSymbol> TSymbolsMap;
|
|
|
|
typedef std::pair<u32, TSymbol> TSymbolsPair;
|
|
|
|
|
2016-09-17 20:38:01 -04:00
|
|
|
namespace Symbols {
|
|
|
|
bool HasSymbol(u32 address);
|
2014-04-12 18:57:58 -04:00
|
|
|
|
2016-09-17 20:38:01 -04:00
|
|
|
void Add(u32 address, const std::string& name, u32 size, u32 type);
|
|
|
|
TSymbol GetSymbol(u32 address);
|
|
|
|
const std::string GetName(u32 address);
|
|
|
|
void Remove(u32 address);
|
|
|
|
void Clear();
|
2014-11-18 08:27:16 -05:00
|
|
|
}
|