- Add an accessor function to MCSymbolizer to retrieve addresses referenced by a symbolizable operand, but not resolved to a symbol. That way, the caller can synthesize labels at those addresses and then retry disassembling the section.
- Implement that in AMDGPU -- a failed symbol lookup results in the address being added to a vector returned by the new function.
- Use that in llvm-objdump when using MCSymbolizer (which only happens on AMDGPU).
Change-Id: I19087c3bbfece64bad5a56ee88bcc9110d83989e
Can't you populate this on construction? std::vector<uint64_t> LabelAddrs(LabelAddrsRef.begin(), LabelAddrsRef.end());