blob: b50b2753922a9aeee887a2bc65356fe39ea758b5 [file] [log] [blame]
Chris Lattner47877052006-09-04 04:16:09 +00001//===-- LLVMTargetMachine.cpp - Implement the LLVMTargetMachine class -----===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
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"
Chris Lattner31442f92007-03-31 00:24:43 +000017#include "llvm/Assembly/PrintModulePass.h"
Devang Patel0f54dcb2007-03-06 21:14:09 +000018#include "llvm/Analysis/LoopPass.h"
Chris Lattner47877052006-09-04 04:16:09 +000019#include "llvm/CodeGen/Passes.h"
20#include "llvm/Target/TargetOptions.h"
21#include "llvm/Transforms/Scalar.h"
Chris Lattner31442f92007-03-31 00:24:43 +000022#include "llvm/Support/CommandLine.h"
Chris Lattner47877052006-09-04 04:16:09 +000023using namespace llvm;
24
Chris Lattner85ef2542007-06-19 05:47:49 +000025static cl::opt<bool> PrintLSR("print-lsr-output", cl::Hidden,
26 cl::desc("Print LLVM IR produced by the loop-reduce pass"));
27static cl::opt<bool> PrintISelInput("print-isel-input", cl::Hidden,
28 cl::desc("Print LLVM IR input to isel pass"));
29
Bill Wendling04523ea2007-02-08 01:36:53 +000030FileModel::Model
31LLVMTargetMachine::addPassesToEmitFile(FunctionPassManager &PM,
32 std::ostream &Out,
33 CodeGenFileType FileType,
34 bool Fast) {
Chris Lattner47877052006-09-04 04:16:09 +000035 // Standard LLVM-Level Passes.
36
37 // Run loop strength reduction before anything else.
Chris Lattner31442f92007-03-31 00:24:43 +000038 if (!Fast) {
39 PM.add(createLoopStrengthReducePass(getTargetLowering()));
40 if (PrintLSR)
41 PM.add(new PrintFunctionPass("\n\n*** Code after LSR *** \n", &cerr));
42 }
Chris Lattner47877052006-09-04 04:16:09 +000043
44 // FIXME: Implement efficient support for garbage collection intrinsics.
45 PM.add(createLowerGCPass());
Duncan Sandsc3751602007-07-11 16:59:20 +000046
Jim Laskeya4e7cd92007-02-22 16:22:15 +000047 if (!ExceptionHandling)
48 PM.add(createLowerInvokePass(getTargetLowering()));
Duncan Sandsc3751602007-07-11 16:59:20 +000049
Chris Lattner47877052006-09-04 04:16:09 +000050 // Make sure that no unreachable blocks are instruction selected.
51 PM.add(createUnreachableBlockEliminationPass());
Bill Wendling04523ea2007-02-08 01:36:53 +000052
Chris Lattnerc8d288f2007-03-31 04:18:03 +000053 if (!Fast)
54 PM.add(createCodeGenPreparePass(getTargetLowering()));
55
56 if (PrintISelInput)
57 PM.add(new PrintFunctionPass("\n\n*** Final LLVM Code input to ISel *** \n",
58 &cerr));
59
Chris Lattner47877052006-09-04 04:16:09 +000060 // Ask the target for an isel.
61 if (addInstSelector(PM, Fast))
Bill Wendling04523ea2007-02-08 01:36:53 +000062 return FileModel::Error;
63
Chris Lattner47877052006-09-04 04:16:09 +000064 // Print the instruction selected machine code...
65 if (PrintMachineCode)
Bill Wendling04523ea2007-02-08 01:36:53 +000066 PM.add(createMachineFunctionPrinterPass(cerr));
Chris Lattner47877052006-09-04 04:16:09 +000067
68 // Perform register allocation to convert to a concrete x86 representation
69 PM.add(createRegisterAllocator());
70
71 if (PrintMachineCode)
Bill Wendling04523ea2007-02-08 01:36:53 +000072 PM.add(createMachineFunctionPrinterPass(cerr));
73
Chris Lattner47877052006-09-04 04:16:09 +000074 // Run post-ra passes.
75 if (addPostRegAlloc(PM, Fast) && PrintMachineCode)
Bill Wendling04523ea2007-02-08 01:36:53 +000076 PM.add(createMachineFunctionPrinterPass(cerr));
77
Chris Lattner47877052006-09-04 04:16:09 +000078 // Insert prolog/epilog code. Eliminate abstract frame index references...
79 PM.add(createPrologEpilogCodeInserter());
80
Dale Johannesene7e7d0d2007-07-13 17:13:54 +000081 // Second pass scheduler.
82 PM.add(createPostRAScheduler());
83
Chris Lattner4a84ad72006-10-13 20:45:56 +000084 // Branch folding must be run after regalloc and prolog/epilog insertion.
Jim Laskey62d07d62006-10-24 16:11:49 +000085 if (!Fast)
Dale Johannesene6e43542007-05-22 18:31:04 +000086 PM.add(createBranchFoldingPass(getEnableTailMergeDefault()));
Jim Laskey9d4209f2006-11-07 19:33:46 +000087
88 // Fold redundant debug labels.
89 PM.add(createDebugLabelFoldingPass());
Chris Lattner4a84ad72006-10-13 20:45:56 +000090
Chris Lattner47877052006-09-04 04:16:09 +000091 if (PrintMachineCode) // Print the register-allocated code
Bill Wendling04523ea2007-02-08 01:36:53 +000092 PM.add(createMachineFunctionPrinterPass(cerr));
93
Chris Lattner47877052006-09-04 04:16:09 +000094 if (addPreEmitPass(PM, Fast) && PrintMachineCode)
Bill Wendling04523ea2007-02-08 01:36:53 +000095 PM.add(createMachineFunctionPrinterPass(cerr));
96
Chris Lattner47877052006-09-04 04:16:09 +000097 switch (FileType) {
Bill Wendling04523ea2007-02-08 01:36:53 +000098 default:
99 break;
100 case TargetMachine::AssemblyFile:
101 if (addAssemblyEmitter(PM, Fast, Out))
102 return FileModel::Error;
103 return FileModel::AsmFile;
104 case TargetMachine::ObjectFile:
105 if (getMachOWriterInfo())
106 return FileModel::MachOFile;
107 else if (getELFWriterInfo())
108 return FileModel::ElfFile;
Chris Lattner47877052006-09-04 04:16:09 +0000109 }
Bill Wendling04523ea2007-02-08 01:36:53 +0000110
111 return FileModel::Error;
112}
113
114/// addPassesToEmitFileFinish - If the passes to emit the specified file had to
115/// be split up (e.g., to add an object writer pass), this method can be used to
116/// finish up adding passes to emit the file, if necessary.
117bool LLVMTargetMachine::addPassesToEmitFileFinish(FunctionPassManager &PM,
118 MachineCodeEmitter *MCE,
119 bool Fast) {
120 if (MCE)
121 addSimpleCodeEmitter(PM, Fast, *MCE);
122
Chris Lattner47877052006-09-04 04:16:09 +0000123 // Delete machine code for this function
124 PM.add(createMachineCodeDeleter());
Bill Wendling04523ea2007-02-08 01:36:53 +0000125
Chris Lattner47877052006-09-04 04:16:09 +0000126 return false; // success!
127}
128
129/// addPassesToEmitMachineCode - Add passes to the specified pass manager to
130/// get machine code emitted. This uses a MachineCodeEmitter object to handle
131/// actually outputting the machine code and resolving things like the address
132/// of functions. This method should returns true if machine code emission is
133/// not supported.
134///
135bool LLVMTargetMachine::addPassesToEmitMachineCode(FunctionPassManager &PM,
136 MachineCodeEmitter &MCE,
137 bool Fast) {
138 // Standard LLVM-Level Passes.
139
140 // Run loop strength reduction before anything else.
Chris Lattnerc8d288f2007-03-31 04:18:03 +0000141 if (!Fast) {
142 PM.add(createLoopStrengthReducePass(getTargetLowering()));
143 if (PrintLSR)
144 PM.add(new PrintFunctionPass("\n\n*** Code after LSR *** \n", &cerr));
145 }
Chris Lattner47877052006-09-04 04:16:09 +0000146
147 // FIXME: Implement efficient support for garbage collection intrinsics.
148 PM.add(createLowerGCPass());
149
150 // FIXME: Implement the invoke/unwind instructions!
Duraid Madina2a0013f2006-09-04 06:21:35 +0000151 PM.add(createLowerInvokePass(getTargetLowering()));
Chris Lattner47877052006-09-04 04:16:09 +0000152
153 // Make sure that no unreachable blocks are instruction selected.
154 PM.add(createUnreachableBlockEliminationPass());
Bill Wendling04523ea2007-02-08 01:36:53 +0000155
Chris Lattnerc8d288f2007-03-31 04:18:03 +0000156 if (!Fast)
157 PM.add(createCodeGenPreparePass(getTargetLowering()));
158
159 if (PrintISelInput)
160 PM.add(new PrintFunctionPass("\n\n*** Final LLVM Code input to ISel *** \n",
161 &cerr));
162
Chris Lattner47877052006-09-04 04:16:09 +0000163 // Ask the target for an isel.
164 if (addInstSelector(PM, Fast))
165 return true;
Bill Wendling04523ea2007-02-08 01:36:53 +0000166
Chris Lattner47877052006-09-04 04:16:09 +0000167 // Print the instruction selected machine code...
168 if (PrintMachineCode)
Bill Wendling04523ea2007-02-08 01:36:53 +0000169 PM.add(createMachineFunctionPrinterPass(cerr));
Chris Lattner47877052006-09-04 04:16:09 +0000170
171 // Perform register allocation to convert to a concrete x86 representation
172 PM.add(createRegisterAllocator());
173
174 if (PrintMachineCode)
Bill Wendling04523ea2007-02-08 01:36:53 +0000175 PM.add(createMachineFunctionPrinterPass(cerr));
176
Chris Lattner47877052006-09-04 04:16:09 +0000177 // Run post-ra passes.
178 if (addPostRegAlloc(PM, Fast) && PrintMachineCode)
Bill Wendling04523ea2007-02-08 01:36:53 +0000179 PM.add(createMachineFunctionPrinterPass(cerr));
180
Chris Lattner47877052006-09-04 04:16:09 +0000181 // Insert prolog/epilog code. Eliminate abstract frame index references...
182 PM.add(createPrologEpilogCodeInserter());
183
184 if (PrintMachineCode) // Print the register-allocated code
Bill Wendling04523ea2007-02-08 01:36:53 +0000185 PM.add(createMachineFunctionPrinterPass(cerr));
Chris Lattner47877052006-09-04 04:16:09 +0000186
Dale Johannesene7e7d0d2007-07-13 17:13:54 +0000187 // Second pass scheduler.
188 PM.add(createPostRAScheduler());
189
Chris Lattnere01eaa02006-11-16 01:00:07 +0000190 // Branch folding must be run after regalloc and prolog/epilog insertion.
191 if (!Fast)
Dale Johannesene6e43542007-05-22 18:31:04 +0000192 PM.add(createBranchFoldingPass(getEnableTailMergeDefault()));
Chris Lattner47877052006-09-04 04:16:09 +0000193
194 if (addPreEmitPass(PM, Fast) && PrintMachineCode)
Bill Wendling04523ea2007-02-08 01:36:53 +0000195 PM.add(createMachineFunctionPrinterPass(cerr));
196
Chris Lattner47877052006-09-04 04:16:09 +0000197 addCodeEmitter(PM, Fast, MCE);
198
199 // Delete machine code for this function
200 PM.add(createMachineCodeDeleter());
201
202 return false; // success!
203}