aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/common/symbols.h
diff options
context:
space:
mode:
authorGravatar Mathieu Vaillancourt <vaillancourtm@gmail.com>2014-04-12 18:57:58 -0400
committerGravatar Mathieu Vaillancourt <vaillancourtm@gmail.com>2014-04-12 19:04:31 -0400
commitd046cfbba1dd2bcdad4ace3be706dadf3f6cc288 (patch)
treed880f04c199bd08751b4f30a4eee5939d56e06cd /src/common/symbols.h
parentec19c679d7ef17bea86f86f5e393331d6032ed5a (diff)
Add symbols map
Diffstat (limited to 'src/common/symbols.h')
-rw-r--r--src/common/symbols.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/common/symbols.h b/src/common/symbols.h
new file mode 100644
index 00000000..b7674965
--- /dev/null
+++ b/src/common/symbols.h
@@ -0,0 +1,39 @@
+// Copyright 2014 Citra Emulator Project
+// Licensed under GPLv2
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include <map>
+
+#include "common/common.h"
+
+class DebugInterface;
+
+struct TSymbol
+{
+ TSymbol() :
+ address(0),
+ size(0),
+ type(0)
+ {}
+ u32 address;
+ std::string name;
+ u32 size;
+ u32 type;
+};
+
+typedef std::map<u32, TSymbol> TSymbolsMap;
+typedef std::pair<u32, TSymbol> TSymbolsPair;
+
+namespace Symbols
+{
+ bool HasSymbol(u32 _address);
+
+ 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();
+};
+