Add AMDGPUSymbolizer for finding names for labels from ELF symbol table.
Details
Details
- Reviewers
artem.tamazov • tstellarAMD vpykhtin - Commits
- rG3381d7a21624: [AMDGPU] Disassembler: print label names in branch instructions
rG1559f7625762: [AMDGPU] Disassembler: print label names in branch instructions
rL283450: [AMDGPU] Disassembler: print label names in branch instructions
rL282394: [AMDGPU] Disassembler: print label names in branch instructions
Diff Detail
Diff Detail
- Build Status
Buildable 200 Build 200: arc lint + arc unit
Event Timeline
Comment Actions
MCContext was trying to read uninitialized variable (MCObjectFileInfo *) in createSymbolImpl().
I fixed this by setting MCObjectFileInfo * to nullptr. In that case createSymbolImpl() does not try to read this variable and no problems occur.