mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
Remove unnecessary Src/ folders
This commit is contained in:
43
Source/Core/Core/PowerPC/PPCSymbolDB.h
Normal file
43
Source/Core/Core/PowerPC/PPCSymbolDB.h
Normal file
@ -0,0 +1,43 @@
|
||||
// Copyright 2013 Dolphin Emulator Project
|
||||
// Licensed under GPLv2
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#include "CommonTypes.h"
|
||||
|
||||
#include <map>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include "../Debugger/PPCDebugInterface.h"
|
||||
|
||||
#include "SymbolDB.h"
|
||||
|
||||
// This has functionality overlapping Debugger_Symbolmap. Should merge that stuff in here later.
|
||||
class PPCSymbolDB : public SymbolDB
|
||||
{
|
||||
private:
|
||||
DebugInterface* debugger;
|
||||
|
||||
public:
|
||||
typedef void (*functionGetterCallback)(Symbol *f);
|
||||
|
||||
PPCSymbolDB();
|
||||
~PPCSymbolDB();
|
||||
|
||||
Symbol *AddFunction(u32 startAddr) override;
|
||||
void AddKnownSymbol(u32 startAddr, u32 size, const char *name, int type = Symbol::SYMBOL_FUNCTION);
|
||||
|
||||
Symbol *GetSymbolFromAddr(u32 addr) override;
|
||||
|
||||
const char *GetDescription(u32 addr);
|
||||
|
||||
void FillInCallers();
|
||||
|
||||
bool LoadMap(const char *filename);
|
||||
bool SaveMap(const char *filename, bool WithCodes = false) const;
|
||||
|
||||
void PrintCalls(u32 funcAddr) const;
|
||||
void PrintCallers(u32 funcAddr) const;
|
||||
void LogFunctionCall(u32 addr);
|
||||
};
|
||||
|
||||
extern PPCSymbolDB g_symbolDB;
|
Reference in New Issue
Block a user