mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
Temporarily Revert "[X86] Reland D71360 Clean up UseInitArray initialization for X86ELFTargetObjectFile"
as it's causing msan failures. This reverts commit 7899fe9da8d8df6f19ddcbbb877ea124d711c54b.
This commit is contained in:
parent
203a4aa3d7
commit
7c86c24d02
@ -108,7 +108,6 @@ void TargetLoweringObjectFileELF::Initialize(MCContext &Ctx,
|
||||
TM = &TgtM;
|
||||
|
||||
CodeModel::Model CM = TgtM.getCodeModel();
|
||||
InitializeELF(TgtM.Options.UseInitArray);
|
||||
|
||||
switch (TgtM.getTargetTriple().getArch()) {
|
||||
case Triple::arm:
|
||||
|
@ -20,6 +20,7 @@ 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,6 +112,7 @@ 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,6 +28,7 @@ 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,6 +44,7 @@ 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,6 +18,7 @@ void
|
||||
PPC64LinuxTargetObjectFile::
|
||||
Initialize(MCContext &Ctx, const TargetMachine &TM) {
|
||||
TargetLoweringObjectFileELF::Initialize(Ctx, TM);
|
||||
InitializeELF(TM.Options.UseInitArray);
|
||||
}
|
||||
|
||||
MCSection *PPC64LinuxTargetObjectFile::SelectSectionForGlobal(
|
||||
|
@ -17,6 +17,7 @@ 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,6 +17,7 @@ using namespace llvm;
|
||||
void SparcELFTargetObjectFile::Initialize(MCContext &Ctx,
|
||||
const TargetMachine &TM) {
|
||||
TargetLoweringObjectFileELF::Initialize(Ctx, TM);
|
||||
InitializeELF(TM.Options.UseInitArray);
|
||||
}
|
||||
|
||||
const MCExpr *SparcELFTargetObjectFile::getTTypeGlobalReference(
|
||||
|
@ -92,9 +92,19 @@ 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>();
|
||||
return std::make_unique<X86ELFTargetObjectFile>();
|
||||
llvm_unreachable("unknown subtarget type");
|
||||
}
|
||||
|
||||
static std::string computeDataLayout(const Triple &TT) {
|
||||
|
@ -64,7 +64,29 @@ const MCExpr *X86ELFTargetObjectFile::getDebugThreadLocalSymbol(
|
||||
return MCSymbolRefExpr::create(Sym, MCSymbolRefExpr::VK_DTPOFF, getContext());
|
||||
}
|
||||
|
||||
void X86ELFTargetObjectFile::Initialize(MCContext &Ctx,
|
||||
const TargetMachine &TM) {
|
||||
void
|
||||
X86FreeBSDTargetObjectFile::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,11 +44,33 @@ 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,4 +1,3 @@
|
||||
; 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 -use-ctors | FileCheck %s
|
||||
; RUN: llc < %s -mtriple=x86_64-netbsd | FileCheck %s
|
||||
|
||||
; Check that our compiler never emits global constructors
|
||||
; inside the .init_array section when building for a non supported target.
|
||||
|
Loading…
Reference in New Issue
Block a user