Daniel Dunbar | 4ee3461 | 2010-02-25 04:37:45 +0000 | [diff] [blame] | 1 | //===--- CodeGenAction.cpp - LLVM Code Generation Frontend Action ---------===// |
Daniel Dunbar | d69bacc | 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 | 4ee3461 | 2010-02-25 04:37:45 +0000 | [diff] [blame] | 10 | #include "clang/Frontend/CodeGenAction.h" |
Chris Lattner | 6da9eb6 | 2010-04-06 18:38:50 +0000 | [diff] [blame] | 11 | #include "clang/Basic/SourceManager.h" |
| 12 | #include "clang/Basic/TargetInfo.h" |
| 13 | #include "clang/Basic/TargetOptions.h" |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 14 | #include "clang/AST/ASTConsumer.h" |
Daniel Dunbar | d58c03f | 2009-11-15 06:48:46 +0000 | [diff] [blame] | 15 | #include "clang/AST/ASTContext.h" |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 16 | #include "clang/AST/DeclGroup.h" |
Daniel Dunbar | d58c03f | 2009-11-15 06:48:46 +0000 | [diff] [blame] | 17 | #include "clang/CodeGen/CodeGenOptions.h" |
| 18 | #include "clang/CodeGen/ModuleBuilder.h" |
Daniel Dunbar | 4ee3461 | 2010-02-25 04:37:45 +0000 | [diff] [blame] | 19 | #include "clang/Frontend/ASTConsumers.h" |
| 20 | #include "clang/Frontend/CompilerInstance.h" |
Daniel Dunbar | 3be0d19 | 2009-12-03 09:12:54 +0000 | [diff] [blame] | 21 | #include "clang/Frontend/FrontendDiagnostic.h" |
Chris Lattner | cabae68 | 2010-04-06 17:52:14 +0000 | [diff] [blame] | 22 | #include "llvm/LLVMContext.h" |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 23 | #include "llvm/Module.h" |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 24 | #include "llvm/PassManager.h" |
| 25 | #include "llvm/ADT/OwningPtr.h" |
| 26 | #include "llvm/Assembly/PrintModulePass.h" |
Daniel Dunbar | 70f9243 | 2008-10-23 05:50:47 +0000 | [diff] [blame] | 27 | #include "llvm/Analysis/CallGraph.h" |
| 28 | #include "llvm/Analysis/Verifier.h" |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 29 | #include "llvm/Bitcode/ReaderWriter.h" |
| 30 | #include "llvm/CodeGen/RegAllocRegistry.h" |
| 31 | #include "llvm/CodeGen/SchedulerRegistry.h" |
Chris Lattner | 03eacc7 | 2009-07-14 20:39:15 +0000 | [diff] [blame] | 32 | #include "llvm/Support/FormattedStream.h" |
Chris Lattner | 6da9eb6 | 2010-04-06 18:38:50 +0000 | [diff] [blame] | 33 | #include "llvm/Support/MemoryBuffer.h" |
| 34 | #include "llvm/Support/SourceMgr.h" |
Daniel Dunbar | 10d861e | 2009-06-03 18:01:18 +0000 | [diff] [blame] | 35 | #include "llvm/Support/StandardPasses.h" |
Chris Lattner | 6f114eb | 2009-02-18 01:37:30 +0000 | [diff] [blame] | 36 | #include "llvm/Support/Timer.h" |
Daniel Dunbar | a034ba8 | 2009-02-17 19:47:34 +0000 | [diff] [blame] | 37 | #include "llvm/Target/SubtargetFeature.h" |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 38 | #include "llvm/Target/TargetData.h" |
| 39 | #include "llvm/Target/TargetMachine.h" |
Daniel Dunbar | 821e2eb | 2009-12-12 23:01:36 +0000 | [diff] [blame] | 40 | #include "llvm/Target/TargetOptions.h" |
Daniel Dunbar | f7d47c0 | 2009-07-15 20:25:38 +0000 | [diff] [blame] | 41 | #include "llvm/Target/TargetRegistry.h" |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 42 | using namespace clang; |
| 43 | using namespace llvm; |
| 44 | |
| 45 | namespace { |
Daniel Dunbar | 4ee3461 | 2010-02-25 04:37:45 +0000 | [diff] [blame] | 46 | enum BackendAction { |
| 47 | Backend_EmitAssembly, ///< Emit native assembly files |
| 48 | Backend_EmitBC, ///< Emit LLVM bitcode files |
| 49 | Backend_EmitLL, ///< Emit human-readable LLVM assembly |
| 50 | Backend_EmitNothing, ///< Don't emit anything (benchmarking mode) |
| 51 | Backend_EmitObj ///< Emit native object files |
| 52 | }; |
| 53 | |
Benjamin Kramer | bd21828 | 2009-11-28 10:07:24 +0000 | [diff] [blame] | 54 | class BackendConsumer : public ASTConsumer { |
Daniel Dunbar | 125bbbe | 2009-12-04 08:17:40 +0000 | [diff] [blame] | 55 | Diagnostic &Diags; |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 56 | BackendAction Action; |
Daniel Dunbar | 3636e1d | 2009-11-30 08:39:32 +0000 | [diff] [blame] | 57 | const CodeGenOptions &CodeGenOpts; |
| 58 | const LangOptions &LangOpts; |
| 59 | const TargetOptions &TargetOpts; |
Eli Friedman | 66d6f04 | 2009-05-18 22:20:00 +0000 | [diff] [blame] | 60 | llvm::raw_ostream *AsmOutStream; |
Chris Lattner | 03eacc7 | 2009-07-14 20:39:15 +0000 | [diff] [blame] | 61 | llvm::formatted_raw_ostream FormattedOutStream; |
Chris Lattner | 49f28ca | 2009-03-05 08:00:35 +0000 | [diff] [blame] | 62 | ASTContext *Context; |
Daniel Dunbar | 90f4130 | 2008-10-29 08:50:02 +0000 | [diff] [blame] | 63 | |
Chris Lattner | 6f114eb | 2009-02-18 01:37:30 +0000 | [diff] [blame] | 64 | Timer LLVMIRGeneration; |
| 65 | Timer CodeGenerationTime; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 66 | |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 67 | llvm::OwningPtr<CodeGenerator> Gen; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 68 | |
Daniel Dunbar | b954e98 | 2010-02-25 04:37:50 +0000 | [diff] [blame] | 69 | llvm::OwningPtr<llvm::Module> TheModule; |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 70 | llvm::TargetData *TheTargetData; |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 71 | |
| 72 | mutable FunctionPassManager *CodeGenPasses; |
| 73 | mutable PassManager *PerModulePasses; |
| 74 | mutable FunctionPassManager *PerFunctionPasses; |
| 75 | |
| 76 | FunctionPassManager *getCodeGenPasses() const; |
| 77 | PassManager *getPerModulePasses() const; |
| 78 | FunctionPassManager *getPerFunctionPasses() const; |
| 79 | |
| 80 | void CreatePasses(); |
| 81 | |
Daniel Dunbar | 125bbbe | 2009-12-04 08:17:40 +0000 | [diff] [blame] | 82 | /// AddEmitPasses - Add passes necessary to emit assembly or LLVM IR. |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 83 | /// |
Daniel Dunbar | 3be0d19 | 2009-12-03 09:12:54 +0000 | [diff] [blame] | 84 | /// \return True on success. |
| 85 | bool AddEmitPasses(); |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 86 | |
| 87 | void EmitAssembly(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 88 | |
| 89 | public: |
Daniel Dunbar | 3be0d19 | 2009-12-03 09:12:54 +0000 | [diff] [blame] | 90 | BackendConsumer(BackendAction action, Diagnostic &_Diags, |
Chandler Carruth | 2811ccf | 2009-11-12 17:24:48 +0000 | [diff] [blame] | 91 | const LangOptions &langopts, const CodeGenOptions &compopts, |
Daniel Dunbar | b33fbaa | 2009-11-30 08:39:52 +0000 | [diff] [blame] | 92 | const TargetOptions &targetopts, bool TimePasses, |
| 93 | const std::string &infile, llvm::raw_ostream *OS, |
Chris Lattner | cabae68 | 2010-04-06 17:52:14 +0000 | [diff] [blame] | 94 | LLVMContext &C) : |
Daniel Dunbar | 3be0d19 | 2009-12-03 09:12:54 +0000 | [diff] [blame] | 95 | Diags(_Diags), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 96 | Action(action), |
Chandler Carruth | 2811ccf | 2009-11-12 17:24:48 +0000 | [diff] [blame] | 97 | CodeGenOpts(compopts), |
Daniel Dunbar | 3636e1d | 2009-11-30 08:39:32 +0000 | [diff] [blame] | 98 | LangOpts(langopts), |
Daniel Dunbar | d58c03f | 2009-11-15 06:48:46 +0000 | [diff] [blame] | 99 | TargetOpts(targetopts), |
Chris Lattner | 03eacc7 | 2009-07-14 20:39:15 +0000 | [diff] [blame] | 100 | AsmOutStream(OS), |
Chris Lattner | 6f114eb | 2009-02-18 01:37:30 +0000 | [diff] [blame] | 101 | LLVMIRGeneration("LLVM IR Generation Time"), |
| 102 | CodeGenerationTime("Code Generation Time"), |
John McCall | 468ec6c | 2010-03-04 04:29:44 +0000 | [diff] [blame] | 103 | Gen(CreateLLVMCodeGen(Diags, infile, compopts, C)), |
| 104 | TheTargetData(0), |
Chris Lattner | 4450266 | 2009-02-18 01:23:44 +0000 | [diff] [blame] | 105 | CodeGenPasses(0), PerModulePasses(0), PerFunctionPasses(0) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 106 | |
Chris Lattner | 03eacc7 | 2009-07-14 20:39:15 +0000 | [diff] [blame] | 107 | if (AsmOutStream) |
| 108 | FormattedOutStream.setStream(*AsmOutStream, |
| 109 | formatted_raw_ostream::PRESERVE_STREAM); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 110 | |
Daniel Dunbar | b33fbaa | 2009-11-30 08:39:52 +0000 | [diff] [blame] | 111 | llvm::TimePassesIsEnabled = TimePasses; |
Chris Lattner | 4450266 | 2009-02-18 01:23:44 +0000 | [diff] [blame] | 112 | } |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 113 | |
| 114 | ~BackendConsumer() { |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 115 | delete TheTargetData; |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 116 | delete CodeGenPasses; |
| 117 | delete PerModulePasses; |
| 118 | delete PerFunctionPasses; |
| 119 | } |
| 120 | |
Daniel Dunbar | b954e98 | 2010-02-25 04:37:50 +0000 | [diff] [blame] | 121 | llvm::Module *takeModule() { return TheModule.take(); } |
| 122 | |
Chris Lattner | 7bb0da0 | 2009-03-28 02:18:25 +0000 | [diff] [blame] | 123 | virtual void Initialize(ASTContext &Ctx) { |
| 124 | Context = &Ctx; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 125 | |
Daniel Dunbar | b33fbaa | 2009-11-30 08:39:52 +0000 | [diff] [blame] | 126 | if (llvm::TimePassesIsEnabled) |
Chris Lattner | 6f114eb | 2009-02-18 01:37:30 +0000 | [diff] [blame] | 127 | LLVMIRGeneration.startTimer(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 128 | |
Chris Lattner | 7bb0da0 | 2009-03-28 02:18:25 +0000 | [diff] [blame] | 129 | Gen->Initialize(Ctx); |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 130 | |
Daniel Dunbar | b954e98 | 2010-02-25 04:37:50 +0000 | [diff] [blame] | 131 | TheModule.reset(Gen->GetModule()); |
Chris Lattner | 7bb0da0 | 2009-03-28 02:18:25 +0000 | [diff] [blame] | 132 | TheTargetData = new llvm::TargetData(Ctx.Target.getTargetDescription()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 133 | |
Daniel Dunbar | b33fbaa | 2009-11-30 08:39:52 +0000 | [diff] [blame] | 134 | if (llvm::TimePassesIsEnabled) |
Chris Lattner | 6f114eb | 2009-02-18 01:37:30 +0000 | [diff] [blame] | 135 | LLVMIRGeneration.stopTimer(); |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 136 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 137 | |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 138 | virtual void HandleTopLevelDecl(DeclGroupRef D) { |
| 139 | PrettyStackTraceDecl CrashInfo(*D.begin(), SourceLocation(), |
Chris Lattner | 49f28ca | 2009-03-05 08:00:35 +0000 | [diff] [blame] | 140 | Context->getSourceManager(), |
| 141 | "LLVM IR generation of declaration"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 142 | |
Daniel Dunbar | b33fbaa | 2009-11-30 08:39:52 +0000 | [diff] [blame] | 143 | if (llvm::TimePassesIsEnabled) |
Chris Lattner | 6f114eb | 2009-02-18 01:37:30 +0000 | [diff] [blame] | 144 | LLVMIRGeneration.startTimer(); |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 145 | |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 146 | Gen->HandleTopLevelDecl(D); |
Chris Lattner | 6f114eb | 2009-02-18 01:37:30 +0000 | [diff] [blame] | 147 | |
Daniel Dunbar | b33fbaa | 2009-11-30 08:39:52 +0000 | [diff] [blame] | 148 | if (llvm::TimePassesIsEnabled) |
Chris Lattner | 6f114eb | 2009-02-18 01:37:30 +0000 | [diff] [blame] | 149 | LLVMIRGeneration.stopTimer(); |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 150 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 151 | |
Chris Lattner | dacbc5d | 2009-03-28 04:11:33 +0000 | [diff] [blame] | 152 | virtual void HandleTranslationUnit(ASTContext &C) { |
Chris Lattner | 49f28ca | 2009-03-05 08:00:35 +0000 | [diff] [blame] | 153 | { |
Chris Lattner | 14f234e | 2009-03-06 06:46:31 +0000 | [diff] [blame] | 154 | PrettyStackTraceString CrashInfo("Per-file LLVM IR generation"); |
Daniel Dunbar | b33fbaa | 2009-11-30 08:39:52 +0000 | [diff] [blame] | 155 | if (llvm::TimePassesIsEnabled) |
Chris Lattner | 49f28ca | 2009-03-05 08:00:35 +0000 | [diff] [blame] | 156 | LLVMIRGeneration.startTimer(); |
Chris Lattner | 6f114eb | 2009-02-18 01:37:30 +0000 | [diff] [blame] | 157 | |
Chris Lattner | dacbc5d | 2009-03-28 04:11:33 +0000 | [diff] [blame] | 158 | Gen->HandleTranslationUnit(C); |
Daniel Dunbar | d68ba0e | 2008-11-11 06:35:39 +0000 | [diff] [blame] | 159 | |
Daniel Dunbar | b33fbaa | 2009-11-30 08:39:52 +0000 | [diff] [blame] | 160 | if (llvm::TimePassesIsEnabled) |
Chris Lattner | 49f28ca | 2009-03-05 08:00:35 +0000 | [diff] [blame] | 161 | LLVMIRGeneration.stopTimer(); |
| 162 | } |
Chris Lattner | 6f114eb | 2009-02-18 01:37:30 +0000 | [diff] [blame] | 163 | |
Chris Lattner | 49f28ca | 2009-03-05 08:00:35 +0000 | [diff] [blame] | 164 | // EmitAssembly times and registers crash info itself. |
Chris Lattner | 6f114eb | 2009-02-18 01:37:30 +0000 | [diff] [blame] | 165 | EmitAssembly(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 166 | |
Daniel Dunbar | d68ba0e | 2008-11-11 06:35:39 +0000 | [diff] [blame] | 167 | // Force a flush here in case we never get released. |
| 168 | if (AsmOutStream) |
Chris Lattner | 03eacc7 | 2009-07-14 20:39:15 +0000 | [diff] [blame] | 169 | FormattedOutStream.flush(); |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 170 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 171 | |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 172 | virtual void HandleTagDeclDefinition(TagDecl *D) { |
Chris Lattner | 49f28ca | 2009-03-05 08:00:35 +0000 | [diff] [blame] | 173 | PrettyStackTraceDecl CrashInfo(D, SourceLocation(), |
| 174 | Context->getSourceManager(), |
| 175 | "LLVM IR generation of declaration"); |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 176 | Gen->HandleTagDeclDefinition(D); |
| 177 | } |
Douglas Gregor | b6c8c8b | 2009-04-21 17:11:58 +0000 | [diff] [blame] | 178 | |
| 179 | virtual void CompleteTentativeDefinition(VarDecl *D) { |
| 180 | Gen->CompleteTentativeDefinition(D); |
| 181 | } |
Chris Lattner | 6da9eb6 | 2010-04-06 18:38:50 +0000 | [diff] [blame] | 182 | |
| 183 | static void InlineAsmDiagHandler(const llvm::SMDiagnostic &SM,void *Context, |
| 184 | unsigned LocCookie) { |
| 185 | SourceLocation Loc = SourceLocation::getFromRawEncoding(LocCookie); |
| 186 | ((BackendConsumer*)Context)->InlineAsmDiagHandler2(SM, Loc); |
| 187 | } |
| 188 | |
| 189 | void InlineAsmDiagHandler2(const llvm::SMDiagnostic &, |
| 190 | SourceLocation LocCookie); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 191 | }; |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 192 | } |
| 193 | |
| 194 | FunctionPassManager *BackendConsumer::getCodeGenPasses() const { |
| 195 | if (!CodeGenPasses) { |
Daniel Dunbar | b954e98 | 2010-02-25 04:37:50 +0000 | [diff] [blame] | 196 | CodeGenPasses = new FunctionPassManager(&*TheModule); |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 197 | CodeGenPasses->add(new TargetData(*TheTargetData)); |
| 198 | } |
| 199 | |
| 200 | return CodeGenPasses; |
| 201 | } |
| 202 | |
| 203 | PassManager *BackendConsumer::getPerModulePasses() const { |
| 204 | if (!PerModulePasses) { |
| 205 | PerModulePasses = new PassManager(); |
| 206 | PerModulePasses->add(new TargetData(*TheTargetData)); |
| 207 | } |
| 208 | |
| 209 | return PerModulePasses; |
| 210 | } |
| 211 | |
| 212 | FunctionPassManager *BackendConsumer::getPerFunctionPasses() const { |
| 213 | if (!PerFunctionPasses) { |
Daniel Dunbar | b954e98 | 2010-02-25 04:37:50 +0000 | [diff] [blame] | 214 | PerFunctionPasses = new FunctionPassManager(&*TheModule); |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 215 | PerFunctionPasses->add(new TargetData(*TheTargetData)); |
| 216 | } |
| 217 | |
| 218 | return PerFunctionPasses; |
| 219 | } |
| 220 | |
Daniel Dunbar | 3be0d19 | 2009-12-03 09:12:54 +0000 | [diff] [blame] | 221 | bool BackendConsumer::AddEmitPasses() { |
Daniel Dunbar | e8e2600 | 2009-02-26 22:39:37 +0000 | [diff] [blame] | 222 | if (Action == Backend_EmitNothing) |
| 223 | return true; |
| 224 | |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 225 | if (Action == Backend_EmitBC) { |
Dan Gohman | b8d4239 | 2009-09-26 15:06:14 +0000 | [diff] [blame] | 226 | getPerModulePasses()->add(createBitcodeWriterPass(FormattedOutStream)); |
Chris Lattner | cabae68 | 2010-04-06 17:52:14 +0000 | [diff] [blame] | 227 | return true; |
| 228 | } |
| 229 | |
| 230 | if (Action == Backend_EmitLL) { |
Dan Gohman | b8d4239 | 2009-09-26 15:06:14 +0000 | [diff] [blame] | 231 | getPerModulePasses()->add(createPrintModulePass(&FormattedOutStream)); |
Chris Lattner | cabae68 | 2010-04-06 17:52:14 +0000 | [diff] [blame] | 232 | return true; |
| 233 | } |
| 234 | |
| 235 | bool Fast = CodeGenOpts.OptimizationLevel == 0; |
| 236 | |
| 237 | // Create the TargetMachine for generating code. |
| 238 | std::string Error; |
| 239 | std::string Triple = TheModule->getTargetTriple(); |
| 240 | const llvm::Target *TheTarget = TargetRegistry::lookupTarget(Triple, Error); |
| 241 | if (!TheTarget) { |
| 242 | Diags.Report(diag::err_fe_unable_to_create_target) << Error; |
| 243 | return false; |
| 244 | } |
| 245 | |
| 246 | // FIXME: Expose these capabilities via actual APIs!!!! Aside from just |
| 247 | // being gross, this is also totally broken if we ever care about |
| 248 | // concurrency. |
| 249 | llvm::NoFramePointerElim = CodeGenOpts.DisableFPElim; |
| 250 | if (CodeGenOpts.FloatABI == "soft") |
| 251 | llvm::FloatABIType = llvm::FloatABI::Soft; |
| 252 | else if (CodeGenOpts.FloatABI == "hard") |
| 253 | llvm::FloatABIType = llvm::FloatABI::Hard; |
| 254 | else { |
| 255 | assert(CodeGenOpts.FloatABI.empty() && "Invalid float abi!"); |
| 256 | llvm::FloatABIType = llvm::FloatABI::Default; |
| 257 | } |
| 258 | NoZerosInBSS = CodeGenOpts.NoZeroInitializedInBSS; |
| 259 | llvm::UseSoftFloat = CodeGenOpts.SoftFloat; |
| 260 | UnwindTablesMandatory = CodeGenOpts.UnwindTables; |
| 261 | |
| 262 | TargetMachine::setAsmVerbosityDefault(CodeGenOpts.AsmVerbose); |
| 263 | |
Chris Lattner | bbea716 | 2010-04-13 00:38:24 +0000 | [diff] [blame^] | 264 | TargetMachine::setFunctionSections(CodeGenOpts.FunctionSections); |
| 265 | TargetMachine::setDataSections (CodeGenOpts.DataSections); |
| 266 | |
Chris Lattner | cabae68 | 2010-04-06 17:52:14 +0000 | [diff] [blame] | 267 | // FIXME: Parse this earlier. |
| 268 | if (CodeGenOpts.RelocationModel == "static") { |
| 269 | TargetMachine::setRelocationModel(llvm::Reloc::Static); |
| 270 | } else if (CodeGenOpts.RelocationModel == "pic") { |
| 271 | TargetMachine::setRelocationModel(llvm::Reloc::PIC_); |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 272 | } else { |
Chris Lattner | cabae68 | 2010-04-06 17:52:14 +0000 | [diff] [blame] | 273 | assert(CodeGenOpts.RelocationModel == "dynamic-no-pic" && |
| 274 | "Invalid PIC model!"); |
| 275 | TargetMachine::setRelocationModel(llvm::Reloc::DynamicNoPIC); |
| 276 | } |
| 277 | // FIXME: Parse this earlier. |
| 278 | if (CodeGenOpts.CodeModel == "small") { |
| 279 | TargetMachine::setCodeModel(llvm::CodeModel::Small); |
| 280 | } else if (CodeGenOpts.CodeModel == "kernel") { |
| 281 | TargetMachine::setCodeModel(llvm::CodeModel::Kernel); |
| 282 | } else if (CodeGenOpts.CodeModel == "medium") { |
| 283 | TargetMachine::setCodeModel(llvm::CodeModel::Medium); |
| 284 | } else if (CodeGenOpts.CodeModel == "large") { |
| 285 | TargetMachine::setCodeModel(llvm::CodeModel::Large); |
| 286 | } else { |
| 287 | assert(CodeGenOpts.CodeModel.empty() && "Invalid code model!"); |
| 288 | TargetMachine::setCodeModel(llvm::CodeModel::Default); |
| 289 | } |
Daniel Dunbar | 4c877cc | 2008-10-23 05:59:43 +0000 | [diff] [blame] | 290 | |
Chris Lattner | cabae68 | 2010-04-06 17:52:14 +0000 | [diff] [blame] | 291 | std::vector<const char *> BackendArgs; |
| 292 | BackendArgs.push_back("clang"); // Fake program name. |
| 293 | if (!CodeGenOpts.DebugPass.empty()) { |
| 294 | BackendArgs.push_back("-debug-pass"); |
| 295 | BackendArgs.push_back(CodeGenOpts.DebugPass.c_str()); |
| 296 | } |
| 297 | if (!CodeGenOpts.LimitFloatPrecision.empty()) { |
| 298 | BackendArgs.push_back("-limit-float-precision"); |
| 299 | BackendArgs.push_back(CodeGenOpts.LimitFloatPrecision.c_str()); |
| 300 | } |
| 301 | if (llvm::TimePassesIsEnabled) |
| 302 | BackendArgs.push_back("-time-passes"); |
| 303 | BackendArgs.push_back(0); |
| 304 | llvm::cl::ParseCommandLineOptions(BackendArgs.size() - 1, |
| 305 | (char**) &BackendArgs[0]); |
John McCall | 468ec6c | 2010-03-04 04:29:44 +0000 | [diff] [blame] | 306 | |
Chris Lattner | cabae68 | 2010-04-06 17:52:14 +0000 | [diff] [blame] | 307 | std::string FeaturesStr; |
| 308 | if (TargetOpts.CPU.size() || TargetOpts.Features.size()) { |
| 309 | SubtargetFeatures Features; |
| 310 | Features.setCPU(TargetOpts.CPU); |
| 311 | for (std::vector<std::string>::const_iterator |
| 312 | it = TargetOpts.Features.begin(), |
| 313 | ie = TargetOpts.Features.end(); it != ie; ++it) |
| 314 | Features.AddFeature(*it); |
| 315 | FeaturesStr = Features.getString(); |
| 316 | } |
| 317 | TargetMachine *TM = TheTarget->createTargetMachine(Triple, FeaturesStr); |
Daniel Dunbar | 821e2eb | 2009-12-12 23:01:36 +0000 | [diff] [blame] | 318 | |
Chris Lattner | cabae68 | 2010-04-06 17:52:14 +0000 | [diff] [blame] | 319 | // Set register scheduler & allocation policy. |
| 320 | RegisterScheduler::setDefault(createDefaultScheduler); |
| 321 | RegisterRegAlloc::setDefault(Fast ? createLocalRegisterAllocator : |
| 322 | createLinearScanRegisterAllocator); |
John McCall | 468ec6c | 2010-03-04 04:29:44 +0000 | [diff] [blame] | 323 | |
Chris Lattner | cabae68 | 2010-04-06 17:52:14 +0000 | [diff] [blame] | 324 | // From llvm-gcc: |
| 325 | // If there are passes we have to run on the entire module, we do codegen |
| 326 | // as a separate "pass" after that happens. |
| 327 | // FIXME: This is disabled right now until bugs can be worked out. Reenable |
| 328 | // this for fast -O0 compiles! |
| 329 | FunctionPassManager *PM = getCodeGenPasses(); |
| 330 | CodeGenOpt::Level OptLevel = CodeGenOpt::Default; |
John McCall | 468ec6c | 2010-03-04 04:29:44 +0000 | [diff] [blame] | 331 | |
Chris Lattner | cabae68 | 2010-04-06 17:52:14 +0000 | [diff] [blame] | 332 | switch (CodeGenOpts.OptimizationLevel) { |
| 333 | default: break; |
| 334 | case 0: OptLevel = CodeGenOpt::None; break; |
| 335 | case 3: OptLevel = CodeGenOpt::Aggressive; break; |
| 336 | } |
Daniel Dunbar | f219e7c | 2009-11-29 07:18:39 +0000 | [diff] [blame] | 337 | |
Chris Lattner | cabae68 | 2010-04-06 17:52:14 +0000 | [diff] [blame] | 338 | // Request that addPassesToEmitFile run the Verifier after running |
| 339 | // passes which modify the IR. |
Dan Gohman | d68fc05 | 2010-02-28 00:55:40 +0000 | [diff] [blame] | 340 | #ifndef NDEBUG |
Chris Lattner | cabae68 | 2010-04-06 17:52:14 +0000 | [diff] [blame] | 341 | bool DisableVerify = false; |
Dan Gohman | d68fc05 | 2010-02-28 00:55:40 +0000 | [diff] [blame] | 342 | #else |
Chris Lattner | cabae68 | 2010-04-06 17:52:14 +0000 | [diff] [blame] | 343 | bool DisableVerify = true; |
Dan Gohman | d68fc05 | 2010-02-28 00:55:40 +0000 | [diff] [blame] | 344 | #endif |
| 345 | |
Chris Lattner | cabae68 | 2010-04-06 17:52:14 +0000 | [diff] [blame] | 346 | // Normal mode, emit a .s or .o file by running the code generator. Note, |
| 347 | // this also adds codegenerator level optimization passes. |
| 348 | TargetMachine::CodeGenFileType CGFT = TargetMachine::CGFT_AssemblyFile; |
| 349 | if (Action == Backend_EmitObj) |
| 350 | CGFT = TargetMachine::CGFT_ObjectFile; |
| 351 | if (TM->addPassesToEmitFile(*PM, FormattedOutStream, CGFT, OptLevel, |
| 352 | DisableVerify)) { |
| 353 | Diags.Report(diag::err_fe_unable_to_interface_with_target); |
| 354 | return false; |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 355 | } |
| 356 | |
| 357 | return true; |
| 358 | } |
| 359 | |
| 360 | void BackendConsumer::CreatePasses() { |
Chandler Carruth | 2811ccf | 2009-11-12 17:24:48 +0000 | [diff] [blame] | 361 | unsigned OptLevel = CodeGenOpts.OptimizationLevel; |
| 362 | CodeGenOptions::InliningMethod Inlining = CodeGenOpts.Inlining; |
Daniel Dunbar | 8d35314 | 2009-11-10 17:50:53 +0000 | [diff] [blame] | 363 | |
| 364 | // Handle disabling of LLVM optimization, where we want to preserve the |
| 365 | // internal module before any optimization. |
Chandler Carruth | 2811ccf | 2009-11-12 17:24:48 +0000 | [diff] [blame] | 366 | if (CodeGenOpts.DisableLLVMOpts) { |
Daniel Dunbar | 8d35314 | 2009-11-10 17:50:53 +0000 | [diff] [blame] | 367 | OptLevel = 0; |
Chandler Carruth | 2811ccf | 2009-11-12 17:24:48 +0000 | [diff] [blame] | 368 | Inlining = CodeGenOpts.NoInlining; |
Daniel Dunbar | 8d35314 | 2009-11-10 17:50:53 +0000 | [diff] [blame] | 369 | } |
| 370 | |
Daniel Dunbar | 70f9243 | 2008-10-23 05:50:47 +0000 | [diff] [blame] | 371 | // In -O0 if checking is disabled, we don't even have per-function passes. |
Chandler Carruth | 2811ccf | 2009-11-12 17:24:48 +0000 | [diff] [blame] | 372 | if (CodeGenOpts.VerifyModule) |
Daniel Dunbar | 70f9243 | 2008-10-23 05:50:47 +0000 | [diff] [blame] | 373 | getPerFunctionPasses()->add(createVerifierPass()); |
| 374 | |
Daniel Dunbar | 10d861e | 2009-06-03 18:01:18 +0000 | [diff] [blame] | 375 | // Assume that standard function passes aren't run for -O0. |
Daniel Dunbar | 8d35314 | 2009-11-10 17:50:53 +0000 | [diff] [blame] | 376 | if (OptLevel > 0) |
| 377 | llvm::createStandardFunctionPasses(getPerFunctionPasses(), OptLevel); |
Daniel Dunbar | 10d861e | 2009-06-03 18:01:18 +0000 | [diff] [blame] | 378 | |
| 379 | llvm::Pass *InliningPass = 0; |
Daniel Dunbar | 8d35314 | 2009-11-10 17:50:53 +0000 | [diff] [blame] | 380 | switch (Inlining) { |
Chandler Carruth | 2811ccf | 2009-11-12 17:24:48 +0000 | [diff] [blame] | 381 | case CodeGenOptions::NoInlining: break; |
| 382 | case CodeGenOptions::NormalInlining: { |
Daniel Dunbar | 90de51f | 2009-12-08 23:15:55 +0000 | [diff] [blame] | 383 | // Set the inline threshold following llvm-gcc. |
| 384 | // |
| 385 | // FIXME: Derive these constants in a principled fashion. |
Daniel Dunbar | 9da5598 | 2010-02-05 07:32:37 +0000 | [diff] [blame] | 386 | unsigned Threshold = 225; |
Daniel Dunbar | 90de51f | 2009-12-08 23:15:55 +0000 | [diff] [blame] | 387 | if (CodeGenOpts.OptimizeSize) |
Daniel Dunbar | 9da5598 | 2010-02-05 07:32:37 +0000 | [diff] [blame] | 388 | Threshold = 75; |
Daniel Dunbar | 90de51f | 2009-12-08 23:15:55 +0000 | [diff] [blame] | 389 | else if (OptLevel > 2) |
Daniel Dunbar | 9da5598 | 2010-02-05 07:32:37 +0000 | [diff] [blame] | 390 | Threshold = 275; |
Eli Friedman | b9b7dd6 | 2009-06-11 20:33:41 +0000 | [diff] [blame] | 391 | InliningPass = createFunctionInliningPass(Threshold); |
Daniel Dunbar | 10d861e | 2009-06-03 18:01:18 +0000 | [diff] [blame] | 392 | break; |
Eli Friedman | b9b7dd6 | 2009-06-11 20:33:41 +0000 | [diff] [blame] | 393 | } |
Chandler Carruth | 2811ccf | 2009-11-12 17:24:48 +0000 | [diff] [blame] | 394 | case CodeGenOptions::OnlyAlwaysInlining: |
Daniel Dunbar | 10d861e | 2009-06-03 18:01:18 +0000 | [diff] [blame] | 395 | InliningPass = createAlwaysInlinerPass(); // Respect always_inline |
| 396 | break; |
Daniel Dunbar | 70f9243 | 2008-10-23 05:50:47 +0000 | [diff] [blame] | 397 | } |
| 398 | |
| 399 | // For now we always create per module passes. |
| 400 | PassManager *PM = getPerModulePasses(); |
Chandler Carruth | 2811ccf | 2009-11-12 17:24:48 +0000 | [diff] [blame] | 401 | llvm::createStandardModulePasses(PM, OptLevel, CodeGenOpts.OptimizeSize, |
| 402 | CodeGenOpts.UnitAtATime, |
| 403 | CodeGenOpts.UnrollLoops, |
Daniel Dunbar | 3636e1d | 2009-11-30 08:39:32 +0000 | [diff] [blame] | 404 | /*SimplifyLibCalls=*/!LangOpts.NoBuiltin, |
Daniel Dunbar | 10d861e | 2009-06-03 18:01:18 +0000 | [diff] [blame] | 405 | /*HaveExceptions=*/true, |
| 406 | InliningPass); |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 407 | } |
| 408 | |
| 409 | /// EmitAssembly - Handle interaction with LLVM backend to generate |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 410 | /// actual machine code. |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 411 | void BackendConsumer::EmitAssembly() { |
| 412 | // Silently ignore if we weren't initialized for some reason. |
| 413 | if (!TheModule || !TheTargetData) |
| 414 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 415 | |
Daniel Dunbar | b33fbaa | 2009-11-30 08:39:52 +0000 | [diff] [blame] | 416 | TimeRegion Region(llvm::TimePassesIsEnabled ? &CodeGenerationTime : 0); |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 417 | |
Daniel Dunbar | d611bac | 2008-10-27 20:40:41 +0000 | [diff] [blame] | 418 | // Make sure IR generation is happy with the module. This is |
| 419 | // released by the module provider. |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 420 | Module *M = Gen->ReleaseModule(); |
| 421 | if (!M) { |
Daniel Dunbar | d611bac | 2008-10-27 20:40:41 +0000 | [diff] [blame] | 422 | // The module has been released by IR gen on failures, do not |
| 423 | // double free. |
Daniel Dunbar | b954e98 | 2010-02-25 04:37:50 +0000 | [diff] [blame] | 424 | TheModule.take(); |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 425 | return; |
| 426 | } |
| 427 | |
Daniel Dunbar | b954e98 | 2010-02-25 04:37:50 +0000 | [diff] [blame] | 428 | assert(TheModule.get() == M && |
| 429 | "Unexpected module change during IR generation"); |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 430 | |
| 431 | CreatePasses(); |
Daniel Dunbar | 3be0d19 | 2009-12-03 09:12:54 +0000 | [diff] [blame] | 432 | if (!AddEmitPasses()) |
| 433 | return; |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 434 | |
| 435 | // Run passes. For now we do all passes at once, but eventually we |
| 436 | // would like to have the option of streaming code generation. |
| 437 | |
| 438 | if (PerFunctionPasses) { |
Chris Lattner | 14f234e | 2009-03-06 06:46:31 +0000 | [diff] [blame] | 439 | PrettyStackTraceString CrashInfo("Per-function optimization"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 440 | |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 441 | PerFunctionPasses->doInitialization(); |
| 442 | for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I) |
| 443 | if (!I->isDeclaration()) |
| 444 | PerFunctionPasses->run(*I); |
| 445 | PerFunctionPasses->doFinalization(); |
| 446 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 447 | |
Chris Lattner | 49f28ca | 2009-03-05 08:00:35 +0000 | [diff] [blame] | 448 | if (PerModulePasses) { |
Chris Lattner | 14f234e | 2009-03-06 06:46:31 +0000 | [diff] [blame] | 449 | PrettyStackTraceString CrashInfo("Per-module optimization passes"); |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 450 | PerModulePasses->run(*M); |
Chris Lattner | 49f28ca | 2009-03-05 08:00:35 +0000 | [diff] [blame] | 451 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 452 | |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 453 | if (CodeGenPasses) { |
Chris Lattner | 14f234e | 2009-03-06 06:46:31 +0000 | [diff] [blame] | 454 | PrettyStackTraceString CrashInfo("Code generation"); |
Chris Lattner | cabae68 | 2010-04-06 17:52:14 +0000 | [diff] [blame] | 455 | |
Chris Lattner | 6da9eb6 | 2010-04-06 18:38:50 +0000 | [diff] [blame] | 456 | // Install an inline asm handler so that diagnostics get printed through our |
| 457 | // diagnostics hooks. |
| 458 | LLVMContext &Ctx = TheModule->getContext(); |
| 459 | void *OldHandler = Ctx.getInlineAsmDiagnosticHandler(); |
| 460 | void *OldContext = Ctx.getInlineAsmDiagnosticContext(); |
| 461 | Ctx.setInlineAsmDiagnosticHandler((void*)(intptr_t)InlineAsmDiagHandler, |
| 462 | this); |
| 463 | |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 464 | CodeGenPasses->doInitialization(); |
| 465 | for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I) |
| 466 | if (!I->isDeclaration()) |
| 467 | CodeGenPasses->run(*I); |
| 468 | CodeGenPasses->doFinalization(); |
Chris Lattner | 6da9eb6 | 2010-04-06 18:38:50 +0000 | [diff] [blame] | 469 | |
| 470 | Ctx.setInlineAsmDiagnosticHandler(OldHandler, OldContext); |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 471 | } |
| 472 | } |
| 473 | |
Chris Lattner | d6f1906 | 2010-04-08 00:23:06 +0000 | [diff] [blame] | 474 | /// ConvertBackendLocation - Convert a location in a temporary llvm::SourceMgr |
| 475 | /// buffer to be a valid FullSourceLoc. |
| 476 | static FullSourceLoc ConvertBackendLocation(const llvm::SMDiagnostic &D, |
| 477 | SourceManager &CSM) { |
| 478 | // Get both the clang and llvm source managers. The location is relative to |
| 479 | // a memory buffer that the LLVM Source Manager is handling, we need to add |
| 480 | // a copy to the Clang source manager. |
| 481 | const llvm::SourceMgr &LSM = *D.getSourceMgr(); |
| 482 | |
| 483 | // We need to copy the underlying LLVM memory buffer because llvm::SourceMgr |
| 484 | // already owns its one and clang::SourceManager wants to own its one. |
| 485 | const MemoryBuffer *LBuf = |
| 486 | LSM.getMemoryBuffer(LSM.FindBufferContainingLoc(D.getLoc())); |
| 487 | |
| 488 | // Create the copy and transfer ownership to clang::SourceManager. |
| 489 | llvm::MemoryBuffer *CBuf = |
| 490 | llvm::MemoryBuffer::getMemBufferCopy(LBuf->getBuffer(), |
| 491 | LBuf->getBufferIdentifier()); |
| 492 | FileID FID = CSM.createFileIDForMemBuffer(CBuf); |
| 493 | |
| 494 | // Translate the offset into the file. |
| 495 | unsigned Offset = D.getLoc().getPointer() - LBuf->getBufferStart(); |
| 496 | SourceLocation NewLoc = |
| 497 | CSM.getLocForStartOfFile(FID).getFileLocWithOffset(Offset); |
| 498 | return FullSourceLoc(NewLoc, CSM); |
| 499 | } |
| 500 | |
Chris Lattner | cabae68 | 2010-04-06 17:52:14 +0000 | [diff] [blame] | 501 | |
Chris Lattner | 6da9eb6 | 2010-04-06 18:38:50 +0000 | [diff] [blame] | 502 | /// InlineAsmDiagHandler2 - This function is invoked when the backend hits an |
| 503 | /// error parsing inline asm. The SMDiagnostic indicates the error relative to |
| 504 | /// the temporary memory buffer that the inline asm parser has set up. |
| 505 | void BackendConsumer::InlineAsmDiagHandler2(const llvm::SMDiagnostic &D, |
| 506 | SourceLocation LocCookie) { |
| 507 | // There are a couple of different kinds of errors we could get here. First, |
| 508 | // we re-format the SMDiagnostic in terms of a clang diagnostic. |
| 509 | |
| 510 | // Strip "error: " off the start of the message string. |
| 511 | llvm::StringRef Message = D.getMessage(); |
| 512 | if (Message.startswith("error: ")) |
| 513 | Message = Message.substr(7); |
| 514 | |
| 515 | // There are two cases: the SMDiagnostic could have a inline asm source |
| 516 | // location or it might not. If it does, translate the location. |
| 517 | FullSourceLoc Loc; |
Chris Lattner | d6f1906 | 2010-04-08 00:23:06 +0000 | [diff] [blame] | 518 | if (D.getLoc() != SMLoc()) |
| 519 | Loc = ConvertBackendLocation(D, Context->getSourceManager()); |
Chris Lattner | 6da9eb6 | 2010-04-06 18:38:50 +0000 | [diff] [blame] | 520 | Diags.Report(Loc, diag::err_fe_inline_asm).AddString(Message); |
| 521 | |
| 522 | // This could be a problem with no clang-level source location information. |
| 523 | // In this case, LocCookie is invalid. If there is source level information, |
| 524 | // print an "generated from" note. |
| 525 | if (LocCookie.isValid()) |
| 526 | Diags.Report(FullSourceLoc(LocCookie, Context->getSourceManager()), |
| 527 | diag::note_fe_inline_asm_here); |
| 528 | } |
| 529 | |
Daniel Dunbar | 4ee3461 | 2010-02-25 04:37:45 +0000 | [diff] [blame] | 530 | // |
| 531 | |
| 532 | CodeGenAction::CodeGenAction(unsigned _Act) : Act(_Act) {} |
| 533 | |
Daniel Dunbar | 9ad1c02 | 2010-02-25 20:37:44 +0000 | [diff] [blame] | 534 | CodeGenAction::~CodeGenAction() {} |
| 535 | |
Daniel Dunbar | b954e98 | 2010-02-25 04:37:50 +0000 | [diff] [blame] | 536 | void CodeGenAction::EndSourceFileAction() { |
| 537 | // If the consumer creation failed, do nothing. |
| 538 | if (!getCompilerInstance().hasASTConsumer()) |
| 539 | return; |
| 540 | |
| 541 | // Steal the module from the consumer. |
| 542 | BackendConsumer *Consumer = static_cast<BackendConsumer*>( |
| 543 | &getCompilerInstance().getASTConsumer()); |
| 544 | |
| 545 | TheModule.reset(Consumer->takeModule()); |
| 546 | } |
| 547 | |
| 548 | llvm::Module *CodeGenAction::takeModule() { |
| 549 | return TheModule.take(); |
| 550 | } |
| 551 | |
Daniel Dunbar | 4ee3461 | 2010-02-25 04:37:45 +0000 | [diff] [blame] | 552 | ASTConsumer *CodeGenAction::CreateASTConsumer(CompilerInstance &CI, |
| 553 | llvm::StringRef InFile) { |
| 554 | BackendAction BA = static_cast<BackendAction>(Act); |
| 555 | llvm::OwningPtr<llvm::raw_ostream> OS; |
| 556 | switch (BA) { |
| 557 | case Backend_EmitAssembly: |
| 558 | OS.reset(CI.createDefaultOutputFile(false, InFile, "s")); |
| 559 | break; |
| 560 | case Backend_EmitLL: |
| 561 | OS.reset(CI.createDefaultOutputFile(false, InFile, "ll")); |
| 562 | break; |
| 563 | case Backend_EmitBC: |
| 564 | OS.reset(CI.createDefaultOutputFile(true, InFile, "bc")); |
| 565 | break; |
| 566 | case Backend_EmitNothing: |
| 567 | break; |
| 568 | case Backend_EmitObj: |
| 569 | OS.reset(CI.createDefaultOutputFile(true, InFile, "o")); |
| 570 | break; |
| 571 | } |
| 572 | if (BA != Backend_EmitNothing && !OS) |
| 573 | return 0; |
| 574 | |
John McCall | 468ec6c | 2010-03-04 04:29:44 +0000 | [diff] [blame] | 575 | return new BackendConsumer(BA, CI.getDiagnostics(), CI.getLangOpts(), |
| 576 | CI.getCodeGenOpts(), CI.getTargetOpts(), |
| 577 | CI.getFrontendOpts().ShowTimers, InFile, OS.take(), |
Daniel Dunbar | 4ee3461 | 2010-02-25 04:37:45 +0000 | [diff] [blame] | 578 | CI.getLLVMContext()); |
Daniel Dunbar | d69bacc | 2008-10-21 23:49:24 +0000 | [diff] [blame] | 579 | } |
Daniel Dunbar | 4ee3461 | 2010-02-25 04:37:45 +0000 | [diff] [blame] | 580 | |
| 581 | EmitAssemblyAction::EmitAssemblyAction() |
| 582 | : CodeGenAction(Backend_EmitAssembly) {} |
| 583 | |
| 584 | EmitBCAction::EmitBCAction() : CodeGenAction(Backend_EmitBC) {} |
| 585 | |
| 586 | EmitLLVMAction::EmitLLVMAction() : CodeGenAction(Backend_EmitLL) {} |
| 587 | |
| 588 | EmitLLVMOnlyAction::EmitLLVMOnlyAction() : CodeGenAction(Backend_EmitNothing) {} |
| 589 | |
| 590 | EmitObjAction::EmitObjAction() : CodeGenAction(Backend_EmitObj) {} |