2012-11-01 16:19:01 +01:00
|
|
|
// Copyright (c) 2012- PPSSPP Project.
|
|
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
2012-11-04 23:01:49 +01:00
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
2012-11-01 16:19:01 +01:00
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
|
|
// Official git repository and contact information can be found at
|
|
|
|
|
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <vector>
|
2013-06-30 09:42:31 -07:00
|
|
|
#include <set>
|
2013-07-06 16:58:17 -07:00
|
|
|
#include <map>
|
2013-12-30 10:49:05 +01:00
|
|
|
#include <string>
|
2017-02-27 21:57:46 +01:00
|
|
|
#include <mutex>
|
2013-12-30 10:17:11 +01:00
|
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
2021-05-06 01:31:38 +02:00
|
|
|
#include "Common/File/Path.h"
|
2013-12-30 10:17:11 +01:00
|
|
|
|
2013-10-18 14:31:08 +02:00
|
|
|
enum SymbolType {
|
2013-12-02 15:30:03 +01:00
|
|
|
ST_NONE = 0,
|
|
|
|
|
ST_FUNCTION = 1,
|
|
|
|
|
ST_DATA = 2,
|
|
|
|
|
ST_ALL = 3,
|
2012-11-01 16:19:01 +01:00
|
|
|
};
|
|
|
|
|
|
2013-10-18 14:31:08 +02:00
|
|
|
struct SymbolInfo {
|
2013-11-27 13:33:30 +01:00
|
|
|
SymbolType type;
|
2013-07-06 16:58:17 -07:00
|
|
|
u32 address;
|
|
|
|
|
u32 size;
|
2014-05-04 01:24:18 -07:00
|
|
|
u32 moduleAddress;
|
2013-07-06 16:58:17 -07:00
|
|
|
};
|
|
|
|
|
|
2013-12-02 15:30:03 +01:00
|
|
|
struct SymbolEntry {
|
2013-11-27 15:06:41 +01:00
|
|
|
std::string name;
|
|
|
|
|
u32 address;
|
|
|
|
|
u32 size;
|
|
|
|
|
};
|
|
|
|
|
|
2014-01-27 00:35:16 +01:00
|
|
|
struct LoadedModuleInfo {
|
|
|
|
|
std::string name;
|
|
|
|
|
u32 address;
|
|
|
|
|
u32 size;
|
|
|
|
|
bool active;
|
|
|
|
|
};
|
|
|
|
|
|
2013-12-02 15:30:03 +01:00
|
|
|
enum DataType {
|
|
|
|
|
DATATYPE_NONE, DATATYPE_BYTE, DATATYPE_HALFWORD, DATATYPE_WORD, DATATYPE_ASCII
|
|
|
|
|
};
|
2013-11-27 13:33:30 +01:00
|
|
|
|
2015-12-26 20:14:14 -08:00
|
|
|
struct LabelDefinition;
|
|
|
|
|
|
2012-11-01 16:19:01 +01:00
|
|
|
#ifdef _WIN32
|
|
|
|
|
struct HWND__;
|
|
|
|
|
typedef struct HWND__ *HWND;
|
|
|
|
|
#endif
|
|
|
|
|
|
2013-10-18 14:31:08 +02:00
|
|
|
class SymbolMap {
|
2012-11-01 16:19:01 +01:00
|
|
|
public:
|
2017-12-26 18:11:22 -08:00
|
|
|
SymbolMap() {}
|
2013-11-27 13:33:30 +01:00
|
|
|
void Clear();
|
|
|
|
|
void SortSymbols();
|
|
|
|
|
|
2021-05-06 01:31:38 +02:00
|
|
|
bool LoadSymbolMap(const Path &filename);
|
2023-03-24 18:08:31 +01:00
|
|
|
bool SaveSymbolMap(const Path &filename) const;
|
2021-05-06 01:31:38 +02:00
|
|
|
bool LoadNocashSym(const Path &filename);
|
|
|
|
|
void SaveNocashSym(const Path &filename) const;
|
2013-12-02 15:30:03 +01:00
|
|
|
|
2017-12-26 18:11:22 -08:00
|
|
|
SymbolType GetSymbolType(u32 address);
|
|
|
|
|
bool GetSymbolInfo(SymbolInfo *info, u32 address, SymbolType symmask = ST_FUNCTION);
|
2013-11-27 13:33:30 +01:00
|
|
|
u32 GetNextSymbolAddress(u32 address, SymbolType symmask);
|
2017-12-26 18:11:22 -08:00
|
|
|
std::string GetDescription(unsigned int address);
|
2013-11-27 15:06:41 +01:00
|
|
|
std::vector<SymbolEntry> GetAllSymbols(SymbolType symmask);
|
2013-11-27 13:33:30 +01:00
|
|
|
|
2012-11-01 16:19:01 +01:00
|
|
|
#ifdef _WIN32
|
2017-12-26 18:11:22 -08:00
|
|
|
void FillSymbolListBox(HWND listbox, SymbolType symType);
|
2012-11-01 16:19:01 +01:00
|
|
|
#endif
|
2017-12-26 18:11:22 -08:00
|
|
|
void GetLabels(std::vector<LabelDefinition> &dest);
|
2012-11-01 16:19:01 +01:00
|
|
|
|
2014-01-25 20:59:14 -08:00
|
|
|
void AddModule(const char *name, u32 address, u32 size);
|
|
|
|
|
void UnloadModule(u32 address, u32 size);
|
|
|
|
|
u32 GetModuleRelativeAddr(u32 address, int moduleIndex = -1) const;
|
|
|
|
|
u32 GetModuleAbsoluteAddr(u32 relative, int moduleIndex) const;
|
|
|
|
|
int GetModuleIndex(u32 address) const;
|
2017-12-26 18:11:22 -08:00
|
|
|
bool IsModuleActive(int moduleIndex);
|
2014-01-27 00:35:16 +01:00
|
|
|
std::vector<LoadedModuleInfo> getAllModules() const;
|
2014-01-25 20:59:14 -08:00
|
|
|
|
|
|
|
|
void AddFunction(const char* name, u32 address, u32 size, int moduleIndex = -1);
|
2017-12-26 18:11:22 -08:00
|
|
|
u32 GetFunctionStart(u32 address);
|
|
|
|
|
int GetFunctionNum(u32 address);
|
|
|
|
|
u32 GetFunctionSize(u32 startAddress);
|
|
|
|
|
u32 GetFunctionModuleAddress(u32 startAddress);
|
2013-11-27 13:33:30 +01:00
|
|
|
bool SetFunctionSize(u32 startAddress, u32 newSize);
|
|
|
|
|
bool RemoveFunction(u32 startAddress, bool removeName);
|
2014-02-14 22:26:35 -08:00
|
|
|
// Search for the first address their may be a function after address.
|
|
|
|
|
// Only valid for currently loaded modules. Not guaranteed there will be a function.
|
2017-12-26 18:11:22 -08:00
|
|
|
u32 FindPossibleFunctionAtAfter(u32 address);
|
2012-11-01 16:19:01 +01:00
|
|
|
|
2014-01-25 20:59:14 -08:00
|
|
|
void AddLabel(const char* name, u32 address, int moduleIndex = -1);
|
2017-12-26 18:11:22 -08:00
|
|
|
std::string GetLabelString(u32 address);
|
2014-02-14 21:49:20 -08:00
|
|
|
void SetLabelName(const char* name, u32 address);
|
2013-11-26 00:43:31 +01:00
|
|
|
bool GetLabelValue(const char* name, u32& dest);
|
2012-11-01 16:19:01 +01:00
|
|
|
|
2014-01-25 20:59:14 -08:00
|
|
|
void AddData(u32 address, u32 size, DataType type, int moduleIndex = -1);
|
2017-12-26 18:11:22 -08:00
|
|
|
u32 GetDataStart(u32 address);
|
|
|
|
|
u32 GetDataSize(u32 startAddress);
|
|
|
|
|
u32 GetDataModuleAddress(u32 startAddress);
|
|
|
|
|
DataType GetDataType(u32 startAddress);
|
2013-11-27 22:30:48 -08:00
|
|
|
|
|
|
|
|
static const u32 INVALID_ADDRESS = (u32)-1;
|
2013-11-30 20:57:44 +01:00
|
|
|
|
2014-02-11 11:21:56 +01:00
|
|
|
void UpdateActiveSymbols();
|
|
|
|
|
|
2013-11-27 13:33:30 +01:00
|
|
|
private:
|
|
|
|
|
void AssignFunctionIndices();
|
2017-12-26 18:11:22 -08:00
|
|
|
const char *GetLabelName(u32 address);
|
2014-01-25 21:40:23 -08:00
|
|
|
const char *GetLabelNameRel(u32 relAddress, int moduleIndex) const;
|
2013-11-27 13:33:30 +01:00
|
|
|
|
2013-12-02 15:30:03 +01:00
|
|
|
struct FunctionEntry {
|
2014-01-25 20:59:14 -08:00
|
|
|
u32 start;
|
2013-11-27 13:33:30 +01:00
|
|
|
u32 size;
|
|
|
|
|
int index;
|
2014-01-25 20:59:14 -08:00
|
|
|
int module;
|
2013-06-30 09:42:31 -07:00
|
|
|
};
|
|
|
|
|
|
2013-12-02 15:30:03 +01:00
|
|
|
struct LabelEntry {
|
2014-01-25 20:59:14 -08:00
|
|
|
u32 addr;
|
|
|
|
|
int module;
|
2013-11-26 00:23:17 +01:00
|
|
|
char name[128];
|
|
|
|
|
};
|
|
|
|
|
|
2013-12-02 15:30:03 +01:00
|
|
|
struct DataEntry {
|
2013-11-27 13:33:30 +01:00
|
|
|
DataType type;
|
2014-01-25 20:59:14 -08:00
|
|
|
u32 start;
|
2013-11-27 13:33:30 +01:00
|
|
|
u32 size;
|
2014-01-25 20:59:14 -08:00
|
|
|
int module;
|
2012-11-01 16:19:01 +01:00
|
|
|
};
|
2013-11-27 13:33:30 +01:00
|
|
|
|
2014-01-25 20:59:14 -08:00
|
|
|
struct ModuleEntry {
|
|
|
|
|
// Note: this index is +1, 0 matches any for backwards-compat.
|
|
|
|
|
int index;
|
|
|
|
|
u32 start;
|
|
|
|
|
u32 size;
|
|
|
|
|
char name[128];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// These are flattened, read-only copies of the actual data in active modules only.
|
|
|
|
|
std::map<u32, const FunctionEntry> activeFunctions;
|
|
|
|
|
std::map<u32, const LabelEntry> activeLabels;
|
|
|
|
|
std::map<u32, const DataEntry> activeData;
|
2017-12-26 18:11:22 -08:00
|
|
|
bool activeNeedUpdate_ = false;
|
2014-01-25 20:59:14 -08:00
|
|
|
|
|
|
|
|
// This is indexed by the end address of the module.
|
|
|
|
|
std::map<u32, const ModuleEntry> activeModuleEnds;
|
|
|
|
|
|
2024-11-07 11:06:10 +01:00
|
|
|
// Module ID, index
|
2014-01-25 20:59:14 -08:00
|
|
|
typedef std::pair<int, u32> SymbolKey;
|
|
|
|
|
|
|
|
|
|
// These are indexed by the module id and relative address in the module.
|
|
|
|
|
std::map<SymbolKey, FunctionEntry> functions;
|
|
|
|
|
std::map<SymbolKey, LabelEntry> labels;
|
|
|
|
|
std::map<SymbolKey, DataEntry> data;
|
|
|
|
|
std::vector<ModuleEntry> modules;
|
2013-11-27 13:33:30 +01:00
|
|
|
|
2017-02-27 21:57:46 +01:00
|
|
|
mutable std::recursive_mutex lock_;
|
2017-12-26 18:11:22 -08:00
|
|
|
bool sawUnknownModule = false;
|
2012-11-01 16:19:01 +01:00
|
|
|
};
|
|
|
|
|
|
2015-10-31 23:01:19 +01:00
|
|
|
extern SymbolMap *g_symbolMap;
|
2013-12-02 15:30:03 +01:00
|
|
|
|