mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-03 19:15:30 +00:00
Make NaCl's use of .init_array for static constructors match Linux
Summary: The generic ELF TargetObjectFile defaults to .ctors, but Linux's defaults to .init_array by calling InitializeELF with the value of UseInitArray from TargetMachine. Make NaCl's behavior match. Reviewers: jvoung Differential Revision: http://reviews.llvm.org/D8240 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231934 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2175eac141
commit
87e6561f34
@ -37,8 +37,8 @@ static std::unique_ptr<TargetLoweringObjectFile> createTLOF(const Triple &TT) {
|
||||
return make_unique<TargetLoweringObjectFileMachO>();
|
||||
}
|
||||
|
||||
if (TT.isOSLinux())
|
||||
return make_unique<X86LinuxTargetObjectFile>();
|
||||
if (TT.isOSLinux() || TT.isOSNaCl())
|
||||
return make_unique<X86LinuxNaClTargetObjectFile>();
|
||||
if (TT.isOSBinFormatELF())
|
||||
return make_unique<X86ELFTargetObjectFile>();
|
||||
if (TT.isKnownWindowsMSVCEnvironment())
|
||||
|
@ -66,7 +66,8 @@ const MCExpr *X86ELFTargetObjectFile::getDebugThreadLocalSymbol(
|
||||
}
|
||||
|
||||
void
|
||||
X86LinuxTargetObjectFile::Initialize(MCContext &Ctx, const TargetMachine &TM) {
|
||||
X86LinuxNaClTargetObjectFile::Initialize(MCContext &Ctx,
|
||||
const TargetMachine &TM) {
|
||||
TargetLoweringObjectFileELF::Initialize(Ctx, TM);
|
||||
InitializeELF(TM.Options.UseInitArray);
|
||||
}
|
||||
|
@ -44,9 +44,9 @@ namespace llvm {
|
||||
const MCExpr *getDebugThreadLocalSymbol(const MCSymbol *Sym) const override;
|
||||
};
|
||||
|
||||
/// X86LinuxTargetObjectFile - This implementation is used for linux x86
|
||||
/// and x86-64.
|
||||
class X86LinuxTargetObjectFile : public X86ELFTargetObjectFile {
|
||||
/// 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;
|
||||
};
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
; RUN: llc -mtriple x86_64-pc-linux -use-ctors < %s | FileCheck --check-prefix=CTOR %s
|
||||
; RUN: llc -mtriple x86_64-pc-linux < %s | FileCheck --check-prefix=INIT-ARRAY %s
|
||||
; RUN: llc -mtriple x86_64-unknown-nacl < %s | FileCheck --check-prefix=NACL %s
|
||||
@llvm.global_ctors = appending global [2 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @f, i8* null}, { i32, void ()*, i8* } { i32 15, void ()* @g, i8* @v }]
|
||||
|
||||
@v = weak_odr global i8 0
|
||||
@ -27,3 +28,10 @@ entry:
|
||||
; INIT-ARRAY-NEXT: .section .init_array,"aw",@init_array
|
||||
; INIT-ARRAY-NEXT: .align 8
|
||||
; INIT-ARRAY-NEXT: .quad f
|
||||
|
||||
; NACL: .section .init_array.15,"aGw",@init_array,v,comdat
|
||||
; NACL-NEXT: .align 4
|
||||
; NACL-NEXT: .long g
|
||||
; NACL-NEXT: .section .init_array,"aw",@init_array
|
||||
; NACL-NEXT: .align 4
|
||||
; NACL-NEXT: .long f
|
||||
|
Loading…
x
Reference in New Issue
Block a user