blob: 67c0e4772a87dd779d5ada0aa0095e2b196d1cd0 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- LLVMTargetMachine.cpp - Implement the LLVMTargetMachine class -----===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the LLVMTargetMachine class.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/Target/TargetMachine.h"
15#include "llvm/PassManager.h"
16#include "llvm/Pass.h"
17#include "llvm/Assembly/PrintModulePass.h"
18#include "llvm/Analysis/LoopPass.h"
19#include "llvm/CodeGen/Passes.h"
Gordon Henriksen36464772008-01-07 01:33:09 +000020#include "llvm/CodeGen/Collector.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000021#include "llvm/Target/TargetOptions.h"
22#include "llvm/Transforms/Scalar.h"
23#include "llvm/Support/CommandLine.h"
24using namespace llvm;
25
26static cl::opt<bool> PrintLSR("print-lsr-output", cl::Hidden,
27 cl::desc("Print LLVM IR produced by the loop-reduce pass"));
28static cl::opt<bool> PrintISelInput("print-isel-input", cl::Hidden,
29 cl::desc("Print LLVM IR input to isel pass"));
Evan Cheng77547212007-07-20 21:56:13 +000030static cl::opt<bool> PrintEmittedAsm("print-emitted-asm", cl::Hidden,
31 cl::desc("Dump emitter generated instructions as assembly"));
Gordon Henriksen36464772008-01-07 01:33:09 +000032static cl::opt<bool> PrintGCInfo("print-gc", cl::Hidden,
33 cl::desc("Dump garbage collector data"));
Dan Gohmanf17a25c2007-07-18 16:29:46 +000034
Chris Lattner39882262008-01-04 07:36:53 +000035// Hidden options to help debugging
36static cl::opt<bool>
37EnableSinking("enable-sinking", cl::init(false), cl::Hidden,
38 cl::desc("Perform sinking on machine code"));
Bill Wendling4aab7ae2008-01-04 08:11:03 +000039static cl::opt<bool>
Evan Cheng7e29ba02008-02-28 23:29:57 +000040AlignLoops("align-loops", cl::init(true), cl::Hidden,
41 cl::desc("Align loop headers"));
42static cl::opt<bool>
Bill Wendling4aab7ae2008-01-04 08:11:03 +000043PerformLICM("machine-licm",
44 cl::init(false), cl::Hidden,
45 cl::desc("Perform loop-invariant code motion on machine code"));
Chris Lattner39882262008-01-04 07:36:53 +000046
Chris Lattnere06d8eb2008-01-14 19:00:06 +000047// When this works it will be on by default.
48static cl::opt<bool>
49DisablePostRAScheduler("disable-post-RA-scheduler",
50 cl::desc("Disable scheduling after register allocation"),
51 cl::init(true));
52
Dan Gohmanf17a25c2007-07-18 16:29:46 +000053FileModel::Model
Dan Gohmane34aa772008-03-11 22:29:46 +000054LLVMTargetMachine::addPassesToEmitFile(PassManagerBase &PM,
Dan Gohmanf17a25c2007-07-18 16:29:46 +000055 std::ostream &Out,
56 CodeGenFileType FileType,
57 bool Fast) {
58 // Standard LLVM-Level Passes.
59
60 // Run loop strength reduction before anything else.
61 if (!Fast) {
62 PM.add(createLoopStrengthReducePass(getTargetLowering()));
63 if (PrintLSR)
Dan Gohman35a54152008-03-25 21:38:12 +000064 PM.add(new PrintFunctionPass("\n\n*** Code after LSR ***\n", &cerr));
Dan Gohmanf17a25c2007-07-18 16:29:46 +000065 }
66
Gordon Henriksen36464772008-01-07 01:33:09 +000067 PM.add(createGCLoweringPass());
Dan Gohmanf17a25c2007-07-18 16:29:46 +000068
Dale Johannesen80caa492008-03-31 23:40:23 +000069 PM.add(createLowerInvokePass(getTargetLowering()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +000070
71 // Make sure that no unreachable blocks are instruction selected.
72 PM.add(createUnreachableBlockEliminationPass());
73
74 if (!Fast)
75 PM.add(createCodeGenPreparePass(getTargetLowering()));
76
77 if (PrintISelInput)
Dan Gohman35a54152008-03-25 21:38:12 +000078 PM.add(new PrintFunctionPass("\n\n*** Final LLVM Code input to ISel ***\n",
Dan Gohmanf17a25c2007-07-18 16:29:46 +000079 &cerr));
80
81 // Ask the target for an isel.
82 if (addInstSelector(PM, Fast))
83 return FileModel::Error;
84
85 // Print the instruction selected machine code...
86 if (PrintMachineCode)
87 PM.add(createMachineFunctionPrinterPass(cerr));
Bill Wendlingb958b0d2007-12-07 21:42:31 +000088
Bill Wendling4aab7ae2008-01-04 08:11:03 +000089 if (PerformLICM)
90 PM.add(createMachineLICMPass());
Chris Lattner39882262008-01-04 07:36:53 +000091
92 if (EnableSinking)
93 PM.add(createMachineSinkingPass());
Bill Wendlingb958b0d2007-12-07 21:42:31 +000094
Dan Gohmanf17a25c2007-07-18 16:29:46 +000095 // Perform register allocation to convert to a concrete x86 representation
96 PM.add(createRegisterAllocator());
97
98 if (PrintMachineCode)
99 PM.add(createMachineFunctionPrinterPass(cerr));
Christopher Lambed379732007-07-27 07:36:14 +0000100
101 PM.add(createLowerSubregsPass());
102
103 if (PrintMachineCode) // Print the subreg lowered code
104 PM.add(createMachineFunctionPrinterPass(cerr));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000105
106 // Run post-ra passes.
107 if (addPostRegAlloc(PM, Fast) && PrintMachineCode)
108 PM.add(createMachineFunctionPrinterPass(cerr));
109
110 // Insert prolog/epilog code. Eliminate abstract frame index references...
111 PM.add(createPrologEpilogCodeInserter());
112
113 // Second pass scheduler.
Chris Lattnere06d8eb2008-01-14 19:00:06 +0000114 if (!Fast && !DisablePostRAScheduler)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000115 PM.add(createPostRAScheduler());
116
117 // Branch folding must be run after regalloc and prolog/epilog insertion.
118 if (!Fast)
119 PM.add(createBranchFoldingPass(getEnableTailMergeDefault()));
Bill Wendlingb958b0d2007-12-07 21:42:31 +0000120
Gordon Henriksen36464772008-01-07 01:33:09 +0000121 PM.add(createGCMachineCodeAnalysisPass());
122 if (PrintMachineCode)
123 PM.add(createMachineFunctionPrinterPass(cerr));
124
125 if (PrintGCInfo)
126 PM.add(createCollectorMetadataPrinter(*cerr));
127
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000128 // Fold redundant debug labels.
129 PM.add(createDebugLabelFoldingPass());
130
131 if (PrintMachineCode) // Print the register-allocated code
132 PM.add(createMachineFunctionPrinterPass(cerr));
133
134 if (addPreEmitPass(PM, Fast) && PrintMachineCode)
135 PM.add(createMachineFunctionPrinterPass(cerr));
136
Devang Patel70570242008-03-25 21:03:02 +0000137 if (AlignLoops && !OptimizeForSize)
Evan Cheng7e29ba02008-02-28 23:29:57 +0000138 PM.add(createLoopAlignerPass());
139
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000140 switch (FileType) {
141 default:
142 break;
143 case TargetMachine::AssemblyFile:
144 if (addAssemblyEmitter(PM, Fast, Out))
145 return FileModel::Error;
146 return FileModel::AsmFile;
147 case TargetMachine::ObjectFile:
148 if (getMachOWriterInfo())
149 return FileModel::MachOFile;
150 else if (getELFWriterInfo())
151 return FileModel::ElfFile;
152 }
153
154 return FileModel::Error;
155}
156
157/// addPassesToEmitFileFinish - If the passes to emit the specified file had to
158/// be split up (e.g., to add an object writer pass), this method can be used to
159/// finish up adding passes to emit the file, if necessary.
Dan Gohmane34aa772008-03-11 22:29:46 +0000160bool LLVMTargetMachine::addPassesToEmitFileFinish(PassManagerBase &PM,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000161 MachineCodeEmitter *MCE,
162 bool Fast) {
163 if (MCE)
Evan Cheng77547212007-07-20 21:56:13 +0000164 addSimpleCodeEmitter(PM, Fast, PrintEmittedAsm, *MCE);
Gordon Henriksen36464772008-01-07 01:33:09 +0000165
166 PM.add(createCollectorMetadataDeleter());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000167
168 // Delete machine code for this function
169 PM.add(createMachineCodeDeleter());
170
171 return false; // success!
172}
173
174/// addPassesToEmitMachineCode - Add passes to the specified pass manager to
175/// get machine code emitted. This uses a MachineCodeEmitter object to handle
176/// actually outputting the machine code and resolving things like the address
177/// of functions. This method should returns true if machine code emission is
178/// not supported.
179///
Dan Gohmane34aa772008-03-11 22:29:46 +0000180bool LLVMTargetMachine::addPassesToEmitMachineCode(PassManagerBase &PM,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000181 MachineCodeEmitter &MCE,
182 bool Fast) {
183 // Standard LLVM-Level Passes.
184
185 // Run loop strength reduction before anything else.
186 if (!Fast) {
187 PM.add(createLoopStrengthReducePass(getTargetLowering()));
188 if (PrintLSR)
Dan Gohman35a54152008-03-25 21:38:12 +0000189 PM.add(new PrintFunctionPass("\n\n*** Code after LSR ***\n", &cerr));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000190 }
191
Gordon Henriksen36464772008-01-07 01:33:09 +0000192 PM.add(createGCLoweringPass());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000193
Dale Johannesen80caa492008-03-31 23:40:23 +0000194 PM.add(createLowerInvokePass(getTargetLowering()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000195
196 // Make sure that no unreachable blocks are instruction selected.
197 PM.add(createUnreachableBlockEliminationPass());
198
199 if (!Fast)
200 PM.add(createCodeGenPreparePass(getTargetLowering()));
201
202 if (PrintISelInput)
Dan Gohman35a54152008-03-25 21:38:12 +0000203 PM.add(new PrintFunctionPass("\n\n*** Final LLVM Code input to ISel ***\n",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000204 &cerr));
205
206 // Ask the target for an isel.
207 if (addInstSelector(PM, Fast))
208 return true;
209
210 // Print the instruction selected machine code...
211 if (PrintMachineCode)
212 PM.add(createMachineFunctionPrinterPass(cerr));
Bill Wendlingb958b0d2007-12-07 21:42:31 +0000213
Bill Wendling4aab7ae2008-01-04 08:11:03 +0000214 if (PerformLICM)
215 PM.add(createMachineLICMPass());
Chris Lattnera132dd42008-01-05 06:14:16 +0000216
217 if (EnableSinking)
218 PM.add(createMachineSinkingPass());
Bill Wendlingb958b0d2007-12-07 21:42:31 +0000219
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000220 // Perform register allocation to convert to a concrete x86 representation
221 PM.add(createRegisterAllocator());
222
223 if (PrintMachineCode)
224 PM.add(createMachineFunctionPrinterPass(cerr));
Christopher Lambed379732007-07-27 07:36:14 +0000225
226 PM.add(createLowerSubregsPass());
227
228 if (PrintMachineCode) // Print the subreg lowered code
229 PM.add(createMachineFunctionPrinterPass(cerr));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000230
231 // Run post-ra passes.
232 if (addPostRegAlloc(PM, Fast) && PrintMachineCode)
233 PM.add(createMachineFunctionPrinterPass(cerr));
234
235 // Insert prolog/epilog code. Eliminate abstract frame index references...
236 PM.add(createPrologEpilogCodeInserter());
237
238 if (PrintMachineCode) // Print the register-allocated code
239 PM.add(createMachineFunctionPrinterPass(cerr));
240
241 // Second pass scheduler.
242 if (!Fast)
243 PM.add(createPostRAScheduler());
244
245 // Branch folding must be run after regalloc and prolog/epilog insertion.
246 if (!Fast)
247 PM.add(createBranchFoldingPass(getEnableTailMergeDefault()));
Bill Wendlingb958b0d2007-12-07 21:42:31 +0000248
Gordon Henriksen36464772008-01-07 01:33:09 +0000249 PM.add(createGCMachineCodeAnalysisPass());
250 if (PrintMachineCode)
251 PM.add(createMachineFunctionPrinterPass(cerr));
252
253 if (PrintGCInfo)
254 PM.add(createCollectorMetadataPrinter(*cerr));
255
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000256 if (addPreEmitPass(PM, Fast) && PrintMachineCode)
257 PM.add(createMachineFunctionPrinterPass(cerr));
258
Evan Cheng77547212007-07-20 21:56:13 +0000259 addCodeEmitter(PM, Fast, PrintEmittedAsm, MCE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000260
Gordon Henriksen36464772008-01-07 01:33:09 +0000261 PM.add(createCollectorMetadataDeleter());
262
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000263 // Delete machine code for this function
264 PM.add(createMachineCodeDeleter());
265
266 return false; // success!
267}