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 "X86TargetAsmInfo.h"
15 #include "X86TargetMachine.h"
17 #include "llvm/Module.h"
18 #include "llvm/PassManager.h"
19 #include "llvm/CodeGen/MachineFunction.h"
20 #include "llvm/CodeGen/Passes.h"
21 #include "llvm/Support/FormattedStream.h"
22 #include "llvm/Target/TargetOptions.h"
23 #include "llvm/Target/TargetMachineRegistry.h"
26 // Register the target.
27 extern Target TheX86_32Target
;
28 static RegisterTarget
<X86_32TargetMachine
>
29 X(TheX86_32Target
, "x86", "32-bit X86: Pentium-Pro and above");
31 extern Target TheX86_64Target
;
32 static RegisterTarget
<X86_64TargetMachine
>
33 Y(TheX86_64Target
, "x86-64", "64-bit X86: EM64T and AMD64");
35 // Force static initialization.
36 extern "C" void LLVMInitializeX86Target() {
40 const TargetAsmInfo
*X86TargetMachine::createTargetAsmInfo() const {
41 if (Subtarget
.isFlavorIntel())
42 return new X86WinTargetAsmInfo(*this);
44 switch (Subtarget
.TargetType
) {
45 case X86Subtarget::isDarwin
:
46 return new X86DarwinTargetAsmInfo(*this);
47 case X86Subtarget::isELF
:
48 return new X86ELFTargetAsmInfo(*this);
49 case X86Subtarget::isMingw
:
50 case X86Subtarget::isCygwin
:
51 return new X86COFFTargetAsmInfo(*this);
52 case X86Subtarget::isWindows
:
53 return new X86WinTargetAsmInfo(*this);
55 return new X86GenericTargetAsmInfo(*this);
59 X86_32TargetMachine::X86_32TargetMachine(const Target
&T
, const Module
&M
,
60 const std::string
&FS
)
61 : X86TargetMachine(T
, M
, FS
, false) {
65 X86_64TargetMachine::X86_64TargetMachine(const Target
&T
, const Module
&M
,
66 const std::string
&FS
)
67 : X86TargetMachine(T
, M
, FS
, true) {
70 /// X86TargetMachine ctor - Create an X86 target.
72 X86TargetMachine::X86TargetMachine(const Target
&T
, const Module
&M
,
73 const std::string
&FS
, bool is64Bit
)
74 : LLVMTargetMachine(T
),
75 Subtarget(M
, FS
, is64Bit
),
76 DataLayout(Subtarget
.getDataLayout()),
77 FrameInfo(TargetFrameInfo::StackGrowsDown
,
78 Subtarget
.getStackAlignment(), Subtarget
.is64Bit() ? -8 : -4),
79 InstrInfo(*this), JITInfo(*this), TLInfo(*this), ELFWriterInfo(*this) {
80 DefRelocModel
= getRelocationModel();
82 // If no relocation model was picked, default as appropriate for the target.
83 if (getRelocationModel() == Reloc::Default
) {
84 if (!Subtarget
.isTargetDarwin())
85 setRelocationModel(Reloc::Static
);
86 else if (Subtarget
.is64Bit())
87 setRelocationModel(Reloc::PIC_
);
89 setRelocationModel(Reloc::DynamicNoPIC
);
92 assert(getRelocationModel() != Reloc::Default
&&
93 "Relocation mode not picked");
95 // If no code model is picked, default to small.
96 if (getCodeModel() == CodeModel::Default
)
97 setCodeModel(CodeModel::Small
);
99 // ELF and X86-64 don't have a distinct DynamicNoPIC model. DynamicNoPIC
100 // is defined as a model for code which may be used in static or dynamic
101 // executables but not necessarily a shared library. On X86-32 we just
102 // compile in -static mode, in x86-64 we use PIC.
103 if (getRelocationModel() == Reloc::DynamicNoPIC
) {
105 setRelocationModel(Reloc::PIC_
);
106 else if (!Subtarget
.isTargetDarwin())
107 setRelocationModel(Reloc::Static
);
110 // If we are on Darwin, disallow static relocation model in X86-64 mode, since
111 // the Mach-O file format doesn't support it.
112 if (getRelocationModel() == Reloc::Static
&&
113 Subtarget
.isTargetDarwin() &&
115 setRelocationModel(Reloc::PIC_
);
117 // Determine the PICStyle based on the target selected.
118 if (getRelocationModel() == Reloc::Static
) {
119 // Unless we're in PIC or DynamicNoPIC mode, set the PIC style to None.
120 Subtarget
.setPICStyle(PICStyles::None
);
121 } else if (Subtarget
.isTargetCygMing()) {
122 Subtarget
.setPICStyle(PICStyles::None
);
123 } else if (Subtarget
.isTargetDarwin()) {
124 if (Subtarget
.is64Bit())
125 Subtarget
.setPICStyle(PICStyles::RIPRel
);
126 else if (getRelocationModel() == Reloc::PIC_
)
127 Subtarget
.setPICStyle(PICStyles::StubPIC
);
129 assert(getRelocationModel() == Reloc::DynamicNoPIC
);
130 Subtarget
.setPICStyle(PICStyles::StubDynamicNoPIC
);
132 } else if (Subtarget
.isTargetELF()) {
133 if (Subtarget
.is64Bit())
134 Subtarget
.setPICStyle(PICStyles::RIPRel
);
136 Subtarget
.setPICStyle(PICStyles::GOT
);
139 // Finally, if we have "none" as our PIC style, force to static mode.
140 if (Subtarget
.getPICStyle() == PICStyles::None
)
141 setRelocationModel(Reloc::Static
);
144 //===----------------------------------------------------------------------===//
145 // Pass Pipeline Configuration
146 //===----------------------------------------------------------------------===//
148 bool X86TargetMachine::addInstSelector(PassManagerBase
&PM
,
149 CodeGenOpt::Level OptLevel
) {
150 // Install an instruction selector.
151 PM
.add(createX86ISelDag(*this, OptLevel
));
153 // If we're using Fast-ISel, clean up the mess.
155 PM
.add(createDeadMachineInstructionElimPass());
157 // Install a pass to insert x87 FP_REG_KILL instructions, as needed.
158 PM
.add(createX87FPRegKillInserterPass());
163 bool X86TargetMachine::addPreRegAlloc(PassManagerBase
&PM
,
164 CodeGenOpt::Level OptLevel
) {
165 // Calculate and set max stack object alignment early, so we can decide
166 // whether we will need stack realignment (and thus FP).
167 PM
.add(createX86MaxStackAlignmentCalculatorPass());
168 return false; // -print-machineinstr shouldn't print after this.
171 bool X86TargetMachine::addPostRegAlloc(PassManagerBase
&PM
,
172 CodeGenOpt::Level OptLevel
) {
173 PM
.add(createX86FloatingPointStackifierPass());
174 return true; // -print-machineinstr should print after this.
177 bool X86TargetMachine::addCodeEmitter(PassManagerBase
&PM
,
178 CodeGenOpt::Level OptLevel
,
179 MachineCodeEmitter
&MCE
) {
180 // FIXME: Move this to TargetJITInfo!
181 // On Darwin, do not override 64-bit setting made in X86TargetMachine().
182 if (DefRelocModel
== Reloc::Default
&&
183 (!Subtarget
.isTargetDarwin() || !Subtarget
.is64Bit())) {
184 setRelocationModel(Reloc::Static
);
185 Subtarget
.setPICStyle(PICStyles::None
);
188 // 64-bit JIT places everything in the same buffer except external functions.
189 // On Darwin, use small code model but hack the call instruction for
190 // externals. Elsewhere, do not assume globals are in the lower 4G.
191 if (Subtarget
.is64Bit()) {
192 if (Subtarget
.isTargetDarwin())
193 setCodeModel(CodeModel::Small
);
195 setCodeModel(CodeModel::Large
);
198 PM
.add(createX86CodeEmitterPass(*this, MCE
));
203 bool X86TargetMachine::addCodeEmitter(PassManagerBase
&PM
,
204 CodeGenOpt::Level OptLevel
,
205 JITCodeEmitter
&JCE
) {
206 // FIXME: Move this to TargetJITInfo!
207 // On Darwin, do not override 64-bit setting made in X86TargetMachine().
208 if (DefRelocModel
== Reloc::Default
&&
209 (!Subtarget
.isTargetDarwin() || !Subtarget
.is64Bit())) {
210 setRelocationModel(Reloc::Static
);
211 Subtarget
.setPICStyle(PICStyles::None
);
214 // 64-bit JIT places everything in the same buffer except external functions.
215 // On Darwin, use small code model but hack the call instruction for
216 // externals. Elsewhere, do not assume globals are in the lower 4G.
217 if (Subtarget
.is64Bit()) {
218 if (Subtarget
.isTargetDarwin())
219 setCodeModel(CodeModel::Small
);
221 setCodeModel(CodeModel::Large
);
224 PM
.add(createX86JITCodeEmitterPass(*this, JCE
));
229 bool X86TargetMachine::addCodeEmitter(PassManagerBase
&PM
,
230 CodeGenOpt::Level OptLevel
,
231 ObjectCodeEmitter
&OCE
) {
232 PM
.add(createX86ObjectCodeEmitterPass(*this, OCE
));
236 bool X86TargetMachine::addSimpleCodeEmitter(PassManagerBase
&PM
,
237 CodeGenOpt::Level OptLevel
,
238 MachineCodeEmitter
&MCE
) {
239 PM
.add(createX86CodeEmitterPass(*this, MCE
));
243 bool X86TargetMachine::addSimpleCodeEmitter(PassManagerBase
&PM
,
244 CodeGenOpt::Level OptLevel
,
245 JITCodeEmitter
&JCE
) {
246 PM
.add(createX86JITCodeEmitterPass(*this, JCE
));
250 bool X86TargetMachine::addSimpleCodeEmitter(PassManagerBase
&PM
,
251 CodeGenOpt::Level OptLevel
,
252 ObjectCodeEmitter
&OCE
) {
253 PM
.add(createX86ObjectCodeEmitterPass(*this, OCE
));