blob: 7ed702ed5112951a702a1cc70b7198bf6f5f9bcb [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
264 // FIXME: Parse this earlier.
265 if (CodeGenOpts.RelocationModel == "static") {
266 TargetMachine::setRelocationModel(llvm::Reloc::Static);
267 } else if (CodeGenOpts.RelocationModel == "pic") {
268 TargetMachine::setRelocationModel(llvm::Reloc::PIC_);
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000269 } else {
Chris Lattnercabae682010-04-06 17:52:14 +0000270 assert(CodeGenOpts.RelocationModel == "dynamic-no-pic" &&
271 "Invalid PIC model!");
272 TargetMachine::setRelocationModel(llvm::Reloc::DynamicNoPIC);
273 }
274 // FIXME: Parse this earlier.
275 if (CodeGenOpts.CodeModel == "small") {
276 TargetMachine::setCodeModel(llvm::CodeModel::Small);
277 } else if (CodeGenOpts.CodeModel == "kernel") {
278 TargetMachine::setCodeModel(llvm::CodeModel::Kernel);
279 } else if (CodeGenOpts.CodeModel == "medium") {
280 TargetMachine::setCodeModel(llvm::CodeModel::Medium);
281 } else if (CodeGenOpts.CodeModel == "large") {
282 TargetMachine::setCodeModel(llvm::CodeModel::Large);
283 } else {
284 assert(CodeGenOpts.CodeModel.empty() && "Invalid code model!");
285 TargetMachine::setCodeModel(llvm::CodeModel::Default);
286 }
Daniel Dunbar4c877cc2008-10-23 05:59:43 +0000287
Chris Lattnercabae682010-04-06 17:52:14 +0000288 std::vector<const char *> BackendArgs;
289 BackendArgs.push_back("clang"); // Fake program name.
290 if (!CodeGenOpts.DebugPass.empty()) {
291 BackendArgs.push_back("-debug-pass");
292 BackendArgs.push_back(CodeGenOpts.DebugPass.c_str());
293 }
294 if (!CodeGenOpts.LimitFloatPrecision.empty()) {
295 BackendArgs.push_back("-limit-float-precision");
296 BackendArgs.push_back(CodeGenOpts.LimitFloatPrecision.c_str());
297 }
298 if (llvm::TimePassesIsEnabled)
299 BackendArgs.push_back("-time-passes");
300 BackendArgs.push_back(0);
301 llvm::cl::ParseCommandLineOptions(BackendArgs.size() - 1,
302 (char**) &BackendArgs[0]);
John McCall468ec6c2010-03-04 04:29:44 +0000303
Chris Lattnercabae682010-04-06 17:52:14 +0000304 std::string FeaturesStr;
305 if (TargetOpts.CPU.size() || TargetOpts.Features.size()) {
306 SubtargetFeatures Features;
307 Features.setCPU(TargetOpts.CPU);
308 for (std::vector<std::string>::const_iterator
309 it = TargetOpts.Features.begin(),
310 ie = TargetOpts.Features.end(); it != ie; ++it)
311 Features.AddFeature(*it);
312 FeaturesStr = Features.getString();
313 }
314 TargetMachine *TM = TheTarget->createTargetMachine(Triple, FeaturesStr);
Daniel Dunbar821e2eb2009-12-12 23:01:36 +0000315
Chris Lattnercabae682010-04-06 17:52:14 +0000316 // Set register scheduler & allocation policy.
317 RegisterScheduler::setDefault(createDefaultScheduler);
318 RegisterRegAlloc::setDefault(Fast ? createLocalRegisterAllocator :
319 createLinearScanRegisterAllocator);
John McCall468ec6c2010-03-04 04:29:44 +0000320
Chris Lattnercabae682010-04-06 17:52:14 +0000321 // From llvm-gcc:
322 // If there are passes we have to run on the entire module, we do codegen
323 // as a separate "pass" after that happens.
324 // FIXME: This is disabled right now until bugs can be worked out. Reenable
325 // this for fast -O0 compiles!
326 FunctionPassManager *PM = getCodeGenPasses();
327 CodeGenOpt::Level OptLevel = CodeGenOpt::Default;
John McCall468ec6c2010-03-04 04:29:44 +0000328
Chris Lattnercabae682010-04-06 17:52:14 +0000329 switch (CodeGenOpts.OptimizationLevel) {
330 default: break;
331 case 0: OptLevel = CodeGenOpt::None; break;
332 case 3: OptLevel = CodeGenOpt::Aggressive; break;
333 }
Daniel Dunbarf219e7c2009-11-29 07:18:39 +0000334
Chris Lattnercabae682010-04-06 17:52:14 +0000335 // Request that addPassesToEmitFile run the Verifier after running
336 // passes which modify the IR.
Dan Gohmand68fc052010-02-28 00:55:40 +0000337#ifndef NDEBUG
Chris Lattnercabae682010-04-06 17:52:14 +0000338 bool DisableVerify = false;
Dan Gohmand68fc052010-02-28 00:55:40 +0000339#else
Chris Lattnercabae682010-04-06 17:52:14 +0000340 bool DisableVerify = true;
Dan Gohmand68fc052010-02-28 00:55:40 +0000341#endif
342
Chris Lattnercabae682010-04-06 17:52:14 +0000343 // Normal mode, emit a .s or .o file by running the code generator. Note,
344 // this also adds codegenerator level optimization passes.
345 TargetMachine::CodeGenFileType CGFT = TargetMachine::CGFT_AssemblyFile;
346 if (Action == Backend_EmitObj)
347 CGFT = TargetMachine::CGFT_ObjectFile;
348 if (TM->addPassesToEmitFile(*PM, FormattedOutStream, CGFT, OptLevel,
349 DisableVerify)) {
350 Diags.Report(diag::err_fe_unable_to_interface_with_target);
351 return false;
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000352 }
353
354 return true;
355}
356
357void BackendConsumer::CreatePasses() {
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000358 unsigned OptLevel = CodeGenOpts.OptimizationLevel;
359 CodeGenOptions::InliningMethod Inlining = CodeGenOpts.Inlining;
Daniel Dunbar8d353142009-11-10 17:50:53 +0000360
361 // Handle disabling of LLVM optimization, where we want to preserve the
362 // internal module before any optimization.
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000363 if (CodeGenOpts.DisableLLVMOpts) {
Daniel Dunbar8d353142009-11-10 17:50:53 +0000364 OptLevel = 0;
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000365 Inlining = CodeGenOpts.NoInlining;
Daniel Dunbar8d353142009-11-10 17:50:53 +0000366 }
367
Daniel Dunbar70f92432008-10-23 05:50:47 +0000368 // In -O0 if checking is disabled, we don't even have per-function passes.
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000369 if (CodeGenOpts.VerifyModule)
Daniel Dunbar70f92432008-10-23 05:50:47 +0000370 getPerFunctionPasses()->add(createVerifierPass());
371
Daniel Dunbar10d861e2009-06-03 18:01:18 +0000372 // Assume that standard function passes aren't run for -O0.
Daniel Dunbar8d353142009-11-10 17:50:53 +0000373 if (OptLevel > 0)
374 llvm::createStandardFunctionPasses(getPerFunctionPasses(), OptLevel);
Daniel Dunbar10d861e2009-06-03 18:01:18 +0000375
376 llvm::Pass *InliningPass = 0;
Daniel Dunbar8d353142009-11-10 17:50:53 +0000377 switch (Inlining) {
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000378 case CodeGenOptions::NoInlining: break;
379 case CodeGenOptions::NormalInlining: {
Daniel Dunbar90de51f2009-12-08 23:15:55 +0000380 // Set the inline threshold following llvm-gcc.
381 //
382 // FIXME: Derive these constants in a principled fashion.
Daniel Dunbar9da55982010-02-05 07:32:37 +0000383 unsigned Threshold = 225;
Daniel Dunbar90de51f2009-12-08 23:15:55 +0000384 if (CodeGenOpts.OptimizeSize)
Daniel Dunbar9da55982010-02-05 07:32:37 +0000385 Threshold = 75;
Daniel Dunbar90de51f2009-12-08 23:15:55 +0000386 else if (OptLevel > 2)
Daniel Dunbar9da55982010-02-05 07:32:37 +0000387 Threshold = 275;
Eli Friedmanb9b7dd62009-06-11 20:33:41 +0000388 InliningPass = createFunctionInliningPass(Threshold);
Daniel Dunbar10d861e2009-06-03 18:01:18 +0000389 break;
Eli Friedmanb9b7dd62009-06-11 20:33:41 +0000390 }
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000391 case CodeGenOptions::OnlyAlwaysInlining:
Daniel Dunbar10d861e2009-06-03 18:01:18 +0000392 InliningPass = createAlwaysInlinerPass(); // Respect always_inline
393 break;
Daniel Dunbar70f92432008-10-23 05:50:47 +0000394 }
395
396 // For now we always create per module passes.
397 PassManager *PM = getPerModulePasses();
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000398 llvm::createStandardModulePasses(PM, OptLevel, CodeGenOpts.OptimizeSize,
399 CodeGenOpts.UnitAtATime,
400 CodeGenOpts.UnrollLoops,
Daniel Dunbar3636e1d2009-11-30 08:39:32 +0000401 /*SimplifyLibCalls=*/!LangOpts.NoBuiltin,
Daniel Dunbar10d861e2009-06-03 18:01:18 +0000402 /*HaveExceptions=*/true,
403 InliningPass);
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000404}
405
406/// EmitAssembly - Handle interaction with LLVM backend to generate
Mike Stump1eb44332009-09-09 15:08:12 +0000407/// actual machine code.
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000408void BackendConsumer::EmitAssembly() {
409 // Silently ignore if we weren't initialized for some reason.
410 if (!TheModule || !TheTargetData)
411 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000412
Daniel Dunbarb33fbaa2009-11-30 08:39:52 +0000413 TimeRegion Region(llvm::TimePassesIsEnabled ? &CodeGenerationTime : 0);
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000414
Daniel Dunbard611bac2008-10-27 20:40:41 +0000415 // Make sure IR generation is happy with the module. This is
416 // released by the module provider.
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000417 Module *M = Gen->ReleaseModule();
418 if (!M) {
Daniel Dunbard611bac2008-10-27 20:40:41 +0000419 // The module has been released by IR gen on failures, do not
420 // double free.
Daniel Dunbarb954e982010-02-25 04:37:50 +0000421 TheModule.take();
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000422 return;
423 }
424
Daniel Dunbarb954e982010-02-25 04:37:50 +0000425 assert(TheModule.get() == M &&
426 "Unexpected module change during IR generation");
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000427
428 CreatePasses();
Daniel Dunbar3be0d192009-12-03 09:12:54 +0000429 if (!AddEmitPasses())
430 return;
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000431
432 // Run passes. For now we do all passes at once, but eventually we
433 // would like to have the option of streaming code generation.
434
435 if (PerFunctionPasses) {
Chris Lattner14f234e2009-03-06 06:46:31 +0000436 PrettyStackTraceString CrashInfo("Per-function optimization");
Mike Stump1eb44332009-09-09 15:08:12 +0000437
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000438 PerFunctionPasses->doInitialization();
439 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
440 if (!I->isDeclaration())
441 PerFunctionPasses->run(*I);
442 PerFunctionPasses->doFinalization();
443 }
Mike Stump1eb44332009-09-09 15:08:12 +0000444
Chris Lattner49f28ca2009-03-05 08:00:35 +0000445 if (PerModulePasses) {
Chris Lattner14f234e2009-03-06 06:46:31 +0000446 PrettyStackTraceString CrashInfo("Per-module optimization passes");
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000447 PerModulePasses->run(*M);
Chris Lattner49f28ca2009-03-05 08:00:35 +0000448 }
Mike Stump1eb44332009-09-09 15:08:12 +0000449
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000450 if (CodeGenPasses) {
Chris Lattner14f234e2009-03-06 06:46:31 +0000451 PrettyStackTraceString CrashInfo("Code generation");
Chris Lattnercabae682010-04-06 17:52:14 +0000452
Chris Lattner6da9eb62010-04-06 18:38:50 +0000453 // Install an inline asm handler so that diagnostics get printed through our
454 // diagnostics hooks.
455 LLVMContext &Ctx = TheModule->getContext();
456 void *OldHandler = Ctx.getInlineAsmDiagnosticHandler();
457 void *OldContext = Ctx.getInlineAsmDiagnosticContext();
458 Ctx.setInlineAsmDiagnosticHandler((void*)(intptr_t)InlineAsmDiagHandler,
459 this);
460
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000461 CodeGenPasses->doInitialization();
462 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
463 if (!I->isDeclaration())
464 CodeGenPasses->run(*I);
465 CodeGenPasses->doFinalization();
Chris Lattner6da9eb62010-04-06 18:38:50 +0000466
467 Ctx.setInlineAsmDiagnosticHandler(OldHandler, OldContext);
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000468 }
469}
470
Chris Lattnerd6f19062010-04-08 00:23:06 +0000471/// ConvertBackendLocation - Convert a location in a temporary llvm::SourceMgr
472/// buffer to be a valid FullSourceLoc.
473static FullSourceLoc ConvertBackendLocation(const llvm::SMDiagnostic &D,
474 SourceManager &CSM) {
475 // Get both the clang and llvm source managers. The location is relative to
476 // a memory buffer that the LLVM Source Manager is handling, we need to add
477 // a copy to the Clang source manager.
478 const llvm::SourceMgr &LSM = *D.getSourceMgr();
479
480 // We need to copy the underlying LLVM memory buffer because llvm::SourceMgr
481 // already owns its one and clang::SourceManager wants to own its one.
482 const MemoryBuffer *LBuf =
483 LSM.getMemoryBuffer(LSM.FindBufferContainingLoc(D.getLoc()));
484
485 // Create the copy and transfer ownership to clang::SourceManager.
486 llvm::MemoryBuffer *CBuf =
487 llvm::MemoryBuffer::getMemBufferCopy(LBuf->getBuffer(),
488 LBuf->getBufferIdentifier());
489 FileID FID = CSM.createFileIDForMemBuffer(CBuf);
490
491 // Translate the offset into the file.
492 unsigned Offset = D.getLoc().getPointer() - LBuf->getBufferStart();
493 SourceLocation NewLoc =
494 CSM.getLocForStartOfFile(FID).getFileLocWithOffset(Offset);
495 return FullSourceLoc(NewLoc, CSM);
496}
497
Chris Lattnercabae682010-04-06 17:52:14 +0000498
Chris Lattner6da9eb62010-04-06 18:38:50 +0000499/// InlineAsmDiagHandler2 - This function is invoked when the backend hits an
500/// error parsing inline asm. The SMDiagnostic indicates the error relative to
501/// the temporary memory buffer that the inline asm parser has set up.
502void BackendConsumer::InlineAsmDiagHandler2(const llvm::SMDiagnostic &D,
503 SourceLocation LocCookie) {
504 // There are a couple of different kinds of errors we could get here. First,
505 // we re-format the SMDiagnostic in terms of a clang diagnostic.
506
507 // Strip "error: " off the start of the message string.
508 llvm::StringRef Message = D.getMessage();
509 if (Message.startswith("error: "))
510 Message = Message.substr(7);
511
512 // There are two cases: the SMDiagnostic could have a inline asm source
513 // location or it might not. If it does, translate the location.
514 FullSourceLoc Loc;
Chris Lattnerd6f19062010-04-08 00:23:06 +0000515 if (D.getLoc() != SMLoc())
516 Loc = ConvertBackendLocation(D, Context->getSourceManager());
Chris Lattner6da9eb62010-04-06 18:38:50 +0000517 Diags.Report(Loc, diag::err_fe_inline_asm).AddString(Message);
518
519 // This could be a problem with no clang-level source location information.
520 // In this case, LocCookie is invalid. If there is source level information,
521 // print an "generated from" note.
522 if (LocCookie.isValid())
523 Diags.Report(FullSourceLoc(LocCookie, Context->getSourceManager()),
524 diag::note_fe_inline_asm_here);
525}
526
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000527//
528
529CodeGenAction::CodeGenAction(unsigned _Act) : Act(_Act) {}
530
Daniel Dunbar9ad1c022010-02-25 20:37:44 +0000531CodeGenAction::~CodeGenAction() {}
532
Daniel Dunbarb954e982010-02-25 04:37:50 +0000533void CodeGenAction::EndSourceFileAction() {
534 // If the consumer creation failed, do nothing.
535 if (!getCompilerInstance().hasASTConsumer())
536 return;
537
538 // Steal the module from the consumer.
539 BackendConsumer *Consumer = static_cast<BackendConsumer*>(
540 &getCompilerInstance().getASTConsumer());
541
542 TheModule.reset(Consumer->takeModule());
543}
544
545llvm::Module *CodeGenAction::takeModule() {
546 return TheModule.take();
547}
548
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000549ASTConsumer *CodeGenAction::CreateASTConsumer(CompilerInstance &CI,
550 llvm::StringRef InFile) {
551 BackendAction BA = static_cast<BackendAction>(Act);
552 llvm::OwningPtr<llvm::raw_ostream> OS;
553 switch (BA) {
554 case Backend_EmitAssembly:
555 OS.reset(CI.createDefaultOutputFile(false, InFile, "s"));
556 break;
557 case Backend_EmitLL:
558 OS.reset(CI.createDefaultOutputFile(false, InFile, "ll"));
559 break;
560 case Backend_EmitBC:
561 OS.reset(CI.createDefaultOutputFile(true, InFile, "bc"));
562 break;
563 case Backend_EmitNothing:
564 break;
565 case Backend_EmitObj:
566 OS.reset(CI.createDefaultOutputFile(true, InFile, "o"));
567 break;
568 }
569 if (BA != Backend_EmitNothing && !OS)
570 return 0;
571
John McCall468ec6c2010-03-04 04:29:44 +0000572 return new BackendConsumer(BA, CI.getDiagnostics(), CI.getLangOpts(),
573 CI.getCodeGenOpts(), CI.getTargetOpts(),
574 CI.getFrontendOpts().ShowTimers, InFile, OS.take(),
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000575 CI.getLLVMContext());
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000576}
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000577
578EmitAssemblyAction::EmitAssemblyAction()
579 : CodeGenAction(Backend_EmitAssembly) {}
580
581EmitBCAction::EmitBCAction() : CodeGenAction(Backend_EmitBC) {}
582
583EmitLLVMAction::EmitLLVMAction() : CodeGenAction(Backend_EmitLL) {}
584
585EmitLLVMOnlyAction::EmitLLVMOnlyAction() : CodeGenAction(Backend_EmitNothing) {}
586
587EmitObjAction::EmitObjAction() : CodeGenAction(Backend_EmitObj) {}