mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
Switch from WriteEFlags to getEFlags in preparation for moving it
to Target/. llvm-svn: 147087
This commit is contained in:
parent
893037ce23
commit
6442ed0e79
@ -108,7 +108,7 @@ void ELFObjectWriter::WriteHeader(uint64_t SectionDataSize,
|
||||
sizeof(ELF::Elf32_Ehdr))); // e_shoff = sec hdr table off in bytes
|
||||
|
||||
// e_flags = whatever the target wants
|
||||
WriteEFlags();
|
||||
Write32(getEFlags());
|
||||
|
||||
// e_ehsize = ELF header size
|
||||
Write16(is64Bit() ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr));
|
||||
@ -1296,8 +1296,8 @@ ARMELFObjectWriter::~ARMELFObjectWriter()
|
||||
{}
|
||||
|
||||
// FIXME: get the real EABI Version from the Triple.
|
||||
void ARMELFObjectWriter::WriteEFlags() {
|
||||
Write32(ELF::EF_ARM_EABIMASK & DefaultEABIVersion);
|
||||
unsigned ARMELFObjectWriter::getEFlags() {
|
||||
return ELF::EF_ARM_EABIMASK & DefaultEABIVersion;
|
||||
}
|
||||
|
||||
// In ARM, _MergedGlobals and other most symbols get emitted directly.
|
||||
@ -1646,9 +1646,8 @@ MipsELFObjectWriter::MipsELFObjectWriter(MCELFObjectTargetWriter *MOTW,
|
||||
MipsELFObjectWriter::~MipsELFObjectWriter() {}
|
||||
|
||||
// FIXME: get the real EABI Version from the Triple.
|
||||
void MipsELFObjectWriter::WriteEFlags() {
|
||||
Write32(ELF::EF_MIPS_NOREORDER |
|
||||
ELF::EF_MIPS_ARCH_32R2);
|
||||
unsigned MipsELFObjectWriter::getEFlags() {
|
||||
return ELF::EF_MIPS_NOREORDER | ELF::EF_MIPS_ARCH_32R2;
|
||||
}
|
||||
|
||||
const MCSymbol *MipsELFObjectWriter::ExplicitRelSym(const MCAssembler &Asm,
|
||||
|
@ -244,7 +244,7 @@ class ELFObjectWriter : public MCObjectWriter {
|
||||
unsigned NumberOfSections);
|
||||
|
||||
/// Default e_flags = 0
|
||||
virtual void WriteEFlags() { Write32(0); }
|
||||
virtual unsigned getEFlags() { return 0; }
|
||||
|
||||
virtual void WriteSymbolEntry(MCDataFragment *SymtabF,
|
||||
MCDataFragment *ShndxF,
|
||||
@ -369,7 +369,7 @@ class ELFObjectWriter : public MCObjectWriter {
|
||||
|
||||
virtual ~ARMELFObjectWriter();
|
||||
|
||||
virtual void WriteEFlags();
|
||||
virtual unsigned getEFlags();
|
||||
protected:
|
||||
virtual const MCSymbol *ExplicitRelSym(const MCAssembler &Asm,
|
||||
const MCValue &Target,
|
||||
@ -425,7 +425,7 @@ class ELFObjectWriter : public MCObjectWriter {
|
||||
bool IsLittleEndian);
|
||||
|
||||
virtual ~MipsELFObjectWriter();
|
||||
virtual void WriteEFlags();
|
||||
virtual unsigned getEFlags();
|
||||
|
||||
protected:
|
||||
virtual const MCSymbol *ExplicitRelSym(const MCAssembler &Asm,
|
||||
|
Loading…
Reference in New Issue
Block a user