aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/X86/X86TargetMachine.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-07-09 03:15:51 +0000
committerChris Lattner <sabre@nondot.org>2009-07-09 03:15:51 +0000
commite4df756289b6d80dcfd67b9f97fd464f62fd4902 (patch)
treeac4e0ffb48d7397ab7a51ba1bdbffe364634e9b8 /lib/Target/X86/X86TargetMachine.cpp
parentb133a0aff77adf1787afe5d35cf140194c29d386 (diff)
When in -static mode, force the PIC style to none. Doing this requires fixing
code which conflated RIPRel PIC with x86-64. Fix these to just check for X86-64 directly. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75092 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86TargetMachine.cpp')
-rw-r--r--lib/Target/X86/X86TargetMachine.cpp14
1 files changed, 11 insertions, 3 deletions
diff --git a/lib/Target/X86/X86TargetMachine.cpp b/lib/Target/X86/X86TargetMachine.cpp
index 5cf18a02eb..1909986165 100644
--- a/lib/Target/X86/X86TargetMachine.cpp
+++ b/lib/Target/X86/X86TargetMachine.cpp
@@ -147,6 +147,9 @@ X86TargetMachine::X86TargetMachine(const Module &M, const std::string &FS,
setRelocationModel(Reloc::Static);
}
+ assert(getRelocationModel() != Reloc::Default &&
+ "Relocation mode not picked");
+
// ELF doesn't have a distinct dynamic-no-PIC model. Dynamic-no-PIC
// is defined as a model for code which may be used in static or
// dynamic executables but not necessarily a shared library. On ELF
@@ -164,9 +167,9 @@ X86TargetMachine::X86TargetMachine(const Module &M, const std::string &FS,
setCodeModel(CodeModel::Small);
}
- if (Subtarget.isTargetCygMing())
- Subtarget.setPICStyle(PICStyles::WinPIC);
- else if (Subtarget.isTargetDarwin()) {
+ if (Subtarget.isTargetCygMing()) {
+ Subtarget.setPICStyle(PICStyles::None);
+ } else if (Subtarget.isTargetDarwin()) {
if (Subtarget.is64Bit())
Subtarget.setPICStyle(PICStyles::RIPRel);
else
@@ -177,6 +180,11 @@ X86TargetMachine::X86TargetMachine(const Module &M, const std::string &FS,
else
Subtarget.setPICStyle(PICStyles::GOT);
}
+
+ // Finally, unless we're in PIC or DynamicNoPIC mode, set the PIC style to
+ // None.
+ if (getRelocationModel() == Reloc::Static)
+ Subtarget.setPICStyle(PICStyles::None);
}
//===----------------------------------------------------------------------===//