summaryrefslogtreecommitdiffstats
path: root/src/common/symbols.cpp
blob: c4d16af856be484072f9854f45611e7c60c8357b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "common/symbols.h"

TSymbolsMap g_symbols;

namespace Symbols {
bool HasSymbol(u32 address) {
    return g_symbols.find(address) != g_symbols.end();
}

void Add(u32 address, const std::string& name, u32 size, u32 type) {
    if (!HasSymbol(address)) {
        TSymbol symbol;
        symbol.address = address;
        symbol.name = name;
        symbol.size = size;
        symbol.type = type;

        g_symbols.emplace(address, symbol);
    }
}

TSymbol GetSymbol(u32 address) {
    const auto iter = g_symbols.find(address);

    if (iter != g_symbols.end())
        return iter->second;

    return {};
}

const std::string GetName(u32 address) {
    return GetSymbol(address).name;
}

void Remove(u32 address) {
    g_symbols.erase(address);
}

void Clear() {
    g_symbols.clear();
}
}