Create a default MCSymbolizer for the given triple.
Declared in <llvm/MC/TargetRegistry.h>
MCSymbolizer*
createMCSymbolizer(
Triple const& TT,
LLVMOpInfoCallback GetOpInfo,
LLVMSymbolLookupCallback SymbolLookUp,
void* DisInfo,
MCContext* Ctx,
std::unique_ptr<MCRelocationInfo>&& RelInfo);
A new default MCSymbolizer.
| Name | Description |
|---|---|
| TT | The target triple. |
| GetOpInfo | Callback to get symbolic operand information. |
| SymbolLookUp | Callback to look up a symbol name. |
| DisInfo | Opaque pointer passed to the callbacks. |
| Ctx | The machine code context. |
| RelInfo | Relocation information. Takes ownership. |