| 
									
										
										
										
											2015-05-24 06:55:12 +02:00
										 |  |  | // Copyright 2008 Dolphin Emulator Project
 | 
					
						
							| 
									
										
										
										
											2015-05-18 01:08:10 +02:00
										 |  |  | // Licensed under GPLv2+
 | 
					
						
							| 
									
										
										
										
											2013-04-17 23:09:55 -04:00
										 |  |  | // Refer to the license.txt file included.
 | 
					
						
							| 
									
										
										
										
											2009-07-06 02:10:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | // This file contains a generic symbol map implementation. For CPU-specific
 | 
					
						
							|  |  |  | // magic, derive and extend.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-10 13:54:46 -05:00
										 |  |  | #pragma once
 | 
					
						
							| 
									
										
										
										
											2009-07-06 02:10:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <map>
 | 
					
						
							| 
									
										
										
										
											2016-10-10 23:35:33 +01:00
										 |  |  | #include <set>
 | 
					
						
							| 
									
										
										
										
											2014-02-17 05:18:15 -05:00
										 |  |  | #include <string>
 | 
					
						
							| 
									
										
										
										
											2014-02-20 04:11:52 +01:00
										 |  |  | #include <utility>
 | 
					
						
							| 
									
										
										
										
											2009-07-12 21:58:32 +00:00
										 |  |  | #include <vector>
 | 
					
						
							| 
									
										
										
										
											2009-07-06 02:10:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-07 20:06:58 -05:00
										 |  |  | #include "Common/CommonTypes.h"
 | 
					
						
							| 
									
										
										
										
											2009-07-06 02:10:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | struct SCall | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   SCall(u32 a, u32 b) : function(a), callAddress(b) {} | 
					
						
							|  |  |  |   u32 function; | 
					
						
							|  |  |  |   u32 callAddress; | 
					
						
							| 
									
										
										
										
											2009-07-06 02:10:26 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct Symbol | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-09-13 21:01:35 -04:00
										 |  |  |   enum class Type | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   { | 
					
						
							| 
									
										
										
										
											2016-09-13 21:01:35 -04:00
										 |  |  |     Function, | 
					
						
							|  |  |  |     Data, | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   std::string name; | 
					
						
							| 
									
										
										
										
											2016-09-26 15:41:57 +02:00
										 |  |  |   std::string function_name;   // stripped function name
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   std::vector<SCall> callers;  // addresses of functions that call this function
 | 
					
						
							|  |  |  |   std::vector<SCall> calls;    // addresses of functions that are called by this function
 | 
					
						
							| 
									
										
										
										
											2016-09-13 20:47:00 -04:00
										 |  |  |   u32 hash = 0;                // use for HLE function finding
 | 
					
						
							|  |  |  |   u32 address = 0; | 
					
						
							|  |  |  |   u32 flags = 0; | 
					
						
							|  |  |  |   int size = 0; | 
					
						
							|  |  |  |   int numCalls = 0; | 
					
						
							| 
									
										
										
										
											2016-09-13 21:01:35 -04:00
										 |  |  |   Type type = Type::Function; | 
					
						
							| 
									
										
										
										
											2016-09-13 20:47:00 -04:00
										 |  |  |   int index = 0;  // only used for coloring the disasm view
 | 
					
						
							| 
									
										
										
										
											2016-09-13 21:16:04 -04:00
										 |  |  |   bool analyzed = false; | 
					
						
							| 
									
										
										
										
											2009-07-06 02:10:26 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | enum | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   FFLAG_TIMERINSTRUCTIONS = (1 << 0), | 
					
						
							|  |  |  |   FFLAG_LEAF = (1 << 1), | 
					
						
							|  |  |  |   FFLAG_ONLYCALLSNICELEAFS = (1 << 2), | 
					
						
							|  |  |  |   FFLAG_EVIL = (1 << 3), | 
					
						
							|  |  |  |   FFLAG_RFI = (1 << 4), | 
					
						
							|  |  |  |   FFLAG_STRAIGHT = (1 << 5) | 
					
						
							| 
									
										
										
										
											2009-07-06 02:10:26 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class SymbolDB | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   typedef std::map<u32, Symbol> XFuncMap; | 
					
						
							| 
									
										
										
										
											2016-10-10 23:35:33 +01:00
										 |  |  |   typedef std::map<u32, std::set<Symbol*>> XFuncPtrMap; | 
					
						
							| 
									
										
										
										
											2009-07-06 02:10:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | protected: | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   XFuncMap functions; | 
					
						
							|  |  |  |   XFuncPtrMap checksumToFunction; | 
					
						
							| 
									
										
										
										
											2009-07-06 02:10:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   SymbolDB() {} | 
					
						
							|  |  |  |   virtual ~SymbolDB() {} | 
					
						
							|  |  |  |   virtual Symbol* GetSymbolFromAddr(u32 addr) { return nullptr; } | 
					
						
							|  |  |  |   virtual Symbol* AddFunction(u32 startAddr) { return nullptr; } | 
					
						
							|  |  |  |   void AddCompleteSymbol(const Symbol& symbol); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   Symbol* GetSymbolFromName(const std::string& name); | 
					
						
							| 
									
										
										
										
											2016-10-04 17:33:25 +01:00
										 |  |  |   std::vector<Symbol*> GetSymbolsFromName(const std::string& name); | 
					
						
							| 
									
										
										
										
											2016-10-05 15:51:12 +01:00
										 |  |  |   Symbol* GetSymbolFromHash(u32 hash); | 
					
						
							|  |  |  |   std::vector<Symbol*> GetSymbolsFromHash(u32 hash); | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |   const XFuncMap& Symbols() const { return functions; } | 
					
						
							|  |  |  |   XFuncMap& AccessSymbols() { return functions; } | 
					
						
							|  |  |  |   void Clear(const char* prefix = ""); | 
					
						
							|  |  |  |   void List(); | 
					
						
							|  |  |  |   void Index(); | 
					
						
							| 
									
										
										
										
											2009-07-06 02:10:26 +00:00
										 |  |  | }; |