1 //===--- ModuleBuilder.cpp - Emit LLVM Code from ASTs ---------------------===// 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 // 10 // This builds an AST and converts it to LLVM Code. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "clang/CodeGen/ModuleBuilder.h" 15 #include "CGDebugInfo.h" 16 #include "CodeGenModule.h" 17 #include "clang/AST/ASTContext.h" 18 #include "clang/AST/DeclObjC.h" 19 #include "clang/AST/Expr.h" 20 #include "clang/Basic/Diagnostic.h" 21 #include "clang/Basic/TargetInfo.h" 22 #include "clang/Frontend/CodeGenOptions.h" 23 #include "llvm/ADT/StringRef.h" 24 #include "llvm/IR/DataLayout.h" 25 #include "llvm/IR/LLVMContext.h" 26 #include "llvm/IR/Module.h" 27 #include <memory> 28 using namespace clang; 29 30 namespace { 31 class CodeGeneratorImpl : public CodeGenerator { 32 DiagnosticsEngine &Diags; 33 std::unique_ptr<const llvm::DataLayout> TD; 34 ASTContext *Ctx; 35 const CodeGenOptions CodeGenOpts; // Intentionally copied in. 36 37 unsigned HandlingTopLevelDecls; 38 struct HandlingTopLevelDeclRAII { 39 CodeGeneratorImpl &Self; 40 HandlingTopLevelDeclRAII(CodeGeneratorImpl &Self) : Self(Self) { 41 ++Self.HandlingTopLevelDecls; 42 } 43 ~HandlingTopLevelDeclRAII() { 44 if (--Self.HandlingTopLevelDecls == 0) 45 Self.EmitDeferredDecls(); 46 } 47 }; 48 49 CoverageSourceInfo *CoverageInfo; 50 51 protected: 52 std::unique_ptr<llvm::Module> M; 53 std::unique_ptr<CodeGen::CodeGenModule> Builder; 54 55 public: 56 CodeGeneratorImpl(DiagnosticsEngine &diags, const std::string& ModuleName, 57 const CodeGenOptions &CGO, llvm::LLVMContext& C, 58 CoverageSourceInfo *CoverageInfo = nullptr) 59 : Diags(diags), CodeGenOpts(CGO), HandlingTopLevelDecls(0), 60 CoverageInfo(CoverageInfo), 61 M(new llvm::Module(ModuleName, C)) {} 62 63 virtual ~CodeGeneratorImpl() {} 64 65 llvm::Module* GetModule() override { 66 return M.get(); 67 } 68 69 const Decl *GetDeclForMangledName(StringRef MangledName) override { 70 GlobalDecl Result; 71 if (!Builder->lookupRepresentativeDecl(MangledName, Result)) 72 return nullptr; 73 const Decl *D = Result.getCanonicalDecl().getDecl(); 74 if (auto FD = dyn_cast<FunctionDecl>(D)) { 75 if (FD->hasBody(FD)) 76 return FD; 77 } else if (auto TD = dyn_cast<TagDecl>(D)) { 78 if (auto Def = TD->getDefinition()) 79 return Def; 80 } 81 return D; 82 } 83 84 llvm::Module *ReleaseModule() override { return M.release(); } 85 86 void Initialize(ASTContext &Context) override { 87 Ctx = &Context; 88 89 M->setTargetTriple(Ctx->getTargetInfo().getTriple().getTriple()); 90 M->setDataLayout(Ctx->getTargetInfo().getTargetDescription()); 91 TD.reset(new llvm::DataLayout(Ctx->getTargetInfo().getTargetDescription())); 92 Builder.reset(new CodeGen::CodeGenModule(Context, CodeGenOpts, *M, *TD, 93 Diags, CoverageInfo)); 94 95 for (size_t i = 0, e = CodeGenOpts.DependentLibraries.size(); i < e; ++i) 96 HandleDependentLibrary(CodeGenOpts.DependentLibraries[i]); 97 } 98 99 void HandleCXXStaticMemberVarInstantiation(VarDecl *VD) override { 100 if (Diags.hasErrorOccurred()) 101 return; 102 103 Builder->HandleCXXStaticMemberVarInstantiation(VD); 104 } 105 106 bool HandleTopLevelDecl(DeclGroupRef DG) override { 107 if (Diags.hasErrorOccurred()) 108 return true; 109 110 HandlingTopLevelDeclRAII HandlingDecl(*this); 111 112 // Make sure to emit all elements of a Decl. 113 for (DeclGroupRef::iterator I = DG.begin(), E = DG.end(); I != E; ++I) 114 Builder->EmitTopLevelDecl(*I); 115 116 return true; 117 } 118 119 void EmitDeferredDecls() { 120 if (DeferredInlineMethodDefinitions.empty()) 121 return; 122 123 // Emit any deferred inline method definitions. Note that more deferred 124 // methods may be added during this loop, since ASTConsumer callbacks 125 // can be invoked if AST inspection results in declarations being added. 126 HandlingTopLevelDeclRAII HandlingDecl(*this); 127 for (unsigned I = 0; I != DeferredInlineMethodDefinitions.size(); ++I) 128 Builder->EmitTopLevelDecl(DeferredInlineMethodDefinitions[I]); 129 DeferredInlineMethodDefinitions.clear(); 130 } 131 132 void HandleInlineMethodDefinition(CXXMethodDecl *D) override { 133 if (Diags.hasErrorOccurred()) 134 return; 135 136 assert(D->doesThisDeclarationHaveABody()); 137 138 // We may want to emit this definition. However, that decision might be 139 // based on computing the linkage, and we have to defer that in case we 140 // are inside of something that will change the method's final linkage, 141 // e.g. 142 // typedef struct { 143 // void bar(); 144 // void foo() { bar(); } 145 // } A; 146 DeferredInlineMethodDefinitions.push_back(D); 147 148 // Provide some coverage mapping even for methods that aren't emitted. 149 // Don't do this for templated classes though, as they may not be 150 // instantiable. 151 if (!D->getParent()->getDescribedClassTemplate()) 152 Builder->AddDeferredUnusedCoverageMapping(D); 153 } 154 155 /// HandleTagDeclDefinition - This callback is invoked each time a TagDecl 156 /// to (e.g. struct, union, enum, class) is completed. This allows the 157 /// client hack on the type, which can occur at any point in the file 158 /// (because these can be defined in declspecs). 159 void HandleTagDeclDefinition(TagDecl *D) override { 160 if (Diags.hasErrorOccurred()) 161 return; 162 163 Builder->UpdateCompletedType(D); 164 165 // For MSVC compatibility, treat declarations of static data members with 166 // inline initializers as definitions. 167 if (Ctx->getLangOpts().MSVCCompat) { 168 for (Decl *Member : D->decls()) { 169 if (VarDecl *VD = dyn_cast<VarDecl>(Member)) { 170 if (Ctx->isMSStaticDataMemberInlineDefinition(VD) && 171 Ctx->DeclMustBeEmitted(VD)) { 172 Builder->EmitGlobal(VD); 173 } 174 } 175 } 176 } 177 } 178 179 void HandleTagDeclRequiredDefinition(const TagDecl *D) override { 180 if (Diags.hasErrorOccurred()) 181 return; 182 183 if (CodeGen::CGDebugInfo *DI = Builder->getModuleDebugInfo()) 184 if (const RecordDecl *RD = dyn_cast<RecordDecl>(D)) 185 DI->completeRequiredType(RD); 186 } 187 188 void HandleTranslationUnit(ASTContext &Ctx) override { 189 if (Diags.hasErrorOccurred()) { 190 if (Builder) 191 Builder->clear(); 192 M.reset(); 193 return; 194 } 195 196 if (Builder) 197 Builder->Release(); 198 } 199 200 void CompleteTentativeDefinition(VarDecl *D) override { 201 if (Diags.hasErrorOccurred()) 202 return; 203 204 Builder->EmitTentativeDefinition(D); 205 } 206 207 void HandleVTable(CXXRecordDecl *RD, bool DefinitionRequired) override { 208 if (Diags.hasErrorOccurred()) 209 return; 210 211 Builder->EmitVTable(RD, DefinitionRequired); 212 } 213 214 void HandleLinkerOptionPragma(llvm::StringRef Opts) override { 215 Builder->AppendLinkerOptions(Opts); 216 } 217 218 void HandleDetectMismatch(llvm::StringRef Name, 219 llvm::StringRef Value) override { 220 Builder->AddDetectMismatch(Name, Value); 221 } 222 223 void HandleDependentLibrary(llvm::StringRef Lib) override { 224 Builder->AddDependentLib(Lib); 225 } 226 227 private: 228 std::vector<CXXMethodDecl *> DeferredInlineMethodDefinitions; 229 }; 230 } 231 232 void CodeGenerator::anchor() { } 233 234 CodeGenerator *clang::CreateLLVMCodeGen(DiagnosticsEngine &Diags, 235 const std::string& ModuleName, 236 const CodeGenOptions &CGO, 237 const TargetOptions &/*TO*/, 238 llvm::LLVMContext& C, 239 CoverageSourceInfo *CoverageInfo) { 240 return new CodeGeneratorImpl(Diags, ModuleName, CGO, C, CoverageInfo); 241 } 242