1 //===-- X86TargetMachine.cpp - Define TargetMachine for the X86 -----------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file defines the X86 specific subclass of TargetMachine.
12 //===----------------------------------------------------------------------===//
14 #include "X86TargetMachine.h"
16 #include "llvm/PassManager.h"
17 #include "llvm/CodeGen/MachineFunction.h"
18 #include "llvm/CodeGen/Passes.h"
19 #include "llvm/Support/CommandLine.h"
20 #include "llvm/Support/FormattedStream.h"
21 #include "llvm/Target/TargetOptions.h"
22 #include "llvm/Support/TargetRegistry.h"
25 extern "C" void LLVMInitializeX86Target() {
26 // Register the target.
27 RegisterTargetMachine<X86_32TargetMachine> X(TheX86_32Target);
28 RegisterTargetMachine<X86_64TargetMachine> Y(TheX86_64Target);
32 X86_32TargetMachine::X86_32TargetMachine(const Target &T, StringRef TT,
33 StringRef CPU, StringRef FS,
34 Reloc::Model RM, CodeModel::Model CM)
35 : X86TargetMachine(T, TT, CPU, FS, RM, CM, false),
36 DataLayout(getSubtargetImpl()->isTargetDarwin() ?
37 "e-p:32:32-f64:32:64-i64:32:64-f80:128:128-f128:128:128-"
39 (getSubtargetImpl()->isTargetCygMing() ||
40 getSubtargetImpl()->isTargetWindows()) ?
41 "e-p:32:32-f64:64:64-i64:64:64-f80:32:32-f128:128:128-"
43 "e-p:32:32-f64:32:64-i64:32:64-f80:32:32-f128:128:128-"
52 X86_64TargetMachine::X86_64TargetMachine(const Target &T, StringRef TT,
53 StringRef CPU, StringRef FS,
54 Reloc::Model RM, CodeModel::Model CM)
55 : X86TargetMachine(T, TT, CPU, FS, RM, CM, true),
56 DataLayout("e-p:64:64-s:64-f64:64:64-i64:64:64-f80:128:128-f128:128:128-"
64 /// X86TargetMachine ctor - Create an X86 target.
66 X86TargetMachine::X86TargetMachine(const Target &T, StringRef TT,
67 StringRef CPU, StringRef FS,
68 Reloc::Model RM, CodeModel::Model CM,
70 : LLVMTargetMachine(T, TT, CPU, FS, RM, CM),
71 Subtarget(TT, CPU, FS, StackAlignmentOverride, is64Bit),
72 FrameLowering(*this, Subtarget),
73 ELFWriterInfo(is64Bit, true) {
74 // Determine the PICStyle based on the target selected.
75 if (getRelocationModel() == Reloc::Static) {
76 // Unless we're in PIC or DynamicNoPIC mode, set the PIC style to None.
77 Subtarget.setPICStyle(PICStyles::None);
78 } else if (Subtarget.is64Bit()) {
79 // PIC in 64 bit mode is always rip-rel.
80 Subtarget.setPICStyle(PICStyles::RIPRel);
81 } else if (Subtarget.isTargetCygMing()) {
82 Subtarget.setPICStyle(PICStyles::None);
83 } else if (Subtarget.isTargetDarwin()) {
84 if (getRelocationModel() == Reloc::PIC_)
85 Subtarget.setPICStyle(PICStyles::StubPIC);
87 assert(getRelocationModel() == Reloc::DynamicNoPIC);
88 Subtarget.setPICStyle(PICStyles::StubDynamicNoPIC);
90 } else if (Subtarget.isTargetELF()) {
91 Subtarget.setPICStyle(PICStyles::GOT);
94 // default to hard float ABI
95 if (FloatABIType == FloatABI::Default)
96 FloatABIType = FloatABI::Hard;
99 //===----------------------------------------------------------------------===//
100 // Command line options for x86
101 //===----------------------------------------------------------------------===//
103 UseVZeroUpper("x86-use-vzeroupper",
104 cl::desc("Minimize AVX to SSE transition penalty"),
107 //===----------------------------------------------------------------------===//
108 // Pass Pipeline Configuration
109 //===----------------------------------------------------------------------===//
111 bool X86TargetMachine::addInstSelector(PassManagerBase &PM,
112 CodeGenOpt::Level OptLevel) {
113 // Install an instruction selector.
114 PM.add(createX86ISelDag(*this, OptLevel));
116 // For 32-bit, prepend instructions to set the "global base reg" for PIC.
117 if (!Subtarget.is64Bit())
118 PM.add(createGlobalBaseRegPass());
123 bool X86TargetMachine::addPreRegAlloc(PassManagerBase &PM,
124 CodeGenOpt::Level OptLevel) {
125 PM.add(createX86MaxStackAlignmentHeuristicPass());
126 return false; // -print-machineinstr shouldn't print after this.
129 bool X86TargetMachine::addPostRegAlloc(PassManagerBase &PM,
130 CodeGenOpt::Level OptLevel) {
131 PM.add(createX86FloatingPointStackifierPass());
132 return true; // -print-machineinstr should print after this.
135 bool X86TargetMachine::addPreEmitPass(PassManagerBase &PM,
136 CodeGenOpt::Level OptLevel) {
137 bool ShouldPrint = false;
138 if (OptLevel != CodeGenOpt::None &&
139 (Subtarget.hasSSE2() || Subtarget.hasAVX())) {
140 PM.add(createExecutionDependencyFixPass(&X86::VR128RegClass));
144 if (Subtarget.hasAVX() && UseVZeroUpper) {
145 PM.add(createX86IssueVZeroUpperPass());
152 bool X86TargetMachine::addCodeEmitter(PassManagerBase &PM,
153 CodeGenOpt::Level OptLevel,
154 JITCodeEmitter &JCE) {
155 PM.add(createX86JITCodeEmitterPass(*this, JCE));