blob: 1eb59bdac95613ccc0855cfdf3b4421dd55176de [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"
Daniel Dunbar9b414d32010-06-15 17:48:49 +000011#include "clang/CodeGen/CodeGenAction.h"
Chris Lattner682bf922009-03-29 16:50:03 +000012#include "clang/AST/ASTConsumer.h"
Daniel Dunbard58c03f2009-11-15 06:48:46 +000013#include "clang/AST/ASTContext.h"
Chris Lattner682bf922009-03-29 16:50:03 +000014#include "clang/AST/DeclGroup.h"
Stephen Hines6bcf27b2014-05-29 04:14:42 -070015#include "clang/AST/DeclCXX.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000016#include "clang/Basic/FileManager.h"
17#include "clang/Basic/SourceManager.h"
18#include "clang/Basic/TargetInfo.h"
Stephen Hines176edba2014-12-01 14:53:08 -080019#include "clang/Lex/Preprocessor.h"
Daniel Dunbar9b414d32010-06-15 17:48:49 +000020#include "clang/CodeGen/BackendUtil.h"
Daniel Dunbard58c03f2009-11-15 06:48:46 +000021#include "clang/CodeGen/ModuleBuilder.h"
Daniel Dunbar4ee34612010-02-25 04:37:45 +000022#include "clang/Frontend/CompilerInstance.h"
Daniel Dunbar3be0d192009-12-03 09:12:54 +000023#include "clang/Frontend/FrontendDiagnostic.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),
68 Context(), LLVMIRGeneration("LLVM IR Generation Time"),
Stephen Hines176edba2014-12-01 14:53:08 -080069 Gen(CreateLLVMCodeGen(Diags, infile, compopts,
70 targetopts, C, CoverageInfo)),
Stephen Hines651f13c2014-04-23 16:59:28 -070071 LinkModule(LinkModule) {
Daniel Dunbarb33fbaa2009-11-30 08:39:52 +000072 llvm::TimePassesIsEnabled = TimePasses;
Chris Lattner44502662009-02-18 01:23:44 +000073 }
Daniel Dunbard69bacc2008-10-21 23:49:24 +000074
Stephen Hines176edba2014-12-01 14:53:08 -080075 std::unique_ptr<llvm::Module> takeModule() { return std::move(TheModule); }
Stephen Hines651f13c2014-04-23 16:59:28 -070076 llvm::Module *takeLinkModule() { return LinkModule.release(); }
Daniel Dunbarb954e982010-02-25 04:37:50 +000077
Stephen Hines651f13c2014-04-23 16:59:28 -070078 void HandleCXXStaticMemberVarInstantiation(VarDecl *VD) override {
Rafael Espindola02503932012-03-08 15:51:03 +000079 Gen->HandleCXXStaticMemberVarInstantiation(VD);
Rafael Espindola234fe652012-03-05 10:54:55 +000080 }
81
Stephen Hines651f13c2014-04-23 16:59:28 -070082 void Initialize(ASTContext &Ctx) override {
Chris Lattner7bb0da02009-03-28 02:18:25 +000083 Context = &Ctx;
Mike Stump1eb44332009-09-09 15:08:12 +000084
Daniel Dunbarb33fbaa2009-11-30 08:39:52 +000085 if (llvm::TimePassesIsEnabled)
Chris Lattner6f114eb2009-02-18 01:37:30 +000086 LLVMIRGeneration.startTimer();
Mike Stump1eb44332009-09-09 15:08:12 +000087
Chris Lattner7bb0da02009-03-28 02:18:25 +000088 Gen->Initialize(Ctx);
Daniel Dunbard69bacc2008-10-21 23:49:24 +000089
Daniel Dunbarb954e982010-02-25 04:37:50 +000090 TheModule.reset(Gen->GetModule());
Mike Stump1eb44332009-09-09 15:08:12 +000091
Daniel Dunbarb33fbaa2009-11-30 08:39:52 +000092 if (llvm::TimePassesIsEnabled)
Chris Lattner6f114eb2009-02-18 01:37:30 +000093 LLVMIRGeneration.stopTimer();
Daniel Dunbard69bacc2008-10-21 23:49:24 +000094 }
Mike Stump1eb44332009-09-09 15:08:12 +000095
Stephen Hines651f13c2014-04-23 16:59:28 -070096 bool HandleTopLevelDecl(DeclGroupRef D) override {
Chris Lattner682bf922009-03-29 16:50:03 +000097 PrettyStackTraceDecl CrashInfo(*D.begin(), SourceLocation(),
Chris Lattner49f28ca2009-03-05 08:00:35 +000098 Context->getSourceManager(),
99 "LLVM IR generation of declaration");
Mike Stump1eb44332009-09-09 15:08:12 +0000100
Daniel Dunbarb33fbaa2009-11-30 08:39:52 +0000101 if (llvm::TimePassesIsEnabled)
Chris Lattner6f114eb2009-02-18 01:37:30 +0000102 LLVMIRGeneration.startTimer();
Chris Lattner682bf922009-03-29 16:50:03 +0000103
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000104 Gen->HandleTopLevelDecl(D);
Chris Lattner6f114eb2009-02-18 01:37:30 +0000105
Daniel Dunbarb33fbaa2009-11-30 08:39:52 +0000106 if (llvm::TimePassesIsEnabled)
Chris Lattner6f114eb2009-02-18 01:37:30 +0000107 LLVMIRGeneration.stopTimer();
Argyrios Kyrtzidis88c25962011-11-18 00:26:59 +0000108
109 return true;
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000110 }
Mike Stump1eb44332009-09-09 15:08:12 +0000111
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700112 void HandleInlineMethodDefinition(CXXMethodDecl *D) override {
113 PrettyStackTraceDecl CrashInfo(D, SourceLocation(),
114 Context->getSourceManager(),
115 "LLVM IR generation of inline method");
116 if (llvm::TimePassesIsEnabled)
117 LLVMIRGeneration.startTimer();
118
119 Gen->HandleInlineMethodDefinition(D);
120
121 if (llvm::TimePassesIsEnabled)
122 LLVMIRGeneration.stopTimer();
123 }
124
Stephen Hines651f13c2014-04-23 16:59:28 -0700125 void HandleTranslationUnit(ASTContext &C) override {
Chris Lattner49f28ca2009-03-05 08:00:35 +0000126 {
Chris Lattner14f234e2009-03-06 06:46:31 +0000127 PrettyStackTraceString CrashInfo("Per-file LLVM IR generation");
Daniel Dunbarb33fbaa2009-11-30 08:39:52 +0000128 if (llvm::TimePassesIsEnabled)
Chris Lattner49f28ca2009-03-05 08:00:35 +0000129 LLVMIRGeneration.startTimer();
Chris Lattner6f114eb2009-02-18 01:37:30 +0000130
Chris Lattnerdacbc5d2009-03-28 04:11:33 +0000131 Gen->HandleTranslationUnit(C);
Daniel Dunbard68ba0e2008-11-11 06:35:39 +0000132
Daniel Dunbarb33fbaa2009-11-30 08:39:52 +0000133 if (llvm::TimePassesIsEnabled)
Chris Lattner49f28ca2009-03-05 08:00:35 +0000134 LLVMIRGeneration.stopTimer();
135 }
Chris Lattner6f114eb2009-02-18 01:37:30 +0000136
Daniel Dunbar897c6762010-06-07 23:20:08 +0000137 // Silently ignore if we weren't initialized for some reason.
Daniel Dunbar05a7f3d2010-06-07 23:21:04 +0000138 if (!TheModule)
Daniel Dunbar897c6762010-06-07 23:20:08 +0000139 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000140
Daniel Dunbar897c6762010-06-07 23:20:08 +0000141 // Make sure IR generation is happy with the module. This is released by
142 // the module provider.
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000143 llvm::Module *M = Gen->ReleaseModule();
Daniel Dunbar897c6762010-06-07 23:20:08 +0000144 if (!M) {
145 // The module has been released by IR gen on failures, do not double
146 // free.
Stephen Hines651f13c2014-04-23 16:59:28 -0700147 TheModule.release();
Daniel Dunbar897c6762010-06-07 23:20:08 +0000148 return;
149 }
150
151 assert(TheModule.get() == M &&
152 "Unexpected module change during IR generation");
153
Peter Collingbourne22a7dfe2011-10-30 17:30:44 +0000154 // Link LinkModule into this module if present, preserving its validity.
155 if (LinkModule) {
Stephen Hines176edba2014-12-01 14:53:08 -0800156 if (Linker::LinkModules(
157 M, LinkModule.get(),
158 [=](const DiagnosticInfo &DI) { linkerDiagnosticHandler(DI); }))
Peter Collingbourne22a7dfe2011-10-30 17:30:44 +0000159 return;
Peter Collingbourne22a7dfe2011-10-30 17:30:44 +0000160 }
161
Daniel Dunbar897c6762010-06-07 23:20:08 +0000162 // Install an inline asm handler so that diagnostics get printed through
163 // our diagnostics hooks.
164 LLVMContext &Ctx = TheModule->getContext();
Chris Lattner063e4762010-11-17 08:13:04 +0000165 LLVMContext::InlineAsmDiagHandlerTy OldHandler =
166 Ctx.getInlineAsmDiagnosticHandler();
Daniel Dunbar897c6762010-06-07 23:20:08 +0000167 void *OldContext = Ctx.getInlineAsmDiagnosticContext();
Chris Lattner063e4762010-11-17 08:13:04 +0000168 Ctx.setInlineAsmDiagnosticHandler(InlineAsmDiagHandler, this);
Daniel Dunbar897c6762010-06-07 23:20:08 +0000169
Stephen Hines651f13c2014-04-23 16:59:28 -0700170 LLVMContext::DiagnosticHandlerTy OldDiagnosticHandler =
171 Ctx.getDiagnosticHandler();
172 void *OldDiagnosticContext = Ctx.getDiagnosticContext();
173 Ctx.setDiagnosticHandler(DiagnosticHandler, this);
174
Dan Gohmanb18b8ad2011-07-05 22:02:36 +0000175 EmitBackendOutput(Diags, CodeGenOpts, TargetOpts, LangOpts,
Stephen Hines651f13c2014-04-23 16:59:28 -0700176 C.getTargetInfo().getTargetDescription(),
Daniel Dunbar05a7f3d2010-06-07 23:21:04 +0000177 TheModule.get(), Action, AsmOutStream);
Stephen Hines651f13c2014-04-23 16:59:28 -0700178
Daniel Dunbar897c6762010-06-07 23:20:08 +0000179 Ctx.setInlineAsmDiagnosticHandler(OldHandler, OldContext);
Stephen Hines651f13c2014-04-23 16:59:28 -0700180
181 Ctx.setDiagnosticHandler(OldDiagnosticHandler, OldDiagnosticContext);
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000182 }
Mike Stump1eb44332009-09-09 15:08:12 +0000183
Stephen Hines651f13c2014-04-23 16:59:28 -0700184 void HandleTagDeclDefinition(TagDecl *D) override {
Chris Lattner49f28ca2009-03-05 08:00:35 +0000185 PrettyStackTraceDecl CrashInfo(D, SourceLocation(),
186 Context->getSourceManager(),
187 "LLVM IR generation of declaration");
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000188 Gen->HandleTagDeclDefinition(D);
189 }
Douglas Gregorb6c8c8b2009-04-21 17:11:58 +0000190
Stephen Hines651f13c2014-04-23 16:59:28 -0700191 void HandleTagDeclRequiredDefinition(const TagDecl *D) override {
David Blaikie658cd2c2013-07-13 21:08:14 +0000192 Gen->HandleTagDeclRequiredDefinition(D);
193 }
194
Stephen Hines651f13c2014-04-23 16:59:28 -0700195 void CompleteTentativeDefinition(VarDecl *D) override {
Douglas Gregorb6c8c8b2009-04-21 17:11:58 +0000196 Gen->CompleteTentativeDefinition(D);
197 }
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000198
Stephen Hines651f13c2014-04-23 16:59:28 -0700199 void HandleVTable(CXXRecordDecl *RD, bool DefinitionRequired) override {
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000200 Gen->HandleVTable(RD, DefinitionRequired);
201 }
202
Stephen Hines651f13c2014-04-23 16:59:28 -0700203 void HandleLinkerOptionPragma(llvm::StringRef Opts) override {
Reid Kleckner3190ca92013-05-08 13:44:39 +0000204 Gen->HandleLinkerOptionPragma(Opts);
205 }
206
Stephen Hines651f13c2014-04-23 16:59:28 -0700207 void HandleDetectMismatch(llvm::StringRef Name,
208 llvm::StringRef Value) override {
Aaron Ballmana7ff62f2013-06-04 02:07:14 +0000209 Gen->HandleDetectMismatch(Name, Value);
210 }
211
Stephen Hines651f13c2014-04-23 16:59:28 -0700212 void HandleDependentLibrary(llvm::StringRef Opts) override {
Reid Kleckner3190ca92013-05-08 13:44:39 +0000213 Gen->HandleDependentLibrary(Opts);
214 }
215
Chris Lattner6da9eb62010-04-06 18:38:50 +0000216 static void InlineAsmDiagHandler(const llvm::SMDiagnostic &SM,void *Context,
217 unsigned LocCookie) {
218 SourceLocation Loc = SourceLocation::getFromRawEncoding(LocCookie);
219 ((BackendConsumer*)Context)->InlineAsmDiagHandler2(SM, Loc);
220 }
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000221
Stephen Hines176edba2014-12-01 14:53:08 -0800222 void linkerDiagnosticHandler(const llvm::DiagnosticInfo &DI);
223
Stephen Hines651f13c2014-04-23 16:59:28 -0700224 static void DiagnosticHandler(const llvm::DiagnosticInfo &DI,
225 void *Context) {
226 ((BackendConsumer *)Context)->DiagnosticHandlerImpl(DI);
227 }
228
Chris Lattner6da9eb62010-04-06 18:38:50 +0000229 void InlineAsmDiagHandler2(const llvm::SMDiagnostic &,
230 SourceLocation LocCookie);
Stephen Hines651f13c2014-04-23 16:59:28 -0700231
232 void DiagnosticHandlerImpl(const llvm::DiagnosticInfo &DI);
233 /// \brief Specialized handler for InlineAsm diagnostic.
234 /// \return True if the diagnostic has been successfully reported, false
235 /// otherwise.
236 bool InlineAsmDiagHandler(const llvm::DiagnosticInfoInlineAsm &D);
237 /// \brief Specialized handler for StackSize diagnostic.
238 /// \return True if the diagnostic has been successfully reported, false
239 /// otherwise.
240 bool StackSizeDiagHandler(const llvm::DiagnosticInfoStackSize &D);
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700241 /// \brief Specialized handlers for optimization remarks.
242 /// Note that these handlers only accept remarks and they always handle
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700243 /// them.
Stephen Hines176edba2014-12-01 14:53:08 -0800244 void EmitOptimizationMessage(const llvm::DiagnosticInfoOptimizationBase &D,
245 unsigned DiagID);
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700246 void
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700247 OptimizationRemarkHandler(const llvm::DiagnosticInfoOptimizationRemark &D);
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700248 void OptimizationRemarkHandler(
249 const llvm::DiagnosticInfoOptimizationRemarkMissed &D);
250 void OptimizationRemarkHandler(
251 const llvm::DiagnosticInfoOptimizationRemarkAnalysis &D);
Stephen Hines176edba2014-12-01 14:53:08 -0800252 void OptimizationFailureHandler(
253 const llvm::DiagnosticInfoOptimizationFailure &D);
Mike Stump1eb44332009-09-09 15:08:12 +0000254 };
David Blaikie99ba9e32011-12-20 02:48:34 +0000255
256 void BackendConsumer::anchor() {}
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000257}
258
Chris Lattnerd6f19062010-04-08 00:23:06 +0000259/// ConvertBackendLocation - Convert a location in a temporary llvm::SourceMgr
260/// buffer to be a valid FullSourceLoc.
261static FullSourceLoc ConvertBackendLocation(const llvm::SMDiagnostic &D,
262 SourceManager &CSM) {
263 // Get both the clang and llvm source managers. The location is relative to
264 // a memory buffer that the LLVM Source Manager is handling, we need to add
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000265 // a copy to the Clang source manager.
Chris Lattnerd6f19062010-04-08 00:23:06 +0000266 const llvm::SourceMgr &LSM = *D.getSourceMgr();
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000267
Chris Lattnerd6f19062010-04-08 00:23:06 +0000268 // We need to copy the underlying LLVM memory buffer because llvm::SourceMgr
269 // already owns its one and clang::SourceManager wants to own its one.
270 const MemoryBuffer *LBuf =
271 LSM.getMemoryBuffer(LSM.FindBufferContainingLoc(D.getLoc()));
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000272
Chris Lattnerd6f19062010-04-08 00:23:06 +0000273 // Create the copy and transfer ownership to clang::SourceManager.
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700274 // TODO: Avoid copying files into memory.
Stephen Hines176edba2014-12-01 14:53:08 -0800275 std::unique_ptr<llvm::MemoryBuffer> CBuf =
276 llvm::MemoryBuffer::getMemBufferCopy(LBuf->getBuffer(),
277 LBuf->getBufferIdentifier());
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700278 // FIXME: Keep a file ID map instead of creating new IDs for each location.
Stephen Hines176edba2014-12-01 14:53:08 -0800279 FileID FID = CSM.createFileID(std::move(CBuf));
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000280
Chris Lattnerd6f19062010-04-08 00:23:06 +0000281 // Translate the offset into the file.
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700282 unsigned Offset = D.getLoc().getPointer() - LBuf->getBufferStart();
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000283 SourceLocation NewLoc =
Argyrios Kyrtzidisa64ccef2011-09-19 20:40:19 +0000284 CSM.getLocForStartOfFile(FID).getLocWithOffset(Offset);
Chris Lattnerd6f19062010-04-08 00:23:06 +0000285 return FullSourceLoc(NewLoc, CSM);
286}
287
Chris Lattnercabae682010-04-06 17:52:14 +0000288
Chris Lattner6da9eb62010-04-06 18:38:50 +0000289/// InlineAsmDiagHandler2 - This function is invoked when the backend hits an
290/// error parsing inline asm. The SMDiagnostic indicates the error relative to
Daniel Dunbarf80cb752010-04-29 16:29:09 +0000291/// the temporary memory buffer that the inline asm parser has set up.
Chris Lattner6da9eb62010-04-06 18:38:50 +0000292void BackendConsumer::InlineAsmDiagHandler2(const llvm::SMDiagnostic &D,
293 SourceLocation LocCookie) {
294 // There are a couple of different kinds of errors we could get here. First,
295 // we re-format the SMDiagnostic in terms of a clang diagnostic.
Argyrios Kyrtzidis5d3a4bb2012-02-01 06:36:49 +0000296
297 // Strip "error: " off the start of the message string.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000298 StringRef Message = D.getMessage();
Argyrios Kyrtzidis5d3a4bb2012-02-01 06:36:49 +0000299 if (Message.startswith("error: "))
300 Message = Message.substr(7);
Chris Lattner6da9eb62010-04-06 18:38:50 +0000301
Chris Lattner99e14a02010-06-15 00:03:12 +0000302 // If the SMDiagnostic has an inline asm source location, translate it.
Chris Lattner6da9eb62010-04-06 18:38:50 +0000303 FullSourceLoc Loc;
Chris Lattnerd6f19062010-04-08 00:23:06 +0000304 if (D.getLoc() != SMLoc())
305 Loc = ConvertBackendLocation(D, Context->getSourceManager());
Argyrios Kyrtzidis5d3a4bb2012-02-01 06:36:49 +0000306
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700307 unsigned DiagID;
308 switch (D.getKind()) {
309 case llvm::SourceMgr::DK_Error:
310 DiagID = diag::err_fe_inline_asm;
311 break;
312 case llvm::SourceMgr::DK_Warning:
313 DiagID = diag::warn_fe_inline_asm;
314 break;
315 case llvm::SourceMgr::DK_Note:
316 DiagID = diag::note_fe_inline_asm;
317 break;
318 }
Chris Lattner99e14a02010-06-15 00:03:12 +0000319 // If this problem has clang-level source location information, report the
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700320 // issue in the source with a note showing the instantiated
Chris Lattner99e14a02010-06-15 00:03:12 +0000321 // code.
322 if (LocCookie.isValid()) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700323 Diags.Report(LocCookie, DiagID).AddString(Message);
Chris Lattner99e14a02010-06-15 00:03:12 +0000324
Benjamin Kramer96fda0c2011-10-16 10:48:28 +0000325 if (D.getLoc().isValid()) {
326 DiagnosticBuilder B = Diags.Report(Loc, diag::note_fe_inline_asm_here);
327 // Convert the SMDiagnostic ranges into SourceRange and attach them
328 // to the diagnostic.
329 for (unsigned i = 0, e = D.getRanges().size(); i != e; ++i) {
330 std::pair<unsigned, unsigned> Range = D.getRanges()[i];
331 unsigned Column = D.getColumnNo();
332 B << SourceRange(Loc.getLocWithOffset(Range.first - Column),
333 Loc.getLocWithOffset(Range.second - Column));
334 }
335 }
Chris Lattner99e14a02010-06-15 00:03:12 +0000336 return;
337 }
338
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700339 // Otherwise, report the backend issue as occurring in the generated .s file.
340 // If Loc is invalid, we still need to report the issue, it just gets no
Chris Lattner99e14a02010-06-15 00:03:12 +0000341 // location info.
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700342 Diags.Report(Loc, DiagID).AddString(Message);
Chris Lattner6da9eb62010-04-06 18:38:50 +0000343}
344
Stephen Hines651f13c2014-04-23 16:59:28 -0700345#define ComputeDiagID(Severity, GroupName, DiagID) \
346 do { \
347 switch (Severity) { \
348 case llvm::DS_Error: \
349 DiagID = diag::err_fe_##GroupName; \
350 break; \
351 case llvm::DS_Warning: \
352 DiagID = diag::warn_fe_##GroupName; \
353 break; \
354 case llvm::DS_Remark: \
355 llvm_unreachable("'remark' severity not expected"); \
356 break; \
357 case llvm::DS_Note: \
358 DiagID = diag::note_fe_##GroupName; \
359 break; \
360 } \
361 } while (false)
362
363#define ComputeDiagRemarkID(Severity, GroupName, DiagID) \
364 do { \
365 switch (Severity) { \
366 case llvm::DS_Error: \
367 DiagID = diag::err_fe_##GroupName; \
368 break; \
369 case llvm::DS_Warning: \
370 DiagID = diag::warn_fe_##GroupName; \
371 break; \
372 case llvm::DS_Remark: \
373 DiagID = diag::remark_fe_##GroupName; \
374 break; \
375 case llvm::DS_Note: \
376 DiagID = diag::note_fe_##GroupName; \
377 break; \
378 } \
379 } while (false)
380
381bool
382BackendConsumer::InlineAsmDiagHandler(const llvm::DiagnosticInfoInlineAsm &D) {
383 unsigned DiagID;
384 ComputeDiagID(D.getSeverity(), inline_asm, DiagID);
385 std::string Message = D.getMsgStr().str();
386
387 // If this problem has clang-level source location information, report the
388 // issue as being a problem in the source with a note showing the instantiated
389 // code.
390 SourceLocation LocCookie =
391 SourceLocation::getFromRawEncoding(D.getLocCookie());
392 if (LocCookie.isValid())
393 Diags.Report(LocCookie, DiagID).AddString(Message);
394 else {
395 // Otherwise, report the backend diagnostic as occurring in the generated
396 // .s file.
397 // If Loc is invalid, we still need to report the diagnostic, it just gets
398 // no location info.
399 FullSourceLoc Loc;
400 Diags.Report(Loc, DiagID).AddString(Message);
401 }
402 // We handled all the possible severities.
403 return true;
404}
405
406bool
407BackendConsumer::StackSizeDiagHandler(const llvm::DiagnosticInfoStackSize &D) {
408 if (D.getSeverity() != llvm::DS_Warning)
409 // For now, the only support we have for StackSize diagnostic is warning.
410 // We do not know how to format other severities.
411 return false;
412
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700413 if (const Decl *ND = Gen->GetDeclForMangledName(D.getFunction().getName())) {
414 Diags.Report(ND->getASTContext().getFullLoc(ND->getLocation()),
415 diag::warn_fe_frame_larger_than)
416 << D.getStackSize() << Decl::castToDeclContext(ND);
417 return true;
418 }
419
420 return false;
421}
422
Stephen Hines176edba2014-12-01 14:53:08 -0800423void BackendConsumer::EmitOptimizationMessage(
424 const llvm::DiagnosticInfoOptimizationBase &D, unsigned DiagID) {
425 // We only support warnings and remarks.
426 assert(D.getSeverity() == llvm::DS_Remark ||
427 D.getSeverity() == llvm::DS_Warning);
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700428
429 SourceManager &SourceMgr = Context->getSourceManager();
430 FileManager &FileMgr = SourceMgr.getFileManager();
431 StringRef Filename;
432 unsigned Line, Column;
433 D.getLocation(&Filename, &Line, &Column);
434 SourceLocation DILoc;
435 const FileEntry *FE = FileMgr.getFile(Filename);
436 if (FE && Line > 0) {
437 // If -gcolumn-info was not used, Column will be 0. This upsets the
438 // source manager, so pass 1 if Column is not set.
439 DILoc = SourceMgr.translateFileLineCol(FE, Line, Column ? Column : 1);
440 }
441
442 // If a location isn't available, try to approximate it using the associated
443 // function definition. We use the definition's right brace to differentiate
444 // from diagnostics that genuinely relate to the function itself.
445 FullSourceLoc Loc(DILoc, SourceMgr);
446 if (Loc.isInvalid())
447 if (const Decl *FD = Gen->GetDeclForMangledName(D.getFunction().getName()))
448 Loc = FD->getASTContext().getFullLoc(FD->getBodyRBrace());
449
Stephen Hines176edba2014-12-01 14:53:08 -0800450 Diags.Report(Loc, DiagID)
451 << AddFlagValue(D.getPassName() ? D.getPassName() : "")
452 << D.getMsg().str();
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700453
454 if (DILoc.isInvalid())
455 // If we were not able to translate the file:line:col information
456 // back to a SourceLocation, at least emit a note stating that
457 // we could not translate this location. This can happen in the
458 // case of #line directives.
459 Diags.Report(Loc, diag::note_fe_backend_optimization_remark_invalid_loc)
460 << Filename << Line << Column;
Stephen Hines651f13c2014-04-23 16:59:28 -0700461}
462
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700463void BackendConsumer::OptimizationRemarkHandler(
464 const llvm::DiagnosticInfoOptimizationRemark &D) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700465 // Optimization remarks are active only if the -Rpass flag has a regular
466 // expression that matches the name of the pass name in \p D.
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700467 if (CodeGenOpts.OptimizationRemarkPattern &&
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700468 CodeGenOpts.OptimizationRemarkPattern->match(D.getPassName()))
Stephen Hines176edba2014-12-01 14:53:08 -0800469 EmitOptimizationMessage(D, diag::remark_fe_backend_optimization_remark);
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700470}
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700471
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700472void BackendConsumer::OptimizationRemarkHandler(
473 const llvm::DiagnosticInfoOptimizationRemarkMissed &D) {
474 // Missed optimization remarks are active only if the -Rpass-missed
475 // flag has a regular expression that matches the name of the pass
476 // name in \p D.
477 if (CodeGenOpts.OptimizationRemarkMissedPattern &&
478 CodeGenOpts.OptimizationRemarkMissedPattern->match(D.getPassName()))
Stephen Hines176edba2014-12-01 14:53:08 -0800479 EmitOptimizationMessage(D,
480 diag::remark_fe_backend_optimization_remark_missed);
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700481}
482
483void BackendConsumer::OptimizationRemarkHandler(
484 const llvm::DiagnosticInfoOptimizationRemarkAnalysis &D) {
485 // Optimization analysis remarks are active only if the -Rpass-analysis
486 // flag has a regular expression that matches the name of the pass
487 // name in \p D.
488 if (CodeGenOpts.OptimizationRemarkAnalysisPattern &&
489 CodeGenOpts.OptimizationRemarkAnalysisPattern->match(D.getPassName()))
Stephen Hines176edba2014-12-01 14:53:08 -0800490 EmitOptimizationMessage(
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700491 D, diag::remark_fe_backend_optimization_remark_analysis);
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700492}
493
Stephen Hines176edba2014-12-01 14:53:08 -0800494void BackendConsumer::OptimizationFailureHandler(
495 const llvm::DiagnosticInfoOptimizationFailure &D) {
496 EmitOptimizationMessage(D, diag::warn_fe_backend_optimization_failure);
497}
498
499void BackendConsumer::linkerDiagnosticHandler(const DiagnosticInfo &DI) {
500 if (DI.getSeverity() != DS_Error)
501 return;
502
503 std::string MsgStorage;
504 {
505 raw_string_ostream Stream(MsgStorage);
506 DiagnosticPrinterRawOStream DP(Stream);
507 DI.print(DP);
508 }
509
510 Diags.Report(diag::err_fe_cannot_link_module)
511 << LinkModule->getModuleIdentifier() << MsgStorage;
512}
513
Stephen Hines651f13c2014-04-23 16:59:28 -0700514/// \brief This function is invoked when the backend needs
515/// to report something to the user.
516void BackendConsumer::DiagnosticHandlerImpl(const DiagnosticInfo &DI) {
517 unsigned DiagID = diag::err_fe_inline_asm;
518 llvm::DiagnosticSeverity Severity = DI.getSeverity();
519 // Get the diagnostic ID based.
520 switch (DI.getKind()) {
521 case llvm::DK_InlineAsm:
522 if (InlineAsmDiagHandler(cast<DiagnosticInfoInlineAsm>(DI)))
523 return;
524 ComputeDiagID(Severity, inline_asm, DiagID);
525 break;
526 case llvm::DK_StackSize:
527 if (StackSizeDiagHandler(cast<DiagnosticInfoStackSize>(DI)))
528 return;
529 ComputeDiagID(Severity, backend_frame_larger_than, DiagID);
530 break;
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700531 case llvm::DK_OptimizationRemark:
532 // Optimization remarks are always handled completely by this
533 // handler. There is no generic way of emitting them.
534 OptimizationRemarkHandler(cast<DiagnosticInfoOptimizationRemark>(DI));
535 return;
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700536 case llvm::DK_OptimizationRemarkMissed:
537 // Optimization remarks are always handled completely by this
538 // handler. There is no generic way of emitting them.
539 OptimizationRemarkHandler(cast<DiagnosticInfoOptimizationRemarkMissed>(DI));
540 return;
541 case llvm::DK_OptimizationRemarkAnalysis:
542 // Optimization remarks are always handled completely by this
543 // handler. There is no generic way of emitting them.
544 OptimizationRemarkHandler(
545 cast<DiagnosticInfoOptimizationRemarkAnalysis>(DI));
546 return;
Stephen Hines176edba2014-12-01 14:53:08 -0800547 case llvm::DK_OptimizationFailure:
548 // Optimization failures are always handled completely by this
549 // handler.
550 OptimizationFailureHandler(cast<DiagnosticInfoOptimizationFailure>(DI));
551 return;
Stephen Hines651f13c2014-04-23 16:59:28 -0700552 default:
553 // Plugin IDs are not bound to any value as they are set dynamically.
554 ComputeDiagRemarkID(Severity, backend_plugin, DiagID);
555 break;
556 }
557 std::string MsgStorage;
558 {
559 raw_string_ostream Stream(MsgStorage);
560 DiagnosticPrinterRawOStream DP(Stream);
561 DI.print(DP);
562 }
563
564 // Report the backend message using the usual diagnostic mechanism.
565 FullSourceLoc Loc;
566 Diags.Report(Loc, DiagID).AddString(MsgStorage);
567}
568#undef ComputeDiagID
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000569
Peter Collingbourne4b93d662011-02-19 23:03:58 +0000570CodeGenAction::CodeGenAction(unsigned _Act, LLVMContext *_VMContext)
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700571 : Act(_Act), LinkModule(nullptr),
Peter Collingbourne22a7dfe2011-10-30 17:30:44 +0000572 VMContext(_VMContext ? _VMContext : new LLVMContext),
Peter Collingbourne4b93d662011-02-19 23:03:58 +0000573 OwnsVMContext(!_VMContext) {}
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000574
Peter Collingbourne4b93d662011-02-19 23:03:58 +0000575CodeGenAction::~CodeGenAction() {
576 TheModule.reset();
577 if (OwnsVMContext)
578 delete VMContext;
579}
Daniel Dunbar9ad1c022010-02-25 20:37:44 +0000580
Daniel Dunbar4cbbd942010-06-07 23:27:59 +0000581bool CodeGenAction::hasIRSupport() const { return true; }
582
Daniel Dunbarb954e982010-02-25 04:37:50 +0000583void CodeGenAction::EndSourceFileAction() {
584 // If the consumer creation failed, do nothing.
585 if (!getCompilerInstance().hasASTConsumer())
586 return;
587
Peter Collingbourne22a7dfe2011-10-30 17:30:44 +0000588 // If we were given a link module, release consumer's ownership of it.
589 if (LinkModule)
590 BEConsumer->takeLinkModule();
591
Daniel Dunbarb954e982010-02-25 04:37:50 +0000592 // Steal the module from the consumer.
Stephen Hines176edba2014-12-01 14:53:08 -0800593 TheModule = BEConsumer->takeModule();
Daniel Dunbarb954e982010-02-25 04:37:50 +0000594}
595
Stephen Hines176edba2014-12-01 14:53:08 -0800596std::unique_ptr<llvm::Module> CodeGenAction::takeModule() {
597 return std::move(TheModule);
598}
Daniel Dunbarb954e982010-02-25 04:37:50 +0000599
Peter Collingbourne4b93d662011-02-19 23:03:58 +0000600llvm::LLVMContext *CodeGenAction::takeLLVMContext() {
601 OwnsVMContext = false;
602 return VMContext;
603}
604
Daniel Dunbar4cbbd942010-06-07 23:27:59 +0000605static raw_ostream *GetOutputStream(CompilerInstance &CI,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000606 StringRef InFile,
Daniel Dunbar4cbbd942010-06-07 23:27:59 +0000607 BackendAction Action) {
608 switch (Action) {
609 case Backend_EmitAssembly:
610 return CI.createDefaultOutputFile(false, InFile, "s");
611 case Backend_EmitLL:
612 return CI.createDefaultOutputFile(false, InFile, "ll");
613 case Backend_EmitBC:
614 return CI.createDefaultOutputFile(true, InFile, "bc");
615 case Backend_EmitNothing:
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700616 return nullptr;
Daniel Dunbar4cbbd942010-06-07 23:27:59 +0000617 case Backend_EmitMCNull:
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700618 return CI.createNullOutputFile();
Daniel Dunbar4cbbd942010-06-07 23:27:59 +0000619 case Backend_EmitObj:
620 return CI.createDefaultOutputFile(true, InFile, "o");
621 }
622
David Blaikieb219cfc2011-09-23 05:06:16 +0000623 llvm_unreachable("Invalid action!");
Daniel Dunbar4cbbd942010-06-07 23:27:59 +0000624}
625
Stephen Hines176edba2014-12-01 14:53:08 -0800626std::unique_ptr<ASTConsumer>
627CodeGenAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000628 BackendAction BA = static_cast<BackendAction>(Act);
Stephen Hines651f13c2014-04-23 16:59:28 -0700629 std::unique_ptr<raw_ostream> OS(GetOutputStream(CI, InFile, BA));
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000630 if (BA != Backend_EmitNothing && !OS)
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700631 return nullptr;
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000632
Peter Collingbourne22a7dfe2011-10-30 17:30:44 +0000633 llvm::Module *LinkModuleToUse = LinkModule;
634
635 // If we were not given a link module, and the user requested that one be
636 // loaded from bitcode, do so now.
637 const std::string &LinkBCFile = CI.getCodeGenOpts().LinkBitcodeFile;
638 if (!LinkModuleToUse && !LinkBCFile.empty()) {
Stephen Hines176edba2014-12-01 14:53:08 -0800639 auto BCBuf = CI.getFileManager().getBufferForFile(LinkBCFile);
Peter Collingbourne22a7dfe2011-10-30 17:30:44 +0000640 if (!BCBuf) {
641 CI.getDiagnostics().Report(diag::err_cannot_open_file)
Stephen Hines176edba2014-12-01 14:53:08 -0800642 << LinkBCFile << BCBuf.getError().message();
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700643 return nullptr;
Peter Collingbourne22a7dfe2011-10-30 17:30:44 +0000644 }
645
Stephen Hines651f13c2014-04-23 16:59:28 -0700646 ErrorOr<llvm::Module *> ModuleOrErr =
Stephen Hines176edba2014-12-01 14:53:08 -0800647 getLazyBitcodeModule(std::move(*BCBuf), *VMContext);
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700648 if (std::error_code EC = ModuleOrErr.getError()) {
Peter Collingbourne22a7dfe2011-10-30 17:30:44 +0000649 CI.getDiagnostics().Report(diag::err_cannot_open_file)
Stephen Hines651f13c2014-04-23 16:59:28 -0700650 << LinkBCFile << EC.message();
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700651 return nullptr;
Peter Collingbourne22a7dfe2011-10-30 17:30:44 +0000652 }
Stephen Hines651f13c2014-04-23 16:59:28 -0700653 LinkModuleToUse = ModuleOrErr.get();
Peter Collingbourne22a7dfe2011-10-30 17:30:44 +0000654 }
655
Stephen Hines176edba2014-12-01 14:53:08 -0800656 CoverageSourceInfo *CoverageInfo = nullptr;
657 // Add the preprocessor callback only when the coverage mapping is generated.
658 if (CI.getCodeGenOpts().CoverageMapping) {
659 CoverageInfo = new CoverageSourceInfo;
660 CI.getPreprocessor().addPPCallbacks(
661 std::unique_ptr<PPCallbacks>(CoverageInfo));
662 }
663 std::unique_ptr<BackendConsumer> Result(new BackendConsumer(
664 BA, CI.getDiagnostics(), CI.getCodeGenOpts(), CI.getTargetOpts(),
665 CI.getLangOpts(), CI.getFrontendOpts().ShowTimers, InFile,
666 LinkModuleToUse, OS.release(), *VMContext, CoverageInfo));
667 BEConsumer = Result.get();
668 return std::move(Result);
Daniel Dunbard69bacc2008-10-21 23:49:24 +0000669}
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000670
Daniel Dunbar4cbbd942010-06-07 23:27:59 +0000671void CodeGenAction::ExecuteAction() {
672 // If this is an IR file, we have to treat it specially.
673 if (getCurrentFileKind() == IK_LLVM_IR) {
674 BackendAction BA = static_cast<BackendAction>(Act);
675 CompilerInstance &CI = getCompilerInstance();
676 raw_ostream *OS = GetOutputStream(CI, getCurrentFile(), BA);
677 if (BA != Backend_EmitNothing && !OS)
678 return;
679
680 bool Invalid;
681 SourceManager &SM = CI.getSourceManager();
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700682 FileID FID = SM.getMainFileID();
683 llvm::MemoryBuffer *MainFile = SM.getBuffer(FID, &Invalid);
Daniel Dunbar4cbbd942010-06-07 23:27:59 +0000684 if (Invalid)
685 return;
686
Daniel Dunbar4cbbd942010-06-07 23:27:59 +0000687 llvm::SMDiagnostic Err;
Stephen Hines176edba2014-12-01 14:53:08 -0800688 TheModule = parseIR(MainFile->getMemBufferRef(), Err, *VMContext);
Daniel Dunbar4cbbd942010-06-07 23:27:59 +0000689 if (!TheModule) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700690 // Translate from the diagnostic info to the SourceManager location if
691 // available.
692 // TODO: Unify this with ConvertBackendLocation()
693 SourceLocation Loc;
694 if (Err.getLineNo() > 0) {
695 assert(Err.getColumnNo() >= 0);
696 Loc = SM.translateFileLineCol(SM.getFileEntryForID(FID),
697 Err.getLineNo(), Err.getColumnNo() + 1);
698 }
Daniel Dunbar4cbbd942010-06-07 23:27:59 +0000699
Stephen Hines651f13c2014-04-23 16:59:28 -0700700 // Strip off a leading diagnostic code if there is one.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000701 StringRef Msg = Err.getMessage();
Daniel Dunbar4cbbd942010-06-07 23:27:59 +0000702 if (Msg.startswith("error: "))
703 Msg = Msg.substr(7);
Benjamin Kramerc9b47f92012-03-16 22:31:42 +0000704
Stephen Hines651f13c2014-04-23 16:59:28 -0700705 unsigned DiagID =
706 CI.getDiagnostics().getCustomDiagID(DiagnosticsEngine::Error, "%0");
Benjamin Kramerc9b47f92012-03-16 22:31:42 +0000707
Stephen Hines651f13c2014-04-23 16:59:28 -0700708 CI.getDiagnostics().Report(Loc, DiagID) << Msg;
Daniel Dunbar4cbbd942010-06-07 23:27:59 +0000709 return;
710 }
Stephen Hines651f13c2014-04-23 16:59:28 -0700711 const TargetOptions &TargetOpts = CI.getTargetOpts();
712 if (TheModule->getTargetTriple() != TargetOpts.Triple) {
713 unsigned DiagID = CI.getDiagnostics().getCustomDiagID(
714 DiagnosticsEngine::Warning,
715 "overriding the module target triple with %0");
Daniel Dunbar4cbbd942010-06-07 23:27:59 +0000716
Stephen Hines651f13c2014-04-23 16:59:28 -0700717 CI.getDiagnostics().Report(SourceLocation(), DiagID) << TargetOpts.Triple;
718 TheModule->setTargetTriple(TargetOpts.Triple);
719 }
720
721 EmitBackendOutput(CI.getDiagnostics(), CI.getCodeGenOpts(), TargetOpts,
722 CI.getLangOpts(), CI.getTarget().getTargetDescription(),
723 TheModule.get(), BA, OS);
Daniel Dunbar4cbbd942010-06-07 23:27:59 +0000724 return;
725 }
726
727 // Otherwise follow the normal AST path.
728 this->ASTFrontendAction::ExecuteAction();
729}
730
731//
732
David Blaikie99ba9e32011-12-20 02:48:34 +0000733void EmitAssemblyAction::anchor() { }
Peter Collingbourne4b93d662011-02-19 23:03:58 +0000734EmitAssemblyAction::EmitAssemblyAction(llvm::LLVMContext *_VMContext)
735 : CodeGenAction(Backend_EmitAssembly, _VMContext) {}
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000736
David Blaikie99ba9e32011-12-20 02:48:34 +0000737void EmitBCAction::anchor() { }
Peter Collingbourne4b93d662011-02-19 23:03:58 +0000738EmitBCAction::EmitBCAction(llvm::LLVMContext *_VMContext)
739 : CodeGenAction(Backend_EmitBC, _VMContext) {}
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000740
David Blaikie99ba9e32011-12-20 02:48:34 +0000741void EmitLLVMAction::anchor() { }
Peter Collingbourne4b93d662011-02-19 23:03:58 +0000742EmitLLVMAction::EmitLLVMAction(llvm::LLVMContext *_VMContext)
743 : CodeGenAction(Backend_EmitLL, _VMContext) {}
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000744
David Blaikie99ba9e32011-12-20 02:48:34 +0000745void EmitLLVMOnlyAction::anchor() { }
Peter Collingbourne4b93d662011-02-19 23:03:58 +0000746EmitLLVMOnlyAction::EmitLLVMOnlyAction(llvm::LLVMContext *_VMContext)
747 : CodeGenAction(Backend_EmitNothing, _VMContext) {}
Daniel Dunbar4ee34612010-02-25 04:37:45 +0000748
David Blaikie99ba9e32011-12-20 02:48:34 +0000749void EmitCodeGenOnlyAction::anchor() { }
Peter Collingbourne4b93d662011-02-19 23:03:58 +0000750EmitCodeGenOnlyAction::EmitCodeGenOnlyAction(llvm::LLVMContext *_VMContext)
751 : CodeGenAction(Backend_EmitMCNull, _VMContext) {}
Daniel Dunbar32148ce2010-05-25 18:41:01 +0000752
David Blaikie99ba9e32011-12-20 02:48:34 +0000753void EmitObjAction::anchor() { }
Peter Collingbourne4b93d662011-02-19 23:03:58 +0000754EmitObjAction::EmitObjAction(llvm::LLVMContext *_VMContext)
755 : CodeGenAction(Backend_EmitObj, _VMContext) {}