mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
MC: introduce ability to restrict recorded relocations
Add support to allow a target specific COFF object writer to restrict the recorded resolutions in the emitted object files. This is motivated by the need in Windows on ARM, where an intermediate relocation needs to be prevented from being emitted in the object file. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209336 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
111bad385a
commit
159ccc8f51
@ -30,6 +30,7 @@ namespace llvm {
|
||||
virtual unsigned getRelocType(const MCValue &Target,
|
||||
const MCFixup &Fixup,
|
||||
bool IsCrossSection) const = 0;
|
||||
virtual bool recordRelocation(const MCFixup &) const { return true; }
|
||||
};
|
||||
|
||||
/// \brief Construct a new Win COFF writer instance.
|
||||
|
@ -808,7 +808,8 @@ void WinCOFFObjectWriter::RecordRelocation(const MCAssembler &Asm,
|
||||
}
|
||||
}
|
||||
|
||||
coff_section->Relocations.push_back(Reloc);
|
||||
if (TargetObjectWriter->recordRelocation(Fixup))
|
||||
coff_section->Relocations.push_back(Reloc);
|
||||
}
|
||||
|
||||
void WinCOFFObjectWriter::WriteObject(MCAssembler &Asm,
|
||||
|
Loading…
x
Reference in New Issue
Block a user