<html><head><style>body{font-family:Helvetica,Arial;font-size:13px}</style></head><body><div style="margin:0px"><div style="margin:0px">Hi LLVM devs,</div><div style="margin:0px"><br></div><div style="margin:0px">In my experimental backend, I’d like to symbolize the disassembled ELF and object files generated by the backend, so that labels/function names are printed instead of just memory addresses. When using objdump. The simplest implementation I’ve found is the AMDGPU symbolizer in the Disassembler, which I mimicked. This works fine only in very specific cases, where the address in the operand exists in the section’s symbol table. However, if the symbol to reference is in another section, or if the operand value is just 0 with a fix-up/relocation, it obviously doesn’t give correct results. </div><div style="margin:0px"><br></div><div style="margin:0px">So the question: is there a more robust way to get access to all the symbols and relocation data in the target Disassembler? I haven’t fully dug through how x86 does it but it seems really complicated, and my much simpler backend probably doesn’t need that level of complexity. </div></div><br><div class="gmail_signature"></div></body></html>