mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-01 00:17:01 +00:00
Modify llvm-readobj to dump symbol record bytes.
This will help us study the format of individual symbol records more closely. Differential Revision: http://reviews.llvm.org/D7664 Reviewed by: Timur Iskhodzhanov git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@229730 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -664,16 +664,16 @@ namespace COFF {
|
||||
}
|
||||
};
|
||||
|
||||
enum CodeViewLineTableIdentifiers {
|
||||
DEBUG_SECTION_MAGIC = 0x4,
|
||||
DEBUG_SYMBOL_SUBSECTION = 0xF1,
|
||||
DEBUG_LINE_TABLE_SUBSECTION = 0xF2,
|
||||
enum CodeViewIdentifiers {
|
||||
DEBUG_SECTION_MAGIC = 0x4,
|
||||
DEBUG_SYMBOL_SUBSECTION = 0xF1,
|
||||
DEBUG_LINE_TABLE_SUBSECTION = 0xF2,
|
||||
DEBUG_STRING_TABLE_SUBSECTION = 0xF3,
|
||||
DEBUG_INDEX_SUBSECTION = 0xF4,
|
||||
DEBUG_INDEX_SUBSECTION = 0xF4,
|
||||
|
||||
// Symbol subsections are split into records of different types.
|
||||
DEBUG_SYMBOL_TYPE_PROC_START = 0x1147,
|
||||
DEBUG_SYMBOL_TYPE_PROC_END = 0x114F
|
||||
DEBUG_SYMBOL_TYPE_PROC_END = 0x114F
|
||||
};
|
||||
|
||||
inline bool isReservedSectionNumber(int32_t SectionNumber) {
|
||||
|
||||
Reference in New Issue
Block a user