diff options
| author | TryTwo <taolas@gmail.com> | 2025-05-19 23:13:00 -0700 |
|---|---|---|
| committer | TryTwo <taolas@gmail.com> | 2025-06-19 17:55:35 -0700 |
| commit | 040d9a43367f4e2a3aa57ddb47c41d5d13b5b39e (patch) | |
| tree | fd38ce078e8bf2842e5350a195bee18da122d614 /Source/Core/Common/SymbolDB.cpp | |
| parent | 5eb61024c6e94b949ce21eac81003b43587fc155 (diff) | |
Debugger symbols: Add new symbol type: Notes.. Notes are for naming single instructions, or small groups of instructions.
Notes are separate from function symbols, and can be searched separately.
Unlike functions, notes of different length can overlap each other.
In the instruction window, a note will always display over the function symbol.
Diffstat (limited to 'Source/Core/Common/SymbolDB.cpp')
| -rw-r--r-- | Source/Core/Common/SymbolDB.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/Common/SymbolDB.cpp b/Source/Core/Common/SymbolDB.cpp index f9d352b415..bfdd9f57db 100644 --- a/Source/Core/Common/SymbolDB.cpp +++ b/Source/Core/Common/SymbolDB.cpp @@ -51,6 +51,7 @@ void SymbolDB::Clear(const char* prefix) { // TODO: honor prefix m_functions.clear(); + m_notes.clear(); m_checksum_to_function.clear(); } |
