blob: fdce21170e315bff17fa3d19de320d3cd76e3b35 [file] [log] [blame]
Daniel Dunbar4ee34612010-02-25 04:37:45 +00001//===--- CodeGenAction.cpp - LLVM Code Generation Frontend Action ---------===//
Daniel Dunbard69bacc2008-10-21 23:49:24 +00002//
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 Dunbar4ee34612010-02-25 04:37:45 +000010#include "clang/Frontend/CodeGenAction.h"
Chris Lattner6da9eb62010-04-06 18:38:50 +000011#include "clang/Basic/SourceManager.h"
12#include "clang/Basic/TargetInfo.h"
13#include "clang/Basic/TargetOptions.h"
Chris Lattner682bf922009-03-29 16:50:03 +000014#include "clang/AST/ASTConsumer.h"
Daniel Dunbard58c03f2009-11-15 06:48:46 +000015#include "clang/AST/ASTContext.h"
Chris Lattner682bf922009-03-29 16:50:03 +000016#include "clang/AST/DeclGroup.h"
Daniel Dunbard58c03f2009-11-15 06:48:46 +000017#include "clang/CodeGen/CodeGenOptions.h"
18#include "clang/CodeGen/ModuleBuilder.h"
Daniel Dunbar4ee34612010-02-25 04:37:45 +000019#include "clang/Frontend/ASTConsumers.h"
20#include "clang/Frontend/CompilerInstance.h"
Daniel Dunbar3be0d192009-12-03 09:12:54 +000021#include "clang/Frontend/FrontendDiagnostic.h"
Chris Lattnercabae682010-04-06 17:52:14 +000022#include "llvm/LLVMContext.h"
Daniel Dunbard69bacc2008-10-21 23:49:24 +000023#include "llvm/Module.h"
Daniel Dunbard69bacc2008-10-21 23:49:24 +000024#include "llvm/PassManager.h"
25#include "llvm/ADT/OwningPtr.h"
26#include "llvm/Assembly/PrintModulePass.h"
Daniel Dunbar70f92432008-10-23 05:50:47 +000027#include "llvm/Analysis/CallGraph.h"
28#include "llvm/Analysis/Verifier.h"
Daniel Dunbard69bacc2008-10-21 23:49:24 +000029#include "llvm/Bitcode/ReaderWriter.h"
30#include "llvm/CodeGen/RegAllocRegistry.h"
31#include "llvm/CodeGen/SchedulerRegistry.h"
Chris Lattner03eacc72009-07-14 20:39:15 +000032#include "llvm/Support/FormattedStream.h"
Chris Lattner6da9eb62010-04-06 18:38:50 +000033#include "llvm/Support/MemoryBuffer.h"
34#include "llvm/Support/SourceMgr.h"
Daniel Dunbar10d861e2009-06-03 18:01:18 +000035#include "llvm/Support/StandardPasses.h"
Chris Lattner6f114eb2009-02-18 01:37:30 +000036#include "llvm/Support/Timer.h"
Daniel Dunbara034ba82009-02-17 19:47:34 +000037#include "llvm/Target/SubtargetFeature.h"
Daniel Dunbard69bacc2008-10-21 23:49:24 +000038#include "llvm/Target/TargetData.h"
39#include "llvm/Target/TargetMachine.h"
Daniel Dunbar821e2eb2009-12-12 23:01:36 +000040#include "llvm/Target/TargetOptions.h"
Daniel Dunbarf7d47c02009-07-15 20:25:38 +000041#include "llvm/Target/TargetRegistry.h"
Daniel Dunbard69bacc2008-10-21 23:49:24 +000042using namespace clang;
43using namespace llvm;
44
45namespace {
Daniel Dunbar4ee34612010-02-25 04:37:45 +000046 enum BackendAction {
47 Backend_EmitAssembly, ///< Emit native assembly files
48 Backend_EmitBC, ///< Emit LLVM bitcode files
49 Backend_EmitLL, ///< Emit human-readable LLVM assembly
50 Backend_EmitNothing, ///< Don't emit anything (benchmarking mode)
51 Backend_EmitObj ///< Emit native object files
52 };
53
Benjamin Kramerbd218282009-11-28 10:07:24 +000054 class BackendConsumer : public ASTConsumer {
Daniel Dunbar125bbbe2009-12-04 08:17:40 +000055 Diagnostic &Diags;
Daniel Dunbard69bacc2008-10-21 23:49:24 +000056 BackendAction Action;
Daniel Dunbar3636e1d2009-11-30 08:39:32 +000057 const CodeGenOptions &CodeGenOpts;
58 const LangOptions &LangOpts;
59 const TargetOptions &TargetOpts;
Eli Friedman66d6f042009-05-18 22:20:00 +000060 llvm::raw_ostream *AsmOutStream;
Chris Lattner03eacc72009-07-14 20:39:15 +000061 llvm::formatted_raw_ostream FormattedOutStream;
Chris Lattner49f28ca2009-03-05 08:00:35 +000062 ASTContext *Context;
Daniel Dunbar90f41302008-10-29 08:50:02 +000063
Chris Lattner6f114eb2009-02-18 01:37:30 +000064 Timer LLVMIRGeneration;
65 Timer CodeGenerationTime;
Mike Stump1eb44332009-09-09 15:08:12 +000066
Daniel Dunbard69bacc2008-10-21 23:49:24 +000067 llvm::OwningPtr<CodeGenerator> Gen;
Mike Stump1eb44332009-09-09 15:08:12 +000068
Daniel Dunbarb954e982010-02-25 04:37:50 +000069 llvm::OwningPtr<llvm::Module> TheModule;
Daniel Dunbard69bacc2008-10-21 23:49:24 +000070 llvm::TargetData *TheTargetData;
Daniel Dunbard69bacc2008-10-21 23:49:24 +000071
72 mutable FunctionPassManager *CodeGenPasses;
73 mutable PassManager *PerModulePasses;
74 mutable FunctionPassManager *PerFunctionPasses;
75
76 FunctionPassManager *getCodeGenPasses() const;
77 PassManager *getPerModulePasses() const;
78 FunctionPassManager *getPerFunctionPasses() const;
79
80 void CreatePasses();
81
Daniel Dunbar125bbbe2009-12-04 08:17:40 +000082 /// AddEmitPasses - Add passes necessary to emit assembly or LLVM IR.
Daniel Dunbard69bacc2008-10-21 23:49:24 +000083 ///
Daniel Dunbar3be0d192009-12-03 09:12:54 +000084 /// \return True on success.
85 bool AddEmitPasses();
Daniel Dunbard69bacc2008-10-21 23:49:24 +000086
87 void EmitAssembly();
Mike Stump1eb44332009-09-09 15:08:12 +000088
89 public:
Daniel Dunbar3be0d192009-12-03 09:12:54 +000090 BackendConsumer(BackendAction action, Diagnostic &_Diags,
Chandler Carruth2811ccf2009-11-12 17:24:48 +000091 const LangOptions &langopts, const CodeGenOptions &compopts,
Daniel Dunbarb33fbaa2009-11-30 08:39:52 +000092 const TargetOptions &targetopts, bool TimePasses,
93 const std::string &infile, llvm::raw_ostream *OS,
Chris Lattnercabae682010-04-06 17:52:14 +000094 LLVMContext &C) :
Daniel Dunbar3be0d192009-12-03 09:12:54 +000095 Diags(_Diags),
Mike Stump1eb44332009-09-09 15:08:12 +000096 Action(action),
Chandler Carruth2811ccf2009-11-12 17:24:48 +000097 CodeGenOpts(compopts),
Daniel Dunbar3636e1d2009-11-30 08:39:32 +000098 LangOpts(langopts),
Daniel Dunbard58c03f2009-11-15 06:48:46 +000099 TargetOpts(targetopts),
Chris Lattner03eacc72009-07-14 20:39:15 +0000100 AsmOutStream(OS),
Chris Lattner6f114eb2009-02-18 01:37:30 +0000101 LLVMIRGeneration("LLVM IR Generation Time"),
102 CodeGenerationTime("Code Generation Time"),
John McCall468ec6c2010-03-04 04:29:44 +0000103 Gen(CreateLLVMCodeGen(Diags, infile, compopts, C)),
104 TheTargetData(0),
Chris Lattner44502662009-02-18 01:23:44 +0000105 CodeGenPasses(0), PerModulePasses(0), PerFunctionPasses(0) {
Mike Stump1eb44332009-09-09 15:08:12 +0000106
Chris Lattner03eacc72009-07-14 20:39:15 +0000107 if (AsmOutStream)
108 FormattedOutStream.setStream(*AsmOutStream,
109 formatted_raw_ostream::PRESERVE_STREAM);
Mike Stump1eb44332009-09-09 15:08:12 +0000110
Daniel Dunbarb33fbaa2009-11-30 08:39:52 +0000111 llvm::TimePassesIsEnabled = TimePasses;
Chris Lattner44502662009-02-18 01:23:44 +0000112 }
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000113
114 ~BackendConsumer() {
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000115 delete TheTargetData;
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000116 delete CodeGenPasses;
117 delete PerModulePasses;
118 delete PerFunctionPasses;
119 }
120
Daniel Dunbarb954e982010-02-25 04:37:50 +0000121 llvm::Module *takeModule() { return TheModule.take(); }
122
Chris Lattner7bb0da02009-03-28 02:18:25 +0000123 virtual void Initialize(ASTContext &Ctx) {
124 Context = &Ctx;
Mike Stump1eb44332009-09-09 15:08:12 +0000125
Daniel Dunbarb33fbaa2009-11-30 08:39:52 +0000126 if (llvm::TimePassesIsEnabled)
Chris Lattner6f114eb2009-02-18 01:37:30 +0000127 LLVMIRGeneration.startTimer();
Mike Stump1eb44332009-09-09 15:08:12 +0000128
Chris Lattner7bb0da02009-03-28 02:18:25 +0000129 Gen->Initialize(Ctx);
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000130
Daniel Dunbarb954e982010-02-25 04:37:50 +0000131 TheModule.reset(Gen->GetModule());
Chris Lattner7bb0da02009-03-28 02:18:25 +0000132 TheTargetData = new llvm::TargetData(Ctx.Target.getTargetDescription());
Mike Stump1eb44332009-09-09 15:08:12 +0000133
Daniel Dunbarb33fbaa2009-11-30 08:39:52 +0000134 if (llvm::TimePassesIsEnabled)
Chris Lattner6f114eb2009-02-18 01:37:30 +0000135 LLVMIRGeneration.stopTimer();
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000136 }
Mike Stump1eb44332009-09-09 15:08:12 +0000137
Chris Lattner682bf922009-03-29 16:50:03 +0000138 virtual void HandleTopLevelDecl(DeclGroupRef D) {
139 PrettyStackTraceDecl CrashInfo(*D.begin(), SourceLocation(),
Chris Lattner49f28ca2009-03-05 08:00:35 +0000140 Context->getSourceManager(),
141 "LLVM IR generation of declaration");
Mike Stump1eb44332009-09-09 15:08:12 +0000142
Daniel Dunbarb33fbaa2009-11-30 08:39:52 +0000143 if (llvm::TimePassesIsEnabled)
Chris Lattner6f114eb2009-02-18 01:37:30 +0000144 LLVMIRGeneration.startTimer();
Chris Lattner682bf922009-03-29 16:50:03 +0000145
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000146 Gen->HandleTopLevelDecl(D);
Chris Lattner6f114eb2009-02-18 01:37:30 +0000147
Daniel Dunbarb33fbaa2009-11-30 08:39:52 +0000148 if (llvm::TimePassesIsEnabled)
Chris Lattner6f114eb2009-02-18 01:37:30 +0000149 LLVMIRGeneration.stopTimer();
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000150 }
Mike Stump1eb44332009-09-09 15:08:12 +0000151
Chris Lattnerdacbc5d2009-03-28 04:11:33 +0000152 virtual void HandleTranslationUnit(ASTContext &C) {
Chris Lattner49f28ca2009-03-05 08:00:35 +0000153 {
Chris Lattner14f234e2009-03-06 06:46:31 +0000154 PrettyStackTraceString CrashInfo("Per-file LLVM IR generation");
Daniel Dunbarb33fbaa2009-11-30 08:39:52 +0000155 if (llvm::TimePassesIsEnabled)
Chris Lattner49f28ca2009-03-05 08:00:35 +0000156 LLVMIRGeneration.startTimer();
Chris Lattner6f114eb2009-02-18 01:37:30 +0000157
Chris Lattnerdacbc5d2009-03-28 04:11:33 +0000158 Gen->HandleTranslationUnit(C);
Daniel Dunbard68ba0e2008-11-11 06:35:39 +0000159
Daniel Dunbarb33fbaa2009-11-30 08:39:52 +0000160 if (llvm::TimePassesIsEnabled)
Chris Lattner49f28ca2009-03-05 08:00:35 +0000161 LLVMIRGeneration.stopTimer();
162 }
Chris Lattner6f114eb2009-02-18 01:37:30 +0000163
Chris Lattner49f28ca2009-03-05 08:00:35 +0000164 // EmitAssembly times and registers crash info itself.
Chris Lattner6f114eb2009-02-18 01:37:30 +0000165 EmitAssembly();
Mike Stump1eb44332009-09-09 15:08:12 +0000166
Daniel Dunbard68ba0e2008-11-11 06:35:39 +0000167 // Force a flush here in case we never get released.
168 if (AsmOutStream)
Chris Lattner03eacc72009-07-14 20:39:15 +0000169 FormattedOutStream.flush();
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000170 }
Mike Stump1eb44332009-09-09 15:08:12 +0000171
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000172 virtual void HandleTagDeclDefinition(TagDecl *D) {
Chris Lattner49f28ca2009-03-05 08:00:35 +0000173 PrettyStackTraceDecl CrashInfo(D, SourceLocation(),
174 Context->getSourceManager(),
175 "LLVM IR generation of declaration");
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000176 Gen->HandleTagDeclDefinition(D);
177 }
Douglas Gregorb6c8c8b2009-04-21 17:11:58 +0000178
179 virtual void CompleteTentativeDefinition(VarDecl *D) {
180 Gen->CompleteTentativeDefinition(D);
181 }
Chris Lattner6da9eb62010-04-06 18:38:50 +0000182
183 static void InlineAsmDiagHandler(const llvm::SMDiagnostic &SM,void *Context,
184 unsigned LocCookie) {
185 SourceLocation Loc = SourceLocation::getFromRawEncoding(LocCookie);
186 ((BackendConsumer*)Context)->InlineAsmDiagHandler2(SM, Loc);
187 }
188
189 void InlineAsmDiagHandler2(const llvm::SMDiagnostic &,
190 SourceLocation LocCookie);
Mike Stump1eb44332009-09-09 15:08:12 +0000191 };
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000192}
193
194FunctionPassManager *BackendConsumer::getCodeGenPasses() const {
195 if (!CodeGenPasses) {
Daniel Dunbarb954e982010-02-25 04:37:50 +0000196 CodeGenPasses = new FunctionPassManager(&*TheModule);
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000197 CodeGenPasses->add(new TargetData(*TheTargetData));
198 }
199
200 return CodeGenPasses;
201}
202
203PassManager *BackendConsumer::getPerModulePasses() const {
204 if (!PerModulePasses) {
205 PerModulePasses = new PassManager();
206 PerModulePasses->add(new TargetData(*TheTargetData));
207 }
208
209 return PerModulePasses;
210}
211
212FunctionPassManager *BackendConsumer::getPerFunctionPasses() const {
213 if (!PerFunctionPasses) {
Daniel Dunbarb954e982010-02-25 04:37:50 +0000214 PerFunctionPasses = new FunctionPassManager(&*TheModule);
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000215 PerFunctionPasses->add(new TargetData(*TheTargetData));
216 }
217
218 return PerFunctionPasses;
219}
220
Daniel Dunbar3be0d192009-12-03 09:12:54 +0000221bool BackendConsumer::AddEmitPasses() {
Daniel Dunbare8e26002009-02-26 22:39:37 +0000222 if (Action == Backend_EmitNothing)
223 return true;
224
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000225 if (Action == Backend_EmitBC) {
Dan Gohmanb8d42392009-09-26 15:06:14 +0000226 getPerModulePasses()->add(createBitcodeWriterPass(FormattedOutStream));
Chris Lattnercabae682010-04-06 17:52:14 +0000227 return true;
228 }
229
230 if (Action == Backend_EmitLL) {
Dan Gohmanb8d42392009-09-26 15:06:14 +0000231 getPerModulePasses()->add(createPrintModulePass(&FormattedOutStream));
Chris Lattnercabae682010-04-06 17:52:14 +0000232 return true;
233 }
234
235 bool Fast = CodeGenOpts.OptimizationLevel == 0;
236
237 // Create the TargetMachine for generating code.
238 std::string Error;
239 std::string Triple = TheModule->getTargetTriple();
240 const llvm::Target *TheTarget = TargetRegistry::lookupTarget(Triple, Error);
241 if (!TheTarget) {
242 Diags.Report(diag::err_fe_unable_to_create_target) << Error;
243 return false;
244 }
245
246 // FIXME: Expose these capabilities via actual APIs!!!! Aside from just
247 // being gross, this is also totally broken if we ever care about
248 // concurrency.
249 llvm::NoFramePointerElim = CodeGenOpts.DisableFPElim;
250 if (CodeGenOpts.FloatABI == "soft")
251 llvm::FloatABIType = llvm::FloatABI::Soft;
252 else if (CodeGenOpts.FloatABI == "hard")
253 llvm::FloatABIType = llvm::FloatABI::Hard;
254 else {
255 assert(CodeGenOpts.FloatABI.empty() && "Invalid float abi!");
256 llvm::FloatABIType = llvm::FloatABI::Default;
257 }
258 NoZerosInBSS = CodeGenOpts.NoZeroInitializedInBSS;
259 llvm::UseSoftFloat = CodeGenOpts.SoftFloat;
260 UnwindTablesMandatory = CodeGenOpts.UnwindTables;
261
262 TargetMachine::setAsmVerbosityDefault(CodeGenOpts.AsmVerbose);
263
Chris Lattnerbbea7162010-04-13 00:38:24 +0000264 TargetMachine::setFunctionSections(CodeGenOpts.FunctionSections);
265 TargetMachine::setDataSections (CodeGenOpts.DataSections);
266
Chris Lattnercabae682010-04-06 17:52:14 +0000267 // FIXME: Parse this earlier.
268 if (CodeGenOpts.RelocationModel == "static") {
269 TargetMachine::setRelocationModel(llvm::Reloc::Static);
270 } else if (CodeGenOpts.RelocationModel == "pic") {
271 TargetMachine::setRelocationModel(llvm::Reloc::PIC_);
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000272 } else {
Chris Lattnercabae682010-04-06 17:52:14 +0000273 assert(CodeGenOpts.RelocationModel == "dynamic-no-pic" &&
274 "Invalid PIC model!");
275 TargetMachine::setRelocationModel(llvm::Reloc::DynamicNoPIC);
276 }
277 // FIXME: Parse this earlier.
278 if (CodeGenOpts.CodeModel == "small") {
279 TargetMachine::setCodeModel(llvm::CodeModel::Small);
280 } else if (CodeGenOpts.CodeModel == "kernel") {
281 TargetMachine::setCodeModel(llvm::CodeModel::Kernel);
282 } else if (CodeGenOpts.CodeModel == "medium") {
283 TargetMachine::setCodeModel(llvm::CodeModel::Medium);
284 } else if (CodeGenOpts.CodeModel == "large") {
285 TargetMachine::setCodeModel(llvm::CodeModel::Large);
286 } else {
287 assert(CodeGenOpts.CodeModel.empty() && "Invalid code model!");
288 TargetMachine::setCodeModel(llvm::CodeModel::Default);
289 }
Daniel Dunbar4c877cc2008-10-23 05:59:43 +0000290
Chris Lattnercabae682010-04-06 17:52:14 +0000291 std::vector<const char *> BackendArgs;
292 BackendArgs.push_back("clang"); // Fake program name.
293 if (!CodeGenOpts.DebugPass.empty()) {
294 BackendArgs.push_back("-debug-pass");
295 BackendArgs.push_back(CodeGenOpts.DebugPass.c_str());
296 }
297 if (!CodeGenOpts.LimitFloatPrecision.empty()) {
298 BackendArgs.push_back("-limit-float-precision");
299 BackendArgs.push_back(CodeGenOpts.LimitFloatPrecision.c_str());
300 }
301 if (llvm::TimePassesIsEnabled)
302 BackendArgs.push_back("-time-passes");
303 BackendArgs.push_back(0);
304 llvm::cl::ParseCommandLineOptions(BackendArgs.size() - 1,
305 (char**) &BackendArgs[0]);
John McCall468ec6c2010-03-04 04:29:44 +0000306
Chris Lattnercabae682010-04-06 17:52:14 +0000307 std::string FeaturesStr;
308 if (TargetOpts.CPU.size() || TargetOpts.Features.size()) {
309 SubtargetFeatures Features;
310 Features.setCPU(TargetOpts.CPU);
311 for (std::vector<std::string>::const_iterator
312 it = TargetOpts.Features.begin(),
313 ie = TargetOpts.Features.end(); it != ie; ++it)
314 Features.AddFeature(*it);
315 FeaturesStr = Features.getString();
316 }
317 TargetMachine *TM = TheTarget->createTargetMachine(Triple, FeaturesStr);
Daniel Dunbar821e2eb2009-12-12 23:01:36 +0000318
Chris Lattnercabae682010-04-06 17:52:14 +0000319 // Set register scheduler & allocation policy.
320 RegisterScheduler::setDefault(createDefaultScheduler);
321 RegisterRegAlloc::setDefault(Fast ? createLocalRegisterAllocator :
322 createLinearScanRegisterAllocator);
John McCall468ec6c2010-03-04 04:29:44 +0000323
Chris Lattnercabae682010-04-06 17:52:14 +0000324 // From llvm-gcc:
325 // If there are passes we have to run on the entire module, we do codegen
326 // as a separate "pass" after that happens.
327 // FIXME: This is disabled right now until bugs can be worked out. Reenable
328 // this for fast -O0 compiles!
329 FunctionPassManager *PM = getCodeGenPasses();
330 CodeGenOpt::Level OptLevel = CodeGenOpt::Default;
John McCall468ec6c2010-03-04 04:29:44 +0000331
Chris Lattnercabae682010-04-06 17:52:14 +0000332 switch (CodeGenOpts.OptimizationLevel) {
333 default: break;
334 case 0: OptLevel = CodeGenOpt::None; break;
335 case 3: OptLevel = CodeGenOpt::Aggressive; break;
336 }
Daniel Dunbarf219e7c2009-11-29 07:18:39 +0000337
Chris Lattnercabae682010-04-06 17:52:14 +0000338 // Request that addPassesToEmitFile run the Verifier after running
339 // passes which modify the IR.
Dan Gohmand68fc052010-02-28 00:55:40 +0000340#ifndef NDEBUG
Chris Lattnercabae682010-04-06 17:52:14 +0000341 bool DisableVerify = false;
Dan Gohmand68fc052010-02-28 00:55:40 +0000342#else
Chris Lattnercabae682010-04-06 17:52:14 +0000343 bool DisableVerify = true;
Dan Gohmand68fc052010-02-28 00:55:40 +0000344#endif
345
Chris Lattnercabae682010-04-06 17:52:14 +0000346 // Normal mode, emit a .s or .o file by running the code generator. Note,
347 // this also adds codegenerator level optimization passes.
348 TargetMachine::CodeGenFileType CGFT = TargetMachine::CGFT_AssemblyFile;
349 if (Action == Backend_EmitObj)
350 CGFT = TargetMachine::CGFT_ObjectFile;
351 if (TM->addPassesToEmitFile(*PM, FormattedOutStream, CGFT, OptLevel,
352 DisableVerify)) {
353 Diags.Report(diag::err_fe_unable_to_interface_with_target);
354 return false;
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000355 }
356
357 return true;
358}
359
360void BackendConsumer::CreatePasses() {
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000361 unsigned OptLevel = CodeGenOpts.OptimizationLevel;
362 CodeGenOptions::InliningMethod Inlining = CodeGenOpts.Inlining;
Daniel Dunbar8d353142009-11-10 17:50:53 +0000363
364 // Handle disabling of LLVM optimization, where we want to preserve the
365 // internal module before any optimization.
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000366 if (CodeGenOpts.DisableLLVMOpts) {
Daniel Dunbar8d353142009-11-10 17:50:53 +0000367 OptLevel = 0;
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000368 Inlining = CodeGenOpts.NoInlining;
Daniel Dunbar8d353142009-11-10 17:50:53 +0000369 }
370
Daniel Dunbar70f92432008-10-23 05:50:47 +0000371 // In -O0 if checking is disabled, we don't even have per-function passes.
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000372 if (CodeGenOpts.VerifyModule)
Daniel Dunbar70f92432008-10-23 05:50:47 +0000373 getPerFunctionPasses()->add(createVerifierPass());
374
Daniel Dunbar10d861e2009-06-03 18:01:18 +0000375 // Assume that standard function passes aren't run for -O0.
Daniel Dunbar8d353142009-11-10 17:50:53 +0000376 if (OptLevel > 0)
377 llvm::createStandardFunctionPasses(getPerFunctionPasses(), OptLevel);
Daniel Dunbar10d861e2009-06-03 18:01:18 +0000378
379 llvm::Pass *InliningPass = 0;
Daniel Dunbar8d353142009-11-10 17:50:53 +0000380 switch (Inlining) {
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000381 case CodeGenOptions::NoInlining: break;
382 case CodeGenOptions::NormalInlining: {
Daniel Dunbar90de51f2009-12-08 23:15:55 +0000383 // Set the inline threshold following llvm-gcc.
384 //
385 // FIXME: Derive these constants in a principled fashion.
Daniel Dunbar9da55982010-02-05 07:32:37 +0000386 unsigned Threshold = 225;
Daniel Dunbar90de51f2009-12-08 23:15:55 +0000387 if (CodeGenOpts.OptimizeSize)
Daniel Dunbar9da55982010-02-05 07:32:37 +0000388 Threshold = 75;
Daniel Dunbar90de51f2009-12-08 23:15:55 +0000389 else if (OptLevel > 2)
Daniel Dunbar9da55982010-02-05 07:32:37 +0000390 Threshold = 275;
Eli Friedmanb9b7dd62009-06-11 20:33:41 +0000391 InliningPass = createFunctionInliningPass(Threshold);
Daniel Dunbar10d861e2009-06-03 18:01:18 +0000392 break;
Eli Friedmanb9b7dd62009-06-11 20:33:41 +0000393 }
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000394 case CodeGenOptions::OnlyAlwaysInlining:
Daniel Dunbar10d861e2009-06-03 18:01:18 +0000395 InliningPass = createAlwaysInlinerPass(); // Respect always_inline
396 break;
Daniel Dunbar70f92432008-10-23 05:50:47 +0000397 }
398
399 // For now we always create per module passes.
400 PassManager *PM = getPerModulePasses();
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000401 llvm::createStandardModulePasses(PM, OptLevel, CodeGenOpts.OptimizeSize,
402 CodeGenOpts.UnitAtATime,
403 CodeGenOpts.UnrollLoops,
Daniel Dunbar3636e1d2009-11-30 08:39:32 +0000404 /*SimplifyLibCalls=*/!LangOpts.NoBuiltin,
Daniel Dunbar10d861e2009-06-03 18:01:18 +0000405 /*HaveExceptions=*/true,
406 InliningPass);
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000407}
408
409/// EmitAssembly - Handle interaction with LLVM backend to generate
Mike Stump1eb44332009-09-09 15:08:12 +0000410/// actual machine code.
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000411void BackendConsumer::EmitAssembly() {
412 // Silently ignore if we weren't initialized for some reason.
413 if (!TheModule || !TheTargetData)
414 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000415
Daniel Dunbarb33fbaa2009-11-30 08:39:52 +0000416 TimeRegion Region(llvm::TimePassesIsEnabled ? &CodeGenerationTime : 0);
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000417
Daniel Dunbard611bac2008-10-27 20:40:41 +0000418 // Make sure IR generation is happy with the module. This is
419 // released by the module provider.
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000420 Module *M = Gen->ReleaseModule();
421 if (!M) {
Daniel Dunbard611bac2008-10-27 20:40:41 +0000422 // The module has been released by IR gen on failures, do not
423 // double free.
Daniel Dunbarb954e982010-02-25 04:37:50 +0000424 TheModule.take();
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000425 return;
426 }
427
Daniel Dunbarb954e982010-02-25 04:37:50 +0000428 assert(TheModule.get() == M &&
429 "Unexpected module change during IR generation");
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000430
431 CreatePasses();
Daniel Dunbar3be0d192009-12-03 09:12:54 +0000432 if (!AddEmitPasses())
433 return;
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000434
435 // Run passes. For now we do all passes at once, but eventually we
436 // would like to have the option of streaming code generation.
437
438 if (PerFunctionPasses) {
Chris Lattner14f234e2009-03-06 06:46:31 +0000439 PrettyStackTraceString CrashInfo("Per-function optimization");
Mike Stump1eb44332009-09-09 15:08:12 +0000440
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000441 PerFunctionPasses->doInitialization();
442 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
443 if (!I->isDeclaration())
444 PerFunctionPasses->run(*I);
445 PerFunctionPasses->doFinalization();
446 }
Mike Stump1eb44332009-09-09 15:08:12 +0000447
Chris Lattner49f28ca2009-03-05 08:00:35 +0000448 if (PerModulePasses) {
Chris Lattner14f234e2009-03-06 06:46:31 +0000449 PrettyStackTraceString CrashInfo("Per-module optimization passes");
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000450 PerModulePasses->run(*M);
Chris Lattner49f28ca2009-03-05 08:00:35 +0000451 }
Mike Stump1eb44332009-09-09 15:08:12 +0000452
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000453 if (CodeGenPasses) {
Chris Lattner14f234e2009-03-06 06:46:31 +0000454 PrettyStackTraceString CrashInfo("Code generation");
Chris Lattnercabae682010-04-06 17:52:14 +0000455
Chris Lattner6da9eb62010-04-06 18:38:50 +0000456 // Install an inline asm handler so that diagnostics get printed through our
457 // diagnostics hooks.
458 LLVMContext &Ctx = TheModule->getContext();
459 void *OldHandler = Ctx.getInlineAsmDiagnosticHandler();
460 void *OldContext = Ctx.getInlineAsmDiagnosticContext();
461 Ctx.setInlineAsmDiagnosticHandler((void*)(intptr_t)InlineAsmDiagHandler,
462 this);
463
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000464 CodeGenPasses->doInitialization();
465 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
466 if (!I->isDeclaration())
467 CodeGenPasses->run(*I);
468 CodeGenPasses->doFinalization();
Chris Lattner6da9eb62010-04-06 18:38:50 +0000469
470 Ctx.setInlineAsmDiagnosticHandler(OldHandler, OldContext);
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000471 }
472}
473
Chris Lattnerd6f19062010-04-08 00:23:06 +0000474/// ConvertBackendLocation - Convert a location in a temporary llvm::SourceMgr
475/// buffer to be a valid FullSourceLoc.
476static FullSourceLoc ConvertBackendLocation(const llvm::SMDiagnostic &D,
477 SourceManager &CSM) {
478 // Get both the clang and llvm source managers. The location is relative to
479 // a memory buffer that the LLVM Source Manager is handling, we need to add
480 // a copy to the Clang source manager.
481 const llvm::SourceMgr &LSM = *D.getSourceMgr();
482
483 // We need to copy the underlying LLVM memory buffer because llvm::SourceMgr
484 // already owns its one and clang::SourceManager wants to own its one.
485 const MemoryBuffer *LBuf =
486 LSM.getMemoryBuffer(LSM.FindBufferContainingLoc(D.getLoc()));
487
488 // Create the copy and transfer ownership to clang::SourceManager.
489 llvm::MemoryBuffer *CBuf =
490 llvm::MemoryBuffer::getMemBufferCopy(LBuf->getBuffer(),
491 LBuf->getBufferIdentifier());
492 FileID FID = CSM.createFileIDForMemBuffer(CBuf);
493
494 // Translate the offset into the file.
495 unsigned Offset = D.getLoc().getPointer() - LBuf->getBufferStart();
496 SourceLocation NewLoc =
497 CSM.getLocForStartOfFile(FID).getFileLocWithOffset(Offset);
498 return FullSourceLoc(NewLoc, CSM);
499}
500
Chris Lattnercabae682010-04-06 17:52:14 +0000501
Chris Lattner6da9eb62010-04-06 18:38:50 +0000502/// InlineAsmDiagHandler2 - This function is invoked when the backend hits an
503/// error parsing inline asm. The SMDiagnostic indicates the error relative to
504/// the temporary memory buffer that the inline asm parser has set up.
505void BackendConsumer::InlineAsmDiagHandler2(const llvm::SMDiagnostic &D,
506 SourceLocation LocCookie) {
507 // There are a couple of different kinds of errors we could get here. First,
508 // we re-format the SMDiagnostic in terms of a clang diagnostic.
509
510 // Strip "error: " off the start of the message string.
511 llvm::StringRef Message = D.getMessage();
512 if (Message.startswith("error: "))
513 Message = Message.substr(7);
514
515 // There are two cases: the SMDiagnostic could have a inline asm source
516 // location or it might not. If it does, translate the location.
517 FullSourceLoc Loc;
Chris Lattnerd6f19062010-04-08 00:23:06 +0000518 if (D.getLoc() != SMLoc())
519 Loc = ConvertBackendLocation(D, Context->getSourceManager());
Chris Lattner6da9eb62010-04-06 18:38:50 +0000520 Diags.Report(Loc, diag::err_fe_inline_asm).AddString(Message);
521
522 // This could be a problem with no clang-level source location information.
523 // In this case, LocCookie is invalid. If there is source level information,
524 // print an "generated from" note.
525 if (LocCookie.isValid())
526 Diags.Report(FullSourceLoc(LocCookie, Context->getSourceManager()),
527 diag::note_fe_inline_asm_here);
528}
529
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000530//
531
532CodeGenAction::CodeGenAction(unsigned _Act) : Act(_Act) {}
533
Daniel Dunbar9ad1c022010-02-25 20:37:44 +0000534CodeGenAction::~CodeGenAction() {}
535
Daniel Dunbarb954e982010-02-25 04:37:50 +0000536void CodeGenAction::EndSourceFileAction() {
537 // If the consumer creation failed, do nothing.
538 if (!getCompilerInstance().hasASTConsumer())
539 return;
540
541 // Steal the module from the consumer.
542 BackendConsumer *Consumer = static_cast<BackendConsumer*>(
543 &getCompilerInstance().getASTConsumer());
544
545 TheModule.reset(Consumer->takeModule());
546}
547
548llvm::Module *CodeGenAction::takeModule() {
549 return TheModule.take();
550}
551
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000552ASTConsumer *CodeGenAction::CreateASTConsumer(CompilerInstance &CI,
553 llvm::StringRef InFile) {
554 BackendAction BA = static_cast<BackendAction>(Act);
555 llvm::OwningPtr<llvm::raw_ostream> OS;
556 switch (BA) {
557 case Backend_EmitAssembly:
558 OS.reset(CI.createDefaultOutputFile(false, InFile, "s"));
559 break;
560 case Backend_EmitLL:
561 OS.reset(CI.createDefaultOutputFile(false, InFile, "ll"));
562 break;
563 case Backend_EmitBC:
564 OS.reset(CI.createDefaultOutputFile(true, InFile, "bc"));
565 break;
566 case Backend_EmitNothing:
567 break;
568 case Backend_EmitObj:
569 OS.reset(CI.createDefaultOutputFile(true, InFile, "o"));
570 break;
571 }
572 if (BA != Backend_EmitNothing && !OS)
573 return 0;
574
John McCall468ec6c2010-03-04 04:29:44 +0000575 return new BackendConsumer(BA, CI.getDiagnostics(), CI.getLangOpts(),
576 CI.getCodeGenOpts(), CI.getTargetOpts(),
577 CI.getFrontendOpts().ShowTimers, InFile, OS.take(),
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000578 CI.getLLVMContext());
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000579}
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000580
581EmitAssemblyAction::EmitAssemblyAction()
582 : CodeGenAction(Backend_EmitAssembly) {}
583
584EmitBCAction::EmitBCAction() : CodeGenAction(Backend_EmitBC) {}
585
586EmitLLVMAction::EmitLLVMAction() : CodeGenAction(Backend_EmitLL) {}
587
588EmitLLVMOnlyAction::EmitLLVMOnlyAction() : CodeGenAction(Backend_EmitNothing) {}
589
590EmitObjAction::EmitObjAction() : CodeGenAction(Backend_EmitObj) {}