Daniel Dunbar | cea0c70 | 2010-02-25 04:37:45 +0000 | [diff] [blame] | 1 | //===--- CodeGenAction.cpp - LLVM Code Generation Frontend Action ---------===// |
Daniel Dunbar | c13935e | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 2 | // |
| 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 Dunbar | c1b1729 | 2010-06-15 17:48:49 +0000 | [diff] [blame] | 10 | #include "clang/CodeGen/CodeGenAction.h" |
Chris Lattner | 5bbb3c8 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 11 | #include "clang/AST/ASTConsumer.h" |
Daniel Dunbar | b9bbd54 | 2009-11-15 06:48:46 +0000 | [diff] [blame] | 12 | #include "clang/AST/ASTContext.h" |
Chris Lattner | 5bbb3c8 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 13 | #include "clang/AST/DeclGroup.h" |
Hans Wennborg | a926d84 | 2014-05-23 20:37:38 +0000 | [diff] [blame] | 14 | #include "clang/AST/DeclCXX.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 15 | #include "clang/Basic/FileManager.h" |
| 16 | #include "clang/Basic/SourceManager.h" |
| 17 | #include "clang/Basic/TargetInfo.h" |
Daniel Dunbar | c1b1729 | 2010-06-15 17:48:49 +0000 | [diff] [blame] | 18 | #include "clang/CodeGen/BackendUtil.h" |
Daniel Dunbar | b9bbd54 | 2009-11-15 06:48:46 +0000 | [diff] [blame] | 19 | #include "clang/CodeGen/ModuleBuilder.h" |
Daniel Dunbar | cea0c70 | 2010-02-25 04:37:45 +0000 | [diff] [blame] | 20 | #include "clang/Frontend/CompilerInstance.h" |
Daniel Dunbar | acadc55 | 2009-12-03 09:12:54 +0000 | [diff] [blame] | 21 | #include "clang/Frontend/FrontendDiagnostic.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/SmallString.h" |
| 23 | #include "llvm/Bitcode/ReaderWriter.h" |
Diego Novillo | 829b170 | 2014-04-16 16:54:24 +0000 | [diff] [blame] | 24 | #include "llvm/IR/DebugInfo.h" |
Quentin Colombet | 728c554 | 2014-02-06 18:30:43 +0000 | [diff] [blame] | 25 | #include "llvm/IR/DiagnosticInfo.h" |
| 26 | #include "llvm/IR/DiagnosticPrinter.h" |
Chandler Carruth | ffd5551 | 2013-01-02 11:45:17 +0000 | [diff] [blame] | 27 | #include "llvm/IR/LLVMContext.h" |
| 28 | #include "llvm/IR/Module.h" |
Chandler Carruth | b45836a | 2013-03-26 02:25:54 +0000 | [diff] [blame] | 29 | #include "llvm/IRReader/IRReader.h" |
Chandler Carruth | 00fa3f7 | 2014-03-06 03:46:44 +0000 | [diff] [blame] | 30 | #include "llvm/Linker/Linker.h" |
Daniel Dunbar | 3e11152 | 2010-06-07 23:21:04 +0000 | [diff] [blame] | 31 | #include "llvm/Pass.h" |
Chris Lattner | 5ec32e7 | 2010-04-06 18:38:50 +0000 | [diff] [blame] | 32 | #include "llvm/Support/MemoryBuffer.h" |
| 33 | #include "llvm/Support/SourceMgr.h" |
Chris Lattner | 263d64c | 2009-02-18 01:37:30 +0000 | [diff] [blame] | 34 | #include "llvm/Support/Timer.h" |
Ahmed Charles | dfca6f9 | 2014-03-09 11:36:40 +0000 | [diff] [blame] | 35 | #include <memory> |
Daniel Dunbar | c13935e | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 36 | using namespace clang; |
| 37 | using namespace llvm; |
| 38 | |
Nico Weber | 2992efa | 2011-01-25 20:34:14 +0000 | [diff] [blame] | 39 | namespace clang { |
Benjamin Kramer | 16634c2 | 2009-11-28 10:07:24 +0000 | [diff] [blame] | 40 | class BackendConsumer : public ASTConsumer { |
David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 41 | virtual void anchor(); |
David Blaikie | 9c902b5 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 42 | DiagnosticsEngine &Diags; |
Daniel Dunbar | c13935e | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 43 | BackendAction Action; |
Daniel Dunbar | de18224 | 2009-11-30 08:39:32 +0000 | [diff] [blame] | 44 | const CodeGenOptions &CodeGenOpts; |
Daniel Dunbar | de18224 | 2009-11-30 08:39:32 +0000 | [diff] [blame] | 45 | const TargetOptions &TargetOpts; |
Dan Gohman | fec0ff8 | 2011-07-05 22:02:36 +0000 | [diff] [blame] | 46 | const LangOptions &LangOpts; |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 47 | raw_ostream *AsmOutStream; |
Chris Lattner | eae6cb6 | 2009-03-05 08:00:35 +0000 | [diff] [blame] | 48 | ASTContext *Context; |
Daniel Dunbar | b3a36cf | 2008-10-29 08:50:02 +0000 | [diff] [blame] | 49 | |
Chris Lattner | 263d64c | 2009-02-18 01:37:30 +0000 | [diff] [blame] | 50 | Timer LLVMIRGeneration; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 51 | |
Ahmed Charles | b898432 | 2014-03-07 20:03:18 +0000 | [diff] [blame] | 52 | std::unique_ptr<CodeGenerator> Gen; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 53 | |
Ahmed Charles | b898432 | 2014-03-07 20:03:18 +0000 | [diff] [blame] | 54 | std::unique_ptr<llvm::Module> TheModule, LinkModule; |
Daniel Dunbar | c13935e | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 55 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 56 | public: |
David Blaikie | 9c902b5 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 57 | BackendConsumer(BackendAction action, DiagnosticsEngine &_Diags, |
Daniel Dunbar | 6d5824f | 2010-06-07 23:19:17 +0000 | [diff] [blame] | 58 | const CodeGenOptions &compopts, |
Dan Gohman | fec0ff8 | 2011-07-05 22:02:36 +0000 | [diff] [blame] | 59 | const TargetOptions &targetopts, |
Rafael Espindola | 666a2ab | 2013-12-18 16:38:48 +0000 | [diff] [blame] | 60 | const LangOptions &langopts, bool TimePasses, |
| 61 | const std::string &infile, llvm::Module *LinkModule, |
| 62 | raw_ostream *OS, LLVMContext &C) |
| 63 | : Diags(_Diags), Action(action), CodeGenOpts(compopts), |
| 64 | TargetOpts(targetopts), LangOpts(langopts), AsmOutStream(OS), |
| 65 | Context(), LLVMIRGeneration("LLVM IR Generation Time"), |
| 66 | Gen(CreateLLVMCodeGen(Diags, infile, compopts, targetopts, C)), |
| 67 | LinkModule(LinkModule) { |
Daniel Dunbar | 8e70505 | 2009-11-30 08:39:52 +0000 | [diff] [blame] | 68 | llvm::TimePassesIsEnabled = TimePasses; |
Chris Lattner | deffa13 | 2009-02-18 01:23:44 +0000 | [diff] [blame] | 69 | } |
Daniel Dunbar | c13935e | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 70 | |
Ahmed Charles | 9a16beb | 2014-03-07 19:33:25 +0000 | [diff] [blame] | 71 | llvm::Module *takeModule() { return TheModule.release(); } |
| 72 | llvm::Module *takeLinkModule() { return LinkModule.release(); } |
Daniel Dunbar | 400a693 | 2010-02-25 04:37:50 +0000 | [diff] [blame] | 73 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 74 | void HandleCXXStaticMemberVarInstantiation(VarDecl *VD) override { |
Rafael Espindola | df88f6f | 2012-03-08 15:51:03 +0000 | [diff] [blame] | 75 | Gen->HandleCXXStaticMemberVarInstantiation(VD); |
Rafael Espindola | 189fa74 | 2012-03-05 10:54:55 +0000 | [diff] [blame] | 76 | } |
| 77 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 78 | void Initialize(ASTContext &Ctx) override { |
Chris Lattner | 5cf49fe | 2009-03-28 02:18:25 +0000 | [diff] [blame] | 79 | Context = &Ctx; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 80 | |
Daniel Dunbar | 8e70505 | 2009-11-30 08:39:52 +0000 | [diff] [blame] | 81 | if (llvm::TimePassesIsEnabled) |
Chris Lattner | 263d64c | 2009-02-18 01:37:30 +0000 | [diff] [blame] | 82 | LLVMIRGeneration.startTimer(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 83 | |
Chris Lattner | 5cf49fe | 2009-03-28 02:18:25 +0000 | [diff] [blame] | 84 | Gen->Initialize(Ctx); |
Daniel Dunbar | c13935e | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 85 | |
Daniel Dunbar | 400a693 | 2010-02-25 04:37:50 +0000 | [diff] [blame] | 86 | TheModule.reset(Gen->GetModule()); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 87 | |
Daniel Dunbar | 8e70505 | 2009-11-30 08:39:52 +0000 | [diff] [blame] | 88 | if (llvm::TimePassesIsEnabled) |
Chris Lattner | 263d64c | 2009-02-18 01:37:30 +0000 | [diff] [blame] | 89 | LLVMIRGeneration.stopTimer(); |
Daniel Dunbar | c13935e | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 90 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 91 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 92 | bool HandleTopLevelDecl(DeclGroupRef D) override { |
Chris Lattner | 5bbb3c8 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 93 | PrettyStackTraceDecl CrashInfo(*D.begin(), SourceLocation(), |
Chris Lattner | eae6cb6 | 2009-03-05 08:00:35 +0000 | [diff] [blame] | 94 | Context->getSourceManager(), |
| 95 | "LLVM IR generation of declaration"); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 96 | |
Daniel Dunbar | 8e70505 | 2009-11-30 08:39:52 +0000 | [diff] [blame] | 97 | if (llvm::TimePassesIsEnabled) |
Chris Lattner | 263d64c | 2009-02-18 01:37:30 +0000 | [diff] [blame] | 98 | LLVMIRGeneration.startTimer(); |
Chris Lattner | 5bbb3c8 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 99 | |
Daniel Dunbar | c13935e | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 100 | Gen->HandleTopLevelDecl(D); |
Chris Lattner | 263d64c | 2009-02-18 01:37:30 +0000 | [diff] [blame] | 101 | |
Daniel Dunbar | 8e70505 | 2009-11-30 08:39:52 +0000 | [diff] [blame] | 102 | if (llvm::TimePassesIsEnabled) |
Chris Lattner | 263d64c | 2009-02-18 01:37:30 +0000 | [diff] [blame] | 103 | LLVMIRGeneration.stopTimer(); |
Argyrios Kyrtzidis | 841dd88 | 2011-11-18 00:26:59 +0000 | [diff] [blame] | 104 | |
| 105 | return true; |
Daniel Dunbar | c13935e | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 106 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 107 | |
Hans Wennborg | a926d84 | 2014-05-23 20:37:38 +0000 | [diff] [blame] | 108 | void HandleInlineMethodDefinition(CXXMethodDecl *D) override { |
| 109 | PrettyStackTraceDecl CrashInfo(D, SourceLocation(), |
| 110 | Context->getSourceManager(), |
| 111 | "LLVM IR generation of inline method"); |
| 112 | if (llvm::TimePassesIsEnabled) |
| 113 | LLVMIRGeneration.startTimer(); |
| 114 | |
| 115 | Gen->HandleInlineMethodDefinition(D); |
| 116 | |
| 117 | if (llvm::TimePassesIsEnabled) |
| 118 | LLVMIRGeneration.stopTimer(); |
| 119 | } |
| 120 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 121 | void HandleTranslationUnit(ASTContext &C) override { |
Chris Lattner | eae6cb6 | 2009-03-05 08:00:35 +0000 | [diff] [blame] | 122 | { |
Chris Lattner | e46de75 | 2009-03-06 06:46:31 +0000 | [diff] [blame] | 123 | PrettyStackTraceString CrashInfo("Per-file LLVM IR generation"); |
Daniel Dunbar | 8e70505 | 2009-11-30 08:39:52 +0000 | [diff] [blame] | 124 | if (llvm::TimePassesIsEnabled) |
Chris Lattner | eae6cb6 | 2009-03-05 08:00:35 +0000 | [diff] [blame] | 125 | LLVMIRGeneration.startTimer(); |
Chris Lattner | 263d64c | 2009-02-18 01:37:30 +0000 | [diff] [blame] | 126 | |
Chris Lattner | cf16983 | 2009-03-28 04:11:33 +0000 | [diff] [blame] | 127 | Gen->HandleTranslationUnit(C); |
Daniel Dunbar | a94d873 | 2008-11-11 06:35:39 +0000 | [diff] [blame] | 128 | |
Daniel Dunbar | 8e70505 | 2009-11-30 08:39:52 +0000 | [diff] [blame] | 129 | if (llvm::TimePassesIsEnabled) |
Chris Lattner | eae6cb6 | 2009-03-05 08:00:35 +0000 | [diff] [blame] | 130 | LLVMIRGeneration.stopTimer(); |
| 131 | } |
Chris Lattner | 263d64c | 2009-02-18 01:37:30 +0000 | [diff] [blame] | 132 | |
Daniel Dunbar | f976d1b | 2010-06-07 23:20:08 +0000 | [diff] [blame] | 133 | // Silently ignore if we weren't initialized for some reason. |
Daniel Dunbar | 3e11152 | 2010-06-07 23:21:04 +0000 | [diff] [blame] | 134 | if (!TheModule) |
Daniel Dunbar | f976d1b | 2010-06-07 23:20:08 +0000 | [diff] [blame] | 135 | return; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 136 | |
Daniel Dunbar | f976d1b | 2010-06-07 23:20:08 +0000 | [diff] [blame] | 137 | // Make sure IR generation is happy with the module. This is released by |
| 138 | // the module provider. |
Douglas Gregor | de3ef50 | 2011-11-30 23:21:26 +0000 | [diff] [blame] | 139 | llvm::Module *M = Gen->ReleaseModule(); |
Daniel Dunbar | f976d1b | 2010-06-07 23:20:08 +0000 | [diff] [blame] | 140 | if (!M) { |
| 141 | // The module has been released by IR gen on failures, do not double |
| 142 | // free. |
Ahmed Charles | 9a16beb | 2014-03-07 19:33:25 +0000 | [diff] [blame] | 143 | TheModule.release(); |
Daniel Dunbar | f976d1b | 2010-06-07 23:20:08 +0000 | [diff] [blame] | 144 | return; |
| 145 | } |
| 146 | |
| 147 | assert(TheModule.get() == M && |
| 148 | "Unexpected module change during IR generation"); |
| 149 | |
Peter Collingbourne | f1d76db | 2011-10-30 17:30:44 +0000 | [diff] [blame] | 150 | // Link LinkModule into this module if present, preserving its validity. |
| 151 | if (LinkModule) { |
| 152 | std::string ErrorMsg; |
| 153 | if (Linker::LinkModules(M, LinkModule.get(), Linker::PreserveSource, |
| 154 | &ErrorMsg)) { |
| 155 | Diags.Report(diag::err_fe_cannot_link_module) |
| 156 | << LinkModule->getModuleIdentifier() << ErrorMsg; |
| 157 | return; |
| 158 | } |
| 159 | } |
| 160 | |
Daniel Dunbar | f976d1b | 2010-06-07 23:20:08 +0000 | [diff] [blame] | 161 | // Install an inline asm handler so that diagnostics get printed through |
| 162 | // our diagnostics hooks. |
| 163 | LLVMContext &Ctx = TheModule->getContext(); |
Chris Lattner | 068f2ab | 2010-11-17 08:13:04 +0000 | [diff] [blame] | 164 | LLVMContext::InlineAsmDiagHandlerTy OldHandler = |
| 165 | Ctx.getInlineAsmDiagnosticHandler(); |
Daniel Dunbar | f976d1b | 2010-06-07 23:20:08 +0000 | [diff] [blame] | 166 | void *OldContext = Ctx.getInlineAsmDiagnosticContext(); |
Chris Lattner | 068f2ab | 2010-11-17 08:13:04 +0000 | [diff] [blame] | 167 | Ctx.setInlineAsmDiagnosticHandler(InlineAsmDiagHandler, this); |
Daniel Dunbar | f976d1b | 2010-06-07 23:20:08 +0000 | [diff] [blame] | 168 | |
Quentin Colombet | 728c554 | 2014-02-06 18:30:43 +0000 | [diff] [blame] | 169 | LLVMContext::DiagnosticHandlerTy OldDiagnosticHandler = |
| 170 | Ctx.getDiagnosticHandler(); |
| 171 | void *OldDiagnosticContext = Ctx.getDiagnosticContext(); |
| 172 | Ctx.setDiagnosticHandler(DiagnosticHandler, this); |
| 173 | |
Dan Gohman | fec0ff8 | 2011-07-05 22:02:36 +0000 | [diff] [blame] | 174 | EmitBackendOutput(Diags, CodeGenOpts, TargetOpts, LangOpts, |
Alp Toker | e83b906 | 2014-01-02 15:08:04 +0000 | [diff] [blame] | 175 | C.getTargetInfo().getTargetDescription(), |
Daniel Dunbar | 3e11152 | 2010-06-07 23:21:04 +0000 | [diff] [blame] | 176 | TheModule.get(), Action, AsmOutStream); |
Rafael Espindola | 666a2ab | 2013-12-18 16:38:48 +0000 | [diff] [blame] | 177 | |
Daniel Dunbar | f976d1b | 2010-06-07 23:20:08 +0000 | [diff] [blame] | 178 | Ctx.setInlineAsmDiagnosticHandler(OldHandler, OldContext); |
Quentin Colombet | 728c554 | 2014-02-06 18:30:43 +0000 | [diff] [blame] | 179 | |
| 180 | Ctx.setDiagnosticHandler(OldDiagnosticHandler, OldDiagnosticContext); |
Daniel Dunbar | c13935e | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 181 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 182 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 183 | void HandleTagDeclDefinition(TagDecl *D) override { |
Chris Lattner | eae6cb6 | 2009-03-05 08:00:35 +0000 | [diff] [blame] | 184 | PrettyStackTraceDecl CrashInfo(D, SourceLocation(), |
| 185 | Context->getSourceManager(), |
| 186 | "LLVM IR generation of declaration"); |
Daniel Dunbar | c13935e | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 187 | Gen->HandleTagDeclDefinition(D); |
| 188 | } |
Douglas Gregor | beecd58 | 2009-04-21 17:11:58 +0000 | [diff] [blame] | 189 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 190 | void HandleTagDeclRequiredDefinition(const TagDecl *D) override { |
David Blaikie | 48ad6dc | 2013-07-13 21:08:14 +0000 | [diff] [blame] | 191 | Gen->HandleTagDeclRequiredDefinition(D); |
| 192 | } |
| 193 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 194 | void CompleteTentativeDefinition(VarDecl *D) override { |
Douglas Gregor | beecd58 | 2009-04-21 17:11:58 +0000 | [diff] [blame] | 195 | Gen->CompleteTentativeDefinition(D); |
| 196 | } |
Daniel Dunbar | 50aa0a5 | 2010-04-29 16:29:09 +0000 | [diff] [blame] | 197 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 198 | void HandleVTable(CXXRecordDecl *RD, bool DefinitionRequired) override { |
Douglas Gregor | 88d292c | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 199 | Gen->HandleVTable(RD, DefinitionRequired); |
| 200 | } |
| 201 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 202 | void HandleLinkerOptionPragma(llvm::StringRef Opts) override { |
Reid Kleckner | e43f0fe | 2013-05-08 13:44:39 +0000 | [diff] [blame] | 203 | Gen->HandleLinkerOptionPragma(Opts); |
| 204 | } |
| 205 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 206 | void HandleDetectMismatch(llvm::StringRef Name, |
| 207 | llvm::StringRef Value) override { |
Aaron Ballman | 5d041be | 2013-06-04 02:07:14 +0000 | [diff] [blame] | 208 | Gen->HandleDetectMismatch(Name, Value); |
| 209 | } |
| 210 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 211 | void HandleDependentLibrary(llvm::StringRef Opts) override { |
Reid Kleckner | e43f0fe | 2013-05-08 13:44:39 +0000 | [diff] [blame] | 212 | Gen->HandleDependentLibrary(Opts); |
| 213 | } |
| 214 | |
Chris Lattner | 5ec32e7 | 2010-04-06 18:38:50 +0000 | [diff] [blame] | 215 | 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 Dunbar | 50aa0a5 | 2010-04-29 16:29:09 +0000 | [diff] [blame] | 220 | |
Quentin Colombet | 728c554 | 2014-02-06 18:30:43 +0000 | [diff] [blame] | 221 | static void DiagnosticHandler(const llvm::DiagnosticInfo &DI, |
| 222 | void *Context) { |
| 223 | ((BackendConsumer *)Context)->DiagnosticHandlerImpl(DI); |
| 224 | } |
| 225 | |
Chris Lattner | 5ec32e7 | 2010-04-06 18:38:50 +0000 | [diff] [blame] | 226 | void InlineAsmDiagHandler2(const llvm::SMDiagnostic &, |
| 227 | SourceLocation LocCookie); |
Quentin Colombet | 728c554 | 2014-02-06 18:30:43 +0000 | [diff] [blame] | 228 | |
| 229 | void DiagnosticHandlerImpl(const llvm::DiagnosticInfo &DI); |
| 230 | /// \brief Specialized handler for InlineAsm diagnostic. |
| 231 | /// \return True if the diagnostic has been successfully reported, false |
| 232 | /// otherwise. |
| 233 | bool InlineAsmDiagHandler(const llvm::DiagnosticInfoInlineAsm &D); |
| 234 | /// \brief Specialized handler for StackSize diagnostic. |
| 235 | /// \return True if the diagnostic has been successfully reported, false |
| 236 | /// otherwise. |
| 237 | bool StackSizeDiagHandler(const llvm::DiagnosticInfoStackSize &D); |
Diego Novillo | d23ec94 | 2014-05-29 19:55:06 +0000 | [diff] [blame] | 238 | /// \brief Specialized handlers for optimization remarks. |
| 239 | /// Note that these handlers only accept remarks and they always handle |
Diego Novillo | 829b170 | 2014-04-16 16:54:24 +0000 | [diff] [blame] | 240 | /// them. |
Tyler Nowicki | e470771 | 2014-07-16 00:40:42 +0000 | [diff] [blame^] | 241 | void EmitOptimizationMessage(const llvm::DiagnosticInfoOptimizationBase &D, |
| 242 | unsigned DiagID); |
Diego Novillo | d23ec94 | 2014-05-29 19:55:06 +0000 | [diff] [blame] | 243 | void |
Diego Novillo | 829b170 | 2014-04-16 16:54:24 +0000 | [diff] [blame] | 244 | OptimizationRemarkHandler(const llvm::DiagnosticInfoOptimizationRemark &D); |
Diego Novillo | d23ec94 | 2014-05-29 19:55:06 +0000 | [diff] [blame] | 245 | void OptimizationRemarkHandler( |
| 246 | const llvm::DiagnosticInfoOptimizationRemarkMissed &D); |
| 247 | void OptimizationRemarkHandler( |
| 248 | const llvm::DiagnosticInfoOptimizationRemarkAnalysis &D); |
Tyler Nowicki | e470771 | 2014-07-16 00:40:42 +0000 | [diff] [blame^] | 249 | void OptimizationWarningHandler( |
| 250 | const llvm::DiagnosticInfoOptimizationWarning &D); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 251 | }; |
David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 252 | |
| 253 | void BackendConsumer::anchor() {} |
Daniel Dunbar | c13935e | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 254 | } |
| 255 | |
Chris Lattner | 79f67a7 | 2010-04-08 00:23:06 +0000 | [diff] [blame] | 256 | /// ConvertBackendLocation - Convert a location in a temporary llvm::SourceMgr |
| 257 | /// buffer to be a valid FullSourceLoc. |
| 258 | static FullSourceLoc ConvertBackendLocation(const llvm::SMDiagnostic &D, |
| 259 | SourceManager &CSM) { |
| 260 | // Get both the clang and llvm source managers. The location is relative to |
| 261 | // a memory buffer that the LLVM Source Manager is handling, we need to add |
Daniel Dunbar | 50aa0a5 | 2010-04-29 16:29:09 +0000 | [diff] [blame] | 262 | // a copy to the Clang source manager. |
Chris Lattner | 79f67a7 | 2010-04-08 00:23:06 +0000 | [diff] [blame] | 263 | const llvm::SourceMgr &LSM = *D.getSourceMgr(); |
Daniel Dunbar | 50aa0a5 | 2010-04-29 16:29:09 +0000 | [diff] [blame] | 264 | |
Chris Lattner | 79f67a7 | 2010-04-08 00:23:06 +0000 | [diff] [blame] | 265 | // We need to copy the underlying LLVM memory buffer because llvm::SourceMgr |
| 266 | // already owns its one and clang::SourceManager wants to own its one. |
| 267 | const MemoryBuffer *LBuf = |
| 268 | LSM.getMemoryBuffer(LSM.FindBufferContainingLoc(D.getLoc())); |
Daniel Dunbar | 50aa0a5 | 2010-04-29 16:29:09 +0000 | [diff] [blame] | 269 | |
Chris Lattner | 79f67a7 | 2010-04-08 00:23:06 +0000 | [diff] [blame] | 270 | // Create the copy and transfer ownership to clang::SourceManager. |
Alp Toker | aa0dd5a | 2014-06-27 06:02:00 +0000 | [diff] [blame] | 271 | // TODO: Avoid copying files into memory. |
Chris Lattner | 79f67a7 | 2010-04-08 00:23:06 +0000 | [diff] [blame] | 272 | llvm::MemoryBuffer *CBuf = |
| 273 | llvm::MemoryBuffer::getMemBufferCopy(LBuf->getBuffer(), |
| 274 | LBuf->getBufferIdentifier()); |
Alp Toker | aa0dd5a | 2014-06-27 06:02:00 +0000 | [diff] [blame] | 275 | // FIXME: Keep a file ID map instead of creating new IDs for each location. |
Alp Toker | 6ac2cd0 | 2014-05-16 17:23:01 +0000 | [diff] [blame] | 276 | FileID FID = CSM.createFileID(CBuf); |
Daniel Dunbar | 50aa0a5 | 2010-04-29 16:29:09 +0000 | [diff] [blame] | 277 | |
Chris Lattner | 79f67a7 | 2010-04-08 00:23:06 +0000 | [diff] [blame] | 278 | // Translate the offset into the file. |
Alp Toker | aa0dd5a | 2014-06-27 06:02:00 +0000 | [diff] [blame] | 279 | unsigned Offset = D.getLoc().getPointer() - LBuf->getBufferStart(); |
Daniel Dunbar | 50aa0a5 | 2010-04-29 16:29:09 +0000 | [diff] [blame] | 280 | SourceLocation NewLoc = |
Argyrios Kyrtzidis | e6e67de | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 281 | CSM.getLocForStartOfFile(FID).getLocWithOffset(Offset); |
Chris Lattner | 79f67a7 | 2010-04-08 00:23:06 +0000 | [diff] [blame] | 282 | return FullSourceLoc(NewLoc, CSM); |
| 283 | } |
| 284 | |
Chris Lattner | 6d67213 | 2010-04-06 17:52:14 +0000 | [diff] [blame] | 285 | |
Chris Lattner | 5ec32e7 | 2010-04-06 18:38:50 +0000 | [diff] [blame] | 286 | /// InlineAsmDiagHandler2 - This function is invoked when the backend hits an |
| 287 | /// error parsing inline asm. The SMDiagnostic indicates the error relative to |
Daniel Dunbar | 50aa0a5 | 2010-04-29 16:29:09 +0000 | [diff] [blame] | 288 | /// the temporary memory buffer that the inline asm parser has set up. |
Chris Lattner | 5ec32e7 | 2010-04-06 18:38:50 +0000 | [diff] [blame] | 289 | void BackendConsumer::InlineAsmDiagHandler2(const llvm::SMDiagnostic &D, |
| 290 | SourceLocation LocCookie) { |
| 291 | // There are a couple of different kinds of errors we could get here. First, |
| 292 | // we re-format the SMDiagnostic in terms of a clang diagnostic. |
Argyrios Kyrtzidis | a11b35a | 2012-02-01 06:36:49 +0000 | [diff] [blame] | 293 | |
| 294 | // Strip "error: " off the start of the message string. |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 295 | StringRef Message = D.getMessage(); |
Argyrios Kyrtzidis | a11b35a | 2012-02-01 06:36:49 +0000 | [diff] [blame] | 296 | if (Message.startswith("error: ")) |
| 297 | Message = Message.substr(7); |
Chris Lattner | 5ec32e7 | 2010-04-06 18:38:50 +0000 | [diff] [blame] | 298 | |
Chris Lattner | c7ed7ea | 2010-06-15 00:03:12 +0000 | [diff] [blame] | 299 | // If the SMDiagnostic has an inline asm source location, translate it. |
Chris Lattner | 5ec32e7 | 2010-04-06 18:38:50 +0000 | [diff] [blame] | 300 | FullSourceLoc Loc; |
Chris Lattner | 79f67a7 | 2010-04-08 00:23:06 +0000 | [diff] [blame] | 301 | if (D.getLoc() != SMLoc()) |
| 302 | Loc = ConvertBackendLocation(D, Context->getSourceManager()); |
Argyrios Kyrtzidis | a11b35a | 2012-02-01 06:36:49 +0000 | [diff] [blame] | 303 | |
Joey Gouly | 5798b26 | 2014-06-05 21:23:42 +0000 | [diff] [blame] | 304 | unsigned DiagID; |
| 305 | switch (D.getKind()) { |
| 306 | case llvm::SourceMgr::DK_Error: |
| 307 | DiagID = diag::err_fe_inline_asm; |
| 308 | break; |
| 309 | case llvm::SourceMgr::DK_Warning: |
| 310 | DiagID = diag::warn_fe_inline_asm; |
| 311 | break; |
| 312 | case llvm::SourceMgr::DK_Note: |
| 313 | DiagID = diag::note_fe_inline_asm; |
| 314 | break; |
| 315 | } |
Chris Lattner | c7ed7ea | 2010-06-15 00:03:12 +0000 | [diff] [blame] | 316 | // If this problem has clang-level source location information, report the |
Joey Gouly | 5798b26 | 2014-06-05 21:23:42 +0000 | [diff] [blame] | 317 | // issue in the source with a note showing the instantiated |
Chris Lattner | c7ed7ea | 2010-06-15 00:03:12 +0000 | [diff] [blame] | 318 | // code. |
| 319 | if (LocCookie.isValid()) { |
Joey Gouly | 5798b26 | 2014-06-05 21:23:42 +0000 | [diff] [blame] | 320 | Diags.Report(LocCookie, DiagID).AddString(Message); |
Chris Lattner | c7ed7ea | 2010-06-15 00:03:12 +0000 | [diff] [blame] | 321 | |
Benjamin Kramer | e06b2b7 | 2011-10-16 10:48:28 +0000 | [diff] [blame] | 322 | if (D.getLoc().isValid()) { |
| 323 | DiagnosticBuilder B = Diags.Report(Loc, diag::note_fe_inline_asm_here); |
| 324 | // Convert the SMDiagnostic ranges into SourceRange and attach them |
| 325 | // to the diagnostic. |
| 326 | for (unsigned i = 0, e = D.getRanges().size(); i != e; ++i) { |
| 327 | std::pair<unsigned, unsigned> Range = D.getRanges()[i]; |
| 328 | unsigned Column = D.getColumnNo(); |
| 329 | B << SourceRange(Loc.getLocWithOffset(Range.first - Column), |
| 330 | Loc.getLocWithOffset(Range.second - Column)); |
| 331 | } |
| 332 | } |
Chris Lattner | c7ed7ea | 2010-06-15 00:03:12 +0000 | [diff] [blame] | 333 | return; |
| 334 | } |
| 335 | |
Joey Gouly | 5798b26 | 2014-06-05 21:23:42 +0000 | [diff] [blame] | 336 | // Otherwise, report the backend issue as occurring in the generated .s file. |
| 337 | // If Loc is invalid, we still need to report the issue, it just gets no |
Chris Lattner | c7ed7ea | 2010-06-15 00:03:12 +0000 | [diff] [blame] | 338 | // location info. |
Joey Gouly | 5798b26 | 2014-06-05 21:23:42 +0000 | [diff] [blame] | 339 | Diags.Report(Loc, DiagID).AddString(Message); |
Chris Lattner | 5ec32e7 | 2010-04-06 18:38:50 +0000 | [diff] [blame] | 340 | } |
| 341 | |
Quentin Colombet | 728c554 | 2014-02-06 18:30:43 +0000 | [diff] [blame] | 342 | #define ComputeDiagID(Severity, GroupName, DiagID) \ |
| 343 | do { \ |
| 344 | switch (Severity) { \ |
| 345 | case llvm::DS_Error: \ |
| 346 | DiagID = diag::err_fe_##GroupName; \ |
| 347 | break; \ |
| 348 | case llvm::DS_Warning: \ |
| 349 | DiagID = diag::warn_fe_##GroupName; \ |
| 350 | break; \ |
Tobias Grosser | 7416024 | 2014-02-28 09:11:08 +0000 | [diff] [blame] | 351 | case llvm::DS_Remark: \ |
| 352 | llvm_unreachable("'remark' severity not expected"); \ |
| 353 | break; \ |
| 354 | case llvm::DS_Note: \ |
| 355 | DiagID = diag::note_fe_##GroupName; \ |
| 356 | break; \ |
| 357 | } \ |
| 358 | } while (false) |
| 359 | |
| 360 | #define ComputeDiagRemarkID(Severity, GroupName, DiagID) \ |
| 361 | do { \ |
| 362 | switch (Severity) { \ |
| 363 | case llvm::DS_Error: \ |
| 364 | DiagID = diag::err_fe_##GroupName; \ |
| 365 | break; \ |
| 366 | case llvm::DS_Warning: \ |
| 367 | DiagID = diag::warn_fe_##GroupName; \ |
| 368 | break; \ |
| 369 | case llvm::DS_Remark: \ |
| 370 | DiagID = diag::remark_fe_##GroupName; \ |
| 371 | break; \ |
Quentin Colombet | 728c554 | 2014-02-06 18:30:43 +0000 | [diff] [blame] | 372 | case llvm::DS_Note: \ |
| 373 | DiagID = diag::note_fe_##GroupName; \ |
| 374 | break; \ |
| 375 | } \ |
| 376 | } while (false) |
| 377 | |
| 378 | bool |
| 379 | BackendConsumer::InlineAsmDiagHandler(const llvm::DiagnosticInfoInlineAsm &D) { |
| 380 | unsigned DiagID; |
| 381 | ComputeDiagID(D.getSeverity(), inline_asm, DiagID); |
| 382 | std::string Message = D.getMsgStr().str(); |
| 383 | |
| 384 | // If this problem has clang-level source location information, report the |
Tobias Grosser | bd25beb | 2014-02-26 10:21:56 +0000 | [diff] [blame] | 385 | // issue as being a problem in the source with a note showing the instantiated |
Quentin Colombet | 728c554 | 2014-02-06 18:30:43 +0000 | [diff] [blame] | 386 | // code. |
| 387 | SourceLocation LocCookie = |
| 388 | SourceLocation::getFromRawEncoding(D.getLocCookie()); |
| 389 | if (LocCookie.isValid()) |
| 390 | Diags.Report(LocCookie, DiagID).AddString(Message); |
| 391 | else { |
| 392 | // Otherwise, report the backend diagnostic as occurring in the generated |
| 393 | // .s file. |
| 394 | // If Loc is invalid, we still need to report the diagnostic, it just gets |
| 395 | // no location info. |
| 396 | FullSourceLoc Loc; |
| 397 | Diags.Report(Loc, DiagID).AddString(Message); |
| 398 | } |
| 399 | // We handled all the possible severities. |
| 400 | return true; |
| 401 | } |
| 402 | |
| 403 | bool |
| 404 | BackendConsumer::StackSizeDiagHandler(const llvm::DiagnosticInfoStackSize &D) { |
| 405 | if (D.getSeverity() != llvm::DS_Warning) |
| 406 | // For now, the only support we have for StackSize diagnostic is warning. |
| 407 | // We do not know how to format other severities. |
| 408 | return false; |
| 409 | |
Alp Toker | fb8d02b | 2014-06-05 22:10:59 +0000 | [diff] [blame] | 410 | if (const Decl *ND = Gen->GetDeclForMangledName(D.getFunction().getName())) { |
| 411 | Diags.Report(ND->getASTContext().getFullLoc(ND->getLocation()), |
| 412 | diag::warn_fe_frame_larger_than) |
| 413 | << D.getStackSize() << Decl::castToDeclContext(ND); |
| 414 | return true; |
| 415 | } |
| 416 | |
| 417 | return false; |
Quentin Colombet | 728c554 | 2014-02-06 18:30:43 +0000 | [diff] [blame] | 418 | } |
| 419 | |
Tyler Nowicki | e470771 | 2014-07-16 00:40:42 +0000 | [diff] [blame^] | 420 | void BackendConsumer::EmitOptimizationMessage( |
| 421 | const llvm::DiagnosticInfoOptimizationBase &D, unsigned DiagID) { |
| 422 | // We only support warnings and remarks. |
| 423 | assert(D.getSeverity() == llvm::DS_Remark || |
| 424 | D.getSeverity() == llvm::DS_Warning); |
Diego Novillo | 829b170 | 2014-04-16 16:54:24 +0000 | [diff] [blame] | 425 | |
Diego Novillo | d23ec94 | 2014-05-29 19:55:06 +0000 | [diff] [blame] | 426 | SourceManager &SourceMgr = Context->getSourceManager(); |
| 427 | FileManager &FileMgr = SourceMgr.getFileManager(); |
| 428 | StringRef Filename; |
| 429 | unsigned Line, Column; |
| 430 | D.getLocation(&Filename, &Line, &Column); |
Alp Toker | 2750627 | 2014-06-05 22:11:12 +0000 | [diff] [blame] | 431 | SourceLocation DILoc; |
Diego Novillo | d23ec94 | 2014-05-29 19:55:06 +0000 | [diff] [blame] | 432 | const FileEntry *FE = FileMgr.getFile(Filename); |
| 433 | if (FE && Line > 0) { |
| 434 | // If -gcolumn-info was not used, Column will be 0. This upsets the |
Alp Toker | 2750627 | 2014-06-05 22:11:12 +0000 | [diff] [blame] | 435 | // source manager, so pass 1 if Column is not set. |
| 436 | DILoc = SourceMgr.translateFileLineCol(FE, Line, Column ? Column : 1); |
Diego Novillo | 829b170 | 2014-04-16 16:54:24 +0000 | [diff] [blame] | 437 | } |
Alp Toker | 2750627 | 2014-06-05 22:11:12 +0000 | [diff] [blame] | 438 | |
| 439 | // If a location isn't available, try to approximate it using the associated |
| 440 | // function definition. We use the definition's right brace to differentiate |
| 441 | // from diagnostics that genuinely relate to the function itself. |
| 442 | FullSourceLoc Loc(DILoc, SourceMgr); |
| 443 | if (Loc.isInvalid()) |
| 444 | if (const Decl *FD = Gen->GetDeclForMangledName(D.getFunction().getName())) |
| 445 | Loc = FD->getASTContext().getFullLoc(FD->getBodyRBrace()); |
| 446 | |
Tyler Nowicki | e470771 | 2014-07-16 00:40:42 +0000 | [diff] [blame^] | 447 | // Flag value not used by all optimization messages. |
| 448 | if (D.getPassName()) |
| 449 | Diags.Report(Loc, DiagID) << AddFlagValue(D.getPassName()) |
| 450 | << D.getMsg().str(); |
| 451 | else |
| 452 | Diags.Report(Loc, DiagID) << D.getMsg().str(); |
Diego Novillo | d23ec94 | 2014-05-29 19:55:06 +0000 | [diff] [blame] | 453 | |
Diego Novillo | 913690c | 2014-06-24 17:02:17 +0000 | [diff] [blame] | 454 | if (DILoc.isInvalid()) |
Diego Novillo | d23ec94 | 2014-05-29 19:55:06 +0000 | [diff] [blame] | 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. |
Alp Toker | 2750627 | 2014-06-05 22:11:12 +0000 | [diff] [blame] | 459 | Diags.Report(Loc, diag::note_fe_backend_optimization_remark_invalid_loc) |
Diego Novillo | d23ec94 | 2014-05-29 19:55:06 +0000 | [diff] [blame] | 460 | << Filename << Line << Column; |
| 461 | } |
| 462 | |
| 463 | void BackendConsumer::OptimizationRemarkHandler( |
| 464 | const llvm::DiagnosticInfoOptimizationRemark &D) { |
| 465 | // 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. |
| 467 | if (CodeGenOpts.OptimizationRemarkPattern && |
| 468 | CodeGenOpts.OptimizationRemarkPattern->match(D.getPassName())) |
Tyler Nowicki | e470771 | 2014-07-16 00:40:42 +0000 | [diff] [blame^] | 469 | EmitOptimizationMessage(D, diag::remark_fe_backend_optimization_remark); |
Diego Novillo | d23ec94 | 2014-05-29 19:55:06 +0000 | [diff] [blame] | 470 | } |
| 471 | |
| 472 | void 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())) |
Tyler Nowicki | e470771 | 2014-07-16 00:40:42 +0000 | [diff] [blame^] | 479 | EmitOptimizationMessage(D, |
| 480 | diag::remark_fe_backend_optimization_remark_missed); |
Diego Novillo | d23ec94 | 2014-05-29 19:55:06 +0000 | [diff] [blame] | 481 | } |
| 482 | |
| 483 | void 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())) |
Tyler Nowicki | e470771 | 2014-07-16 00:40:42 +0000 | [diff] [blame^] | 490 | EmitOptimizationMessage( |
Diego Novillo | d23ec94 | 2014-05-29 19:55:06 +0000 | [diff] [blame] | 491 | D, diag::remark_fe_backend_optimization_remark_analysis); |
Diego Novillo | 829b170 | 2014-04-16 16:54:24 +0000 | [diff] [blame] | 492 | } |
| 493 | |
Tyler Nowicki | e470771 | 2014-07-16 00:40:42 +0000 | [diff] [blame^] | 494 | void BackendConsumer::OptimizationWarningHandler( |
| 495 | const llvm::DiagnosticInfoOptimizationWarning &D) { |
| 496 | EmitOptimizationMessage(D, diag::warn_fe_backend_optimization_warning); |
| 497 | } |
| 498 | |
Quentin Colombet | 728c554 | 2014-02-06 18:30:43 +0000 | [diff] [blame] | 499 | /// \brief This function is invoked when the backend needs |
| 500 | /// to report something to the user. |
| 501 | void BackendConsumer::DiagnosticHandlerImpl(const DiagnosticInfo &DI) { |
| 502 | unsigned DiagID = diag::err_fe_inline_asm; |
| 503 | llvm::DiagnosticSeverity Severity = DI.getSeverity(); |
| 504 | // Get the diagnostic ID based. |
| 505 | switch (DI.getKind()) { |
| 506 | case llvm::DK_InlineAsm: |
| 507 | if (InlineAsmDiagHandler(cast<DiagnosticInfoInlineAsm>(DI))) |
| 508 | return; |
| 509 | ComputeDiagID(Severity, inline_asm, DiagID); |
| 510 | break; |
| 511 | case llvm::DK_StackSize: |
| 512 | if (StackSizeDiagHandler(cast<DiagnosticInfoStackSize>(DI))) |
| 513 | return; |
| 514 | ComputeDiagID(Severity, backend_frame_larger_than, DiagID); |
| 515 | break; |
Diego Novillo | 829b170 | 2014-04-16 16:54:24 +0000 | [diff] [blame] | 516 | case llvm::DK_OptimizationRemark: |
| 517 | // Optimization remarks are always handled completely by this |
| 518 | // handler. There is no generic way of emitting them. |
| 519 | OptimizationRemarkHandler(cast<DiagnosticInfoOptimizationRemark>(DI)); |
| 520 | return; |
Diego Novillo | 9c89ff1 | 2014-05-29 16:19:27 +0000 | [diff] [blame] | 521 | case llvm::DK_OptimizationRemarkMissed: |
Diego Novillo | d23ec94 | 2014-05-29 19:55:06 +0000 | [diff] [blame] | 522 | // Optimization remarks are always handled completely by this |
| 523 | // handler. There is no generic way of emitting them. |
| 524 | OptimizationRemarkHandler(cast<DiagnosticInfoOptimizationRemarkMissed>(DI)); |
| 525 | return; |
Diego Novillo | 9c89ff1 | 2014-05-29 16:19:27 +0000 | [diff] [blame] | 526 | case llvm::DK_OptimizationRemarkAnalysis: |
Diego Novillo | d23ec94 | 2014-05-29 19:55:06 +0000 | [diff] [blame] | 527 | // Optimization remarks are always handled completely by this |
| 528 | // handler. There is no generic way of emitting them. |
| 529 | OptimizationRemarkHandler( |
| 530 | cast<DiagnosticInfoOptimizationRemarkAnalysis>(DI)); |
Diego Novillo | 9c89ff1 | 2014-05-29 16:19:27 +0000 | [diff] [blame] | 531 | return; |
Tyler Nowicki | e470771 | 2014-07-16 00:40:42 +0000 | [diff] [blame^] | 532 | case llvm::DK_OptimizationWarning: |
| 533 | // Optimization warnings are always handled completely by this |
| 534 | // handler. |
| 535 | OptimizationWarningHandler(cast<DiagnosticInfoOptimizationWarning>(DI)); |
| 536 | return; |
Quentin Colombet | 728c554 | 2014-02-06 18:30:43 +0000 | [diff] [blame] | 537 | default: |
| 538 | // Plugin IDs are not bound to any value as they are set dynamically. |
Tobias Grosser | 7416024 | 2014-02-28 09:11:08 +0000 | [diff] [blame] | 539 | ComputeDiagRemarkID(Severity, backend_plugin, DiagID); |
Quentin Colombet | 728c554 | 2014-02-06 18:30:43 +0000 | [diff] [blame] | 540 | break; |
| 541 | } |
| 542 | std::string MsgStorage; |
| 543 | { |
| 544 | raw_string_ostream Stream(MsgStorage); |
| 545 | DiagnosticPrinterRawOStream DP(Stream); |
| 546 | DI.print(DP); |
| 547 | } |
| 548 | |
| 549 | // Report the backend message using the usual diagnostic mechanism. |
| 550 | FullSourceLoc Loc; |
| 551 | Diags.Report(Loc, DiagID).AddString(MsgStorage); |
| 552 | } |
| 553 | #undef ComputeDiagID |
Daniel Dunbar | cea0c70 | 2010-02-25 04:37:45 +0000 | [diff] [blame] | 554 | |
Peter Collingbourne | 8f5cf74 | 2011-02-19 23:03:58 +0000 | [diff] [blame] | 555 | CodeGenAction::CodeGenAction(unsigned _Act, LLVMContext *_VMContext) |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 556 | : Act(_Act), LinkModule(nullptr), |
Peter Collingbourne | f1d76db | 2011-10-30 17:30:44 +0000 | [diff] [blame] | 557 | VMContext(_VMContext ? _VMContext : new LLVMContext), |
Peter Collingbourne | 8f5cf74 | 2011-02-19 23:03:58 +0000 | [diff] [blame] | 558 | OwnsVMContext(!_VMContext) {} |
Daniel Dunbar | cea0c70 | 2010-02-25 04:37:45 +0000 | [diff] [blame] | 559 | |
Peter Collingbourne | 8f5cf74 | 2011-02-19 23:03:58 +0000 | [diff] [blame] | 560 | CodeGenAction::~CodeGenAction() { |
| 561 | TheModule.reset(); |
| 562 | if (OwnsVMContext) |
| 563 | delete VMContext; |
| 564 | } |
Daniel Dunbar | e8ecf9a | 2010-02-25 20:37:44 +0000 | [diff] [blame] | 565 | |
Daniel Dunbar | 6f8362c | 2010-06-07 23:27:59 +0000 | [diff] [blame] | 566 | bool CodeGenAction::hasIRSupport() const { return true; } |
| 567 | |
Daniel Dunbar | 400a693 | 2010-02-25 04:37:50 +0000 | [diff] [blame] | 568 | void CodeGenAction::EndSourceFileAction() { |
| 569 | // If the consumer creation failed, do nothing. |
| 570 | if (!getCompilerInstance().hasASTConsumer()) |
| 571 | return; |
| 572 | |
Peter Collingbourne | f1d76db | 2011-10-30 17:30:44 +0000 | [diff] [blame] | 573 | // If we were given a link module, release consumer's ownership of it. |
| 574 | if (LinkModule) |
| 575 | BEConsumer->takeLinkModule(); |
| 576 | |
Daniel Dunbar | 400a693 | 2010-02-25 04:37:50 +0000 | [diff] [blame] | 577 | // Steal the module from the consumer. |
Nico Weber | 2992efa | 2011-01-25 20:34:14 +0000 | [diff] [blame] | 578 | TheModule.reset(BEConsumer->takeModule()); |
Daniel Dunbar | 400a693 | 2010-02-25 04:37:50 +0000 | [diff] [blame] | 579 | } |
| 580 | |
Ahmed Charles | 9a16beb | 2014-03-07 19:33:25 +0000 | [diff] [blame] | 581 | llvm::Module *CodeGenAction::takeModule() { return TheModule.release(); } |
Daniel Dunbar | 400a693 | 2010-02-25 04:37:50 +0000 | [diff] [blame] | 582 | |
Peter Collingbourne | 8f5cf74 | 2011-02-19 23:03:58 +0000 | [diff] [blame] | 583 | llvm::LLVMContext *CodeGenAction::takeLLVMContext() { |
| 584 | OwnsVMContext = false; |
| 585 | return VMContext; |
| 586 | } |
| 587 | |
Daniel Dunbar | 6f8362c | 2010-06-07 23:27:59 +0000 | [diff] [blame] | 588 | static raw_ostream *GetOutputStream(CompilerInstance &CI, |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 589 | StringRef InFile, |
Daniel Dunbar | 6f8362c | 2010-06-07 23:27:59 +0000 | [diff] [blame] | 590 | BackendAction Action) { |
| 591 | switch (Action) { |
| 592 | case Backend_EmitAssembly: |
| 593 | return CI.createDefaultOutputFile(false, InFile, "s"); |
| 594 | case Backend_EmitLL: |
| 595 | return CI.createDefaultOutputFile(false, InFile, "ll"); |
| 596 | case Backend_EmitBC: |
| 597 | return CI.createDefaultOutputFile(true, InFile, "bc"); |
| 598 | case Backend_EmitNothing: |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 599 | return nullptr; |
Daniel Dunbar | 6f8362c | 2010-06-07 23:27:59 +0000 | [diff] [blame] | 600 | case Backend_EmitMCNull: |
Alp Toker | ea04672 | 2014-06-03 17:23:34 +0000 | [diff] [blame] | 601 | return CI.createNullOutputFile(); |
Daniel Dunbar | 6f8362c | 2010-06-07 23:27:59 +0000 | [diff] [blame] | 602 | case Backend_EmitObj: |
| 603 | return CI.createDefaultOutputFile(true, InFile, "o"); |
| 604 | } |
| 605 | |
David Blaikie | 83d382b | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 606 | llvm_unreachable("Invalid action!"); |
Daniel Dunbar | 6f8362c | 2010-06-07 23:27:59 +0000 | [diff] [blame] | 607 | } |
| 608 | |
Daniel Dunbar | cea0c70 | 2010-02-25 04:37:45 +0000 | [diff] [blame] | 609 | ASTConsumer *CodeGenAction::CreateASTConsumer(CompilerInstance &CI, |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 610 | StringRef InFile) { |
Daniel Dunbar | cea0c70 | 2010-02-25 04:37:45 +0000 | [diff] [blame] | 611 | BackendAction BA = static_cast<BackendAction>(Act); |
Ahmed Charles | b898432 | 2014-03-07 20:03:18 +0000 | [diff] [blame] | 612 | std::unique_ptr<raw_ostream> OS(GetOutputStream(CI, InFile, BA)); |
Daniel Dunbar | cea0c70 | 2010-02-25 04:37:45 +0000 | [diff] [blame] | 613 | if (BA != Backend_EmitNothing && !OS) |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 614 | return nullptr; |
Daniel Dunbar | cea0c70 | 2010-02-25 04:37:45 +0000 | [diff] [blame] | 615 | |
Peter Collingbourne | f1d76db | 2011-10-30 17:30:44 +0000 | [diff] [blame] | 616 | llvm::Module *LinkModuleToUse = LinkModule; |
| 617 | |
| 618 | // If we were not given a link module, and the user requested that one be |
| 619 | // loaded from bitcode, do so now. |
| 620 | const std::string &LinkBCFile = CI.getCodeGenOpts().LinkBitcodeFile; |
| 621 | if (!LinkModuleToUse && !LinkBCFile.empty()) { |
| 622 | std::string ErrorStr; |
| 623 | |
| 624 | llvm::MemoryBuffer *BCBuf = |
| 625 | CI.getFileManager().getBufferForFile(LinkBCFile, &ErrorStr); |
| 626 | if (!BCBuf) { |
| 627 | CI.getDiagnostics().Report(diag::err_cannot_open_file) |
| 628 | << LinkBCFile << ErrorStr; |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 629 | return nullptr; |
Peter Collingbourne | f1d76db | 2011-10-30 17:30:44 +0000 | [diff] [blame] | 630 | } |
| 631 | |
Rafael Espindola | 6b6004a | 2014-01-13 18:31:09 +0000 | [diff] [blame] | 632 | ErrorOr<llvm::Module *> ModuleOrErr = |
| 633 | getLazyBitcodeModule(BCBuf, *VMContext); |
Rafael Espindola | b304699 | 2014-06-12 21:36:35 +0000 | [diff] [blame] | 634 | if (std::error_code EC = ModuleOrErr.getError()) { |
Peter Collingbourne | f1d76db | 2011-10-30 17:30:44 +0000 | [diff] [blame] | 635 | CI.getDiagnostics().Report(diag::err_cannot_open_file) |
Rafael Espindola | 6b6004a | 2014-01-13 18:31:09 +0000 | [diff] [blame] | 636 | << LinkBCFile << EC.message(); |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 637 | return nullptr; |
Peter Collingbourne | f1d76db | 2011-10-30 17:30:44 +0000 | [diff] [blame] | 638 | } |
Rafael Espindola | 6b6004a | 2014-01-13 18:31:09 +0000 | [diff] [blame] | 639 | LinkModuleToUse = ModuleOrErr.get(); |
Peter Collingbourne | f1d76db | 2011-10-30 17:30:44 +0000 | [diff] [blame] | 640 | } |
| 641 | |
Ahmed Charles | 9a16beb | 2014-03-07 19:33:25 +0000 | [diff] [blame] | 642 | BEConsumer = new BackendConsumer(BA, CI.getDiagnostics(), CI.getCodeGenOpts(), |
| 643 | CI.getTargetOpts(), CI.getLangOpts(), |
Warren Hunt | 583db19 | 2014-05-28 19:17:45 +0000 | [diff] [blame] | 644 | CI.getFrontendOpts().ShowTimers, InFile, |
Ahmed Charles | 9a16beb | 2014-03-07 19:33:25 +0000 | [diff] [blame] | 645 | LinkModuleToUse, OS.release(), *VMContext); |
Nico Weber | 2992efa | 2011-01-25 20:34:14 +0000 | [diff] [blame] | 646 | return BEConsumer; |
Daniel Dunbar | c13935e | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 647 | } |
Daniel Dunbar | cea0c70 | 2010-02-25 04:37:45 +0000 | [diff] [blame] | 648 | |
Daniel Dunbar | 6f8362c | 2010-06-07 23:27:59 +0000 | [diff] [blame] | 649 | void CodeGenAction::ExecuteAction() { |
| 650 | // If this is an IR file, we have to treat it specially. |
| 651 | if (getCurrentFileKind() == IK_LLVM_IR) { |
| 652 | BackendAction BA = static_cast<BackendAction>(Act); |
| 653 | CompilerInstance &CI = getCompilerInstance(); |
| 654 | raw_ostream *OS = GetOutputStream(CI, getCurrentFile(), BA); |
| 655 | if (BA != Backend_EmitNothing && !OS) |
| 656 | return; |
| 657 | |
| 658 | bool Invalid; |
| 659 | SourceManager &SM = CI.getSourceManager(); |
Alp Toker | 7b463d5 | 2014-06-30 01:33:59 +0000 | [diff] [blame] | 660 | FileID FID = SM.getMainFileID(); |
| 661 | llvm::MemoryBuffer *MainFile = SM.getBuffer(FID, &Invalid); |
Daniel Dunbar | 6f8362c | 2010-06-07 23:27:59 +0000 | [diff] [blame] | 662 | if (Invalid) |
| 663 | return; |
| 664 | |
Daniel Dunbar | 6f8362c | 2010-06-07 23:27:59 +0000 | [diff] [blame] | 665 | llvm::SMDiagnostic Err; |
David Blaikie | 66cc07b | 2014-06-27 17:40:03 +0000 | [diff] [blame] | 666 | TheModule.reset(ParseIR(MainFile, Err, *VMContext)); |
Daniel Dunbar | 6f8362c | 2010-06-07 23:27:59 +0000 | [diff] [blame] | 667 | if (!TheModule) { |
Alp Toker | 7b463d5 | 2014-06-30 01:33:59 +0000 | [diff] [blame] | 668 | // Translate from the diagnostic info to the SourceManager location if |
| 669 | // available. |
| 670 | // TODO: Unify this with ConvertBackendLocation() |
| 671 | SourceLocation Loc; |
| 672 | if (Err.getLineNo() > 0) { |
| 673 | assert(Err.getColumnNo() >= 0); |
| 674 | Loc = SM.translateFileLineCol(SM.getFileEntryForID(FID), |
| 675 | Err.getLineNo(), Err.getColumnNo() + 1); |
| 676 | } |
Daniel Dunbar | 6f8362c | 2010-06-07 23:27:59 +0000 | [diff] [blame] | 677 | |
Alp Toker | bc043f2 | 2013-12-21 05:20:03 +0000 | [diff] [blame] | 678 | // Strip off a leading diagnostic code if there is one. |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 679 | StringRef Msg = Err.getMessage(); |
Daniel Dunbar | 6f8362c | 2010-06-07 23:27:59 +0000 | [diff] [blame] | 680 | if (Msg.startswith("error: ")) |
| 681 | Msg = Msg.substr(7); |
Benjamin Kramer | 778b8b8 | 2012-03-16 22:31:42 +0000 | [diff] [blame] | 682 | |
Alp Toker | bc043f2 | 2013-12-21 05:20:03 +0000 | [diff] [blame] | 683 | unsigned DiagID = |
| 684 | CI.getDiagnostics().getCustomDiagID(DiagnosticsEngine::Error, "%0"); |
Benjamin Kramer | 778b8b8 | 2012-03-16 22:31:42 +0000 | [diff] [blame] | 685 | |
Alp Toker | bc043f2 | 2013-12-21 05:20:03 +0000 | [diff] [blame] | 686 | CI.getDiagnostics().Report(Loc, DiagID) << Msg; |
Daniel Dunbar | 6f8362c | 2010-06-07 23:27:59 +0000 | [diff] [blame] | 687 | return; |
| 688 | } |
Rafael Espindola | d5e81e5 | 2013-12-20 22:01:25 +0000 | [diff] [blame] | 689 | const TargetOptions &TargetOpts = CI.getTargetOpts(); |
| 690 | if (TheModule->getTargetTriple() != TargetOpts.Triple) { |
| 691 | unsigned DiagID = CI.getDiagnostics().getCustomDiagID( |
| 692 | DiagnosticsEngine::Warning, |
| 693 | "overriding the module target triple with %0"); |
| 694 | |
| 695 | CI.getDiagnostics().Report(SourceLocation(), DiagID) << TargetOpts.Triple; |
| 696 | TheModule->setTargetTriple(TargetOpts.Triple); |
| 697 | } |
Daniel Dunbar | 6f8362c | 2010-06-07 23:27:59 +0000 | [diff] [blame] | 698 | |
Alp Toker | e83b906 | 2014-01-02 15:08:04 +0000 | [diff] [blame] | 699 | EmitBackendOutput(CI.getDiagnostics(), CI.getCodeGenOpts(), TargetOpts, |
| 700 | CI.getLangOpts(), CI.getTarget().getTargetDescription(), |
| 701 | TheModule.get(), BA, OS); |
Daniel Dunbar | 6f8362c | 2010-06-07 23:27:59 +0000 | [diff] [blame] | 702 | return; |
| 703 | } |
| 704 | |
| 705 | // Otherwise follow the normal AST path. |
| 706 | this->ASTFrontendAction::ExecuteAction(); |
| 707 | } |
| 708 | |
| 709 | // |
| 710 | |
David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 711 | void EmitAssemblyAction::anchor() { } |
Peter Collingbourne | 8f5cf74 | 2011-02-19 23:03:58 +0000 | [diff] [blame] | 712 | EmitAssemblyAction::EmitAssemblyAction(llvm::LLVMContext *_VMContext) |
| 713 | : CodeGenAction(Backend_EmitAssembly, _VMContext) {} |
Daniel Dunbar | cea0c70 | 2010-02-25 04:37:45 +0000 | [diff] [blame] | 714 | |
David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 715 | void EmitBCAction::anchor() { } |
Peter Collingbourne | 8f5cf74 | 2011-02-19 23:03:58 +0000 | [diff] [blame] | 716 | EmitBCAction::EmitBCAction(llvm::LLVMContext *_VMContext) |
| 717 | : CodeGenAction(Backend_EmitBC, _VMContext) {} |
Daniel Dunbar | cea0c70 | 2010-02-25 04:37:45 +0000 | [diff] [blame] | 718 | |
David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 719 | void EmitLLVMAction::anchor() { } |
Peter Collingbourne | 8f5cf74 | 2011-02-19 23:03:58 +0000 | [diff] [blame] | 720 | EmitLLVMAction::EmitLLVMAction(llvm::LLVMContext *_VMContext) |
| 721 | : CodeGenAction(Backend_EmitLL, _VMContext) {} |
Daniel Dunbar | cea0c70 | 2010-02-25 04:37:45 +0000 | [diff] [blame] | 722 | |
David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 723 | void EmitLLVMOnlyAction::anchor() { } |
Peter Collingbourne | 8f5cf74 | 2011-02-19 23:03:58 +0000 | [diff] [blame] | 724 | EmitLLVMOnlyAction::EmitLLVMOnlyAction(llvm::LLVMContext *_VMContext) |
| 725 | : CodeGenAction(Backend_EmitNothing, _VMContext) {} |
Daniel Dunbar | cea0c70 | 2010-02-25 04:37:45 +0000 | [diff] [blame] | 726 | |
David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 727 | void EmitCodeGenOnlyAction::anchor() { } |
Peter Collingbourne | 8f5cf74 | 2011-02-19 23:03:58 +0000 | [diff] [blame] | 728 | EmitCodeGenOnlyAction::EmitCodeGenOnlyAction(llvm::LLVMContext *_VMContext) |
| 729 | : CodeGenAction(Backend_EmitMCNull, _VMContext) {} |
Daniel Dunbar | 4c77a64 | 2010-05-25 18:41:01 +0000 | [diff] [blame] | 730 | |
David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 731 | void EmitObjAction::anchor() { } |
Peter Collingbourne | 8f5cf74 | 2011-02-19 23:03:58 +0000 | [diff] [blame] | 732 | EmitObjAction::EmitObjAction(llvm::LLVMContext *_VMContext) |
| 733 | : CodeGenAction(Backend_EmitObj, _VMContext) {} |