blob: 6cd0fc30292854c214f867dfe5f9e602d9416df3 [file] [log] [blame]
Chris Lattnerb4f68ed2002-10-29 22:37:54 +00001//===-- X86TargetMachine.cpp - Define TargetMachine for the X86 -----------===//
Misha Brukman0e0a7a452005-04-21 23:38:14 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman0e0a7a452005-04-21 23:38:14 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Misha Brukman0e0a7a452005-04-21 23:38:14 +00009//
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000010// This file defines the X86 specific subclass of TargetMachine.
11//
12//===----------------------------------------------------------------------===//
13
Jim Laskeyfde1b3b2006-09-07 23:39:26 +000014#include "X86TargetAsmInfo.h"
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000015#include "X86TargetMachine.h"
Chris Lattner5bcd95c2002-12-24 00:04:01 +000016#include "X86.h"
Chris Lattnerbb144a82003-08-24 19:49:48 +000017#include "llvm/Module.h"
Chris Lattner155e68f2003-04-23 16:24:55 +000018#include "llvm/PassManager.h"
Chris Lattner3dffa792002-10-30 00:47:49 +000019#include "llvm/CodeGen/MachineFunction.h"
Chris Lattnerd91d86f2003-01-13 00:51:23 +000020#include "llvm/CodeGen/Passes.h"
David Greene71847812009-07-14 20:18:05 +000021#include "llvm/Support/FormattedStream.h"
Chris Lattner0cf0c372004-07-11 04:17:10 +000022#include "llvm/Target/TargetOptions.h"
Chris Lattnerd36c9702004-07-11 02:48:49 +000023#include "llvm/Target/TargetMachineRegistry.h"
Chris Lattner1e60a912003-12-20 01:22:19 +000024using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000025
Jeff Cohen1c32f792005-01-03 16:34:19 +000026/// X86TargetMachineModule - Note that this is used on hosts that cannot link
27/// in a library unless there are references into the library. In particular,
28/// it seems that it is not possible to get things to work on Win32 without
29/// this. Though it is unused, do not remove it.
30extern "C" int X86TargetMachineModule;
31int X86TargetMachineModule = 0;
32
Dan Gohman844731a2008-05-13 00:00:25 +000033// Register the target.
Daniel Dunbar42467902009-07-15 09:22:31 +000034extern Target TheX86_32Target;
Dan Gohman844731a2008-05-13 00:00:25 +000035static RegisterTarget<X86_32TargetMachine>
Daniel Dunbar42467902009-07-15 09:22:31 +000036X(TheX86_32Target, "x86", "32-bit X86: Pentium-Pro and above");
37
38extern Target TheX86_64Target;
Dan Gohman844731a2008-05-13 00:00:25 +000039static RegisterTarget<X86_64TargetMachine>
Daniel Dunbar42467902009-07-15 09:22:31 +000040Y(TheX86_64Target, "x86-64", "64-bit X86: EM64T and AMD64");
Chris Lattner439a27a2002-12-16 16:15:51 +000041
Bob Wilsona96751f2009-06-23 23:59:40 +000042// Force static initialization.
Daniel Dunbar42467902009-07-15 09:22:31 +000043extern "C" void LLVMInitializeX86Target() {
44
45}
Douglas Gregor1555a232009-06-16 20:12:29 +000046
Anton Korobeynikov3c3bc482008-08-17 13:53:59 +000047// No assembler printer by default
48X86TargetMachine::AsmPrinterCtorFn X86TargetMachine::AsmPrinterCtor = 0;
49
Jim Laskeyfde1b3b2006-09-07 23:39:26 +000050const TargetAsmInfo *X86TargetMachine::createTargetAsmInfo() const {
Anton Korobeynikov4468b7a2008-07-09 13:20:48 +000051 if (Subtarget.isFlavorIntel())
52 return new X86WinTargetAsmInfo(*this);
53 else
54 switch (Subtarget.TargetType) {
55 case X86Subtarget::isDarwin:
56 return new X86DarwinTargetAsmInfo(*this);
57 case X86Subtarget::isELF:
58 return new X86ELFTargetAsmInfo(*this);
59 case X86Subtarget::isMingw:
60 case X86Subtarget::isCygwin:
61 return new X86COFFTargetAsmInfo(*this);
62 case X86Subtarget::isWindows:
63 return new X86WinTargetAsmInfo(*this);
64 default:
Anton Korobeynikov32b952a2008-09-25 21:00:33 +000065 return new X86GenericTargetAsmInfo(*this);
Anton Korobeynikov4468b7a2008-07-09 13:20:48 +000066 }
Jim Laskeyfde1b3b2006-09-07 23:39:26 +000067}
68
Evan Cheng25ab6902006-09-08 06:48:29 +000069unsigned X86_32TargetMachine::getJITMatchQuality() {
Chris Lattner7d0974b2004-10-18 15:54:17 +000070#if defined(i386) || defined(__i386__) || defined(__x86__) || defined(_M_IX86)
Chris Lattnerd36c9702004-07-11 02:48:49 +000071 return 10;
Chris Lattnerd36c9702004-07-11 02:48:49 +000072#endif
Evan Cheng25ab6902006-09-08 06:48:29 +000073 return 0;
Chris Lattnerd36c9702004-07-11 02:48:49 +000074}
75
Evan Cheng25ab6902006-09-08 06:48:29 +000076unsigned X86_64TargetMachine::getJITMatchQuality() {
Anton Korobeynikov8c278292008-03-23 13:43:47 +000077#if defined(__x86_64__) || defined(_M_AMD64)
Evan Cheng25ab6902006-09-08 06:48:29 +000078 return 10;
79#endif
80 return 0;
81}
82
83unsigned X86_32TargetMachine::getModuleMatchQuality(const Module &M) {
Chris Lattner3ea78c42004-12-12 17:40:28 +000084 // We strongly match "i[3-9]86-*".
85 std::string TT = M.getTargetTriple();
86 if (TT.size() >= 5 && TT[0] == 'i' && TT[2] == '8' && TT[3] == '6' &&
87 TT[4] == '-' && TT[1] - '3' < 6)
88 return 20;
Chris Lattner87bdba62007-07-09 17:25:29 +000089 // If the target triple is something non-X86, we don't match.
90 if (!TT.empty()) return 0;
Chris Lattner3ea78c42004-12-12 17:40:28 +000091
Chris Lattnerd36c9702004-07-11 02:48:49 +000092 if (M.getEndianness() == Module::LittleEndian &&
93 M.getPointerSize() == Module::Pointer32)
Chris Lattner3ea78c42004-12-12 17:40:28 +000094 return 10; // Weak match
Chris Lattnerd36c9702004-07-11 02:48:49 +000095 else if (M.getEndianness() != Module::AnyEndianness ||
96 M.getPointerSize() != Module::AnyPointerSize)
97 return 0; // Match for some other target
98
99 return getJITMatchQuality()/2;
100}
Chris Lattnerb4f68ed2002-10-29 22:37:54 +0000101
Evan Cheng25ab6902006-09-08 06:48:29 +0000102unsigned X86_64TargetMachine::getModuleMatchQuality(const Module &M) {
103 // We strongly match "x86_64-*".
104 std::string TT = M.getTargetTriple();
105 if (TT.size() >= 7 && TT[0] == 'x' && TT[1] == '8' && TT[2] == '6' &&
106 TT[3] == '_' && TT[4] == '6' && TT[5] == '4' && TT[6] == '-')
107 return 20;
108
Chris Lattner21847f42006-12-19 19:40:09 +0000109 // We strongly match "amd64-*".
110 if (TT.size() >= 6 && TT[0] == 'a' && TT[1] == 'm' && TT[2] == 'd' &&
111 TT[3] == '6' && TT[4] == '4' && TT[5] == '-')
112 return 20;
113
Chris Lattner87bdba62007-07-09 17:25:29 +0000114 // If the target triple is something non-X86-64, we don't match.
115 if (!TT.empty()) return 0;
116
Evan Cheng25ab6902006-09-08 06:48:29 +0000117 if (M.getEndianness() == Module::LittleEndian &&
118 M.getPointerSize() == Module::Pointer64)
119 return 10; // Weak match
120 else if (M.getEndianness() != Module::AnyEndianness ||
121 M.getPointerSize() != Module::AnyPointerSize)
122 return 0; // Match for some other target
123
124 return getJITMatchQuality()/2;
125}
126
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +0000127X86_32TargetMachine::X86_32TargetMachine(const Module &M, const std::string &FS)
Evan Cheng25ab6902006-09-08 06:48:29 +0000128 : X86TargetMachine(M, FS, false) {
129}
130
131
132X86_64TargetMachine::X86_64TargetMachine(const Module &M, const std::string &FS)
133 : X86TargetMachine(M, FS, true) {
134}
135
Chris Lattner11348ee2009-07-09 03:32:31 +0000136/// X86TargetMachine ctor - Create an X86 target.
Chris Lattnerb4f68ed2002-10-29 22:37:54 +0000137///
Evan Chengcdc69442007-02-23 03:03:16 +0000138X86TargetMachine::X86TargetMachine(const Module &M, const std::string &FS,
139 bool is64Bit)
Evan Cheng25ab6902006-09-08 06:48:29 +0000140 : Subtarget(M, FS, is64Bit),
Dale Johannesen27f92be2007-08-06 21:48:35 +0000141 DataLayout(Subtarget.getDataLayout()),
Nate Begemanfb5792f2005-07-12 01:41:54 +0000142 FrameInfo(TargetFrameInfo::StackGrowsDown,
Evan Cheng25ab6902006-09-08 06:48:29 +0000143 Subtarget.getStackAlignment(), Subtarget.is64Bit() ? -8 : -4),
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +0000144 InstrInfo(*this), JITInfo(*this), TLInfo(*this), ELFWriterInfo(*this) {
Evan Chengaabe38b2007-12-22 09:40:20 +0000145 DefRelocModel = getRelocationModel();
Chris Lattner11348ee2009-07-09 03:32:31 +0000146
147 // If no relocation model was picked, default as appropriate for the target.
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +0000148 if (getRelocationModel() == Reloc::Default) {
Chris Lattner11348ee2009-07-09 03:32:31 +0000149 if (!Subtarget.isTargetDarwin())
Evan Cheng2c312ad2006-12-04 18:07:10 +0000150 setRelocationModel(Reloc::Static);
Chris Lattner11348ee2009-07-09 03:32:31 +0000151 else if (Subtarget.is64Bit())
152 setRelocationModel(Reloc::PIC_);
153 else
154 setRelocationModel(Reloc::DynamicNoPIC);
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +0000155 }
Dan Gohman6520e202008-10-18 02:06:02 +0000156
Chris Lattnere4df7562009-07-09 03:15:51 +0000157 assert(getRelocationModel() != Reloc::Default &&
158 "Relocation mode not picked");
159
Chris Lattner11348ee2009-07-09 03:32:31 +0000160 // If no code model is picked, default to small.
161 if (getCodeModel() == CodeModel::Default)
162 setCodeModel(CodeModel::Small);
163
Chris Lattnerb2fc55b2009-07-09 03:37:30 +0000164 // ELF and X86-64 don't have a distinct DynamicNoPIC model. DynamicNoPIC
Chris Lattner11348ee2009-07-09 03:32:31 +0000165 // is defined as a model for code which may be used in static or dynamic
Chris Lattner88e1fd52009-07-09 04:24:46 +0000166 // executables but not necessarily a shared library. On X86-32 we just
167 // compile in -static mode, in x86-64 we use PIC.
168 if (getRelocationModel() == Reloc::DynamicNoPIC) {
169 if (is64Bit)
170 setRelocationModel(Reloc::PIC_);
171 else if (!Subtarget.isTargetDarwin())
172 setRelocationModel(Reloc::Static);
173 }
Dan Gohman6520e202008-10-18 02:06:02 +0000174
Chris Lattnerb2fc55b2009-07-09 03:37:30 +0000175 // If we are on Darwin, disallow static relocation model in X86-64 mode, since
176 // the Mach-O file format doesn't support it.
177 if (getRelocationModel() == Reloc::Static &&
178 Subtarget.isTargetDarwin() &&
179 is64Bit)
180 setRelocationModel(Reloc::PIC_);
181
Chris Lattner11348ee2009-07-09 03:32:31 +0000182 // Determine the PICStyle based on the target selected.
183 if (getRelocationModel() == Reloc::Static) {
184 // Unless we're in PIC or DynamicNoPIC mode, set the PIC style to None.
185 Subtarget.setPICStyle(PICStyles::None);
186 } else if (Subtarget.isTargetCygMing()) {
Chris Lattnere4df7562009-07-09 03:15:51 +0000187 Subtarget.setPICStyle(PICStyles::None);
188 } else if (Subtarget.isTargetDarwin()) {
Evan Chengae19abc2007-01-18 22:27:12 +0000189 if (Subtarget.is64Bit())
Duncan Sandsf9a67a82008-11-28 09:29:37 +0000190 Subtarget.setPICStyle(PICStyles::RIPRel);
Chris Lattner8097b652009-07-10 20:58:47 +0000191 else if (getRelocationModel() == Reloc::PIC_)
192 Subtarget.setPICStyle(PICStyles::StubPIC);
193 else {
194 assert(getRelocationModel() == Reloc::DynamicNoPIC);
195 Subtarget.setPICStyle(PICStyles::StubDynamicNoPIC);
196 }
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +0000197 } else if (Subtarget.isTargetELF()) {
Evan Chengae19abc2007-01-18 22:27:12 +0000198 if (Subtarget.is64Bit())
Duncan Sandsf9a67a82008-11-28 09:29:37 +0000199 Subtarget.setPICStyle(PICStyles::RIPRel);
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000200 else
Duncan Sandsf9a67a82008-11-28 09:29:37 +0000201 Subtarget.setPICStyle(PICStyles::GOT);
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +0000202 }
Chris Lattnere4df7562009-07-09 03:15:51 +0000203
Chris Lattner11348ee2009-07-09 03:32:31 +0000204 // Finally, if we have "none" as our PIC style, force to static mode.
205 if (Subtarget.getPICStyle() == PICStyles::None)
206 setRelocationModel(Reloc::Static);
Chris Lattner4efab052006-02-03 18:59:39 +0000207}
Chris Lattnerb4f68ed2002-10-29 22:37:54 +0000208
Chris Lattner1911fd42006-09-04 04:14:57 +0000209//===----------------------------------------------------------------------===//
210// Pass Pipeline Configuration
211//===----------------------------------------------------------------------===//
Chris Lattnerc9bbfbc2003-08-05 16:34:44 +0000212
Bill Wendling98a366d2009-04-29 23:29:43 +0000213bool X86TargetMachine::addInstSelector(PassManagerBase &PM,
214 CodeGenOpt::Level OptLevel) {
Nate Begeman73bfa712005-08-18 23:53:15 +0000215 // Install an instruction selector.
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000216 PM.add(createX86ISelDag(*this, OptLevel));
Dan Gohman71b7f642008-10-25 17:46:52 +0000217
218 // If we're using Fast-ISel, clean up the mess.
219 if (EnableFastISel)
220 PM.add(createDeadMachineInstructionElimPass());
221
Dan Gohmanbc5cbb82008-11-12 22:55:05 +0000222 // Install a pass to insert x87 FP_REG_KILL instructions, as needed.
223 PM.add(createX87FPRegKillInserterPass());
224
Chris Lattner1911fd42006-09-04 04:14:57 +0000225 return false;
Brian Gaekede3aa4f2003-06-18 21:43:21 +0000226}
227
Bill Wendling98a366d2009-04-29 23:29:43 +0000228bool X86TargetMachine::addPreRegAlloc(PassManagerBase &PM,
229 CodeGenOpt::Level OptLevel) {
Anton Korobeynikovd52bdaf2008-04-23 18:23:30 +0000230 // Calculate and set max stack object alignment early, so we can decide
231 // whether we will need stack realignment (and thus FP).
Anton Korobeynikov856914f2008-04-23 18:23:05 +0000232 PM.add(createX86MaxStackAlignmentCalculatorPass());
233 return false; // -print-machineinstr shouldn't print after this.
234}
235
Bill Wendling98a366d2009-04-29 23:29:43 +0000236bool X86TargetMachine::addPostRegAlloc(PassManagerBase &PM,
237 CodeGenOpt::Level OptLevel) {
Chris Lattnerd91d86f2003-01-13 00:51:23 +0000238 PM.add(createX86FloatingPointStackifierPass());
Chris Lattner1911fd42006-09-04 04:14:57 +0000239 return true; // -print-machineinstr should print after this.
Chris Lattnerb4f68ed2002-10-29 22:37:54 +0000240}
241
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000242bool X86TargetMachine::addAssemblyEmitter(PassManagerBase &PM,
Bill Wendling98a366d2009-04-29 23:29:43 +0000243 CodeGenOpt::Level OptLevel,
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000244 bool Verbose,
David Greene71847812009-07-14 20:18:05 +0000245 formatted_raw_ostream &Out) {
Anton Korobeynikov3c3bc482008-08-17 13:53:59 +0000246 assert(AsmPrinterCtor && "AsmPrinter was not linked in");
247 if (AsmPrinterCtor)
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +0000248 PM.add(AsmPrinterCtor(Out, *this, Verbose));
Chris Lattner1911fd42006-09-04 04:14:57 +0000249 return false;
250}
251
Bill Wendling98a366d2009-04-29 23:29:43 +0000252bool X86TargetMachine::addCodeEmitter(PassManagerBase &PM,
253 CodeGenOpt::Level OptLevel,
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +0000254 bool DumpAsm,
255 MachineCodeEmitter &MCE) {
Chris Lattner2130b992006-09-04 18:48:41 +0000256 // FIXME: Move this to TargetJITInfo!
Dale Johannesen5f777192008-08-12 21:02:08 +0000257 // On Darwin, do not override 64-bit setting made in X86TargetMachine().
258 if (DefRelocModel == Reloc::Default &&
Chris Lattnerb2fc55b2009-07-09 03:37:30 +0000259 (!Subtarget.isTargetDarwin() || !Subtarget.is64Bit())) {
Evan Chengaabe38b2007-12-22 09:40:20 +0000260 setRelocationModel(Reloc::Static);
Chris Lattnerb2fc55b2009-07-09 03:37:30 +0000261 Subtarget.setPICStyle(PICStyles::None);
262 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000263
Dale Johannesen50dd1d02008-08-11 23:46:25 +0000264 // 64-bit JIT places everything in the same buffer except external functions.
Dale Johannesen5f777192008-08-12 21:02:08 +0000265 // On Darwin, use small code model but hack the call instruction for
266 // externals. Elsewhere, do not assume globals are in the lower 4G.
267 if (Subtarget.is64Bit()) {
268 if (Subtarget.isTargetDarwin())
269 setCodeModel(CodeModel::Small);
270 else
271 setCodeModel(CodeModel::Large);
272 }
Anton Korobeynikov15fccf12006-12-20 01:03:20 +0000273
Evan Cheng55fc2802006-07-25 20:40:54 +0000274 PM.add(createX86CodeEmitterPass(*this, MCE));
Anton Korobeynikov3c3bc482008-08-17 13:53:59 +0000275 if (DumpAsm) {
276 assert(AsmPrinterCtor && "AsmPrinter was not linked in");
277 if (AsmPrinterCtor)
David Greene71847812009-07-14 20:18:05 +0000278 PM.add(AsmPrinterCtor(ferrs(), *this, true));
Anton Korobeynikov3c3bc482008-08-17 13:53:59 +0000279 }
Evan Cheng8bd60352007-07-20 21:56:13 +0000280
Chris Lattner81b6ed72005-07-11 05:17:48 +0000281 return false;
282}
Bill Wendlingeb1ac332007-02-08 01:39:44 +0000283
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000284bool X86TargetMachine::addCodeEmitter(PassManagerBase &PM,
285 CodeGenOpt::Level OptLevel,
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +0000286 bool DumpAsm,
287 JITCodeEmitter &JCE) {
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000288 // FIXME: Move this to TargetJITInfo!
289 // On Darwin, do not override 64-bit setting made in X86TargetMachine().
290 if (DefRelocModel == Reloc::Default &&
Chris Lattnerb2fc55b2009-07-09 03:37:30 +0000291 (!Subtarget.isTargetDarwin() || !Subtarget.is64Bit())) {
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000292 setRelocationModel(Reloc::Static);
Chris Lattnerb2fc55b2009-07-09 03:37:30 +0000293 Subtarget.setPICStyle(PICStyles::None);
294 }
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000295
296 // 64-bit JIT places everything in the same buffer except external functions.
297 // On Darwin, use small code model but hack the call instruction for
298 // externals. Elsewhere, do not assume globals are in the lower 4G.
299 if (Subtarget.is64Bit()) {
300 if (Subtarget.isTargetDarwin())
301 setCodeModel(CodeModel::Small);
302 else
303 setCodeModel(CodeModel::Large);
304 }
305
306 PM.add(createX86JITCodeEmitterPass(*this, JCE));
307 if (DumpAsm) {
308 assert(AsmPrinterCtor && "AsmPrinter was not linked in");
309 if (AsmPrinterCtor)
David Greene71847812009-07-14 20:18:05 +0000310 PM.add(AsmPrinterCtor(ferrs(), *this, true));
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000311 }
312
313 return false;
314}
315
Bruno Cardoso Lopesac57e6e2009-07-06 05:09:34 +0000316bool X86TargetMachine::addCodeEmitter(PassManagerBase &PM,
317 CodeGenOpt::Level OptLevel,
318 bool DumpAsm,
319 ObjectCodeEmitter &OCE) {
Bruno Cardoso Lopesac57e6e2009-07-06 05:09:34 +0000320 PM.add(createX86ObjectCodeEmitterPass(*this, OCE));
321 if (DumpAsm) {
322 assert(AsmPrinterCtor && "AsmPrinter was not linked in");
323 if (AsmPrinterCtor)
David Greene71847812009-07-14 20:18:05 +0000324 PM.add(AsmPrinterCtor(ferrs(), *this, true));
Bruno Cardoso Lopesac57e6e2009-07-06 05:09:34 +0000325 }
326
327 return false;
328}
329
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000330bool X86TargetMachine::addSimpleCodeEmitter(PassManagerBase &PM,
Bill Wendling98a366d2009-04-29 23:29:43 +0000331 CodeGenOpt::Level OptLevel,
332 bool DumpAsm,
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000333 MachineCodeEmitter &MCE) {
Bill Wendlingeb1ac332007-02-08 01:39:44 +0000334 PM.add(createX86CodeEmitterPass(*this, MCE));
Anton Korobeynikov3c3bc482008-08-17 13:53:59 +0000335 if (DumpAsm) {
336 assert(AsmPrinterCtor && "AsmPrinter was not linked in");
337 if (AsmPrinterCtor)
David Greene71847812009-07-14 20:18:05 +0000338 PM.add(AsmPrinterCtor(ferrs(), *this, true));
Anton Korobeynikov3c3bc482008-08-17 13:53:59 +0000339 }
340
Bill Wendlingeb1ac332007-02-08 01:39:44 +0000341 return false;
342}
Dan Gohman97135e12008-09-26 19:15:30 +0000343
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000344bool X86TargetMachine::addSimpleCodeEmitter(PassManagerBase &PM,
345 CodeGenOpt::Level OptLevel,
346 bool DumpAsm,
347 JITCodeEmitter &JCE) {
348 PM.add(createX86JITCodeEmitterPass(*this, JCE));
349 if (DumpAsm) {
350 assert(AsmPrinterCtor && "AsmPrinter was not linked in");
351 if (AsmPrinterCtor)
David Greene71847812009-07-14 20:18:05 +0000352 PM.add(AsmPrinterCtor(ferrs(), *this, true));
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000353 }
354
355 return false;
356}
357
Bruno Cardoso Lopesac57e6e2009-07-06 05:09:34 +0000358bool X86TargetMachine::addSimpleCodeEmitter(PassManagerBase &PM,
359 CodeGenOpt::Level OptLevel,
360 bool DumpAsm,
361 ObjectCodeEmitter &OCE) {
362 PM.add(createX86ObjectCodeEmitterPass(*this, OCE));
363 if (DumpAsm) {
364 assert(AsmPrinterCtor && "AsmPrinter was not linked in");
365 if (AsmPrinterCtor)
David Greene71847812009-07-14 20:18:05 +0000366 PM.add(AsmPrinterCtor(ferrs(), *this, true));
Bruno Cardoso Lopesac57e6e2009-07-06 05:09:34 +0000367 }
368
369 return false;
370}