Match getTargetNode() changes (now return SDNode* instead of SDOperand).
[oota-llvm.git] / lib / Target / X86 / X86TargetMachine.cpp
1 //===-- X86TargetMachine.cpp - Define TargetMachine for the X86 -----------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines the X86 specific subclass of TargetMachine.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "X86TargetMachine.h"
15 #include "X86.h"
16 #include "llvm/Module.h"
17 #include "llvm/PassManager.h"
18 #include "llvm/CodeGen/IntrinsicLowering.h"
19 #include "llvm/CodeGen/MachineFunction.h"
20 #include "llvm/CodeGen/Passes.h"
21 #include "llvm/Target/TargetOptions.h"
22 #include "llvm/Target/TargetMachineRegistry.h"
23 #include "llvm/Transforms/Scalar.h"
24 #include "llvm/Support/CommandLine.h"
25 #include "llvm/ADT/Statistic.h"
26 #include <iostream>
27 using namespace llvm;
28
29 bool llvm::X86PatIsel = true;
30
31 /// X86TargetMachineModule - Note that this is used on hosts that cannot link
32 /// in a library unless there are references into the library.  In particular,
33 /// it seems that it is not possible to get things to work on Win32 without
34 /// this.  Though it is unused, do not remove it.
35 extern "C" int X86TargetMachineModule;
36 int X86TargetMachineModule = 0;
37
38 namespace {
39   cl::opt<bool> DisableOutput("disable-x86-llc-output", cl::Hidden,
40                               cl::desc("Disable the X86 asm printer, for use "
41                                        "when profiling the code generator."));
42   cl::opt<bool, true> EnableX86PatISel("enable-x86-pattern-isel", cl::Hidden,
43                       cl::desc("Enable the pattern based isel for X86"),
44                       cl::location(X86PatIsel),
45                       cl::init(false));
46   
47   // Register the target.
48   RegisterTarget<X86TargetMachine> X("x86", "  IA-32 (Pentium and above)");
49 }
50
51 unsigned X86TargetMachine::getJITMatchQuality() {
52 #if defined(i386) || defined(__i386__) || defined(__x86__) || defined(_M_IX86)
53   return 10;
54 #else
55   return 0;
56 #endif
57 }
58
59 unsigned X86TargetMachine::getModuleMatchQuality(const Module &M) {
60   // We strongly match "i[3-9]86-*".
61   std::string TT = M.getTargetTriple();
62   if (TT.size() >= 5 && TT[0] == 'i' && TT[2] == '8' && TT[3] == '6' &&
63       TT[4] == '-' && TT[1] - '3' < 6)
64     return 20;
65
66   if (M.getEndianness()  == Module::LittleEndian &&
67       M.getPointerSize() == Module::Pointer32)
68     return 10;                                   // Weak match
69   else if (M.getEndianness() != Module::AnyEndianness ||
70            M.getPointerSize() != Module::AnyPointerSize)
71     return 0;                                    // Match for some other target
72
73   return getJITMatchQuality()/2;
74 }
75
76 /// X86TargetMachine ctor - Create an ILP32 architecture model
77 ///
78 X86TargetMachine::X86TargetMachine(const Module &M,
79                                   IntrinsicLowering *IL,
80                                   const std::string &FS)
81   : TargetMachine("X86", IL, true, 4, 4, 4, 4, 4),
82     Subtarget(M, FS),
83     FrameInfo(TargetFrameInfo::StackGrowsDown,
84               Subtarget.getStackAlignment(), -4),
85     JITInfo(*this) {
86 }
87
88
89 // addPassesToEmitFile - We currently use all of the same passes as the JIT
90 // does to emit statically compiled machine code.
91 bool X86TargetMachine::addPassesToEmitFile(PassManager &PM, std::ostream &Out,
92                                            CodeGenFileType FileType,
93                                            bool Fast) {
94   if (FileType != TargetMachine::AssemblyFile &&
95       FileType != TargetMachine::ObjectFile) return true;
96
97   // FIXME: Implement efficient support for garbage collection intrinsics.
98   PM.add(createLowerGCPass());
99
100   // FIXME: Implement the invoke/unwind instructions!
101   PM.add(createLowerInvokePass());
102
103   // FIXME: Implement the switch instruction in the instruction selector!
104   PM.add(createLowerSwitchPass());
105
106   // Make sure that no unreachable blocks are instruction selected.
107   PM.add(createUnreachableBlockEliminationPass());
108
109   // Install an instruction selector.
110   if (X86PatIsel)
111     PM.add(createX86ISelPattern(*this));
112   else
113     PM.add(createX86ISelDag(*this));
114
115   // Print the instruction selected machine code...
116   if (PrintMachineCode)
117     PM.add(createMachineFunctionPrinterPass(&std::cerr));
118
119   // Perform register allocation to convert to a concrete x86 representation
120   PM.add(createRegisterAllocator());
121
122   if (PrintMachineCode)
123     PM.add(createMachineFunctionPrinterPass(&std::cerr));
124
125   PM.add(createX86FloatingPointStackifierPass());
126
127   if (PrintMachineCode)
128     PM.add(createMachineFunctionPrinterPass(&std::cerr));
129
130   // Insert prolog/epilog code.  Eliminate abstract frame index references...
131   PM.add(createPrologEpilogCodeInserter());
132
133   if (PrintMachineCode)  // Print the register-allocated code
134     PM.add(createX86CodePrinterPass(std::cerr, *this));
135
136   if (!DisableOutput)
137     switch (FileType) {
138     default:
139       assert(0 && "Unexpected filetype here!");
140     case TargetMachine::AssemblyFile:
141       PM.add(createX86CodePrinterPass(Out, *this));
142       break;
143     case TargetMachine::ObjectFile:
144       // FIXME: We only support emission of ELF files for now, this should check
145       // the target triple and decide on the format to write (e.g. COFF on
146       // win32).
147       addX86ELFObjectWriterPass(PM, Out, *this);
148       break;
149     }
150
151   // Delete machine code for this function
152   PM.add(createMachineCodeDeleter());
153
154   return false; // success!
155 }
156
157 /// addPassesToJITCompile - Add passes to the specified pass manager to
158 /// implement a fast dynamic compiler for this target.  Return true if this is
159 /// not supported for this target.
160 ///
161 void X86JITInfo::addPassesToJITCompile(FunctionPassManager &PM) {
162   // FIXME: Implement efficient support for garbage collection intrinsics.
163   PM.add(createLowerGCPass());
164
165   // FIXME: Implement the invoke/unwind instructions!
166   PM.add(createLowerInvokePass());
167
168   // FIXME: Implement the switch instruction in the instruction selector!
169   PM.add(createLowerSwitchPass());
170
171   // Make sure that no unreachable blocks are instruction selected.
172   PM.add(createUnreachableBlockEliminationPass());
173
174   // Install an instruction selector.
175   if (X86PatIsel)
176     PM.add(createX86ISelPattern(TM));
177   else
178     PM.add(createX86ISelDag(TM));
179
180   // Print the instruction selected machine code...
181   if (PrintMachineCode)
182     PM.add(createMachineFunctionPrinterPass(&std::cerr));
183
184   // Perform register allocation to convert to a concrete x86 representation
185   PM.add(createRegisterAllocator());
186
187   if (PrintMachineCode)
188     PM.add(createMachineFunctionPrinterPass(&std::cerr));
189
190   PM.add(createX86FloatingPointStackifierPass());
191
192   if (PrintMachineCode)
193     PM.add(createMachineFunctionPrinterPass(&std::cerr));
194
195   // Insert prolog/epilog code.  Eliminate abstract frame index references...
196   PM.add(createPrologEpilogCodeInserter());
197
198   if (PrintMachineCode)  // Print the register-allocated code
199     PM.add(createX86CodePrinterPass(std::cerr, TM));
200 }
201
202 bool X86TargetMachine::addPassesToEmitMachineCode(FunctionPassManager &PM,
203                                                   MachineCodeEmitter &MCE) {
204   PM.add(createX86CodeEmitterPass(MCE));
205   // Delete machine code for this function
206   PM.add(createMachineCodeDeleter());
207   return false;
208 }