blob: 4e3982df62aa1c9f2d4160e80fa949ef719b74df [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
Chris Lattner4a84ad72006-10-13 20:45:56 +000081 // Branch folding must be run after regalloc and prolog/epilog insertion.
Jim Laskey62d07d62006-10-24 16:11:49 +000082 if (!Fast)
Dale Johannesene6e43542007-05-22 18:31:04 +000083 PM.add(createBranchFoldingPass(getEnableTailMergeDefault()));
Jim Laskey9d4209f2006-11-07 19:33:46 +000084
85 // Fold redundant debug labels.
86 PM.add(createDebugLabelFoldingPass());
Chris Lattner4a84ad72006-10-13 20:45:56 +000087
Chris Lattner47877052006-09-04 04:16:09 +000088 if (PrintMachineCode) // Print the register-allocated code
Bill Wendling04523ea2007-02-08 01:36:53 +000089 PM.add(createMachineFunctionPrinterPass(cerr));
90
Chris Lattner47877052006-09-04 04:16:09 +000091 if (addPreEmitPass(PM, Fast) && PrintMachineCode)
Bill Wendling04523ea2007-02-08 01:36:53 +000092 PM.add(createMachineFunctionPrinterPass(cerr));
93
Chris Lattner47877052006-09-04 04:16:09 +000094 switch (FileType) {
Bill Wendling04523ea2007-02-08 01:36:53 +000095 default:
96 break;
97 case TargetMachine::AssemblyFile:
98 if (addAssemblyEmitter(PM, Fast, Out))
99 return FileModel::Error;
100 return FileModel::AsmFile;
101 case TargetMachine::ObjectFile:
102 if (getMachOWriterInfo())
103 return FileModel::MachOFile;
104 else if (getELFWriterInfo())
105 return FileModel::ElfFile;
Chris Lattner47877052006-09-04 04:16:09 +0000106 }
Bill Wendling04523ea2007-02-08 01:36:53 +0000107
108 return FileModel::Error;
109}
110
111/// addPassesToEmitFileFinish - If the passes to emit the specified file had to
112/// be split up (e.g., to add an object writer pass), this method can be used to
113/// finish up adding passes to emit the file, if necessary.
114bool LLVMTargetMachine::addPassesToEmitFileFinish(FunctionPassManager &PM,
115 MachineCodeEmitter *MCE,
116 bool Fast) {
117 if (MCE)
118 addSimpleCodeEmitter(PM, Fast, *MCE);
119
Chris Lattner47877052006-09-04 04:16:09 +0000120 // Delete machine code for this function
121 PM.add(createMachineCodeDeleter());
Bill Wendling04523ea2007-02-08 01:36:53 +0000122
Chris Lattner47877052006-09-04 04:16:09 +0000123 return false; // success!
124}
125
126/// addPassesToEmitMachineCode - Add passes to the specified pass manager to
127/// get machine code emitted. This uses a MachineCodeEmitter object to handle
128/// actually outputting the machine code and resolving things like the address
129/// of functions. This method should returns true if machine code emission is
130/// not supported.
131///
132bool LLVMTargetMachine::addPassesToEmitMachineCode(FunctionPassManager &PM,
133 MachineCodeEmitter &MCE,
134 bool Fast) {
135 // Standard LLVM-Level Passes.
136
137 // Run loop strength reduction before anything else.
Chris Lattnerc8d288f2007-03-31 04:18:03 +0000138 if (!Fast) {
139 PM.add(createLoopStrengthReducePass(getTargetLowering()));
140 if (PrintLSR)
141 PM.add(new PrintFunctionPass("\n\n*** Code after LSR *** \n", &cerr));
142 }
Chris Lattner47877052006-09-04 04:16:09 +0000143
144 // FIXME: Implement efficient support for garbage collection intrinsics.
145 PM.add(createLowerGCPass());
146
147 // FIXME: Implement the invoke/unwind instructions!
Duraid Madina2a0013f2006-09-04 06:21:35 +0000148 PM.add(createLowerInvokePass(getTargetLowering()));
Chris Lattner47877052006-09-04 04:16:09 +0000149
150 // Make sure that no unreachable blocks are instruction selected.
151 PM.add(createUnreachableBlockEliminationPass());
Bill Wendling04523ea2007-02-08 01:36:53 +0000152
Chris Lattnerc8d288f2007-03-31 04:18:03 +0000153 if (!Fast)
154 PM.add(createCodeGenPreparePass(getTargetLowering()));
155
156 if (PrintISelInput)
157 PM.add(new PrintFunctionPass("\n\n*** Final LLVM Code input to ISel *** \n",
158 &cerr));
159
Chris Lattner47877052006-09-04 04:16:09 +0000160 // Ask the target for an isel.
161 if (addInstSelector(PM, Fast))
162 return true;
Bill Wendling04523ea2007-02-08 01:36:53 +0000163
Chris Lattner47877052006-09-04 04:16:09 +0000164 // Print the instruction selected machine code...
165 if (PrintMachineCode)
Bill Wendling04523ea2007-02-08 01:36:53 +0000166 PM.add(createMachineFunctionPrinterPass(cerr));
Chris Lattner47877052006-09-04 04:16:09 +0000167
168 // Perform register allocation to convert to a concrete x86 representation
169 PM.add(createRegisterAllocator());
170
171 if (PrintMachineCode)
Bill Wendling04523ea2007-02-08 01:36:53 +0000172 PM.add(createMachineFunctionPrinterPass(cerr));
173
Chris Lattner47877052006-09-04 04:16:09 +0000174 // Run post-ra passes.
175 if (addPostRegAlloc(PM, Fast) && PrintMachineCode)
Bill Wendling04523ea2007-02-08 01:36:53 +0000176 PM.add(createMachineFunctionPrinterPass(cerr));
177
Chris Lattner47877052006-09-04 04:16:09 +0000178 // Insert prolog/epilog code. Eliminate abstract frame index references...
179 PM.add(createPrologEpilogCodeInserter());
180
181 if (PrintMachineCode) // Print the register-allocated code
Bill Wendling04523ea2007-02-08 01:36:53 +0000182 PM.add(createMachineFunctionPrinterPass(cerr));
Chris Lattner47877052006-09-04 04:16:09 +0000183
Chris Lattnere01eaa02006-11-16 01:00:07 +0000184 // Branch folding must be run after regalloc and prolog/epilog insertion.
185 if (!Fast)
Dale Johannesene6e43542007-05-22 18:31:04 +0000186 PM.add(createBranchFoldingPass(getEnableTailMergeDefault()));
Chris Lattner47877052006-09-04 04:16:09 +0000187
188 if (addPreEmitPass(PM, Fast) && PrintMachineCode)
Bill Wendling04523ea2007-02-08 01:36:53 +0000189 PM.add(createMachineFunctionPrinterPass(cerr));
190
Chris Lattner47877052006-09-04 04:16:09 +0000191 addCodeEmitter(PM, Fast, MCE);
192
193 // Delete machine code for this function
194 PM.add(createMachineCodeDeleter());
195
196 return false; // success!
197}