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