blob: 500f0e0941c35bb451117d00fd87f626b7cde698 [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());
46
47 // FIXME: Implement the invoke/unwind instructions!
Jim Laskeya4e7cd92007-02-22 16:22:15 +000048 if (!ExceptionHandling)
49 PM.add(createLowerInvokePass(getTargetLowering()));
Chris Lattner47877052006-09-04 04:16:09 +000050
51 // Make sure that no unreachable blocks are instruction selected.
52 PM.add(createUnreachableBlockEliminationPass());
Bill Wendling04523ea2007-02-08 01:36:53 +000053
Chris Lattnerc8d288f2007-03-31 04:18:03 +000054 if (!Fast)
55 PM.add(createCodeGenPreparePass(getTargetLowering()));
56
57 if (PrintISelInput)
58 PM.add(new PrintFunctionPass("\n\n*** Final LLVM Code input to ISel *** \n",
59 &cerr));
60
Chris Lattner47877052006-09-04 04:16:09 +000061 // Ask the target for an isel.
62 if (addInstSelector(PM, Fast))
Bill Wendling04523ea2007-02-08 01:36:53 +000063 return FileModel::Error;
64
Chris Lattner47877052006-09-04 04:16:09 +000065 // Print the instruction selected machine code...
66 if (PrintMachineCode)
Bill Wendling04523ea2007-02-08 01:36:53 +000067 PM.add(createMachineFunctionPrinterPass(cerr));
Chris Lattner47877052006-09-04 04:16:09 +000068
69 // Perform register allocation to convert to a concrete x86 representation
70 PM.add(createRegisterAllocator());
71
72 if (PrintMachineCode)
Bill Wendling04523ea2007-02-08 01:36:53 +000073 PM.add(createMachineFunctionPrinterPass(cerr));
74
Chris Lattner47877052006-09-04 04:16:09 +000075 // Run post-ra passes.
76 if (addPostRegAlloc(PM, Fast) && PrintMachineCode)
Bill Wendling04523ea2007-02-08 01:36:53 +000077 PM.add(createMachineFunctionPrinterPass(cerr));
78
Chris Lattner47877052006-09-04 04:16:09 +000079 // Insert prolog/epilog code. Eliminate abstract frame index references...
80 PM.add(createPrologEpilogCodeInserter());
81
Chris Lattner4a84ad72006-10-13 20:45:56 +000082 // Branch folding must be run after regalloc and prolog/epilog insertion.
Jim Laskey62d07d62006-10-24 16:11:49 +000083 if (!Fast)
Dale Johannesene6e43542007-05-22 18:31:04 +000084 PM.add(createBranchFoldingPass(getEnableTailMergeDefault()));
Jim Laskey9d4209f2006-11-07 19:33:46 +000085
86 // Fold redundant debug labels.
87 PM.add(createDebugLabelFoldingPass());
Chris Lattner4a84ad72006-10-13 20:45:56 +000088
Chris Lattner47877052006-09-04 04:16:09 +000089 if (PrintMachineCode) // Print the register-allocated code
Bill Wendling04523ea2007-02-08 01:36:53 +000090 PM.add(createMachineFunctionPrinterPass(cerr));
91
Chris Lattner47877052006-09-04 04:16:09 +000092 if (addPreEmitPass(PM, Fast) && PrintMachineCode)
Bill Wendling04523ea2007-02-08 01:36:53 +000093 PM.add(createMachineFunctionPrinterPass(cerr));
94
Chris Lattner47877052006-09-04 04:16:09 +000095 switch (FileType) {
Bill Wendling04523ea2007-02-08 01:36:53 +000096 default:
97 break;
98 case TargetMachine::AssemblyFile:
99 if (addAssemblyEmitter(PM, Fast, Out))
100 return FileModel::Error;
101 return FileModel::AsmFile;
102 case TargetMachine::ObjectFile:
103 if (getMachOWriterInfo())
104 return FileModel::MachOFile;
105 else if (getELFWriterInfo())
106 return FileModel::ElfFile;
Chris Lattner47877052006-09-04 04:16:09 +0000107 }
Bill Wendling04523ea2007-02-08 01:36:53 +0000108
109 return FileModel::Error;
110}
111
112/// addPassesToEmitFileFinish - If the passes to emit the specified file had to
113/// be split up (e.g., to add an object writer pass), this method can be used to
114/// finish up adding passes to emit the file, if necessary.
115bool LLVMTargetMachine::addPassesToEmitFileFinish(FunctionPassManager &PM,
116 MachineCodeEmitter *MCE,
117 bool Fast) {
118 if (MCE)
119 addSimpleCodeEmitter(PM, Fast, *MCE);
120
Chris Lattner47877052006-09-04 04:16:09 +0000121 // Delete machine code for this function
122 PM.add(createMachineCodeDeleter());
Bill Wendling04523ea2007-02-08 01:36:53 +0000123
Chris Lattner47877052006-09-04 04:16:09 +0000124 return false; // success!
125}
126
127/// addPassesToEmitMachineCode - Add passes to the specified pass manager to
128/// get machine code emitted. This uses a MachineCodeEmitter object to handle
129/// actually outputting the machine code and resolving things like the address
130/// of functions. This method should returns true if machine code emission is
131/// not supported.
132///
133bool LLVMTargetMachine::addPassesToEmitMachineCode(FunctionPassManager &PM,
134 MachineCodeEmitter &MCE,
135 bool Fast) {
136 // Standard LLVM-Level Passes.
137
138 // Run loop strength reduction before anything else.
Chris Lattnerc8d288f2007-03-31 04:18:03 +0000139 if (!Fast) {
140 PM.add(createLoopStrengthReducePass(getTargetLowering()));
141 if (PrintLSR)
142 PM.add(new PrintFunctionPass("\n\n*** Code after LSR *** \n", &cerr));
143 }
Chris Lattner47877052006-09-04 04:16:09 +0000144
145 // FIXME: Implement efficient support for garbage collection intrinsics.
146 PM.add(createLowerGCPass());
147
148 // FIXME: Implement the invoke/unwind instructions!
Duraid Madina2a0013f2006-09-04 06:21:35 +0000149 PM.add(createLowerInvokePass(getTargetLowering()));
Chris Lattner47877052006-09-04 04:16:09 +0000150
151 // Make sure that no unreachable blocks are instruction selected.
152 PM.add(createUnreachableBlockEliminationPass());
Bill Wendling04523ea2007-02-08 01:36:53 +0000153
Chris Lattnerc8d288f2007-03-31 04:18:03 +0000154 if (!Fast)
155 PM.add(createCodeGenPreparePass(getTargetLowering()));
156
157 if (PrintISelInput)
158 PM.add(new PrintFunctionPass("\n\n*** Final LLVM Code input to ISel *** \n",
159 &cerr));
160
Chris Lattner47877052006-09-04 04:16:09 +0000161 // Ask the target for an isel.
162 if (addInstSelector(PM, Fast))
163 return true;
Bill Wendling04523ea2007-02-08 01:36:53 +0000164
Chris Lattner47877052006-09-04 04:16:09 +0000165 // Print the instruction selected machine code...
166 if (PrintMachineCode)
Bill Wendling04523ea2007-02-08 01:36:53 +0000167 PM.add(createMachineFunctionPrinterPass(cerr));
Chris Lattner47877052006-09-04 04:16:09 +0000168
169 // Perform register allocation to convert to a concrete x86 representation
170 PM.add(createRegisterAllocator());
171
172 if (PrintMachineCode)
Bill Wendling04523ea2007-02-08 01:36:53 +0000173 PM.add(createMachineFunctionPrinterPass(cerr));
174
Chris Lattner47877052006-09-04 04:16:09 +0000175 // Run post-ra passes.
176 if (addPostRegAlloc(PM, Fast) && PrintMachineCode)
Bill Wendling04523ea2007-02-08 01:36:53 +0000177 PM.add(createMachineFunctionPrinterPass(cerr));
178
Chris Lattner47877052006-09-04 04:16:09 +0000179 // Insert prolog/epilog code. Eliminate abstract frame index references...
180 PM.add(createPrologEpilogCodeInserter());
181
182 if (PrintMachineCode) // Print the register-allocated code
Bill Wendling04523ea2007-02-08 01:36:53 +0000183 PM.add(createMachineFunctionPrinterPass(cerr));
Chris Lattner47877052006-09-04 04:16:09 +0000184
Chris Lattnere01eaa02006-11-16 01:00:07 +0000185 // Branch folding must be run after regalloc and prolog/epilog insertion.
186 if (!Fast)
Dale Johannesene6e43542007-05-22 18:31:04 +0000187 PM.add(createBranchFoldingPass(getEnableTailMergeDefault()));
Chris Lattner47877052006-09-04 04:16:09 +0000188
189 if (addPreEmitPass(PM, Fast) && PrintMachineCode)
Bill Wendling04523ea2007-02-08 01:36:53 +0000190 PM.add(createMachineFunctionPrinterPass(cerr));
191
Chris Lattner47877052006-09-04 04:16:09 +0000192 addCodeEmitter(PM, Fast, MCE);
193
194 // Delete machine code for this function
195 PM.add(createMachineCodeDeleter());
196
197 return false; // success!
198}