blob: 280d7646be3bea950dfc2604206621ae25e2f61b [file] [log] [blame]
Daniel Dunbarcea0c702010-02-25 04:37:45 +00001//===--- CodeGenAction.cpp - LLVM Code Generation Frontend Action ---------===//
Daniel Dunbarc13935e2008-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 Dunbarc1b17292010-06-15 17:48:49 +000010#include "clang/CodeGen/CodeGenAction.h"
Chris Lattner5bbb3c82009-03-29 16:50:03 +000011#include "clang/AST/ASTConsumer.h"
Daniel Dunbarb9bbd542009-11-15 06:48:46 +000012#include "clang/AST/ASTContext.h"
Chris Lattner5bbb3c82009-03-29 16:50:03 +000013#include "clang/AST/DeclGroup.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000014#include "clang/Basic/FileManager.h"
15#include "clang/Basic/SourceManager.h"
16#include "clang/Basic/TargetInfo.h"
Daniel Dunbarc1b17292010-06-15 17:48:49 +000017#include "clang/CodeGen/BackendUtil.h"
Daniel Dunbarb9bbd542009-11-15 06:48:46 +000018#include "clang/CodeGen/ModuleBuilder.h"
Daniel Dunbarcea0c702010-02-25 04:37:45 +000019#include "clang/Frontend/CompilerInstance.h"
Daniel Dunbaracadc552009-12-03 09:12:54 +000020#include "clang/Frontend/FrontendDiagnostic.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000021#include "llvm/ADT/OwningPtr.h"
22#include "llvm/ADT/SmallString.h"
23#include "llvm/Bitcode/ReaderWriter.h"
Quentin Colombet728c5542014-02-06 18:30:43 +000024#include "llvm/IR/DiagnosticInfo.h"
25#include "llvm/IR/DiagnosticPrinter.h"
Chandler Carruthffd55512013-01-02 11:45:17 +000026#include "llvm/IR/LLVMContext.h"
27#include "llvm/IR/Module.h"
Chandler Carruthb45836a2013-03-26 02:25:54 +000028#include "llvm/IRReader/IRReader.h"
Chandler Carruth00fa3f72014-03-06 03:46:44 +000029#include "llvm/Linker/Linker.h"
Daniel Dunbar3e111522010-06-07 23:21:04 +000030#include "llvm/Pass.h"
Chris Lattner5ec32e72010-04-06 18:38:50 +000031#include "llvm/Support/MemoryBuffer.h"
32#include "llvm/Support/SourceMgr.h"
Chris Lattner263d64c2009-02-18 01:37:30 +000033#include "llvm/Support/Timer.h"
Daniel Dunbarc13935e2008-10-21 23:49:24 +000034using namespace clang;
35using namespace llvm;
36
Nico Weber2992efa2011-01-25 20:34:14 +000037namespace clang {
Benjamin Kramer16634c22009-11-28 10:07:24 +000038 class BackendConsumer : public ASTConsumer {
David Blaikie68e081d2011-12-20 02:48:34 +000039 virtual void anchor();
David Blaikie9c902b52011-09-25 23:23:43 +000040 DiagnosticsEngine &Diags;
Daniel Dunbarc13935e2008-10-21 23:49:24 +000041 BackendAction Action;
Daniel Dunbarde182242009-11-30 08:39:32 +000042 const CodeGenOptions &CodeGenOpts;
Daniel Dunbarde182242009-11-30 08:39:32 +000043 const TargetOptions &TargetOpts;
Dan Gohmanfec0ff82011-07-05 22:02:36 +000044 const LangOptions &LangOpts;
Chris Lattner0e62c1c2011-07-23 10:55:15 +000045 raw_ostream *AsmOutStream;
Chris Lattnereae6cb62009-03-05 08:00:35 +000046 ASTContext *Context;
Daniel Dunbarb3a36cf2008-10-29 08:50:02 +000047
Chris Lattner263d64c2009-02-18 01:37:30 +000048 Timer LLVMIRGeneration;
Mike Stump11289f42009-09-09 15:08:12 +000049
Dylan Noblesmithe2778992012-02-05 02:12:40 +000050 OwningPtr<CodeGenerator> Gen;
Mike Stump11289f42009-09-09 15:08:12 +000051
Dylan Noblesmithe2778992012-02-05 02:12:40 +000052 OwningPtr<llvm::Module> TheModule, LinkModule;
Daniel Dunbarc13935e2008-10-21 23:49:24 +000053
Mike Stump11289f42009-09-09 15:08:12 +000054 public:
David Blaikie9c902b52011-09-25 23:23:43 +000055 BackendConsumer(BackendAction action, DiagnosticsEngine &_Diags,
Daniel Dunbar6d5824f2010-06-07 23:19:17 +000056 const CodeGenOptions &compopts,
Dan Gohmanfec0ff82011-07-05 22:02:36 +000057 const TargetOptions &targetopts,
Rafael Espindola666a2ab2013-12-18 16:38:48 +000058 const LangOptions &langopts, bool TimePasses,
59 const std::string &infile, llvm::Module *LinkModule,
60 raw_ostream *OS, LLVMContext &C)
61 : Diags(_Diags), Action(action), CodeGenOpts(compopts),
62 TargetOpts(targetopts), LangOpts(langopts), AsmOutStream(OS),
63 Context(), LLVMIRGeneration("LLVM IR Generation Time"),
64 Gen(CreateLLVMCodeGen(Diags, infile, compopts, targetopts, C)),
65 LinkModule(LinkModule) {
Daniel Dunbar8e705052009-11-30 08:39:52 +000066 llvm::TimePassesIsEnabled = TimePasses;
Chris Lattnerdeffa132009-02-18 01:23:44 +000067 }
Daniel Dunbarc13935e2008-10-21 23:49:24 +000068
Ahmed Charles9a16beb2014-03-07 19:33:25 +000069 llvm::Module *takeModule() { return TheModule.release(); }
70 llvm::Module *takeLinkModule() { return LinkModule.release(); }
Daniel Dunbar400a6932010-02-25 04:37:50 +000071
Rafael Espindoladf88f6f2012-03-08 15:51:03 +000072 virtual void HandleCXXStaticMemberVarInstantiation(VarDecl *VD) {
73 Gen->HandleCXXStaticMemberVarInstantiation(VD);
Rafael Espindola189fa742012-03-05 10:54:55 +000074 }
75
Chris Lattner5cf49fe2009-03-28 02:18:25 +000076 virtual void Initialize(ASTContext &Ctx) {
77 Context = &Ctx;
Mike Stump11289f42009-09-09 15:08:12 +000078
Daniel Dunbar8e705052009-11-30 08:39:52 +000079 if (llvm::TimePassesIsEnabled)
Chris Lattner263d64c2009-02-18 01:37:30 +000080 LLVMIRGeneration.startTimer();
Mike Stump11289f42009-09-09 15:08:12 +000081
Chris Lattner5cf49fe2009-03-28 02:18:25 +000082 Gen->Initialize(Ctx);
Daniel Dunbarc13935e2008-10-21 23:49:24 +000083
Daniel Dunbar400a6932010-02-25 04:37:50 +000084 TheModule.reset(Gen->GetModule());
Mike Stump11289f42009-09-09 15:08:12 +000085
Daniel Dunbar8e705052009-11-30 08:39:52 +000086 if (llvm::TimePassesIsEnabled)
Chris Lattner263d64c2009-02-18 01:37:30 +000087 LLVMIRGeneration.stopTimer();
Daniel Dunbarc13935e2008-10-21 23:49:24 +000088 }
Mike Stump11289f42009-09-09 15:08:12 +000089
Argyrios Kyrtzidis841dd882011-11-18 00:26:59 +000090 virtual bool HandleTopLevelDecl(DeclGroupRef D) {
Chris Lattner5bbb3c82009-03-29 16:50:03 +000091 PrettyStackTraceDecl CrashInfo(*D.begin(), SourceLocation(),
Chris Lattnereae6cb62009-03-05 08:00:35 +000092 Context->getSourceManager(),
93 "LLVM IR generation of declaration");
Mike Stump11289f42009-09-09 15:08:12 +000094
Daniel Dunbar8e705052009-11-30 08:39:52 +000095 if (llvm::TimePassesIsEnabled)
Chris Lattner263d64c2009-02-18 01:37:30 +000096 LLVMIRGeneration.startTimer();
Chris Lattner5bbb3c82009-03-29 16:50:03 +000097
Daniel Dunbarc13935e2008-10-21 23:49:24 +000098 Gen->HandleTopLevelDecl(D);
Chris Lattner263d64c2009-02-18 01:37:30 +000099
Daniel Dunbar8e705052009-11-30 08:39:52 +0000100 if (llvm::TimePassesIsEnabled)
Chris Lattner263d64c2009-02-18 01:37:30 +0000101 LLVMIRGeneration.stopTimer();
Argyrios Kyrtzidis841dd882011-11-18 00:26:59 +0000102
103 return true;
Daniel Dunbarc13935e2008-10-21 23:49:24 +0000104 }
Mike Stump11289f42009-09-09 15:08:12 +0000105
Chris Lattnercf169832009-03-28 04:11:33 +0000106 virtual void HandleTranslationUnit(ASTContext &C) {
Chris Lattnereae6cb62009-03-05 08:00:35 +0000107 {
Chris Lattnere46de752009-03-06 06:46:31 +0000108 PrettyStackTraceString CrashInfo("Per-file LLVM IR generation");
Daniel Dunbar8e705052009-11-30 08:39:52 +0000109 if (llvm::TimePassesIsEnabled)
Chris Lattnereae6cb62009-03-05 08:00:35 +0000110 LLVMIRGeneration.startTimer();
Chris Lattner263d64c2009-02-18 01:37:30 +0000111
Chris Lattnercf169832009-03-28 04:11:33 +0000112 Gen->HandleTranslationUnit(C);
Daniel Dunbara94d8732008-11-11 06:35:39 +0000113
Daniel Dunbar8e705052009-11-30 08:39:52 +0000114 if (llvm::TimePassesIsEnabled)
Chris Lattnereae6cb62009-03-05 08:00:35 +0000115 LLVMIRGeneration.stopTimer();
116 }
Chris Lattner263d64c2009-02-18 01:37:30 +0000117
Daniel Dunbarf976d1b2010-06-07 23:20:08 +0000118 // Silently ignore if we weren't initialized for some reason.
Daniel Dunbar3e111522010-06-07 23:21:04 +0000119 if (!TheModule)
Daniel Dunbarf976d1b2010-06-07 23:20:08 +0000120 return;
Mike Stump11289f42009-09-09 15:08:12 +0000121
Daniel Dunbarf976d1b2010-06-07 23:20:08 +0000122 // Make sure IR generation is happy with the module. This is released by
123 // the module provider.
Douglas Gregorde3ef502011-11-30 23:21:26 +0000124 llvm::Module *M = Gen->ReleaseModule();
Daniel Dunbarf976d1b2010-06-07 23:20:08 +0000125 if (!M) {
126 // The module has been released by IR gen on failures, do not double
127 // free.
Ahmed Charles9a16beb2014-03-07 19:33:25 +0000128 TheModule.release();
Daniel Dunbarf976d1b2010-06-07 23:20:08 +0000129 return;
130 }
131
132 assert(TheModule.get() == M &&
133 "Unexpected module change during IR generation");
134
Peter Collingbournef1d76db2011-10-30 17:30:44 +0000135 // Link LinkModule into this module if present, preserving its validity.
136 if (LinkModule) {
137 std::string ErrorMsg;
138 if (Linker::LinkModules(M, LinkModule.get(), Linker::PreserveSource,
139 &ErrorMsg)) {
140 Diags.Report(diag::err_fe_cannot_link_module)
141 << LinkModule->getModuleIdentifier() << ErrorMsg;
142 return;
143 }
144 }
145
Daniel Dunbarf976d1b2010-06-07 23:20:08 +0000146 // Install an inline asm handler so that diagnostics get printed through
147 // our diagnostics hooks.
148 LLVMContext &Ctx = TheModule->getContext();
Chris Lattner068f2ab2010-11-17 08:13:04 +0000149 LLVMContext::InlineAsmDiagHandlerTy OldHandler =
150 Ctx.getInlineAsmDiagnosticHandler();
Daniel Dunbarf976d1b2010-06-07 23:20:08 +0000151 void *OldContext = Ctx.getInlineAsmDiagnosticContext();
Chris Lattner068f2ab2010-11-17 08:13:04 +0000152 Ctx.setInlineAsmDiagnosticHandler(InlineAsmDiagHandler, this);
Daniel Dunbarf976d1b2010-06-07 23:20:08 +0000153
Quentin Colombet728c5542014-02-06 18:30:43 +0000154 LLVMContext::DiagnosticHandlerTy OldDiagnosticHandler =
155 Ctx.getDiagnosticHandler();
156 void *OldDiagnosticContext = Ctx.getDiagnosticContext();
157 Ctx.setDiagnosticHandler(DiagnosticHandler, this);
158
Dan Gohmanfec0ff82011-07-05 22:02:36 +0000159 EmitBackendOutput(Diags, CodeGenOpts, TargetOpts, LangOpts,
Alp Tokere83b9062014-01-02 15:08:04 +0000160 C.getTargetInfo().getTargetDescription(),
Daniel Dunbar3e111522010-06-07 23:21:04 +0000161 TheModule.get(), Action, AsmOutStream);
Rafael Espindola666a2ab2013-12-18 16:38:48 +0000162
Daniel Dunbarf976d1b2010-06-07 23:20:08 +0000163 Ctx.setInlineAsmDiagnosticHandler(OldHandler, OldContext);
Quentin Colombet728c5542014-02-06 18:30:43 +0000164
165 Ctx.setDiagnosticHandler(OldDiagnosticHandler, OldDiagnosticContext);
Daniel Dunbarc13935e2008-10-21 23:49:24 +0000166 }
Mike Stump11289f42009-09-09 15:08:12 +0000167
Daniel Dunbarc13935e2008-10-21 23:49:24 +0000168 virtual void HandleTagDeclDefinition(TagDecl *D) {
Chris Lattnereae6cb62009-03-05 08:00:35 +0000169 PrettyStackTraceDecl CrashInfo(D, SourceLocation(),
170 Context->getSourceManager(),
171 "LLVM IR generation of declaration");
Daniel Dunbarc13935e2008-10-21 23:49:24 +0000172 Gen->HandleTagDeclDefinition(D);
173 }
Douglas Gregorbeecd582009-04-21 17:11:58 +0000174
David Blaikie48ad6dc2013-07-13 21:08:14 +0000175 virtual void HandleTagDeclRequiredDefinition(const TagDecl *D) {
176 Gen->HandleTagDeclRequiredDefinition(D);
177 }
178
Douglas Gregorbeecd582009-04-21 17:11:58 +0000179 virtual void CompleteTentativeDefinition(VarDecl *D) {
180 Gen->CompleteTentativeDefinition(D);
181 }
Daniel Dunbar50aa0a52010-04-29 16:29:09 +0000182
Douglas Gregor88d292c2010-05-13 16:44:06 +0000183 virtual void HandleVTable(CXXRecordDecl *RD, bool DefinitionRequired) {
184 Gen->HandleVTable(RD, DefinitionRequired);
185 }
186
Reid Klecknere43f0fe2013-05-08 13:44:39 +0000187 virtual void HandleLinkerOptionPragma(llvm::StringRef Opts) {
188 Gen->HandleLinkerOptionPragma(Opts);
189 }
190
Aaron Ballman5d041be2013-06-04 02:07:14 +0000191 virtual void HandleDetectMismatch(llvm::StringRef Name,
192 llvm::StringRef Value) {
193 Gen->HandleDetectMismatch(Name, Value);
194 }
195
Reid Klecknere43f0fe2013-05-08 13:44:39 +0000196 virtual void HandleDependentLibrary(llvm::StringRef Opts) {
197 Gen->HandleDependentLibrary(Opts);
198 }
199
Chris Lattner5ec32e72010-04-06 18:38:50 +0000200 static void InlineAsmDiagHandler(const llvm::SMDiagnostic &SM,void *Context,
201 unsigned LocCookie) {
202 SourceLocation Loc = SourceLocation::getFromRawEncoding(LocCookie);
203 ((BackendConsumer*)Context)->InlineAsmDiagHandler2(SM, Loc);
204 }
Daniel Dunbar50aa0a52010-04-29 16:29:09 +0000205
Quentin Colombet728c5542014-02-06 18:30:43 +0000206 static void DiagnosticHandler(const llvm::DiagnosticInfo &DI,
207 void *Context) {
208 ((BackendConsumer *)Context)->DiagnosticHandlerImpl(DI);
209 }
210
Chris Lattner5ec32e72010-04-06 18:38:50 +0000211 void InlineAsmDiagHandler2(const llvm::SMDiagnostic &,
212 SourceLocation LocCookie);
Quentin Colombet728c5542014-02-06 18:30:43 +0000213
214 void DiagnosticHandlerImpl(const llvm::DiagnosticInfo &DI);
215 /// \brief Specialized handler for InlineAsm diagnostic.
216 /// \return True if the diagnostic has been successfully reported, false
217 /// otherwise.
218 bool InlineAsmDiagHandler(const llvm::DiagnosticInfoInlineAsm &D);
219 /// \brief Specialized handler for StackSize diagnostic.
220 /// \return True if the diagnostic has been successfully reported, false
221 /// otherwise.
222 bool StackSizeDiagHandler(const llvm::DiagnosticInfoStackSize &D);
Mike Stump11289f42009-09-09 15:08:12 +0000223 };
David Blaikie68e081d2011-12-20 02:48:34 +0000224
225 void BackendConsumer::anchor() {}
Daniel Dunbarc13935e2008-10-21 23:49:24 +0000226}
227
Chris Lattner79f67a72010-04-08 00:23:06 +0000228/// ConvertBackendLocation - Convert a location in a temporary llvm::SourceMgr
229/// buffer to be a valid FullSourceLoc.
230static FullSourceLoc ConvertBackendLocation(const llvm::SMDiagnostic &D,
231 SourceManager &CSM) {
232 // Get both the clang and llvm source managers. The location is relative to
233 // a memory buffer that the LLVM Source Manager is handling, we need to add
Daniel Dunbar50aa0a52010-04-29 16:29:09 +0000234 // a copy to the Clang source manager.
Chris Lattner79f67a72010-04-08 00:23:06 +0000235 const llvm::SourceMgr &LSM = *D.getSourceMgr();
Daniel Dunbar50aa0a52010-04-29 16:29:09 +0000236
Chris Lattner79f67a72010-04-08 00:23:06 +0000237 // We need to copy the underlying LLVM memory buffer because llvm::SourceMgr
238 // already owns its one and clang::SourceManager wants to own its one.
239 const MemoryBuffer *LBuf =
240 LSM.getMemoryBuffer(LSM.FindBufferContainingLoc(D.getLoc()));
Daniel Dunbar50aa0a52010-04-29 16:29:09 +0000241
Chris Lattner79f67a72010-04-08 00:23:06 +0000242 // Create the copy and transfer ownership to clang::SourceManager.
243 llvm::MemoryBuffer *CBuf =
244 llvm::MemoryBuffer::getMemBufferCopy(LBuf->getBuffer(),
245 LBuf->getBufferIdentifier());
246 FileID FID = CSM.createFileIDForMemBuffer(CBuf);
Daniel Dunbar50aa0a52010-04-29 16:29:09 +0000247
Chris Lattner79f67a72010-04-08 00:23:06 +0000248 // Translate the offset into the file.
249 unsigned Offset = D.getLoc().getPointer() - LBuf->getBufferStart();
Daniel Dunbar50aa0a52010-04-29 16:29:09 +0000250 SourceLocation NewLoc =
Argyrios Kyrtzidise6e67de2011-09-19 20:40:19 +0000251 CSM.getLocForStartOfFile(FID).getLocWithOffset(Offset);
Chris Lattner79f67a72010-04-08 00:23:06 +0000252 return FullSourceLoc(NewLoc, CSM);
253}
254
Chris Lattner6d672132010-04-06 17:52:14 +0000255
Chris Lattner5ec32e72010-04-06 18:38:50 +0000256/// InlineAsmDiagHandler2 - This function is invoked when the backend hits an
257/// error parsing inline asm. The SMDiagnostic indicates the error relative to
Daniel Dunbar50aa0a52010-04-29 16:29:09 +0000258/// the temporary memory buffer that the inline asm parser has set up.
Chris Lattner5ec32e72010-04-06 18:38:50 +0000259void BackendConsumer::InlineAsmDiagHandler2(const llvm::SMDiagnostic &D,
260 SourceLocation LocCookie) {
261 // There are a couple of different kinds of errors we could get here. First,
262 // we re-format the SMDiagnostic in terms of a clang diagnostic.
Argyrios Kyrtzidisa11b35a2012-02-01 06:36:49 +0000263
264 // Strip "error: " off the start of the message string.
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000265 StringRef Message = D.getMessage();
Argyrios Kyrtzidisa11b35a2012-02-01 06:36:49 +0000266 if (Message.startswith("error: "))
267 Message = Message.substr(7);
Chris Lattner5ec32e72010-04-06 18:38:50 +0000268
Chris Lattnerc7ed7ea2010-06-15 00:03:12 +0000269 // If the SMDiagnostic has an inline asm source location, translate it.
Chris Lattner5ec32e72010-04-06 18:38:50 +0000270 FullSourceLoc Loc;
Chris Lattner79f67a72010-04-08 00:23:06 +0000271 if (D.getLoc() != SMLoc())
272 Loc = ConvertBackendLocation(D, Context->getSourceManager());
Chris Lattnerf4a4bec2012-01-31 06:13:55 +0000273
Argyrios Kyrtzidisa11b35a2012-02-01 06:36:49 +0000274
Chris Lattnerc7ed7ea2010-06-15 00:03:12 +0000275 // If this problem has clang-level source location information, report the
276 // issue as being an error in the source with a note showing the instantiated
277 // code.
278 if (LocCookie.isValid()) {
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +0000279 Diags.Report(LocCookie, diag::err_fe_inline_asm).AddString(Message);
Chris Lattnerc7ed7ea2010-06-15 00:03:12 +0000280
Benjamin Kramere06b2b72011-10-16 10:48:28 +0000281 if (D.getLoc().isValid()) {
282 DiagnosticBuilder B = Diags.Report(Loc, diag::note_fe_inline_asm_here);
283 // Convert the SMDiagnostic ranges into SourceRange and attach them
284 // to the diagnostic.
285 for (unsigned i = 0, e = D.getRanges().size(); i != e; ++i) {
286 std::pair<unsigned, unsigned> Range = D.getRanges()[i];
287 unsigned Column = D.getColumnNo();
288 B << SourceRange(Loc.getLocWithOffset(Range.first - Column),
289 Loc.getLocWithOffset(Range.second - Column));
290 }
291 }
Chris Lattnerc7ed7ea2010-06-15 00:03:12 +0000292 return;
293 }
294
Chris Lattner57540c52011-04-15 05:22:18 +0000295 // Otherwise, report the backend error as occurring in the generated .s file.
Chris Lattnerc7ed7ea2010-06-15 00:03:12 +0000296 // If Loc is invalid, we still need to report the error, it just gets no
297 // location info.
298 Diags.Report(Loc, diag::err_fe_inline_asm).AddString(Message);
Chris Lattner5ec32e72010-04-06 18:38:50 +0000299}
300
Quentin Colombet728c5542014-02-06 18:30:43 +0000301#define ComputeDiagID(Severity, GroupName, DiagID) \
302 do { \
303 switch (Severity) { \
304 case llvm::DS_Error: \
305 DiagID = diag::err_fe_##GroupName; \
306 break; \
307 case llvm::DS_Warning: \
308 DiagID = diag::warn_fe_##GroupName; \
309 break; \
Tobias Grosser74160242014-02-28 09:11:08 +0000310 case llvm::DS_Remark: \
311 llvm_unreachable("'remark' severity not expected"); \
312 break; \
313 case llvm::DS_Note: \
314 DiagID = diag::note_fe_##GroupName; \
315 break; \
316 } \
317 } while (false)
318
319#define ComputeDiagRemarkID(Severity, GroupName, DiagID) \
320 do { \
321 switch (Severity) { \
322 case llvm::DS_Error: \
323 DiagID = diag::err_fe_##GroupName; \
324 break; \
325 case llvm::DS_Warning: \
326 DiagID = diag::warn_fe_##GroupName; \
327 break; \
328 case llvm::DS_Remark: \
329 DiagID = diag::remark_fe_##GroupName; \
330 break; \
Quentin Colombet728c5542014-02-06 18:30:43 +0000331 case llvm::DS_Note: \
332 DiagID = diag::note_fe_##GroupName; \
333 break; \
334 } \
335 } while (false)
336
337bool
338BackendConsumer::InlineAsmDiagHandler(const llvm::DiagnosticInfoInlineAsm &D) {
339 unsigned DiagID;
340 ComputeDiagID(D.getSeverity(), inline_asm, DiagID);
341 std::string Message = D.getMsgStr().str();
342
343 // If this problem has clang-level source location information, report the
Tobias Grosserbd25beb2014-02-26 10:21:56 +0000344 // issue as being a problem in the source with a note showing the instantiated
Quentin Colombet728c5542014-02-06 18:30:43 +0000345 // code.
346 SourceLocation LocCookie =
347 SourceLocation::getFromRawEncoding(D.getLocCookie());
348 if (LocCookie.isValid())
349 Diags.Report(LocCookie, DiagID).AddString(Message);
350 else {
351 // Otherwise, report the backend diagnostic as occurring in the generated
352 // .s file.
353 // If Loc is invalid, we still need to report the diagnostic, it just gets
354 // no location info.
355 FullSourceLoc Loc;
356 Diags.Report(Loc, DiagID).AddString(Message);
357 }
358 // We handled all the possible severities.
359 return true;
360}
361
362bool
363BackendConsumer::StackSizeDiagHandler(const llvm::DiagnosticInfoStackSize &D) {
364 if (D.getSeverity() != llvm::DS_Warning)
365 // For now, the only support we have for StackSize diagnostic is warning.
366 // We do not know how to format other severities.
367 return false;
368
369 // FIXME: We should demangle the function name.
370 // FIXME: Is there a way to get a location for that function?
371 FullSourceLoc Loc;
372 Diags.Report(Loc, diag::warn_fe_backend_frame_larger_than)
373 << D.getStackSize() << D.getFunction().getName();
374 return true;
375}
376
377/// \brief This function is invoked when the backend needs
378/// to report something to the user.
379void BackendConsumer::DiagnosticHandlerImpl(const DiagnosticInfo &DI) {
380 unsigned DiagID = diag::err_fe_inline_asm;
381 llvm::DiagnosticSeverity Severity = DI.getSeverity();
382 // Get the diagnostic ID based.
383 switch (DI.getKind()) {
384 case llvm::DK_InlineAsm:
385 if (InlineAsmDiagHandler(cast<DiagnosticInfoInlineAsm>(DI)))
386 return;
387 ComputeDiagID(Severity, inline_asm, DiagID);
388 break;
389 case llvm::DK_StackSize:
390 if (StackSizeDiagHandler(cast<DiagnosticInfoStackSize>(DI)))
391 return;
392 ComputeDiagID(Severity, backend_frame_larger_than, DiagID);
393 break;
394 default:
395 // Plugin IDs are not bound to any value as they are set dynamically.
Tobias Grosser74160242014-02-28 09:11:08 +0000396 ComputeDiagRemarkID(Severity, backend_plugin, DiagID);
Quentin Colombet728c5542014-02-06 18:30:43 +0000397 break;
398 }
399 std::string MsgStorage;
400 {
401 raw_string_ostream Stream(MsgStorage);
402 DiagnosticPrinterRawOStream DP(Stream);
403 DI.print(DP);
404 }
405
406 // Report the backend message using the usual diagnostic mechanism.
407 FullSourceLoc Loc;
408 Diags.Report(Loc, DiagID).AddString(MsgStorage);
409}
410#undef ComputeDiagID
Daniel Dunbarcea0c702010-02-25 04:37:45 +0000411
Peter Collingbourne8f5cf742011-02-19 23:03:58 +0000412CodeGenAction::CodeGenAction(unsigned _Act, LLVMContext *_VMContext)
Peter Collingbournef1d76db2011-10-30 17:30:44 +0000413 : Act(_Act), LinkModule(0),
414 VMContext(_VMContext ? _VMContext : new LLVMContext),
Peter Collingbourne8f5cf742011-02-19 23:03:58 +0000415 OwnsVMContext(!_VMContext) {}
Daniel Dunbarcea0c702010-02-25 04:37:45 +0000416
Peter Collingbourne8f5cf742011-02-19 23:03:58 +0000417CodeGenAction::~CodeGenAction() {
418 TheModule.reset();
419 if (OwnsVMContext)
420 delete VMContext;
421}
Daniel Dunbare8ecf9a2010-02-25 20:37:44 +0000422
Daniel Dunbar6f8362c2010-06-07 23:27:59 +0000423bool CodeGenAction::hasIRSupport() const { return true; }
424
Daniel Dunbar400a6932010-02-25 04:37:50 +0000425void CodeGenAction::EndSourceFileAction() {
426 // If the consumer creation failed, do nothing.
427 if (!getCompilerInstance().hasASTConsumer())
428 return;
429
Peter Collingbournef1d76db2011-10-30 17:30:44 +0000430 // If we were given a link module, release consumer's ownership of it.
431 if (LinkModule)
432 BEConsumer->takeLinkModule();
433
Daniel Dunbar400a6932010-02-25 04:37:50 +0000434 // Steal the module from the consumer.
Nico Weber2992efa2011-01-25 20:34:14 +0000435 TheModule.reset(BEConsumer->takeModule());
Daniel Dunbar400a6932010-02-25 04:37:50 +0000436}
437
Ahmed Charles9a16beb2014-03-07 19:33:25 +0000438llvm::Module *CodeGenAction::takeModule() { return TheModule.release(); }
Daniel Dunbar400a6932010-02-25 04:37:50 +0000439
Peter Collingbourne8f5cf742011-02-19 23:03:58 +0000440llvm::LLVMContext *CodeGenAction::takeLLVMContext() {
441 OwnsVMContext = false;
442 return VMContext;
443}
444
Daniel Dunbar6f8362c2010-06-07 23:27:59 +0000445static raw_ostream *GetOutputStream(CompilerInstance &CI,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000446 StringRef InFile,
Daniel Dunbar6f8362c2010-06-07 23:27:59 +0000447 BackendAction Action) {
448 switch (Action) {
449 case Backend_EmitAssembly:
450 return CI.createDefaultOutputFile(false, InFile, "s");
451 case Backend_EmitLL:
452 return CI.createDefaultOutputFile(false, InFile, "ll");
453 case Backend_EmitBC:
454 return CI.createDefaultOutputFile(true, InFile, "bc");
455 case Backend_EmitNothing:
456 return 0;
457 case Backend_EmitMCNull:
458 case Backend_EmitObj:
459 return CI.createDefaultOutputFile(true, InFile, "o");
460 }
461
David Blaikie83d382b2011-09-23 05:06:16 +0000462 llvm_unreachable("Invalid action!");
Daniel Dunbar6f8362c2010-06-07 23:27:59 +0000463}
464
Daniel Dunbarcea0c702010-02-25 04:37:45 +0000465ASTConsumer *CodeGenAction::CreateASTConsumer(CompilerInstance &CI,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000466 StringRef InFile) {
Daniel Dunbarcea0c702010-02-25 04:37:45 +0000467 BackendAction BA = static_cast<BackendAction>(Act);
Dylan Noblesmithe2778992012-02-05 02:12:40 +0000468 OwningPtr<raw_ostream> OS(GetOutputStream(CI, InFile, BA));
Daniel Dunbarcea0c702010-02-25 04:37:45 +0000469 if (BA != Backend_EmitNothing && !OS)
470 return 0;
471
Peter Collingbournef1d76db2011-10-30 17:30:44 +0000472 llvm::Module *LinkModuleToUse = LinkModule;
473
474 // If we were not given a link module, and the user requested that one be
475 // loaded from bitcode, do so now.
476 const std::string &LinkBCFile = CI.getCodeGenOpts().LinkBitcodeFile;
477 if (!LinkModuleToUse && !LinkBCFile.empty()) {
478 std::string ErrorStr;
479
480 llvm::MemoryBuffer *BCBuf =
481 CI.getFileManager().getBufferForFile(LinkBCFile, &ErrorStr);
482 if (!BCBuf) {
483 CI.getDiagnostics().Report(diag::err_cannot_open_file)
484 << LinkBCFile << ErrorStr;
485 return 0;
486 }
487
Rafael Espindola6b6004a2014-01-13 18:31:09 +0000488 ErrorOr<llvm::Module *> ModuleOrErr =
489 getLazyBitcodeModule(BCBuf, *VMContext);
490 if (error_code EC = ModuleOrErr.getError()) {
Peter Collingbournef1d76db2011-10-30 17:30:44 +0000491 CI.getDiagnostics().Report(diag::err_cannot_open_file)
Rafael Espindola6b6004a2014-01-13 18:31:09 +0000492 << LinkBCFile << EC.message();
Peter Collingbournef1d76db2011-10-30 17:30:44 +0000493 return 0;
494 }
Rafael Espindola6b6004a2014-01-13 18:31:09 +0000495 LinkModuleToUse = ModuleOrErr.get();
Peter Collingbournef1d76db2011-10-30 17:30:44 +0000496 }
497
Ahmed Charles9a16beb2014-03-07 19:33:25 +0000498 BEConsumer = new BackendConsumer(BA, CI.getDiagnostics(), CI.getCodeGenOpts(),
499 CI.getTargetOpts(), CI.getLangOpts(),
500 CI.getFrontendOpts().ShowTimers, InFile,
501 LinkModuleToUse, OS.release(), *VMContext);
Nico Weber2992efa2011-01-25 20:34:14 +0000502 return BEConsumer;
Daniel Dunbarc13935e2008-10-21 23:49:24 +0000503}
Daniel Dunbarcea0c702010-02-25 04:37:45 +0000504
Daniel Dunbar6f8362c2010-06-07 23:27:59 +0000505void CodeGenAction::ExecuteAction() {
506 // If this is an IR file, we have to treat it specially.
507 if (getCurrentFileKind() == IK_LLVM_IR) {
508 BackendAction BA = static_cast<BackendAction>(Act);
509 CompilerInstance &CI = getCompilerInstance();
510 raw_ostream *OS = GetOutputStream(CI, getCurrentFile(), BA);
511 if (BA != Backend_EmitNothing && !OS)
512 return;
513
514 bool Invalid;
515 SourceManager &SM = CI.getSourceManager();
516 const llvm::MemoryBuffer *MainFile = SM.getBuffer(SM.getMainFileID(),
517 &Invalid);
518 if (Invalid)
519 return;
520
521 // FIXME: This is stupid, IRReader shouldn't take ownership.
522 llvm::MemoryBuffer *MainFileCopy =
523 llvm::MemoryBuffer::getMemBufferCopy(MainFile->getBuffer(),
Argyrios Kyrtzidis873c8582012-11-09 19:40:39 +0000524 getCurrentFile());
Daniel Dunbar6f8362c2010-06-07 23:27:59 +0000525
526 llvm::SMDiagnostic Err;
Peter Collingbourne8f5cf742011-02-19 23:03:58 +0000527 TheModule.reset(ParseIR(MainFileCopy, Err, *VMContext));
Daniel Dunbar6f8362c2010-06-07 23:27:59 +0000528 if (!TheModule) {
529 // Translate from the diagnostic info to the SourceManager location.
Argyrios Kyrtzidis27bf76d2011-09-19 20:40:38 +0000530 SourceLocation Loc = SM.translateFileLineCol(
Daniel Dunbar6f8362c2010-06-07 23:27:59 +0000531 SM.getFileEntryForID(SM.getMainFileID()), Err.getLineNo(),
532 Err.getColumnNo() + 1);
533
Alp Tokerbc043f22013-12-21 05:20:03 +0000534 // Strip off a leading diagnostic code if there is one.
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000535 StringRef Msg = Err.getMessage();
Daniel Dunbar6f8362c2010-06-07 23:27:59 +0000536 if (Msg.startswith("error: "))
537 Msg = Msg.substr(7);
Benjamin Kramer778b8b82012-03-16 22:31:42 +0000538
Alp Tokerbc043f22013-12-21 05:20:03 +0000539 unsigned DiagID =
540 CI.getDiagnostics().getCustomDiagID(DiagnosticsEngine::Error, "%0");
Benjamin Kramer778b8b82012-03-16 22:31:42 +0000541
Alp Tokerbc043f22013-12-21 05:20:03 +0000542 CI.getDiagnostics().Report(Loc, DiagID) << Msg;
Daniel Dunbar6f8362c2010-06-07 23:27:59 +0000543 return;
544 }
Rafael Espindolad5e81e52013-12-20 22:01:25 +0000545 const TargetOptions &TargetOpts = CI.getTargetOpts();
546 if (TheModule->getTargetTriple() != TargetOpts.Triple) {
547 unsigned DiagID = CI.getDiagnostics().getCustomDiagID(
548 DiagnosticsEngine::Warning,
549 "overriding the module target triple with %0");
550
551 CI.getDiagnostics().Report(SourceLocation(), DiagID) << TargetOpts.Triple;
552 TheModule->setTargetTriple(TargetOpts.Triple);
553 }
Daniel Dunbar6f8362c2010-06-07 23:27:59 +0000554
Alp Tokere83b9062014-01-02 15:08:04 +0000555 EmitBackendOutput(CI.getDiagnostics(), CI.getCodeGenOpts(), TargetOpts,
556 CI.getLangOpts(), CI.getTarget().getTargetDescription(),
557 TheModule.get(), BA, OS);
Daniel Dunbar6f8362c2010-06-07 23:27:59 +0000558 return;
559 }
560
561 // Otherwise follow the normal AST path.
562 this->ASTFrontendAction::ExecuteAction();
563}
564
565//
566
David Blaikie68e081d2011-12-20 02:48:34 +0000567void EmitAssemblyAction::anchor() { }
Peter Collingbourne8f5cf742011-02-19 23:03:58 +0000568EmitAssemblyAction::EmitAssemblyAction(llvm::LLVMContext *_VMContext)
569 : CodeGenAction(Backend_EmitAssembly, _VMContext) {}
Daniel Dunbarcea0c702010-02-25 04:37:45 +0000570
David Blaikie68e081d2011-12-20 02:48:34 +0000571void EmitBCAction::anchor() { }
Peter Collingbourne8f5cf742011-02-19 23:03:58 +0000572EmitBCAction::EmitBCAction(llvm::LLVMContext *_VMContext)
573 : CodeGenAction(Backend_EmitBC, _VMContext) {}
Daniel Dunbarcea0c702010-02-25 04:37:45 +0000574
David Blaikie68e081d2011-12-20 02:48:34 +0000575void EmitLLVMAction::anchor() { }
Peter Collingbourne8f5cf742011-02-19 23:03:58 +0000576EmitLLVMAction::EmitLLVMAction(llvm::LLVMContext *_VMContext)
577 : CodeGenAction(Backend_EmitLL, _VMContext) {}
Daniel Dunbarcea0c702010-02-25 04:37:45 +0000578
David Blaikie68e081d2011-12-20 02:48:34 +0000579void EmitLLVMOnlyAction::anchor() { }
Peter Collingbourne8f5cf742011-02-19 23:03:58 +0000580EmitLLVMOnlyAction::EmitLLVMOnlyAction(llvm::LLVMContext *_VMContext)
581 : CodeGenAction(Backend_EmitNothing, _VMContext) {}
Daniel Dunbarcea0c702010-02-25 04:37:45 +0000582
David Blaikie68e081d2011-12-20 02:48:34 +0000583void EmitCodeGenOnlyAction::anchor() { }
Peter Collingbourne8f5cf742011-02-19 23:03:58 +0000584EmitCodeGenOnlyAction::EmitCodeGenOnlyAction(llvm::LLVMContext *_VMContext)
585 : CodeGenAction(Backend_EmitMCNull, _VMContext) {}
Daniel Dunbar4c77a642010-05-25 18:41:01 +0000586
David Blaikie68e081d2011-12-20 02:48:34 +0000587void EmitObjAction::anchor() { }
Peter Collingbourne8f5cf742011-02-19 23:03:58 +0000588EmitObjAction::EmitObjAction(llvm::LLVMContext *_VMContext)
589 : CodeGenAction(Backend_EmitObj, _VMContext) {}