forked from OSchip/llvm-project
Add SourceMgr to MCContext for backend diagnostics.
llvm-svn: 149090
This commit is contained in:
parent
c267a32b05
commit
dfc5b555da
|
@ -43,6 +43,8 @@ namespace llvm {
|
|||
public:
|
||||
typedef StringMap<MCSymbol*, BumpPtrAllocator&> SymbolTable;
|
||||
private:
|
||||
/// The SourceMgr for this object, if any.
|
||||
const SourceMgr *SrcMgr;
|
||||
|
||||
/// The MCAsmInfo for this target.
|
||||
const MCAsmInfo &MAI;
|
||||
|
@ -137,9 +139,11 @@ namespace llvm {
|
|||
|
||||
public:
|
||||
explicit MCContext(const MCAsmInfo &MAI, const MCRegisterInfo &MRI,
|
||||
const MCObjectFileInfo *MOFI);
|
||||
const MCObjectFileInfo *MOFI, const SourceMgr *Mgr = 0);
|
||||
~MCContext();
|
||||
|
||||
const SourceMgr *getSourceManager() const { return SrcMgr; }
|
||||
|
||||
const MCAsmInfo &getAsmInfo() const { return MAI; }
|
||||
|
||||
const MCRegisterInfo &getRegisterInfo() const { return MRI; }
|
||||
|
|
|
@ -28,8 +28,8 @@ typedef StringMap<const MCSectionCOFF*> COFFUniqueMapTy;
|
|||
|
||||
|
||||
MCContext::MCContext(const MCAsmInfo &mai, const MCRegisterInfo &mri,
|
||||
const MCObjectFileInfo *mofi) :
|
||||
MAI(mai), MRI(mri), MOFI(mofi),
|
||||
const MCObjectFileInfo *mofi, const SourceMgr *mgr) :
|
||||
SrcMgr(mgr), MAI(mai), MRI(mri), MOFI(mofi),
|
||||
Allocator(), Symbols(Allocator), UsedNames(Allocator),
|
||||
NextUniqueID(0),
|
||||
CurrentDwarfLoc(0,0,0,DWARF2_FLAG_IS_STMT,0,0),
|
||||
|
|
Loading…
Reference in New Issue