mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
[X86] Reland D71360 Clean up UseInitArray initialization for X86ELFTargetObjectFile
-fuse-init-array is now the CC1 default but TargetLoweringObjectFileELF::UseInitArray still defaults to false. The following two unknown OS target triples continue using .ctors/.dtors because InitializeELF is not called. clang -target i386 -c a.c clang -target x86_64 -c a.c This cleanup fixes this as a bonus. X86SpeculativeLoadHardeningPass::tracePredStateThroughCall can call MCContext::createTempSymbol before TargetLoweringObjectFileELF::Initialize(). We need to call TargetLoweringObjectFileELF::Initialize() ealier. test/CodeGen/X86/speculative-load-hardening-indirect.ll Differential Revision: https://reviews.llvm.org/D71360
This commit is contained in:
parent
fc7368c8ed
commit
ae37969223
@ -108,6 +108,7 @@ void TargetLoweringObjectFileELF::Initialize(MCContext &Ctx,
|
||||
TM = &TgtM;
|
||||
|
||||
CodeModel::Model CM = TgtM.getCodeModel();
|
||||
InitializeELF(TgtM.Options.UseInitArray);
|
||||
|
||||
switch (TgtM.getTargetTriple().getArch()) {
|
||||
case Triple::arm:
|
||||
|
@ -20,7 +20,6 @@ using namespace dwarf;
|
||||
void AArch64_ELFTargetObjectFile::Initialize(MCContext &Ctx,
|
||||
const TargetMachine &TM) {
|
||||
TargetLoweringObjectFileELF::Initialize(Ctx, TM);
|
||||
InitializeELF(TM.Options.UseInitArray);
|
||||
// AARCH64 ELF ABI does not define static relocation type for TLS offset
|
||||
// within a module. Do not generate AT_location for TLS variables.
|
||||
SupportDebugThreadLocalLocation = false;
|
||||
|
@ -112,7 +112,6 @@ static const char *getSectionSuffixForSize(unsigned Size) {
|
||||
void HexagonTargetObjectFile::Initialize(MCContext &Ctx,
|
||||
const TargetMachine &TM) {
|
||||
TargetLoweringObjectFileELF::Initialize(Ctx, TM);
|
||||
InitializeELF(TM.Options.UseInitArray);
|
||||
|
||||
SmallDataSection =
|
||||
getContext().getELFSection(".sdata", ELF::SHT_PROGBITS,
|
||||
|
@ -28,7 +28,6 @@ static cl::opt<unsigned> SSThreshold(
|
||||
void LanaiTargetObjectFile::Initialize(MCContext &Ctx,
|
||||
const TargetMachine &TM) {
|
||||
TargetLoweringObjectFileELF::Initialize(Ctx, TM);
|
||||
InitializeELF(TM.Options.UseInitArray);
|
||||
|
||||
SmallDataSection = getContext().getELFSection(
|
||||
".sdata", ELF::SHT_PROGBITS, ELF::SHF_WRITE | ELF::SHF_ALLOC);
|
||||
|
@ -44,7 +44,6 @@ EmbeddedData("membedded-data", cl::Hidden,
|
||||
|
||||
void MipsTargetObjectFile::Initialize(MCContext &Ctx, const TargetMachine &TM){
|
||||
TargetLoweringObjectFileELF::Initialize(Ctx, TM);
|
||||
InitializeELF(TM.Options.UseInitArray);
|
||||
|
||||
SmallDataSection = getContext().getELFSection(
|
||||
".sdata", ELF::SHT_PROGBITS,
|
||||
|
@ -18,7 +18,6 @@ void
|
||||
PPC64LinuxTargetObjectFile::
|
||||
Initialize(MCContext &Ctx, const TargetMachine &TM) {
|
||||
TargetLoweringObjectFileELF::Initialize(Ctx, TM);
|
||||
InitializeELF(TM.Options.UseInitArray);
|
||||
}
|
||||
|
||||
MCSection *PPC64LinuxTargetObjectFile::SelectSectionForGlobal(
|
||||
|
@ -17,7 +17,6 @@ using namespace llvm;
|
||||
void RISCVELFTargetObjectFile::Initialize(MCContext &Ctx,
|
||||
const TargetMachine &TM) {
|
||||
TargetLoweringObjectFileELF::Initialize(Ctx, TM);
|
||||
InitializeELF(TM.Options.UseInitArray);
|
||||
|
||||
SmallDataSection = getContext().getELFSection(
|
||||
".sdata", ELF::SHT_PROGBITS, ELF::SHF_WRITE | ELF::SHF_ALLOC);
|
||||
|
@ -17,7 +17,6 @@ using namespace llvm;
|
||||
void SparcELFTargetObjectFile::Initialize(MCContext &Ctx,
|
||||
const TargetMachine &TM) {
|
||||
TargetLoweringObjectFileELF::Initialize(Ctx, TM);
|
||||
InitializeELF(TM.Options.UseInitArray);
|
||||
}
|
||||
|
||||
const MCExpr *SparcELFTargetObjectFile::getTTypeGlobalReference(
|
||||
|
@ -92,19 +92,9 @@ static std::unique_ptr<TargetLoweringObjectFile> createTLOF(const Triple &TT) {
|
||||
return std::make_unique<TargetLoweringObjectFileMachO>();
|
||||
}
|
||||
|
||||
if (TT.isOSFreeBSD())
|
||||
return std::make_unique<X86FreeBSDTargetObjectFile>();
|
||||
if (TT.isOSLinux() || TT.isOSNaCl() || TT.isOSIAMCU())
|
||||
return std::make_unique<X86LinuxNaClTargetObjectFile>();
|
||||
if (TT.isOSSolaris())
|
||||
return std::make_unique<X86SolarisTargetObjectFile>();
|
||||
if (TT.isOSFuchsia())
|
||||
return std::make_unique<X86FuchsiaTargetObjectFile>();
|
||||
if (TT.isOSBinFormatELF())
|
||||
return std::make_unique<X86ELFTargetObjectFile>();
|
||||
if (TT.isOSBinFormatCOFF())
|
||||
return std::make_unique<TargetLoweringObjectFileCOFF>();
|
||||
llvm_unreachable("unknown subtarget type");
|
||||
return std::make_unique<X86ELFTargetObjectFile>();
|
||||
}
|
||||
|
||||
static std::string computeDataLayout(const Triple &TT) {
|
||||
|
@ -64,29 +64,7 @@ const MCExpr *X86ELFTargetObjectFile::getDebugThreadLocalSymbol(
|
||||
return MCSymbolRefExpr::create(Sym, MCSymbolRefExpr::VK_DTPOFF, getContext());
|
||||
}
|
||||
|
||||
void
|
||||
X86FreeBSDTargetObjectFile::Initialize(MCContext &Ctx,
|
||||
const TargetMachine &TM) {
|
||||
void X86ELFTargetObjectFile::Initialize(MCContext &Ctx,
|
||||
const TargetMachine &TM) {
|
||||
TargetLoweringObjectFileELF::Initialize(Ctx, TM);
|
||||
InitializeELF(TM.Options.UseInitArray);
|
||||
}
|
||||
|
||||
void
|
||||
X86FuchsiaTargetObjectFile::Initialize(MCContext &Ctx,
|
||||
const TargetMachine &TM) {
|
||||
TargetLoweringObjectFileELF::Initialize(Ctx, TM);
|
||||
InitializeELF(TM.Options.UseInitArray);
|
||||
}
|
||||
|
||||
void
|
||||
X86LinuxNaClTargetObjectFile::Initialize(MCContext &Ctx,
|
||||
const TargetMachine &TM) {
|
||||
TargetLoweringObjectFileELF::Initialize(Ctx, TM);
|
||||
InitializeELF(TM.Options.UseInitArray);
|
||||
}
|
||||
|
||||
void X86SolarisTargetObjectFile::Initialize(MCContext &Ctx,
|
||||
const TargetMachine &TM) {
|
||||
TargetLoweringObjectFileELF::Initialize(Ctx, TM);
|
||||
InitializeELF(TM.Options.UseInitArray);
|
||||
}
|
||||
|
@ -44,33 +44,11 @@ namespace llvm {
|
||||
X86ELFTargetObjectFile() {
|
||||
PLTRelativeVariantKind = MCSymbolRefExpr::VK_PLT;
|
||||
}
|
||||
|
||||
void Initialize(MCContext &Ctx, const TargetMachine &TM) override;
|
||||
/// Describe a TLS variable address within debug info.
|
||||
const MCExpr *getDebugThreadLocalSymbol(const MCSymbol *Sym) const override;
|
||||
};
|
||||
|
||||
/// X86FreeBSDTargetObjectFile - This implementation is used for FreeBSD
|
||||
/// on x86 and x86-64.
|
||||
class X86FreeBSDTargetObjectFile : public X86ELFTargetObjectFile {
|
||||
void Initialize(MCContext &Ctx, const TargetMachine &TM) override;
|
||||
};
|
||||
|
||||
/// This implementation is used for Fuchsia on x86-64.
|
||||
class X86FuchsiaTargetObjectFile : public X86ELFTargetObjectFile {
|
||||
void Initialize(MCContext &Ctx, const TargetMachine &TM) override;
|
||||
};
|
||||
|
||||
/// X86LinuxNaClTargetObjectFile - This implementation is used for linux and
|
||||
/// Native Client on x86 and x86-64.
|
||||
class X86LinuxNaClTargetObjectFile : public X86ELFTargetObjectFile {
|
||||
void Initialize(MCContext &Ctx, const TargetMachine &TM) override;
|
||||
};
|
||||
|
||||
/// This implementation is used for Solaris on x86/x86-64.
|
||||
class X86SolarisTargetObjectFile : public X86ELFTargetObjectFile {
|
||||
void Initialize(MCContext &Ctx, const TargetMachine &TM) override;
|
||||
};
|
||||
|
||||
} // end namespace llvm
|
||||
|
||||
#endif
|
||||
|
@ -1,3 +1,4 @@
|
||||
; RUN: llc -mtriple x86_64 < %s | FileCheck --check-prefix=INIT-ARRAY %s
|
||||
; RUN: llc -mtriple x86_64-pc-linux -use-ctors < %s | FileCheck --check-prefix=CTOR %s
|
||||
; RUN: llc -mtriple x86_64-unknown-freebsd -use-ctors < %s | FileCheck --check-prefix=CTOR %s
|
||||
; RUN: llc -mtriple x86_64-pc-solaris2.11 -use-ctors < %s | FileCheck --check-prefix=CTOR %s
|
||||
|
@ -1,4 +1,4 @@
|
||||
; RUN: llc < %s -mtriple=x86_64-netbsd | FileCheck %s
|
||||
; RUN: llc < %s -mtriple=x86_64-netbsd -use-ctors | FileCheck %s
|
||||
|
||||
; Check that our compiler never emits global constructors
|
||||
; inside the .init_array section when building for a non supported target.
|
||||
|
@ -597,10 +597,10 @@ static int compileModule(char **argv, LLVMContext &Context) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
const_cast<TargetLoweringObjectFile *>(LLVMTM.getObjFileLowering())
|
||||
->Initialize(MMIWP->getMMI().getContext(), *Target);
|
||||
if (MIR) {
|
||||
assert(MMIWP && "Forgot to create MMIWP?");
|
||||
const_cast<TargetLoweringObjectFile *>(LLVMTM.getObjFileLowering())
|
||||
->Initialize(MMIWP->getMMI().getContext(), *Target);
|
||||
if (MIR->parseMachineFunctions(*M, MMIWP->getMMI()))
|
||||
return 1;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user