blob: 1264473dabcede57be7f9a332fe67de5861bf3b7 [file] [log] [blame]
Daniel Dunbar897c6762010-06-07 23:20:08 +00001//===--- BackendUtil.cpp - LLVM Backend Utilities -------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Daniel Dunbar9b414d32010-06-15 17:48:49 +000010#include "clang/CodeGen/BackendUtil.h"
Daniel Dunbar897c6762010-06-07 23:20:08 +000011#include "clang/Basic/Diagnostic.h"
12#include "clang/Basic/TargetOptions.h"
Chandler Carruth06057ce2010-06-15 23:19:56 +000013#include "clang/Frontend/CodeGenOptions.h"
Daniel Dunbar897c6762010-06-07 23:20:08 +000014#include "clang/Frontend/FrontendDiagnostic.h"
15#include "llvm/Module.h"
16#include "llvm/PassManager.h"
17#include "llvm/Assembly/PrintModulePass.h"
18#include "llvm/Bitcode/ReaderWriter.h"
19#include "llvm/CodeGen/RegAllocRegistry.h"
20#include "llvm/CodeGen/SchedulerRegistry.h"
21#include "llvm/Support/CommandLine.h"
22#include "llvm/Support/FormattedStream.h"
23#include "llvm/Support/PrettyStackTrace.h"
24#include "llvm/Support/StandardPasses.h"
25#include "llvm/Support/Timer.h"
26#include "llvm/Support/raw_ostream.h"
27#include "llvm/Target/SubtargetFeature.h"
28#include "llvm/Target/TargetData.h"
Chris Lattnerdf619762011-02-18 22:20:38 +000029#include "llvm/Target/TargetLibraryInfo.h"
Daniel Dunbar897c6762010-06-07 23:20:08 +000030#include "llvm/Target/TargetMachine.h"
31#include "llvm/Target/TargetOptions.h"
32#include "llvm/Target/TargetRegistry.h"
Nick Lewyckye8ba8d72011-04-21 23:44:07 +000033#include "llvm/Transforms/Instrumentation.h"
Daniel Dunbar897c6762010-06-07 23:20:08 +000034using namespace clang;
35using namespace llvm;
36
37namespace {
38
39class EmitAssemblyHelper {
40 Diagnostic &Diags;
41 const CodeGenOptions &CodeGenOpts;
42 const TargetOptions &TargetOpts;
43 Module *TheModule;
Daniel Dunbar897c6762010-06-07 23:20:08 +000044
45 Timer CodeGenerationTime;
46
Daniel Dunbardb2f2372010-09-17 07:35:16 +000047 mutable PassManager *CodeGenPasses;
Daniel Dunbar897c6762010-06-07 23:20:08 +000048 mutable PassManager *PerModulePasses;
49 mutable FunctionPassManager *PerFunctionPasses;
50
51private:
Daniel Dunbardb2f2372010-09-17 07:35:16 +000052 PassManager *getCodeGenPasses() const {
Daniel Dunbar897c6762010-06-07 23:20:08 +000053 if (!CodeGenPasses) {
Daniel Dunbardb2f2372010-09-17 07:35:16 +000054 CodeGenPasses = new PassManager();
Daniel Dunbar05a7f3d2010-06-07 23:21:04 +000055 CodeGenPasses->add(new TargetData(TheModule));
Daniel Dunbar897c6762010-06-07 23:20:08 +000056 }
57 return CodeGenPasses;
58 }
59
60 PassManager *getPerModulePasses() const {
61 if (!PerModulePasses) {
62 PerModulePasses = new PassManager();
Daniel Dunbar05a7f3d2010-06-07 23:21:04 +000063 PerModulePasses->add(new TargetData(TheModule));
Daniel Dunbar897c6762010-06-07 23:20:08 +000064 }
65 return PerModulePasses;
66 }
67
68 FunctionPassManager *getPerFunctionPasses() const {
69 if (!PerFunctionPasses) {
70 PerFunctionPasses = new FunctionPassManager(TheModule);
Daniel Dunbar05a7f3d2010-06-07 23:21:04 +000071 PerFunctionPasses->add(new TargetData(TheModule));
Daniel Dunbar897c6762010-06-07 23:20:08 +000072 }
73 return PerFunctionPasses;
74 }
75
76 void CreatePasses();
77
78 /// AddEmitPasses - Add passes necessary to emit assembly or LLVM IR.
79 ///
80 /// \return True on success.
81 bool AddEmitPasses(BackendAction Action, formatted_raw_ostream &OS);
82
83public:
84 EmitAssemblyHelper(Diagnostic &_Diags,
85 const CodeGenOptions &CGOpts, const TargetOptions &TOpts,
Daniel Dunbar05a7f3d2010-06-07 23:21:04 +000086 Module *M)
Daniel Dunbar897c6762010-06-07 23:20:08 +000087 : Diags(_Diags), CodeGenOpts(CGOpts), TargetOpts(TOpts),
Daniel Dunbar05a7f3d2010-06-07 23:21:04 +000088 TheModule(M), CodeGenerationTime("Code Generation Time"),
Daniel Dunbar897c6762010-06-07 23:20:08 +000089 CodeGenPasses(0), PerModulePasses(0), PerFunctionPasses(0) {}
90
91 ~EmitAssemblyHelper() {
92 delete CodeGenPasses;
93 delete PerModulePasses;
94 delete PerFunctionPasses;
95 }
96
97 void EmitAssembly(BackendAction Action, raw_ostream *OS);
98};
99
100}
101
102void EmitAssemblyHelper::CreatePasses() {
103 unsigned OptLevel = CodeGenOpts.OptimizationLevel;
104 CodeGenOptions::InliningMethod Inlining = CodeGenOpts.Inlining;
105
106 // Handle disabling of LLVM optimization, where we want to preserve the
107 // internal module before any optimization.
108 if (CodeGenOpts.DisableLLVMOpts) {
109 OptLevel = 0;
110 Inlining = CodeGenOpts.NoInlining;
111 }
Andrew Trick6445d622011-04-05 18:49:32 +0000112
Chris Lattnerdf619762011-02-18 22:20:38 +0000113 FunctionPassManager *FPM = getPerFunctionPasses();
Andrew Trick6445d622011-04-05 18:49:32 +0000114
Chris Lattner98ec3f72011-02-18 22:34:47 +0000115 TargetLibraryInfo *TLI =
116 new TargetLibraryInfo(Triple(TheModule->getTargetTriple()));
117 if (!CodeGenOpts.SimplifyLibCalls)
118 TLI->disableAllFunctions();
119 FPM->add(TLI);
Daniel Dunbar897c6762010-06-07 23:20:08 +0000120
121 // In -O0 if checking is disabled, we don't even have per-function passes.
122 if (CodeGenOpts.VerifyModule)
Chris Lattnerdf619762011-02-18 22:20:38 +0000123 FPM->add(createVerifierPass());
Daniel Dunbar897c6762010-06-07 23:20:08 +0000124
125 // Assume that standard function passes aren't run for -O0.
126 if (OptLevel > 0)
Chris Lattnerdf619762011-02-18 22:20:38 +0000127 llvm::createStandardFunctionPasses(FPM, OptLevel);
Daniel Dunbar897c6762010-06-07 23:20:08 +0000128
129 llvm::Pass *InliningPass = 0;
130 switch (Inlining) {
131 case CodeGenOptions::NoInlining: break;
132 case CodeGenOptions::NormalInlining: {
133 // Set the inline threshold following llvm-gcc.
134 //
135 // FIXME: Derive these constants in a principled fashion.
136 unsigned Threshold = 225;
Bob Wilsona0fa2032011-04-29 22:49:50 +0000137 if (CodeGenOpts.OptimizeSize == 1) //-Os
Daniel Dunbar897c6762010-06-07 23:20:08 +0000138 Threshold = 75;
Bob Wilsona0fa2032011-04-29 22:49:50 +0000139 else if (CodeGenOpts.OptimizeSize == 2) //-Oz
140 Threshold = 25;
Daniel Dunbar897c6762010-06-07 23:20:08 +0000141 else if (OptLevel > 2)
142 Threshold = 275;
143 InliningPass = createFunctionInliningPass(Threshold);
144 break;
145 }
146 case CodeGenOptions::OnlyAlwaysInlining:
147 InliningPass = createAlwaysInlinerPass(); // Respect always_inline
148 break;
149 }
150
Chris Lattnerdf619762011-02-18 22:20:38 +0000151 PassManager *MPM = getPerModulePasses();
Andrew Trick6445d622011-04-05 18:49:32 +0000152
Chris Lattner98ec3f72011-02-18 22:34:47 +0000153 TLI = new TargetLibraryInfo(Triple(TheModule->getTargetTriple()));
154 if (!CodeGenOpts.SimplifyLibCalls)
155 TLI->disableAllFunctions();
156 MPM->add(TLI);
Chris Lattnerdf619762011-02-18 22:20:38 +0000157
Nick Lewyckye8ba8d72011-04-21 23:44:07 +0000158 if (CodeGenOpts.EmitGcovArcs || CodeGenOpts.EmitGcovNotes) {
159 MPM->add(createGCOVProfilerPass(CodeGenOpts.EmitGcovNotes,
160 CodeGenOpts.EmitGcovArcs));
161 if (!CodeGenOpts.DebugInfo)
162 MPM->add(createStripSymbolsPass(true));
163 }
164
Daniel Dunbar897c6762010-06-07 23:20:08 +0000165 // For now we always create per module passes.
Chris Lattnerdf619762011-02-18 22:20:38 +0000166 llvm::createStandardModulePasses(MPM, OptLevel,
Daniel Dunbar897c6762010-06-07 23:20:08 +0000167 CodeGenOpts.OptimizeSize,
168 CodeGenOpts.UnitAtATime,
169 CodeGenOpts.UnrollLoops,
170 CodeGenOpts.SimplifyLibCalls,
171 /*HaveExceptions=*/true,
172 InliningPass);
173}
174
175bool EmitAssemblyHelper::AddEmitPasses(BackendAction Action,
176 formatted_raw_ostream &OS) {
177 // Create the TargetMachine for generating code.
178 std::string Error;
179 std::string Triple = TheModule->getTargetTriple();
180 const llvm::Target *TheTarget = TargetRegistry::lookupTarget(Triple, Error);
181 if (!TheTarget) {
182 Diags.Report(diag::err_fe_unable_to_create_target) << Error;
183 return false;
184 }
185
186 // FIXME: Expose these capabilities via actual APIs!!!! Aside from just
187 // being gross, this is also totally broken if we ever care about
188 // concurrency.
Daniel Dunbar1ad66482010-07-01 01:31:45 +0000189
190 // Set frame pointer elimination mode.
191 if (!CodeGenOpts.DisableFPElim) {
192 llvm::NoFramePointerElim = false;
193 llvm::NoFramePointerElimNonLeaf = false;
194 } else if (CodeGenOpts.OmitLeafFramePointer) {
195 llvm::NoFramePointerElim = false;
196 llvm::NoFramePointerElimNonLeaf = true;
197 } else {
198 llvm::NoFramePointerElim = true;
199 llvm::NoFramePointerElimNonLeaf = true;
200 }
201
202 // Set float ABI type.
Sandeep Patel34c1af82011-04-05 00:23:47 +0000203 if (CodeGenOpts.FloatABI == "soft" || CodeGenOpts.FloatABI == "softfp")
Daniel Dunbar897c6762010-06-07 23:20:08 +0000204 llvm::FloatABIType = llvm::FloatABI::Soft;
205 else if (CodeGenOpts.FloatABI == "hard")
206 llvm::FloatABIType = llvm::FloatABI::Hard;
207 else {
208 assert(CodeGenOpts.FloatABI.empty() && "Invalid float abi!");
209 llvm::FloatABIType = llvm::FloatABI::Default;
210 }
Daniel Dunbar1ad66482010-07-01 01:31:45 +0000211
Peter Collingbourne4400cb82010-12-04 01:51:33 +0000212 llvm::LessPreciseFPMADOption = CodeGenOpts.LessPreciseFPMAD;
Peter Collingbourne5d729a32010-12-04 01:51:05 +0000213 llvm::NoInfsFPMath = CodeGenOpts.NoInfsFPMath;
214 llvm::NoNaNsFPMath = CodeGenOpts.NoNaNsFPMath;
Daniel Dunbar897c6762010-06-07 23:20:08 +0000215 NoZerosInBSS = CodeGenOpts.NoZeroInitializedInBSS;
Peter Collingbourne5f67e132010-12-04 01:51:14 +0000216 llvm::UnsafeFPMath = CodeGenOpts.UnsafeFPMath;
Daniel Dunbar897c6762010-06-07 23:20:08 +0000217 llvm::UseSoftFloat = CodeGenOpts.SoftFloat;
218 UnwindTablesMandatory = CodeGenOpts.UnwindTables;
219
220 TargetMachine::setAsmVerbosityDefault(CodeGenOpts.AsmVerbose);
221
222 TargetMachine::setFunctionSections(CodeGenOpts.FunctionSections);
223 TargetMachine::setDataSections (CodeGenOpts.DataSections);
224
225 // FIXME: Parse this earlier.
226 if (CodeGenOpts.RelocationModel == "static") {
227 TargetMachine::setRelocationModel(llvm::Reloc::Static);
228 } else if (CodeGenOpts.RelocationModel == "pic") {
229 TargetMachine::setRelocationModel(llvm::Reloc::PIC_);
230 } else {
231 assert(CodeGenOpts.RelocationModel == "dynamic-no-pic" &&
232 "Invalid PIC model!");
233 TargetMachine::setRelocationModel(llvm::Reloc::DynamicNoPIC);
234 }
235 // FIXME: Parse this earlier.
236 if (CodeGenOpts.CodeModel == "small") {
237 TargetMachine::setCodeModel(llvm::CodeModel::Small);
238 } else if (CodeGenOpts.CodeModel == "kernel") {
239 TargetMachine::setCodeModel(llvm::CodeModel::Kernel);
240 } else if (CodeGenOpts.CodeModel == "medium") {
241 TargetMachine::setCodeModel(llvm::CodeModel::Medium);
242 } else if (CodeGenOpts.CodeModel == "large") {
243 TargetMachine::setCodeModel(llvm::CodeModel::Large);
244 } else {
245 assert(CodeGenOpts.CodeModel.empty() && "Invalid code model!");
246 TargetMachine::setCodeModel(llvm::CodeModel::Default);
247 }
248
249 std::vector<const char *> BackendArgs;
250 BackendArgs.push_back("clang"); // Fake program name.
251 if (!CodeGenOpts.DebugPass.empty()) {
252 BackendArgs.push_back("-debug-pass");
253 BackendArgs.push_back(CodeGenOpts.DebugPass.c_str());
254 }
255 if (!CodeGenOpts.LimitFloatPrecision.empty()) {
256 BackendArgs.push_back("-limit-float-precision");
257 BackendArgs.push_back(CodeGenOpts.LimitFloatPrecision.c_str());
258 }
259 if (llvm::TimePassesIsEnabled)
260 BackendArgs.push_back("-time-passes");
Daniel Dunbar3c66d302011-03-22 16:48:17 +0000261 for (unsigned i = 0, e = CodeGenOpts.BackendOptions.size(); i != e; ++i)
262 BackendArgs.push_back(CodeGenOpts.BackendOptions[i].c_str());
Daniel Dunbar897c6762010-06-07 23:20:08 +0000263 BackendArgs.push_back(0);
264 llvm::cl::ParseCommandLineOptions(BackendArgs.size() - 1,
265 const_cast<char **>(&BackendArgs[0]));
266
267 std::string FeaturesStr;
268 if (TargetOpts.CPU.size() || TargetOpts.Features.size()) {
269 SubtargetFeatures Features;
270 Features.setCPU(TargetOpts.CPU);
271 for (std::vector<std::string>::const_iterator
272 it = TargetOpts.Features.begin(),
273 ie = TargetOpts.Features.end(); it != ie; ++it)
274 Features.AddFeature(*it);
275 FeaturesStr = Features.getString();
276 }
277 TargetMachine *TM = TheTarget->createTargetMachine(Triple, FeaturesStr);
278
279 if (CodeGenOpts.RelaxAll)
280 TM->setMCRelaxAll(true);
Daniel Dunbar96932322011-03-28 22:49:28 +0000281 if (CodeGenOpts.SaveTempLabels)
282 TM->setMCSaveTempLabels(true);
Rafael Espindolaf24a1512011-04-30 18:35:43 +0000283 if (CodeGenOpts.NoDwarf2CFIAsm)
284 TM->setMCUseCFI(false);
Daniel Dunbar897c6762010-06-07 23:20:08 +0000285
286 // Create the code generator passes.
Daniel Dunbardb2f2372010-09-17 07:35:16 +0000287 PassManager *PM = getCodeGenPasses();
Daniel Dunbar897c6762010-06-07 23:20:08 +0000288 CodeGenOpt::Level OptLevel = CodeGenOpt::Default;
289
290 switch (CodeGenOpts.OptimizationLevel) {
291 default: break;
292 case 0: OptLevel = CodeGenOpt::None; break;
293 case 3: OptLevel = CodeGenOpt::Aggressive; break;
294 }
295
296 // Normal mode, emit a .s or .o file by running the code generator. Note,
297 // this also adds codegenerator level optimization passes.
298 TargetMachine::CodeGenFileType CGFT = TargetMachine::CGFT_AssemblyFile;
299 if (Action == Backend_EmitObj)
300 CGFT = TargetMachine::CGFT_ObjectFile;
301 else if (Action == Backend_EmitMCNull)
302 CGFT = TargetMachine::CGFT_Null;
303 else
304 assert(Action == Backend_EmitAssembly && "Invalid action!");
305 if (TM->addPassesToEmitFile(*PM, OS, CGFT, OptLevel,
306 /*DisableVerify=*/!CodeGenOpts.VerifyModule)) {
307 Diags.Report(diag::err_fe_unable_to_interface_with_target);
308 return false;
309 }
310
311 return true;
312}
313
314void EmitAssemblyHelper::EmitAssembly(BackendAction Action, raw_ostream *OS) {
315 TimeRegion Region(llvm::TimePassesIsEnabled ? &CodeGenerationTime : 0);
316 llvm::formatted_raw_ostream FormattedOS;
317
318 CreatePasses();
319 switch (Action) {
320 case Backend_EmitNothing:
321 break;
322
323 case Backend_EmitBC:
324 getPerModulePasses()->add(createBitcodeWriterPass(*OS));
325 break;
326
327 case Backend_EmitLL:
328 FormattedOS.setStream(*OS, formatted_raw_ostream::PRESERVE_STREAM);
329 getPerModulePasses()->add(createPrintModulePass(&FormattedOS));
330 break;
331
332 default:
333 FormattedOS.setStream(*OS, formatted_raw_ostream::PRESERVE_STREAM);
334 if (!AddEmitPasses(Action, FormattedOS))
335 return;
336 }
337
Andrew Trick92b5d942011-04-05 18:56:55 +0000338 // Before executing passes, print the final values of the LLVM options.
339 cl::PrintOptionValues();
340
Daniel Dunbar897c6762010-06-07 23:20:08 +0000341 // Run passes. For now we do all passes at once, but eventually we
342 // would like to have the option of streaming code generation.
343
344 if (PerFunctionPasses) {
345 PrettyStackTraceString CrashInfo("Per-function optimization");
346
347 PerFunctionPasses->doInitialization();
348 for (Module::iterator I = TheModule->begin(),
349 E = TheModule->end(); I != E; ++I)
350 if (!I->isDeclaration())
351 PerFunctionPasses->run(*I);
352 PerFunctionPasses->doFinalization();
353 }
354
355 if (PerModulePasses) {
356 PrettyStackTraceString CrashInfo("Per-module optimization passes");
357 PerModulePasses->run(*TheModule);
358 }
359
360 if (CodeGenPasses) {
361 PrettyStackTraceString CrashInfo("Code generation");
Daniel Dunbardb2f2372010-09-17 07:35:16 +0000362 CodeGenPasses->run(*TheModule);
Daniel Dunbar897c6762010-06-07 23:20:08 +0000363 }
364}
365
366void clang::EmitBackendOutput(Diagnostic &Diags, const CodeGenOptions &CGOpts,
367 const TargetOptions &TOpts, Module *M,
Daniel Dunbar05a7f3d2010-06-07 23:21:04 +0000368 BackendAction Action, raw_ostream *OS) {
369 EmitAssemblyHelper AsmHelper(Diags, CGOpts, TOpts, M);
Daniel Dunbar897c6762010-06-07 23:20:08 +0000370
371 AsmHelper.EmitAssembly(Action, OS);
372}