blob: b5ed12aee318922111921a7a726c333fa8daf4f7 [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
Stephen Hines176edba2014-12-01 14:53:08 -080010#include "CoverageMappingGen.h"
Chris Lattner682bf922009-03-29 16:50:03 +000011#include "clang/AST/ASTConsumer.h"
Daniel Dunbard58c03f2009-11-15 06:48:46 +000012#include "clang/AST/ASTContext.h"
Stephen Hines6bcf27b2014-05-29 04:14:42 -070013#include "clang/AST/DeclCXX.h"
Stephen Hines0e2c34f2015-03-23 12:09:02 -070014#include "clang/AST/DeclGroup.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000015#include "clang/Basic/FileManager.h"
16#include "clang/Basic/SourceManager.h"
17#include "clang/Basic/TargetInfo.h"
Daniel Dunbar9b414d32010-06-15 17:48:49 +000018#include "clang/CodeGen/BackendUtil.h"
Stephen Hines0e2c34f2015-03-23 12:09:02 -070019#include "clang/CodeGen/CodeGenAction.h"
Daniel Dunbard58c03f2009-11-15 06:48:46 +000020#include "clang/CodeGen/ModuleBuilder.h"
Daniel Dunbar4ee34612010-02-25 04:37:45 +000021#include "clang/Frontend/CompilerInstance.h"
Daniel Dunbar3be0d192009-12-03 09:12:54 +000022#include "clang/Frontend/FrontendDiagnostic.h"
Stephen Hines0e2c34f2015-03-23 12:09:02 -070023#include "clang/Lex/Preprocessor.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000024#include "llvm/ADT/SmallString.h"
25#include "llvm/Bitcode/ReaderWriter.h"
Stephen Hines6bcf27b2014-05-29 04:14:42 -070026#include "llvm/IR/DebugInfo.h"
Stephen Hines651f13c2014-04-23 16:59:28 -070027#include "llvm/IR/DiagnosticInfo.h"
28#include "llvm/IR/DiagnosticPrinter.h"
Chandler Carruth3b844ba2013-01-02 11:45:17 +000029#include "llvm/IR/LLVMContext.h"
30#include "llvm/IR/Module.h"
Chandler Carruth9cc935b2013-03-26 02:25:54 +000031#include "llvm/IRReader/IRReader.h"
Stephen Hines651f13c2014-04-23 16:59:28 -070032#include "llvm/Linker/Linker.h"
Daniel Dunbar05a7f3d2010-06-07 23:21:04 +000033#include "llvm/Pass.h"
Chris Lattner6da9eb62010-04-06 18:38:50 +000034#include "llvm/Support/MemoryBuffer.h"
35#include "llvm/Support/SourceMgr.h"
Chris Lattner6f114eb2009-02-18 01:37:30 +000036#include "llvm/Support/Timer.h"
Stephen Hines651f13c2014-04-23 16:59:28 -070037#include <memory>
Daniel Dunbard69bacc2008-10-21 23:49:24 +000038using namespace clang;
39using namespace llvm;
40
Nico Weber5aa74af2011-01-25 20:34:14 +000041namespace clang {
Benjamin Kramerbd218282009-11-28 10:07:24 +000042 class BackendConsumer : public ASTConsumer {
David Blaikie99ba9e32011-12-20 02:48:34 +000043 virtual void anchor();
David Blaikied6471f72011-09-25 23:23:43 +000044 DiagnosticsEngine &Diags;
Daniel Dunbard69bacc2008-10-21 23:49:24 +000045 BackendAction Action;
Daniel Dunbar3636e1d2009-11-30 08:39:32 +000046 const CodeGenOptions &CodeGenOpts;
Daniel Dunbar3636e1d2009-11-30 08:39:32 +000047 const TargetOptions &TargetOpts;
Dan Gohmanb18b8ad2011-07-05 22:02:36 +000048 const LangOptions &LangOpts;
Chris Lattner5f9e2722011-07-23 10:55:15 +000049 raw_ostream *AsmOutStream;
Chris Lattner49f28ca2009-03-05 08:00:35 +000050 ASTContext *Context;
Daniel Dunbar90f41302008-10-29 08:50:02 +000051
Chris Lattner6f114eb2009-02-18 01:37:30 +000052 Timer LLVMIRGeneration;
Mike Stump1eb44332009-09-09 15:08:12 +000053
Stephen Hines651f13c2014-04-23 16:59:28 -070054 std::unique_ptr<CodeGenerator> Gen;
Mike Stump1eb44332009-09-09 15:08:12 +000055
Stephen Hines651f13c2014-04-23 16:59:28 -070056 std::unique_ptr<llvm::Module> TheModule, LinkModule;
Daniel Dunbard69bacc2008-10-21 23:49:24 +000057
Mike Stump1eb44332009-09-09 15:08:12 +000058 public:
David Blaikied6471f72011-09-25 23:23:43 +000059 BackendConsumer(BackendAction action, DiagnosticsEngine &_Diags,
Daniel Dunbar6b0cf672010-06-07 23:19:17 +000060 const CodeGenOptions &compopts,
Dan Gohmanb18b8ad2011-07-05 22:02:36 +000061 const TargetOptions &targetopts,
Stephen Hines651f13c2014-04-23 16:59:28 -070062 const LangOptions &langopts, bool TimePasses,
63 const std::string &infile, llvm::Module *LinkModule,
Stephen Hines176edba2014-12-01 14:53:08 -080064 raw_ostream *OS, LLVMContext &C,
65 CoverageSourceInfo *CoverageInfo = nullptr)
Stephen Hines651f13c2014-04-23 16:59:28 -070066 : Diags(_Diags), Action(action), CodeGenOpts(compopts),
67 TargetOpts(targetopts), LangOpts(langopts), AsmOutStream(OS),
Stephen Hines0e2c34f2015-03-23 12:09:02 -070068 Context(nullptr), LLVMIRGeneration("LLVM IR Generation Time"),
69 Gen(CreateLLVMCodeGen(Diags, infile, compopts, C, CoverageInfo)),
Stephen Hines651f13c2014-04-23 16:59:28 -070070 LinkModule(LinkModule) {
Daniel Dunbarb33fbaa2009-11-30 08:39:52 +000071 llvm::TimePassesIsEnabled = TimePasses;
Chris Lattner44502662009-02-18 01:23:44 +000072 }
Daniel Dunbard69bacc2008-10-21 23:49:24 +000073
Stephen Hines176edba2014-12-01 14:53:08 -080074 std::unique_ptr<llvm::Module> takeModule() { return std::move(TheModule); }
Stephen Hines651f13c2014-04-23 16:59:28 -070075 llvm::Module *takeLinkModule() { return LinkModule.release(); }
Daniel Dunbarb954e982010-02-25 04:37:50 +000076
Stephen Hines651f13c2014-04-23 16:59:28 -070077 void HandleCXXStaticMemberVarInstantiation(VarDecl *VD) override {
Rafael Espindola02503932012-03-08 15:51:03 +000078 Gen->HandleCXXStaticMemberVarInstantiation(VD);
Rafael Espindola234fe652012-03-05 10:54:55 +000079 }
80
Stephen Hines651f13c2014-04-23 16:59:28 -070081 void Initialize(ASTContext &Ctx) override {
Chris Lattner7bb0da02009-03-28 02:18:25 +000082 Context = &Ctx;
Mike Stump1eb44332009-09-09 15:08:12 +000083
Daniel Dunbarb33fbaa2009-11-30 08:39:52 +000084 if (llvm::TimePassesIsEnabled)
Chris Lattner6f114eb2009-02-18 01:37:30 +000085 LLVMIRGeneration.startTimer();
Mike Stump1eb44332009-09-09 15:08:12 +000086
Chris Lattner7bb0da02009-03-28 02:18:25 +000087 Gen->Initialize(Ctx);
Daniel Dunbard69bacc2008-10-21 23:49:24 +000088
Daniel Dunbarb954e982010-02-25 04:37:50 +000089 TheModule.reset(Gen->GetModule());
Mike Stump1eb44332009-09-09 15:08:12 +000090
Daniel Dunbarb33fbaa2009-11-30 08:39:52 +000091 if (llvm::TimePassesIsEnabled)
Chris Lattner6f114eb2009-02-18 01:37:30 +000092 LLVMIRGeneration.stopTimer();
Daniel Dunbard69bacc2008-10-21 23:49:24 +000093 }
Mike Stump1eb44332009-09-09 15:08:12 +000094
Stephen Hines651f13c2014-04-23 16:59:28 -070095 bool HandleTopLevelDecl(DeclGroupRef D) override {
Chris Lattner682bf922009-03-29 16:50:03 +000096 PrettyStackTraceDecl CrashInfo(*D.begin(), SourceLocation(),
Chris Lattner49f28ca2009-03-05 08:00:35 +000097 Context->getSourceManager(),
98 "LLVM IR generation of declaration");
Mike Stump1eb44332009-09-09 15:08:12 +000099
Daniel Dunbarb33fbaa2009-11-30 08:39:52 +0000100 if (llvm::TimePassesIsEnabled)
Chris Lattner6f114eb2009-02-18 01:37:30 +0000101 LLVMIRGeneration.startTimer();
Chris Lattner682bf922009-03-29 16:50:03 +0000102
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000103 Gen->HandleTopLevelDecl(D);
Chris Lattner6f114eb2009-02-18 01:37:30 +0000104
Daniel Dunbarb33fbaa2009-11-30 08:39:52 +0000105 if (llvm::TimePassesIsEnabled)
Chris Lattner6f114eb2009-02-18 01:37:30 +0000106 LLVMIRGeneration.stopTimer();
Argyrios Kyrtzidis88c25962011-11-18 00:26:59 +0000107
108 return true;
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000109 }
Mike Stump1eb44332009-09-09 15:08:12 +0000110
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700111 void HandleInlineMethodDefinition(CXXMethodDecl *D) override {
112 PrettyStackTraceDecl CrashInfo(D, SourceLocation(),
113 Context->getSourceManager(),
114 "LLVM IR generation of inline method");
115 if (llvm::TimePassesIsEnabled)
116 LLVMIRGeneration.startTimer();
117
118 Gen->HandleInlineMethodDefinition(D);
119
120 if (llvm::TimePassesIsEnabled)
121 LLVMIRGeneration.stopTimer();
122 }
123
Stephen Hines651f13c2014-04-23 16:59:28 -0700124 void HandleTranslationUnit(ASTContext &C) override {
Chris Lattner49f28ca2009-03-05 08:00:35 +0000125 {
Chris Lattner14f234e2009-03-06 06:46:31 +0000126 PrettyStackTraceString CrashInfo("Per-file LLVM IR generation");
Daniel Dunbarb33fbaa2009-11-30 08:39:52 +0000127 if (llvm::TimePassesIsEnabled)
Chris Lattner49f28ca2009-03-05 08:00:35 +0000128 LLVMIRGeneration.startTimer();
Chris Lattner6f114eb2009-02-18 01:37:30 +0000129
Chris Lattnerdacbc5d2009-03-28 04:11:33 +0000130 Gen->HandleTranslationUnit(C);
Daniel Dunbard68ba0e2008-11-11 06:35:39 +0000131
Daniel Dunbarb33fbaa2009-11-30 08:39:52 +0000132 if (llvm::TimePassesIsEnabled)
Chris Lattner49f28ca2009-03-05 08:00:35 +0000133 LLVMIRGeneration.stopTimer();
134 }
Chris Lattner6f114eb2009-02-18 01:37:30 +0000135
Daniel Dunbar897c6762010-06-07 23:20:08 +0000136 // Silently ignore if we weren't initialized for some reason.
Daniel Dunbar05a7f3d2010-06-07 23:21:04 +0000137 if (!TheModule)
Daniel Dunbar897c6762010-06-07 23:20:08 +0000138 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000139
Daniel Dunbar897c6762010-06-07 23:20:08 +0000140 // Make sure IR generation is happy with the module. This is released by
141 // the module provider.
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000142 llvm::Module *M = Gen->ReleaseModule();
Daniel Dunbar897c6762010-06-07 23:20:08 +0000143 if (!M) {
144 // The module has been released by IR gen on failures, do not double
145 // free.
Stephen Hines651f13c2014-04-23 16:59:28 -0700146 TheModule.release();
Daniel Dunbar897c6762010-06-07 23:20:08 +0000147 return;
148 }
149
150 assert(TheModule.get() == M &&
151 "Unexpected module change during IR generation");
152
Peter Collingbourne22a7dfe2011-10-30 17:30:44 +0000153 // Link LinkModule into this module if present, preserving its validity.
154 if (LinkModule) {
Stephen Hines176edba2014-12-01 14:53:08 -0800155 if (Linker::LinkModules(
156 M, LinkModule.get(),
157 [=](const DiagnosticInfo &DI) { linkerDiagnosticHandler(DI); }))
Peter Collingbourne22a7dfe2011-10-30 17:30:44 +0000158 return;
Peter Collingbourne22a7dfe2011-10-30 17:30:44 +0000159 }
160
Daniel Dunbar897c6762010-06-07 23:20:08 +0000161 // Install an inline asm handler so that diagnostics get printed through
162 // our diagnostics hooks.
163 LLVMContext &Ctx = TheModule->getContext();
Chris Lattner063e4762010-11-17 08:13:04 +0000164 LLVMContext::InlineAsmDiagHandlerTy OldHandler =
165 Ctx.getInlineAsmDiagnosticHandler();
Daniel Dunbar897c6762010-06-07 23:20:08 +0000166 void *OldContext = Ctx.getInlineAsmDiagnosticContext();
Chris Lattner063e4762010-11-17 08:13:04 +0000167 Ctx.setInlineAsmDiagnosticHandler(InlineAsmDiagHandler, this);
Daniel Dunbar897c6762010-06-07 23:20:08 +0000168
Stephen Hines651f13c2014-04-23 16:59:28 -0700169 LLVMContext::DiagnosticHandlerTy OldDiagnosticHandler =
170 Ctx.getDiagnosticHandler();
171 void *OldDiagnosticContext = Ctx.getDiagnosticContext();
172 Ctx.setDiagnosticHandler(DiagnosticHandler, this);
173
Dan Gohmanb18b8ad2011-07-05 22:02:36 +0000174 EmitBackendOutput(Diags, CodeGenOpts, TargetOpts, LangOpts,
Stephen Hines651f13c2014-04-23 16:59:28 -0700175 C.getTargetInfo().getTargetDescription(),
Daniel Dunbar05a7f3d2010-06-07 23:21:04 +0000176 TheModule.get(), Action, AsmOutStream);
Stephen Hines651f13c2014-04-23 16:59:28 -0700177
Daniel Dunbar897c6762010-06-07 23:20:08 +0000178 Ctx.setInlineAsmDiagnosticHandler(OldHandler, OldContext);
Stephen Hines651f13c2014-04-23 16:59:28 -0700179
180 Ctx.setDiagnosticHandler(OldDiagnosticHandler, OldDiagnosticContext);
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000181 }
Mike Stump1eb44332009-09-09 15:08:12 +0000182
Stephen Hines651f13c2014-04-23 16:59:28 -0700183 void HandleTagDeclDefinition(TagDecl *D) override {
Chris Lattner49f28ca2009-03-05 08:00:35 +0000184 PrettyStackTraceDecl CrashInfo(D, SourceLocation(),
185 Context->getSourceManager(),
186 "LLVM IR generation of declaration");
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000187 Gen->HandleTagDeclDefinition(D);
188 }
Douglas Gregorb6c8c8b2009-04-21 17:11:58 +0000189
Stephen Hines651f13c2014-04-23 16:59:28 -0700190 void HandleTagDeclRequiredDefinition(const TagDecl *D) override {
David Blaikie658cd2c2013-07-13 21:08:14 +0000191 Gen->HandleTagDeclRequiredDefinition(D);
192 }
193
Stephen Hines651f13c2014-04-23 16:59:28 -0700194 void CompleteTentativeDefinition(VarDecl *D) override {
Douglas Gregorb6c8c8b2009-04-21 17:11:58 +0000195 Gen->CompleteTentativeDefinition(D);
196 }
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000197
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700198 void HandleVTable(CXXRecordDecl *RD) override {
199 Gen->HandleVTable(RD);
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000200 }
201
Stephen Hines651f13c2014-04-23 16:59:28 -0700202 void HandleLinkerOptionPragma(llvm::StringRef Opts) override {
Reid Kleckner3190ca92013-05-08 13:44:39 +0000203 Gen->HandleLinkerOptionPragma(Opts);
204 }
205
Stephen Hines651f13c2014-04-23 16:59:28 -0700206 void HandleDetectMismatch(llvm::StringRef Name,
207 llvm::StringRef Value) override {
Aaron Ballmana7ff62f2013-06-04 02:07:14 +0000208 Gen->HandleDetectMismatch(Name, Value);
209 }
210
Stephen Hines651f13c2014-04-23 16:59:28 -0700211 void HandleDependentLibrary(llvm::StringRef Opts) override {
Reid Kleckner3190ca92013-05-08 13:44:39 +0000212 Gen->HandleDependentLibrary(Opts);
213 }
214
Chris Lattner6da9eb62010-04-06 18:38:50 +0000215 static void InlineAsmDiagHandler(const llvm::SMDiagnostic &SM,void *Context,
216 unsigned LocCookie) {
217 SourceLocation Loc = SourceLocation::getFromRawEncoding(LocCookie);
218 ((BackendConsumer*)Context)->InlineAsmDiagHandler2(SM, Loc);
219 }
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000220
Stephen Hines176edba2014-12-01 14:53:08 -0800221 void linkerDiagnosticHandler(const llvm::DiagnosticInfo &DI);
222
Stephen Hines651f13c2014-04-23 16:59:28 -0700223 static void DiagnosticHandler(const llvm::DiagnosticInfo &DI,
224 void *Context) {
225 ((BackendConsumer *)Context)->DiagnosticHandlerImpl(DI);
226 }
227
Chris Lattner6da9eb62010-04-06 18:38:50 +0000228 void InlineAsmDiagHandler2(const llvm::SMDiagnostic &,
229 SourceLocation LocCookie);
Stephen Hines651f13c2014-04-23 16:59:28 -0700230
231 void DiagnosticHandlerImpl(const llvm::DiagnosticInfo &DI);
232 /// \brief Specialized handler for InlineAsm diagnostic.
233 /// \return True if the diagnostic has been successfully reported, false
234 /// otherwise.
235 bool InlineAsmDiagHandler(const llvm::DiagnosticInfoInlineAsm &D);
236 /// \brief Specialized handler for StackSize diagnostic.
237 /// \return True if the diagnostic has been successfully reported, false
238 /// otherwise.
239 bool StackSizeDiagHandler(const llvm::DiagnosticInfoStackSize &D);
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700240 /// \brief Specialized handlers for optimization remarks.
241 /// Note that these handlers only accept remarks and they always handle
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700242 /// them.
Stephen Hines176edba2014-12-01 14:53:08 -0800243 void EmitOptimizationMessage(const llvm::DiagnosticInfoOptimizationBase &D,
244 unsigned DiagID);
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700245 void
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700246 OptimizationRemarkHandler(const llvm::DiagnosticInfoOptimizationRemark &D);
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700247 void OptimizationRemarkHandler(
248 const llvm::DiagnosticInfoOptimizationRemarkMissed &D);
249 void OptimizationRemarkHandler(
250 const llvm::DiagnosticInfoOptimizationRemarkAnalysis &D);
Stephen Hines176edba2014-12-01 14:53:08 -0800251 void OptimizationFailureHandler(
252 const llvm::DiagnosticInfoOptimizationFailure &D);
Mike Stump1eb44332009-09-09 15:08:12 +0000253 };
David Blaikie99ba9e32011-12-20 02:48:34 +0000254
255 void BackendConsumer::anchor() {}
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000256}
257
Chris Lattnerd6f19062010-04-08 00:23:06 +0000258/// ConvertBackendLocation - Convert a location in a temporary llvm::SourceMgr
259/// buffer to be a valid FullSourceLoc.
260static FullSourceLoc ConvertBackendLocation(const llvm::SMDiagnostic &D,
261 SourceManager &CSM) {
262 // Get both the clang and llvm source managers. The location is relative to
263 // a memory buffer that the LLVM Source Manager is handling, we need to add
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000264 // a copy to the Clang source manager.
Chris Lattnerd6f19062010-04-08 00:23:06 +0000265 const llvm::SourceMgr &LSM = *D.getSourceMgr();
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000266
Chris Lattnerd6f19062010-04-08 00:23:06 +0000267 // We need to copy the underlying LLVM memory buffer because llvm::SourceMgr
268 // already owns its one and clang::SourceManager wants to own its one.
269 const MemoryBuffer *LBuf =
270 LSM.getMemoryBuffer(LSM.FindBufferContainingLoc(D.getLoc()));
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000271
Chris Lattnerd6f19062010-04-08 00:23:06 +0000272 // Create the copy and transfer ownership to clang::SourceManager.
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700273 // TODO: Avoid copying files into memory.
Stephen Hines176edba2014-12-01 14:53:08 -0800274 std::unique_ptr<llvm::MemoryBuffer> CBuf =
275 llvm::MemoryBuffer::getMemBufferCopy(LBuf->getBuffer(),
276 LBuf->getBufferIdentifier());
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700277 // FIXME: Keep a file ID map instead of creating new IDs for each location.
Stephen Hines176edba2014-12-01 14:53:08 -0800278 FileID FID = CSM.createFileID(std::move(CBuf));
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000279
Chris Lattnerd6f19062010-04-08 00:23:06 +0000280 // Translate the offset into the file.
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700281 unsigned Offset = D.getLoc().getPointer() - LBuf->getBufferStart();
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000282 SourceLocation NewLoc =
Argyrios Kyrtzidisa64ccef2011-09-19 20:40:19 +0000283 CSM.getLocForStartOfFile(FID).getLocWithOffset(Offset);
Chris Lattnerd6f19062010-04-08 00:23:06 +0000284 return FullSourceLoc(NewLoc, CSM);
285}
286
Chris Lattnercabae682010-04-06 17:52:14 +0000287
Chris Lattner6da9eb62010-04-06 18:38:50 +0000288/// InlineAsmDiagHandler2 - This function is invoked when the backend hits an
289/// error parsing inline asm. The SMDiagnostic indicates the error relative to
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000290/// the temporary memory buffer that the inline asm parser has set up.
Chris Lattner6da9eb62010-04-06 18:38:50 +0000291void BackendConsumer::InlineAsmDiagHandler2(const llvm::SMDiagnostic &D,
292 SourceLocation LocCookie) {
293 // There are a couple of different kinds of errors we could get here. First,
294 // we re-format the SMDiagnostic in terms of a clang diagnostic.
Argyrios Kyrtzidis5d3a4bb2012-02-01 06:36:49 +0000295
296 // Strip "error: " off the start of the message string.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000297 StringRef Message = D.getMessage();
Argyrios Kyrtzidis5d3a4bb2012-02-01 06:36:49 +0000298 if (Message.startswith("error: "))
299 Message = Message.substr(7);
Chris Lattner6da9eb62010-04-06 18:38:50 +0000300
Chris Lattner99e14a02010-06-15 00:03:12 +0000301 // If the SMDiagnostic has an inline asm source location, translate it.
Chris Lattner6da9eb62010-04-06 18:38:50 +0000302 FullSourceLoc Loc;
Chris Lattnerd6f19062010-04-08 00:23:06 +0000303 if (D.getLoc() != SMLoc())
304 Loc = ConvertBackendLocation(D, Context->getSourceManager());
Argyrios Kyrtzidis5d3a4bb2012-02-01 06:36:49 +0000305
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700306 unsigned DiagID;
307 switch (D.getKind()) {
308 case llvm::SourceMgr::DK_Error:
309 DiagID = diag::err_fe_inline_asm;
310 break;
311 case llvm::SourceMgr::DK_Warning:
312 DiagID = diag::warn_fe_inline_asm;
313 break;
314 case llvm::SourceMgr::DK_Note:
315 DiagID = diag::note_fe_inline_asm;
316 break;
317 }
Chris Lattner99e14a02010-06-15 00:03:12 +0000318 // If this problem has clang-level source location information, report the
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700319 // issue in the source with a note showing the instantiated
Chris Lattner99e14a02010-06-15 00:03:12 +0000320 // code.
321 if (LocCookie.isValid()) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700322 Diags.Report(LocCookie, DiagID).AddString(Message);
Chris Lattner99e14a02010-06-15 00:03:12 +0000323
Benjamin Kramer96fda0c2011-10-16 10:48:28 +0000324 if (D.getLoc().isValid()) {
325 DiagnosticBuilder B = Diags.Report(Loc, diag::note_fe_inline_asm_here);
326 // Convert the SMDiagnostic ranges into SourceRange and attach them
327 // to the diagnostic.
328 for (unsigned i = 0, e = D.getRanges().size(); i != e; ++i) {
329 std::pair<unsigned, unsigned> Range = D.getRanges()[i];
330 unsigned Column = D.getColumnNo();
331 B << SourceRange(Loc.getLocWithOffset(Range.first - Column),
332 Loc.getLocWithOffset(Range.second - Column));
333 }
334 }
Chris Lattner99e14a02010-06-15 00:03:12 +0000335 return;
336 }
337
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700338 // Otherwise, report the backend issue as occurring in the generated .s file.
339 // If Loc is invalid, we still need to report the issue, it just gets no
Chris Lattner99e14a02010-06-15 00:03:12 +0000340 // location info.
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700341 Diags.Report(Loc, DiagID).AddString(Message);
Chris Lattner6da9eb62010-04-06 18:38:50 +0000342}
343
Stephen Hines651f13c2014-04-23 16:59:28 -0700344#define ComputeDiagID(Severity, GroupName, DiagID) \
345 do { \
346 switch (Severity) { \
347 case llvm::DS_Error: \
348 DiagID = diag::err_fe_##GroupName; \
349 break; \
350 case llvm::DS_Warning: \
351 DiagID = diag::warn_fe_##GroupName; \
352 break; \
353 case llvm::DS_Remark: \
354 llvm_unreachable("'remark' severity not expected"); \
355 break; \
356 case llvm::DS_Note: \
357 DiagID = diag::note_fe_##GroupName; \
358 break; \
359 } \
360 } while (false)
361
362#define ComputeDiagRemarkID(Severity, GroupName, DiagID) \
363 do { \
364 switch (Severity) { \
365 case llvm::DS_Error: \
366 DiagID = diag::err_fe_##GroupName; \
367 break; \
368 case llvm::DS_Warning: \
369 DiagID = diag::warn_fe_##GroupName; \
370 break; \
371 case llvm::DS_Remark: \
372 DiagID = diag::remark_fe_##GroupName; \
373 break; \
374 case llvm::DS_Note: \
375 DiagID = diag::note_fe_##GroupName; \
376 break; \
377 } \
378 } while (false)
379
380bool
381BackendConsumer::InlineAsmDiagHandler(const llvm::DiagnosticInfoInlineAsm &D) {
382 unsigned DiagID;
383 ComputeDiagID(D.getSeverity(), inline_asm, DiagID);
384 std::string Message = D.getMsgStr().str();
385
386 // If this problem has clang-level source location information, report the
387 // issue as being a problem in the source with a note showing the instantiated
388 // code.
389 SourceLocation LocCookie =
390 SourceLocation::getFromRawEncoding(D.getLocCookie());
391 if (LocCookie.isValid())
392 Diags.Report(LocCookie, DiagID).AddString(Message);
393 else {
394 // Otherwise, report the backend diagnostic as occurring in the generated
395 // .s file.
396 // If Loc is invalid, we still need to report the diagnostic, it just gets
397 // no location info.
398 FullSourceLoc Loc;
399 Diags.Report(Loc, DiagID).AddString(Message);
400 }
401 // We handled all the possible severities.
402 return true;
403}
404
405bool
406BackendConsumer::StackSizeDiagHandler(const llvm::DiagnosticInfoStackSize &D) {
407 if (D.getSeverity() != llvm::DS_Warning)
408 // For now, the only support we have for StackSize diagnostic is warning.
409 // We do not know how to format other severities.
410 return false;
411
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700412 if (const Decl *ND = Gen->GetDeclForMangledName(D.getFunction().getName())) {
413 Diags.Report(ND->getASTContext().getFullLoc(ND->getLocation()),
414 diag::warn_fe_frame_larger_than)
415 << D.getStackSize() << Decl::castToDeclContext(ND);
416 return true;
417 }
418
419 return false;
420}
421
Stephen Hines176edba2014-12-01 14:53:08 -0800422void BackendConsumer::EmitOptimizationMessage(
423 const llvm::DiagnosticInfoOptimizationBase &D, unsigned DiagID) {
424 // We only support warnings and remarks.
425 assert(D.getSeverity() == llvm::DS_Remark ||
426 D.getSeverity() == llvm::DS_Warning);
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700427
428 SourceManager &SourceMgr = Context->getSourceManager();
429 FileManager &FileMgr = SourceMgr.getFileManager();
430 StringRef Filename;
431 unsigned Line, Column;
432 D.getLocation(&Filename, &Line, &Column);
433 SourceLocation DILoc;
434 const FileEntry *FE = FileMgr.getFile(Filename);
435 if (FE && Line > 0) {
436 // If -gcolumn-info was not used, Column will be 0. This upsets the
437 // source manager, so pass 1 if Column is not set.
438 DILoc = SourceMgr.translateFileLineCol(FE, Line, Column ? Column : 1);
439 }
440
441 // If a location isn't available, try to approximate it using the associated
442 // function definition. We use the definition's right brace to differentiate
443 // from diagnostics that genuinely relate to the function itself.
444 FullSourceLoc Loc(DILoc, SourceMgr);
445 if (Loc.isInvalid())
446 if (const Decl *FD = Gen->GetDeclForMangledName(D.getFunction().getName()))
447 Loc = FD->getASTContext().getFullLoc(FD->getBodyRBrace());
448
Stephen Hines176edba2014-12-01 14:53:08 -0800449 Diags.Report(Loc, DiagID)
450 << AddFlagValue(D.getPassName() ? D.getPassName() : "")
451 << D.getMsg().str();
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700452
453 if (DILoc.isInvalid())
454 // If we were not able to translate the file:line:col information
455 // back to a SourceLocation, at least emit a note stating that
456 // we could not translate this location. This can happen in the
457 // case of #line directives.
458 Diags.Report(Loc, diag::note_fe_backend_optimization_remark_invalid_loc)
459 << Filename << Line << Column;
Stephen Hines651f13c2014-04-23 16:59:28 -0700460}
461
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700462void BackendConsumer::OptimizationRemarkHandler(
463 const llvm::DiagnosticInfoOptimizationRemark &D) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700464 // Optimization remarks are active only if the -Rpass flag has a regular
465 // expression that matches the name of the pass name in \p D.
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700466 if (CodeGenOpts.OptimizationRemarkPattern &&
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700467 CodeGenOpts.OptimizationRemarkPattern->match(D.getPassName()))
Stephen Hines176edba2014-12-01 14:53:08 -0800468 EmitOptimizationMessage(D, diag::remark_fe_backend_optimization_remark);
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700469}
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700470
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700471void BackendConsumer::OptimizationRemarkHandler(
472 const llvm::DiagnosticInfoOptimizationRemarkMissed &D) {
473 // Missed optimization remarks are active only if the -Rpass-missed
474 // flag has a regular expression that matches the name of the pass
475 // name in \p D.
476 if (CodeGenOpts.OptimizationRemarkMissedPattern &&
477 CodeGenOpts.OptimizationRemarkMissedPattern->match(D.getPassName()))
Stephen Hines176edba2014-12-01 14:53:08 -0800478 EmitOptimizationMessage(D,
479 diag::remark_fe_backend_optimization_remark_missed);
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700480}
481
482void BackendConsumer::OptimizationRemarkHandler(
483 const llvm::DiagnosticInfoOptimizationRemarkAnalysis &D) {
484 // Optimization analysis remarks are active only if the -Rpass-analysis
485 // flag has a regular expression that matches the name of the pass
486 // name in \p D.
487 if (CodeGenOpts.OptimizationRemarkAnalysisPattern &&
488 CodeGenOpts.OptimizationRemarkAnalysisPattern->match(D.getPassName()))
Stephen Hines176edba2014-12-01 14:53:08 -0800489 EmitOptimizationMessage(
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700490 D, diag::remark_fe_backend_optimization_remark_analysis);
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700491}
492
Stephen Hines176edba2014-12-01 14:53:08 -0800493void BackendConsumer::OptimizationFailureHandler(
494 const llvm::DiagnosticInfoOptimizationFailure &D) {
495 EmitOptimizationMessage(D, diag::warn_fe_backend_optimization_failure);
496}
497
498void BackendConsumer::linkerDiagnosticHandler(const DiagnosticInfo &DI) {
499 if (DI.getSeverity() != DS_Error)
500 return;
501
502 std::string MsgStorage;
503 {
504 raw_string_ostream Stream(MsgStorage);
505 DiagnosticPrinterRawOStream DP(Stream);
506 DI.print(DP);
507 }
508
509 Diags.Report(diag::err_fe_cannot_link_module)
510 << LinkModule->getModuleIdentifier() << MsgStorage;
511}
512
Stephen Hines651f13c2014-04-23 16:59:28 -0700513/// \brief This function is invoked when the backend needs
514/// to report something to the user.
515void BackendConsumer::DiagnosticHandlerImpl(const DiagnosticInfo &DI) {
516 unsigned DiagID = diag::err_fe_inline_asm;
517 llvm::DiagnosticSeverity Severity = DI.getSeverity();
518 // Get the diagnostic ID based.
519 switch (DI.getKind()) {
520 case llvm::DK_InlineAsm:
521 if (InlineAsmDiagHandler(cast<DiagnosticInfoInlineAsm>(DI)))
522 return;
523 ComputeDiagID(Severity, inline_asm, DiagID);
524 break;
525 case llvm::DK_StackSize:
526 if (StackSizeDiagHandler(cast<DiagnosticInfoStackSize>(DI)))
527 return;
528 ComputeDiagID(Severity, backend_frame_larger_than, DiagID);
529 break;
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700530 case llvm::DK_OptimizationRemark:
531 // Optimization remarks are always handled completely by this
532 // handler. There is no generic way of emitting them.
533 OptimizationRemarkHandler(cast<DiagnosticInfoOptimizationRemark>(DI));
534 return;
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700535 case llvm::DK_OptimizationRemarkMissed:
536 // Optimization remarks are always handled completely by this
537 // handler. There is no generic way of emitting them.
538 OptimizationRemarkHandler(cast<DiagnosticInfoOptimizationRemarkMissed>(DI));
539 return;
540 case llvm::DK_OptimizationRemarkAnalysis:
541 // Optimization remarks are always handled completely by this
542 // handler. There is no generic way of emitting them.
543 OptimizationRemarkHandler(
544 cast<DiagnosticInfoOptimizationRemarkAnalysis>(DI));
545 return;
Stephen Hines176edba2014-12-01 14:53:08 -0800546 case llvm::DK_OptimizationFailure:
547 // Optimization failures are always handled completely by this
548 // handler.
549 OptimizationFailureHandler(cast<DiagnosticInfoOptimizationFailure>(DI));
550 return;
Stephen Hines651f13c2014-04-23 16:59:28 -0700551 default:
552 // Plugin IDs are not bound to any value as they are set dynamically.
553 ComputeDiagRemarkID(Severity, backend_plugin, DiagID);
554 break;
555 }
556 std::string MsgStorage;
557 {
558 raw_string_ostream Stream(MsgStorage);
559 DiagnosticPrinterRawOStream DP(Stream);
560 DI.print(DP);
561 }
562
563 // Report the backend message using the usual diagnostic mechanism.
564 FullSourceLoc Loc;
565 Diags.Report(Loc, DiagID).AddString(MsgStorage);
566}
567#undef ComputeDiagID
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000568
Peter Collingbourne4b93d662011-02-19 23:03:58 +0000569CodeGenAction::CodeGenAction(unsigned _Act, LLVMContext *_VMContext)
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700570 : Act(_Act), LinkModule(nullptr),
Peter Collingbourne22a7dfe2011-10-30 17:30:44 +0000571 VMContext(_VMContext ? _VMContext : new LLVMContext),
Peter Collingbourne4b93d662011-02-19 23:03:58 +0000572 OwnsVMContext(!_VMContext) {}
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000573
Peter Collingbourne4b93d662011-02-19 23:03:58 +0000574CodeGenAction::~CodeGenAction() {
575 TheModule.reset();
576 if (OwnsVMContext)
577 delete VMContext;
578}
Daniel Dunbar9ad1c022010-02-25 20:37:44 +0000579
Daniel Dunbar4cbbd942010-06-07 23:27:59 +0000580bool CodeGenAction::hasIRSupport() const { return true; }
581
Daniel Dunbarb954e982010-02-25 04:37:50 +0000582void CodeGenAction::EndSourceFileAction() {
583 // If the consumer creation failed, do nothing.
584 if (!getCompilerInstance().hasASTConsumer())
585 return;
586
Peter Collingbourne22a7dfe2011-10-30 17:30:44 +0000587 // If we were given a link module, release consumer's ownership of it.
588 if (LinkModule)
589 BEConsumer->takeLinkModule();
590
Daniel Dunbarb954e982010-02-25 04:37:50 +0000591 // Steal the module from the consumer.
Stephen Hines176edba2014-12-01 14:53:08 -0800592 TheModule = BEConsumer->takeModule();
Daniel Dunbarb954e982010-02-25 04:37:50 +0000593}
594
Stephen Hines176edba2014-12-01 14:53:08 -0800595std::unique_ptr<llvm::Module> CodeGenAction::takeModule() {
596 return std::move(TheModule);
597}
Daniel Dunbarb954e982010-02-25 04:37:50 +0000598
Peter Collingbourne4b93d662011-02-19 23:03:58 +0000599llvm::LLVMContext *CodeGenAction::takeLLVMContext() {
600 OwnsVMContext = false;
601 return VMContext;
602}
603
Daniel Dunbar4cbbd942010-06-07 23:27:59 +0000604static raw_ostream *GetOutputStream(CompilerInstance &CI,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000605 StringRef InFile,
Daniel Dunbar4cbbd942010-06-07 23:27:59 +0000606 BackendAction Action) {
607 switch (Action) {
608 case Backend_EmitAssembly:
609 return CI.createDefaultOutputFile(false, InFile, "s");
610 case Backend_EmitLL:
611 return CI.createDefaultOutputFile(false, InFile, "ll");
612 case Backend_EmitBC:
613 return CI.createDefaultOutputFile(true, InFile, "bc");
614 case Backend_EmitNothing:
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700615 return nullptr;
Daniel Dunbar4cbbd942010-06-07 23:27:59 +0000616 case Backend_EmitMCNull:
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700617 return CI.createNullOutputFile();
Daniel Dunbar4cbbd942010-06-07 23:27:59 +0000618 case Backend_EmitObj:
619 return CI.createDefaultOutputFile(true, InFile, "o");
620 }
621
David Blaikieb219cfc2011-09-23 05:06:16 +0000622 llvm_unreachable("Invalid action!");
Daniel Dunbar4cbbd942010-06-07 23:27:59 +0000623}
624
Stephen Hines176edba2014-12-01 14:53:08 -0800625std::unique_ptr<ASTConsumer>
626CodeGenAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000627 BackendAction BA = static_cast<BackendAction>(Act);
Stephen Hines651f13c2014-04-23 16:59:28 -0700628 std::unique_ptr<raw_ostream> OS(GetOutputStream(CI, InFile, BA));
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000629 if (BA != Backend_EmitNothing && !OS)
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700630 return nullptr;
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000631
Peter Collingbourne22a7dfe2011-10-30 17:30:44 +0000632 llvm::Module *LinkModuleToUse = LinkModule;
633
634 // If we were not given a link module, and the user requested that one be
635 // loaded from bitcode, do so now.
636 const std::string &LinkBCFile = CI.getCodeGenOpts().LinkBitcodeFile;
637 if (!LinkModuleToUse && !LinkBCFile.empty()) {
Stephen Hines176edba2014-12-01 14:53:08 -0800638 auto BCBuf = CI.getFileManager().getBufferForFile(LinkBCFile);
Peter Collingbourne22a7dfe2011-10-30 17:30:44 +0000639 if (!BCBuf) {
640 CI.getDiagnostics().Report(diag::err_cannot_open_file)
Stephen Hines176edba2014-12-01 14:53:08 -0800641 << LinkBCFile << BCBuf.getError().message();
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700642 return nullptr;
Peter Collingbourne22a7dfe2011-10-30 17:30:44 +0000643 }
644
Stephen Hines651f13c2014-04-23 16:59:28 -0700645 ErrorOr<llvm::Module *> ModuleOrErr =
Stephen Hines176edba2014-12-01 14:53:08 -0800646 getLazyBitcodeModule(std::move(*BCBuf), *VMContext);
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700647 if (std::error_code EC = ModuleOrErr.getError()) {
Peter Collingbourne22a7dfe2011-10-30 17:30:44 +0000648 CI.getDiagnostics().Report(diag::err_cannot_open_file)
Stephen Hines651f13c2014-04-23 16:59:28 -0700649 << LinkBCFile << EC.message();
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700650 return nullptr;
Peter Collingbourne22a7dfe2011-10-30 17:30:44 +0000651 }
Stephen Hines651f13c2014-04-23 16:59:28 -0700652 LinkModuleToUse = ModuleOrErr.get();
Peter Collingbourne22a7dfe2011-10-30 17:30:44 +0000653 }
654
Stephen Hines176edba2014-12-01 14:53:08 -0800655 CoverageSourceInfo *CoverageInfo = nullptr;
656 // Add the preprocessor callback only when the coverage mapping is generated.
657 if (CI.getCodeGenOpts().CoverageMapping) {
658 CoverageInfo = new CoverageSourceInfo;
659 CI.getPreprocessor().addPPCallbacks(
660 std::unique_ptr<PPCallbacks>(CoverageInfo));
661 }
662 std::unique_ptr<BackendConsumer> Result(new BackendConsumer(
663 BA, CI.getDiagnostics(), CI.getCodeGenOpts(), CI.getTargetOpts(),
664 CI.getLangOpts(), CI.getFrontendOpts().ShowTimers, InFile,
665 LinkModuleToUse, OS.release(), *VMContext, CoverageInfo));
666 BEConsumer = Result.get();
667 return std::move(Result);
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000668}
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000669
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700670static void BitcodeInlineAsmDiagHandler(const llvm::SMDiagnostic &SM,
671 void *Context,
672 unsigned LocCookie) {
673 SM.print(nullptr, llvm::errs());
674}
675
Daniel Dunbar4cbbd942010-06-07 23:27:59 +0000676void CodeGenAction::ExecuteAction() {
677 // If this is an IR file, we have to treat it specially.
678 if (getCurrentFileKind() == IK_LLVM_IR) {
679 BackendAction BA = static_cast<BackendAction>(Act);
680 CompilerInstance &CI = getCompilerInstance();
681 raw_ostream *OS = GetOutputStream(CI, getCurrentFile(), BA);
682 if (BA != Backend_EmitNothing && !OS)
683 return;
684
685 bool Invalid;
686 SourceManager &SM = CI.getSourceManager();
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700687 FileID FID = SM.getMainFileID();
688 llvm::MemoryBuffer *MainFile = SM.getBuffer(FID, &Invalid);
Daniel Dunbar4cbbd942010-06-07 23:27:59 +0000689 if (Invalid)
690 return;
691
Daniel Dunbar4cbbd942010-06-07 23:27:59 +0000692 llvm::SMDiagnostic Err;
Stephen Hines176edba2014-12-01 14:53:08 -0800693 TheModule = parseIR(MainFile->getMemBufferRef(), Err, *VMContext);
Daniel Dunbar4cbbd942010-06-07 23:27:59 +0000694 if (!TheModule) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700695 // Translate from the diagnostic info to the SourceManager location if
696 // available.
697 // TODO: Unify this with ConvertBackendLocation()
698 SourceLocation Loc;
699 if (Err.getLineNo() > 0) {
700 assert(Err.getColumnNo() >= 0);
701 Loc = SM.translateFileLineCol(SM.getFileEntryForID(FID),
702 Err.getLineNo(), Err.getColumnNo() + 1);
703 }
Daniel Dunbar4cbbd942010-06-07 23:27:59 +0000704
Stephen Hines651f13c2014-04-23 16:59:28 -0700705 // Strip off a leading diagnostic code if there is one.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000706 StringRef Msg = Err.getMessage();
Daniel Dunbar4cbbd942010-06-07 23:27:59 +0000707 if (Msg.startswith("error: "))
708 Msg = Msg.substr(7);
Benjamin Kramerc9b47f92012-03-16 22:31:42 +0000709
Stephen Hines651f13c2014-04-23 16:59:28 -0700710 unsigned DiagID =
711 CI.getDiagnostics().getCustomDiagID(DiagnosticsEngine::Error, "%0");
Benjamin Kramerc9b47f92012-03-16 22:31:42 +0000712
Stephen Hines651f13c2014-04-23 16:59:28 -0700713 CI.getDiagnostics().Report(Loc, DiagID) << Msg;
Daniel Dunbar4cbbd942010-06-07 23:27:59 +0000714 return;
715 }
Stephen Hines651f13c2014-04-23 16:59:28 -0700716 const TargetOptions &TargetOpts = CI.getTargetOpts();
717 if (TheModule->getTargetTriple() != TargetOpts.Triple) {
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700718 CI.getDiagnostics().Report(SourceLocation(),
719 diag::warn_fe_override_module)
720 << TargetOpts.Triple;
Stephen Hines651f13c2014-04-23 16:59:28 -0700721 TheModule->setTargetTriple(TargetOpts.Triple);
722 }
723
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700724 LLVMContext &Ctx = TheModule->getContext();
725 Ctx.setInlineAsmDiagnosticHandler(BitcodeInlineAsmDiagHandler);
Stephen Hines651f13c2014-04-23 16:59:28 -0700726 EmitBackendOutput(CI.getDiagnostics(), CI.getCodeGenOpts(), TargetOpts,
727 CI.getLangOpts(), CI.getTarget().getTargetDescription(),
728 TheModule.get(), BA, OS);
Daniel Dunbar4cbbd942010-06-07 23:27:59 +0000729 return;
730 }
731
732 // Otherwise follow the normal AST path.
733 this->ASTFrontendAction::ExecuteAction();
734}
735
736//
737
David Blaikie99ba9e32011-12-20 02:48:34 +0000738void EmitAssemblyAction::anchor() { }
Peter Collingbourne4b93d662011-02-19 23:03:58 +0000739EmitAssemblyAction::EmitAssemblyAction(llvm::LLVMContext *_VMContext)
740 : CodeGenAction(Backend_EmitAssembly, _VMContext) {}
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000741
David Blaikie99ba9e32011-12-20 02:48:34 +0000742void EmitBCAction::anchor() { }
Peter Collingbourne4b93d662011-02-19 23:03:58 +0000743EmitBCAction::EmitBCAction(llvm::LLVMContext *_VMContext)
744 : CodeGenAction(Backend_EmitBC, _VMContext) {}
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000745
David Blaikie99ba9e32011-12-20 02:48:34 +0000746void EmitLLVMAction::anchor() { }
Peter Collingbourne4b93d662011-02-19 23:03:58 +0000747EmitLLVMAction::EmitLLVMAction(llvm::LLVMContext *_VMContext)
748 : CodeGenAction(Backend_EmitLL, _VMContext) {}
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000749
David Blaikie99ba9e32011-12-20 02:48:34 +0000750void EmitLLVMOnlyAction::anchor() { }
Peter Collingbourne4b93d662011-02-19 23:03:58 +0000751EmitLLVMOnlyAction::EmitLLVMOnlyAction(llvm::LLVMContext *_VMContext)
752 : CodeGenAction(Backend_EmitNothing, _VMContext) {}
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000753
David Blaikie99ba9e32011-12-20 02:48:34 +0000754void EmitCodeGenOnlyAction::anchor() { }
Peter Collingbourne4b93d662011-02-19 23:03:58 +0000755EmitCodeGenOnlyAction::EmitCodeGenOnlyAction(llvm::LLVMContext *_VMContext)
756 : CodeGenAction(Backend_EmitMCNull, _VMContext) {}
Daniel Dunbar32148ce2010-05-25 18:41:01 +0000757
David Blaikie99ba9e32011-12-20 02:48:34 +0000758void EmitObjAction::anchor() { }
Peter Collingbourne4b93d662011-02-19 23:03:58 +0000759EmitObjAction::EmitObjAction(llvm::LLVMContext *_VMContext)
760 : CodeGenAction(Backend_EmitObj, _VMContext) {}