mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
MC CFG: Add an MCObjectSymbolizer in the MCObjectDisassembler.
Used to detect calls to function symbol stubs (future commit). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188887 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -31,6 +31,7 @@ class MCDisassembler;
|
||||
class MCFunction;
|
||||
class MCInstrAnalysis;
|
||||
class MCModule;
|
||||
class MCObjectSymbolizer;
|
||||
|
||||
/// \brief Disassemble an ObjectFile to an MCModule and MCFunctions.
|
||||
/// This class builds on MCDisassembler to disassemble whole sections, creating
|
||||
@@ -54,6 +55,13 @@ public:
|
||||
|
||||
MCModule *buildEmptyModule();
|
||||
|
||||
/// \brief Set the symbolizer to use to get information on external functions.
|
||||
/// Note that this isn't used to do instruction-level symbolization (that is,
|
||||
/// plugged into MCDisassembler), but to symbolize function call targets.
|
||||
void setSymbolizer(MCObjectSymbolizer *ObjectSymbolizer) {
|
||||
MOS = ObjectSymbolizer;
|
||||
}
|
||||
|
||||
/// \brief Get the effective address of the entrypoint, or 0 if there is none.
|
||||
virtual uint64_t getEntrypoint();
|
||||
|
||||
@@ -86,6 +94,7 @@ protected:
|
||||
const object::ObjectFile &Obj;
|
||||
const MCDisassembler &Dis;
|
||||
const MCInstrAnalysis &MIA;
|
||||
MCObjectSymbolizer *MOS;
|
||||
|
||||
private:
|
||||
/// \brief Fill \p Module by creating an atom for each section.
|
||||
|
Reference in New Issue
Block a user