blob: 79d7d5f4c2413ebfed68584b6404b871c6a4f2b2 [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 }
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000182
Chris Lattner6da9eb62010-04-06 18:38:50 +0000183 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 }
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000188
Chris Lattner6da9eb62010-04-06 18:38:50 +0000189 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 }
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000229
Chris Lattnercabae682010-04-06 17:52:14 +0000230 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 }
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000234
Chris Lattnercabae682010-04-06 17:52:14 +0000235 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,
Dan Gohmancb421fa2010-04-19 16:39:44 +0000305 const_cast<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
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000324 // Create the code generator passes.
Chris Lattnercabae682010-04-06 17:52:14 +0000325 FunctionPassManager *PM = getCodeGenPasses();
326 CodeGenOpt::Level OptLevel = CodeGenOpt::Default;
John McCall468ec6c2010-03-04 04:29:44 +0000327
Chris Lattnercabae682010-04-06 17:52:14 +0000328 switch (CodeGenOpts.OptimizationLevel) {
329 default: break;
330 case 0: OptLevel = CodeGenOpt::None; break;
331 case 3: OptLevel = CodeGenOpt::Aggressive; break;
332 }
Daniel Dunbarf219e7c2009-11-29 07:18:39 +0000333
Chris Lattnercabae682010-04-06 17:52:14 +0000334 // Normal mode, emit a .s or .o file by running the code generator. Note,
335 // this also adds codegenerator level optimization passes.
336 TargetMachine::CodeGenFileType CGFT = TargetMachine::CGFT_AssemblyFile;
337 if (Action == Backend_EmitObj)
338 CGFT = TargetMachine::CGFT_ObjectFile;
339 if (TM->addPassesToEmitFile(*PM, FormattedOutStream, CGFT, OptLevel,
Daniel Dunbar8a5e83c2010-04-29 16:29:06 +0000340 /*DisableVerify=*/!CodeGenOpts.VerifyModule)) {
Chris Lattnercabae682010-04-06 17:52:14 +0000341 Diags.Report(diag::err_fe_unable_to_interface_with_target);
342 return false;
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000343 }
344
345 return true;
346}
347
348void BackendConsumer::CreatePasses() {
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000349 unsigned OptLevel = CodeGenOpts.OptimizationLevel;
350 CodeGenOptions::InliningMethod Inlining = CodeGenOpts.Inlining;
Daniel Dunbar8d353142009-11-10 17:50:53 +0000351
352 // Handle disabling of LLVM optimization, where we want to preserve the
353 // internal module before any optimization.
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000354 if (CodeGenOpts.DisableLLVMOpts) {
Daniel Dunbar8d353142009-11-10 17:50:53 +0000355 OptLevel = 0;
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000356 Inlining = CodeGenOpts.NoInlining;
Daniel Dunbar8d353142009-11-10 17:50:53 +0000357 }
358
Daniel Dunbar70f92432008-10-23 05:50:47 +0000359 // In -O0 if checking is disabled, we don't even have per-function passes.
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000360 if (CodeGenOpts.VerifyModule)
Daniel Dunbar70f92432008-10-23 05:50:47 +0000361 getPerFunctionPasses()->add(createVerifierPass());
362
Daniel Dunbar10d861e2009-06-03 18:01:18 +0000363 // Assume that standard function passes aren't run for -O0.
Daniel Dunbar8d353142009-11-10 17:50:53 +0000364 if (OptLevel > 0)
365 llvm::createStandardFunctionPasses(getPerFunctionPasses(), OptLevel);
Daniel Dunbar10d861e2009-06-03 18:01:18 +0000366
367 llvm::Pass *InliningPass = 0;
Daniel Dunbar8d353142009-11-10 17:50:53 +0000368 switch (Inlining) {
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000369 case CodeGenOptions::NoInlining: break;
370 case CodeGenOptions::NormalInlining: {
Daniel Dunbar90de51f2009-12-08 23:15:55 +0000371 // Set the inline threshold following llvm-gcc.
372 //
373 // FIXME: Derive these constants in a principled fashion.
Daniel Dunbar9da55982010-02-05 07:32:37 +0000374 unsigned Threshold = 225;
Daniel Dunbar90de51f2009-12-08 23:15:55 +0000375 if (CodeGenOpts.OptimizeSize)
Daniel Dunbar9da55982010-02-05 07:32:37 +0000376 Threshold = 75;
Daniel Dunbar90de51f2009-12-08 23:15:55 +0000377 else if (OptLevel > 2)
Daniel Dunbar9da55982010-02-05 07:32:37 +0000378 Threshold = 275;
Eli Friedmanb9b7dd62009-06-11 20:33:41 +0000379 InliningPass = createFunctionInliningPass(Threshold);
Daniel Dunbar10d861e2009-06-03 18:01:18 +0000380 break;
Eli Friedmanb9b7dd62009-06-11 20:33:41 +0000381 }
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000382 case CodeGenOptions::OnlyAlwaysInlining:
Daniel Dunbar10d861e2009-06-03 18:01:18 +0000383 InliningPass = createAlwaysInlinerPass(); // Respect always_inline
384 break;
Daniel Dunbar70f92432008-10-23 05:50:47 +0000385 }
386
387 // For now we always create per module passes.
388 PassManager *PM = getPerModulePasses();
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000389 llvm::createStandardModulePasses(PM, OptLevel, CodeGenOpts.OptimizeSize,
390 CodeGenOpts.UnitAtATime,
391 CodeGenOpts.UnrollLoops,
Daniel Dunbar3636e1d2009-11-30 08:39:32 +0000392 /*SimplifyLibCalls=*/!LangOpts.NoBuiltin,
Daniel Dunbar10d861e2009-06-03 18:01:18 +0000393 /*HaveExceptions=*/true,
394 InliningPass);
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000395}
396
397/// EmitAssembly - Handle interaction with LLVM backend to generate
Mike Stump1eb44332009-09-09 15:08:12 +0000398/// actual machine code.
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000399void BackendConsumer::EmitAssembly() {
400 // Silently ignore if we weren't initialized for some reason.
401 if (!TheModule || !TheTargetData)
402 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000403
Daniel Dunbarb33fbaa2009-11-30 08:39:52 +0000404 TimeRegion Region(llvm::TimePassesIsEnabled ? &CodeGenerationTime : 0);
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000405
Daniel Dunbard611bac2008-10-27 20:40:41 +0000406 // Make sure IR generation is happy with the module. This is
407 // released by the module provider.
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000408 Module *M = Gen->ReleaseModule();
409 if (!M) {
Daniel Dunbard611bac2008-10-27 20:40:41 +0000410 // The module has been released by IR gen on failures, do not
411 // double free.
Daniel Dunbarb954e982010-02-25 04:37:50 +0000412 TheModule.take();
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000413 return;
414 }
415
Daniel Dunbarb954e982010-02-25 04:37:50 +0000416 assert(TheModule.get() == M &&
417 "Unexpected module change during IR generation");
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000418
419 CreatePasses();
Daniel Dunbar3be0d192009-12-03 09:12:54 +0000420 if (!AddEmitPasses())
421 return;
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000422
423 // Run passes. For now we do all passes at once, but eventually we
424 // would like to have the option of streaming code generation.
425
426 if (PerFunctionPasses) {
Chris Lattner14f234e2009-03-06 06:46:31 +0000427 PrettyStackTraceString CrashInfo("Per-function optimization");
Mike Stump1eb44332009-09-09 15:08:12 +0000428
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000429 PerFunctionPasses->doInitialization();
430 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
431 if (!I->isDeclaration())
432 PerFunctionPasses->run(*I);
433 PerFunctionPasses->doFinalization();
434 }
Mike Stump1eb44332009-09-09 15:08:12 +0000435
Chris Lattner49f28ca2009-03-05 08:00:35 +0000436 if (PerModulePasses) {
Chris Lattner14f234e2009-03-06 06:46:31 +0000437 PrettyStackTraceString CrashInfo("Per-module optimization passes");
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000438 PerModulePasses->run(*M);
Chris Lattner49f28ca2009-03-05 08:00:35 +0000439 }
Mike Stump1eb44332009-09-09 15:08:12 +0000440
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000441 if (CodeGenPasses) {
Chris Lattner14f234e2009-03-06 06:46:31 +0000442 PrettyStackTraceString CrashInfo("Code generation");
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000443
Chris Lattner6da9eb62010-04-06 18:38:50 +0000444 // Install an inline asm handler so that diagnostics get printed through our
445 // diagnostics hooks.
446 LLVMContext &Ctx = TheModule->getContext();
447 void *OldHandler = Ctx.getInlineAsmDiagnosticHandler();
448 void *OldContext = Ctx.getInlineAsmDiagnosticContext();
449 Ctx.setInlineAsmDiagnosticHandler((void*)(intptr_t)InlineAsmDiagHandler,
450 this);
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000451
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000452 CodeGenPasses->doInitialization();
453 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
454 if (!I->isDeclaration())
455 CodeGenPasses->run(*I);
456 CodeGenPasses->doFinalization();
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000457
Chris Lattner6da9eb62010-04-06 18:38:50 +0000458 Ctx.setInlineAsmDiagnosticHandler(OldHandler, OldContext);
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000459 }
460}
461
Chris Lattnerd6f19062010-04-08 00:23:06 +0000462/// ConvertBackendLocation - Convert a location in a temporary llvm::SourceMgr
463/// buffer to be a valid FullSourceLoc.
464static FullSourceLoc ConvertBackendLocation(const llvm::SMDiagnostic &D,
465 SourceManager &CSM) {
466 // Get both the clang and llvm source managers. The location is relative to
467 // a memory buffer that the LLVM Source Manager is handling, we need to add
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000468 // a copy to the Clang source manager.
Chris Lattnerd6f19062010-04-08 00:23:06 +0000469 const llvm::SourceMgr &LSM = *D.getSourceMgr();
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000470
Chris Lattnerd6f19062010-04-08 00:23:06 +0000471 // We need to copy the underlying LLVM memory buffer because llvm::SourceMgr
472 // already owns its one and clang::SourceManager wants to own its one.
473 const MemoryBuffer *LBuf =
474 LSM.getMemoryBuffer(LSM.FindBufferContainingLoc(D.getLoc()));
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000475
Chris Lattnerd6f19062010-04-08 00:23:06 +0000476 // Create the copy and transfer ownership to clang::SourceManager.
477 llvm::MemoryBuffer *CBuf =
478 llvm::MemoryBuffer::getMemBufferCopy(LBuf->getBuffer(),
479 LBuf->getBufferIdentifier());
480 FileID FID = CSM.createFileIDForMemBuffer(CBuf);
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000481
Chris Lattnerd6f19062010-04-08 00:23:06 +0000482 // Translate the offset into the file.
483 unsigned Offset = D.getLoc().getPointer() - LBuf->getBufferStart();
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000484 SourceLocation NewLoc =
Chris Lattnerd6f19062010-04-08 00:23:06 +0000485 CSM.getLocForStartOfFile(FID).getFileLocWithOffset(Offset);
486 return FullSourceLoc(NewLoc, CSM);
487}
488
Chris Lattnercabae682010-04-06 17:52:14 +0000489
Chris Lattner6da9eb62010-04-06 18:38:50 +0000490/// InlineAsmDiagHandler2 - This function is invoked when the backend hits an
491/// error parsing inline asm. The SMDiagnostic indicates the error relative to
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000492/// the temporary memory buffer that the inline asm parser has set up.
Chris Lattner6da9eb62010-04-06 18:38:50 +0000493void BackendConsumer::InlineAsmDiagHandler2(const llvm::SMDiagnostic &D,
494 SourceLocation LocCookie) {
495 // There are a couple of different kinds of errors we could get here. First,
496 // we re-format the SMDiagnostic in terms of a clang diagnostic.
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000497
Chris Lattner6da9eb62010-04-06 18:38:50 +0000498 // Strip "error: " off the start of the message string.
499 llvm::StringRef Message = D.getMessage();
500 if (Message.startswith("error: "))
501 Message = Message.substr(7);
502
503 // There are two cases: the SMDiagnostic could have a inline asm source
504 // location or it might not. If it does, translate the location.
505 FullSourceLoc Loc;
Chris Lattnerd6f19062010-04-08 00:23:06 +0000506 if (D.getLoc() != SMLoc())
507 Loc = ConvertBackendLocation(D, Context->getSourceManager());
Chris Lattner6da9eb62010-04-06 18:38:50 +0000508 Diags.Report(Loc, diag::err_fe_inline_asm).AddString(Message);
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000509
Chris Lattner6da9eb62010-04-06 18:38:50 +0000510 // This could be a problem with no clang-level source location information.
511 // In this case, LocCookie is invalid. If there is source level information,
512 // print an "generated from" note.
513 if (LocCookie.isValid())
514 Diags.Report(FullSourceLoc(LocCookie, Context->getSourceManager()),
515 diag::note_fe_inline_asm_here);
516}
517
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000518//
519
520CodeGenAction::CodeGenAction(unsigned _Act) : Act(_Act) {}
521
Daniel Dunbar9ad1c022010-02-25 20:37:44 +0000522CodeGenAction::~CodeGenAction() {}
523
Daniel Dunbarb954e982010-02-25 04:37:50 +0000524void CodeGenAction::EndSourceFileAction() {
525 // If the consumer creation failed, do nothing.
526 if (!getCompilerInstance().hasASTConsumer())
527 return;
528
529 // Steal the module from the consumer.
530 BackendConsumer *Consumer = static_cast<BackendConsumer*>(
531 &getCompilerInstance().getASTConsumer());
532
533 TheModule.reset(Consumer->takeModule());
534}
535
536llvm::Module *CodeGenAction::takeModule() {
537 return TheModule.take();
538}
539
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000540ASTConsumer *CodeGenAction::CreateASTConsumer(CompilerInstance &CI,
541 llvm::StringRef InFile) {
542 BackendAction BA = static_cast<BackendAction>(Act);
543 llvm::OwningPtr<llvm::raw_ostream> OS;
544 switch (BA) {
545 case Backend_EmitAssembly:
546 OS.reset(CI.createDefaultOutputFile(false, InFile, "s"));
547 break;
548 case Backend_EmitLL:
549 OS.reset(CI.createDefaultOutputFile(false, InFile, "ll"));
550 break;
551 case Backend_EmitBC:
552 OS.reset(CI.createDefaultOutputFile(true, InFile, "bc"));
553 break;
554 case Backend_EmitNothing:
555 break;
556 case Backend_EmitObj:
557 OS.reset(CI.createDefaultOutputFile(true, InFile, "o"));
558 break;
559 }
560 if (BA != Backend_EmitNothing && !OS)
561 return 0;
562
John McCall468ec6c2010-03-04 04:29:44 +0000563 return new BackendConsumer(BA, CI.getDiagnostics(), CI.getLangOpts(),
564 CI.getCodeGenOpts(), CI.getTargetOpts(),
565 CI.getFrontendOpts().ShowTimers, InFile, OS.take(),
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000566 CI.getLLVMContext());
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000567}
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000568
569EmitAssemblyAction::EmitAssemblyAction()
570 : CodeGenAction(Backend_EmitAssembly) {}
571
572EmitBCAction::EmitBCAction() : CodeGenAction(Backend_EmitBC) {}
573
574EmitLLVMAction::EmitLLVMAction() : CodeGenAction(Backend_EmitLL) {}
575
576EmitLLVMOnlyAction::EmitLLVMOnlyAction() : CodeGenAction(Backend_EmitNothing) {}
577
578EmitObjAction::EmitObjAction() : CodeGenAction(Backend_EmitObj) {}