mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-20 14:29:27 +00:00
Add const qualifiers to TargetLoweringObjectFile usage.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101640 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
82d5eaf23e
commit
0d805c33d1
@ -129,7 +129,7 @@ namespace llvm {
|
||||
unsigned getFunctionNumber() const;
|
||||
|
||||
/// getObjFileLowering - Return information about object file lowering.
|
||||
TargetLoweringObjectFile &getObjFileLowering() const;
|
||||
const TargetLoweringObjectFile &getObjFileLowering() const;
|
||||
|
||||
/// getTargetData - Return information about data layout.
|
||||
const TargetData &getTargetData() const;
|
||||
|
@ -93,7 +93,7 @@ unsigned AsmPrinter::getFunctionNumber() const {
|
||||
return MF->getFunctionNumber();
|
||||
}
|
||||
|
||||
TargetLoweringObjectFile &AsmPrinter::getObjFileLowering() const {
|
||||
const TargetLoweringObjectFile &AsmPrinter::getObjFileLowering() const {
|
||||
return TM.getTargetLowering()->getObjFileLowering();
|
||||
}
|
||||
|
||||
|
@ -1127,8 +1127,9 @@ void ARMAsmPrinter::EmitStartOfAsmFile(Module &M) {
|
||||
// avoid out-of-range branches that are due a fundamental limitation of
|
||||
// the way symbol offsets are encoded with the current Darwin ARM
|
||||
// relocations.
|
||||
TargetLoweringObjectFileMachO &TLOFMacho =
|
||||
static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
|
||||
const TargetLoweringObjectFileMachO &TLOFMacho =
|
||||
static_cast<const TargetLoweringObjectFileMachO &>(
|
||||
getObjFileLowering());
|
||||
OutStreamer.SwitchSection(TLOFMacho.getTextSection());
|
||||
OutStreamer.SwitchSection(TLOFMacho.getTextCoalSection());
|
||||
OutStreamer.SwitchSection(TLOFMacho.getConstTextCoalSection());
|
||||
@ -1199,8 +1200,8 @@ void ARMAsmPrinter::EmitStartOfAsmFile(Module &M) {
|
||||
void ARMAsmPrinter::EmitEndOfAsmFile(Module &M) {
|
||||
if (Subtarget->isTargetDarwin()) {
|
||||
// All darwin targets use mach-o.
|
||||
TargetLoweringObjectFileMachO &TLOFMacho =
|
||||
static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
|
||||
const TargetLoweringObjectFileMachO &TLOFMacho =
|
||||
static_cast<const TargetLoweringObjectFileMachO &>(getObjFileLowering());
|
||||
MachineModuleInfoMachO &MMIMacho =
|
||||
MMI->getObjFileInfo<MachineModuleInfoMachO>();
|
||||
|
||||
|
@ -37,8 +37,8 @@ namespace llvm {
|
||||
return "PIC16 Assembly Printer";
|
||||
}
|
||||
|
||||
PIC16TargetObjectFile &getObjFileLowering() const {
|
||||
return (PIC16TargetObjectFile &)AsmPrinter::getObjFileLowering();
|
||||
const PIC16TargetObjectFile &getObjFileLowering() const {
|
||||
return (const PIC16TargetObjectFile &)AsmPrinter::getObjFileLowering();
|
||||
}
|
||||
|
||||
bool runOnMachineFunction(MachineFunction &F);
|
||||
@ -76,7 +76,7 @@ namespace llvm {
|
||||
}
|
||||
|
||||
private:
|
||||
PIC16TargetObjectFile *PTOF;
|
||||
const PIC16TargetObjectFile *PTOF;
|
||||
PIC16DbgInfo DbgInfo;
|
||||
const PIC16MCAsmInfo *PMAI;
|
||||
std::set<std::string> LibcallDecls; // Sorted & uniqued set of extern decls.
|
||||
|
@ -26,7 +26,7 @@ PIC16TargetObjectFile::~PIC16TargetObjectFile() {
|
||||
|
||||
/// Find a pic16 section. Return null if not found. Do not create one.
|
||||
PIC16Section *PIC16TargetObjectFile::
|
||||
findPIC16Section(const std::string &Name) {
|
||||
findPIC16Section(const std::string &Name) const {
|
||||
/// Return if we have an already existing one.
|
||||
PIC16Section *Entry = SectionsByName[Name];
|
||||
if (Entry)
|
||||
|
@ -122,7 +122,7 @@ namespace llvm {
|
||||
void Initialize(MCContext &Ctx, const TargetMachine &TM);
|
||||
|
||||
/// Return the section with the given Name. Null if not found.
|
||||
PIC16Section *findPIC16Section(const std::string &Name);
|
||||
PIC16Section *findPIC16Section(const std::string &Name) const;
|
||||
|
||||
/// Override section allocations for user specified sections.
|
||||
virtual const MCSection *
|
||||
|
@ -649,8 +649,8 @@ void PPCDarwinAsmPrinter::EmitStartOfAsmFile(Module &M) {
|
||||
|
||||
// Prime text sections so they are adjacent. This reduces the likelihood a
|
||||
// large data or debug section causes a branch to exceed 16M limit.
|
||||
TargetLoweringObjectFileMachO &TLOFMacho =
|
||||
static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
|
||||
const TargetLoweringObjectFileMachO &TLOFMacho =
|
||||
static_cast<const TargetLoweringObjectFileMachO &>(getObjFileLowering());
|
||||
OutStreamer.SwitchSection(TLOFMacho.getTextCoalSection());
|
||||
if (TM.getRelocationModel() == Reloc::PIC_) {
|
||||
OutStreamer.SwitchSection(
|
||||
@ -686,8 +686,8 @@ void PPCDarwinAsmPrinter::
|
||||
EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &Stubs) {
|
||||
bool isPPC64 = TM.getTargetData()->getPointerSizeInBits() == 64;
|
||||
|
||||
TargetLoweringObjectFileMachO &TLOFMacho =
|
||||
static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
|
||||
const TargetLoweringObjectFileMachO &TLOFMacho =
|
||||
static_cast<const TargetLoweringObjectFileMachO &>(getObjFileLowering());
|
||||
|
||||
// .lazy_symbol_pointer
|
||||
const MCSection *LSPSection = TLOFMacho.getLazySymbolPointerSection();
|
||||
@ -782,8 +782,8 @@ bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
|
||||
bool isPPC64 = TM.getTargetData()->getPointerSizeInBits() == 64;
|
||||
|
||||
// Darwin/PPC always uses mach-o.
|
||||
TargetLoweringObjectFileMachO &TLOFMacho =
|
||||
static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
|
||||
const TargetLoweringObjectFileMachO &TLOFMacho =
|
||||
static_cast<const TargetLoweringObjectFileMachO &>(getObjFileLowering());
|
||||
MachineModuleInfoMachO &MMIMacho =
|
||||
MMI->getObjFileInfo<MachineModuleInfoMachO>();
|
||||
|
||||
|
@ -584,8 +584,8 @@ void X86AsmPrinter::EmitEndOfAsmFile(Module &M) {
|
||||
// Necessary for dllexport support
|
||||
std::vector<const MCSymbol*> DLLExportedFns, DLLExportedGlobals;
|
||||
|
||||
TargetLoweringObjectFileCOFF &TLOFCOFF =
|
||||
static_cast<TargetLoweringObjectFileCOFF&>(getObjFileLowering());
|
||||
const TargetLoweringObjectFileCOFF &TLOFCOFF =
|
||||
static_cast<const TargetLoweringObjectFileCOFF&>(getObjFileLowering());
|
||||
|
||||
for (Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I)
|
||||
if (I->hasDLLExportLinkage())
|
||||
@ -614,8 +614,8 @@ void X86AsmPrinter::EmitEndOfAsmFile(Module &M) {
|
||||
}
|
||||
|
||||
if (Subtarget->isTargetELF()) {
|
||||
TargetLoweringObjectFileELF &TLOFELF =
|
||||
static_cast<TargetLoweringObjectFileELF &>(getObjFileLowering());
|
||||
const TargetLoweringObjectFileELF &TLOFELF =
|
||||
static_cast<const TargetLoweringObjectFileELF &>(getObjFileLowering());
|
||||
|
||||
MachineModuleInfoELF &MMIELF = MMI->getObjFileInfo<MachineModuleInfoELF>();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user