1 //===--- ModuleBuilder.cpp - Emit LLVM Code from ASTs ---------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This builds an AST and converts it to LLVM Code. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #include "clang/CodeGen/ModuleBuilder.h" 14 #include "CGDebugInfo.h" 15 #include "CodeGenModule.h" 16 #include "clang/AST/ASTContext.h" 17 #include "clang/AST/DeclObjC.h" 18 #include "clang/AST/Expr.h" 19 #include "clang/Basic/CodeGenOptions.h" 20 #include "clang/Basic/Diagnostic.h" 21 #include "clang/Basic/TargetInfo.h" 22 #include "llvm/ADT/StringRef.h" 23 #include "llvm/IR/DataLayout.h" 24 #include "llvm/IR/LLVMContext.h" 25 #include "llvm/IR/Module.h" 26 #include <memory> 27 28 using namespace clang; 29 using namespace CodeGen; 30 31 namespace { 32 class CodeGeneratorImpl : public CodeGenerator { 33 DiagnosticsEngine &Diags; 34 ASTContext *Ctx; 35 const HeaderSearchOptions &HeaderSearchOpts; // Only used for debug info. 36 const PreprocessorOptions &PreprocessorOpts; // Only used for debug info. 37 const CodeGenOptions CodeGenOpts; // Intentionally copied in. 38 39 unsigned HandlingTopLevelDecls; 40 41 /// Use this when emitting decls to block re-entrant decl emission. It will 42 /// emit all deferred decls on scope exit. Set EmitDeferred to false if decl 43 /// emission must be deferred longer, like at the end of a tag definition. 44 struct HandlingTopLevelDeclRAII { 45 CodeGeneratorImpl &Self; 46 bool EmitDeferred; 47 HandlingTopLevelDeclRAII(CodeGeneratorImpl &Self, 48 bool EmitDeferred = true) 49 : Self(Self), EmitDeferred(EmitDeferred) { 50 ++Self.HandlingTopLevelDecls; 51 } 52 ~HandlingTopLevelDeclRAII() { 53 unsigned Level = --Self.HandlingTopLevelDecls; 54 if (Level == 0 && EmitDeferred) 55 Self.EmitDeferredDecls(); 56 } 57 }; 58 59 CoverageSourceInfo *CoverageInfo; 60 61 protected: 62 std::unique_ptr<llvm::Module> M; 63 std::unique_ptr<CodeGen::CodeGenModule> Builder; 64 65 private: 66 SmallVector<FunctionDecl *, 8> DeferredInlineMemberFuncDefs; 67 68 static llvm::StringRef ExpandModuleName(llvm::StringRef ModuleName, 69 const CodeGenOptions &CGO) { 70 if (ModuleName == "-" && !CGO.MainFileName.empty()) 71 return CGO.MainFileName; 72 return ModuleName; 73 } 74 75 public: 76 CodeGeneratorImpl(DiagnosticsEngine &diags, llvm::StringRef ModuleName, 77 const HeaderSearchOptions &HSO, 78 const PreprocessorOptions &PPO, const CodeGenOptions &CGO, 79 llvm::LLVMContext &C, 80 CoverageSourceInfo *CoverageInfo = nullptr) 81 : Diags(diags), Ctx(nullptr), HeaderSearchOpts(HSO), 82 PreprocessorOpts(PPO), CodeGenOpts(CGO), HandlingTopLevelDecls(0), 83 CoverageInfo(CoverageInfo), 84 M(new llvm::Module(ExpandModuleName(ModuleName, CGO), C)) { 85 C.setDiscardValueNames(CGO.DiscardValueNames); 86 } 87 88 ~CodeGeneratorImpl() override { 89 // There should normally not be any leftover inline method definitions. 90 assert(DeferredInlineMemberFuncDefs.empty() || 91 Diags.hasErrorOccurred()); 92 } 93 94 CodeGenModule &CGM() { 95 return *Builder; 96 } 97 98 llvm::Module *GetModule() { 99 return M.get(); 100 } 101 102 CGDebugInfo *getCGDebugInfo() { 103 return Builder->getModuleDebugInfo(); 104 } 105 106 llvm::Module *ReleaseModule() { 107 return M.release(); 108 } 109 110 const Decl *GetDeclForMangledName(StringRef MangledName) { 111 GlobalDecl Result; 112 if (!Builder->lookupRepresentativeDecl(MangledName, Result)) 113 return nullptr; 114 const Decl *D = Result.getCanonicalDecl().getDecl(); 115 if (auto FD = dyn_cast<FunctionDecl>(D)) { 116 if (FD->hasBody(FD)) 117 return FD; 118 } else if (auto TD = dyn_cast<TagDecl>(D)) { 119 if (auto Def = TD->getDefinition()) 120 return Def; 121 } 122 return D; 123 } 124 125 llvm::StringRef GetMangledName(GlobalDecl GD) { 126 return Builder->getMangledName(GD); 127 } 128 129 llvm::Constant *GetAddrOfGlobal(GlobalDecl global, bool isForDefinition) { 130 return Builder->GetAddrOfGlobal(global, ForDefinition_t(isForDefinition)); 131 } 132 133 llvm::Module *StartModule(llvm::StringRef ModuleName, 134 llvm::LLVMContext &C) { 135 assert(!M && "Replacing existing Module?"); 136 M.reset(new llvm::Module(ExpandModuleName(ModuleName, CodeGenOpts), C)); 137 Initialize(*Ctx); 138 return M.get(); 139 } 140 141 void Initialize(ASTContext &Context) override { 142 Ctx = &Context; 143 144 M->setTargetTriple(Ctx->getTargetInfo().getTriple().getTriple()); 145 M->setDataLayout(Ctx->getTargetInfo().getDataLayoutString()); 146 const auto &SDKVersion = Ctx->getTargetInfo().getSDKVersion(); 147 if (!SDKVersion.empty()) 148 M->setSDKVersion(SDKVersion); 149 if (const auto *TVT = Ctx->getTargetInfo().getDarwinTargetVariantTriple()) 150 M->setDarwinTargetVariantTriple(TVT->getTriple()); 151 if (auto TVSDKVersion = 152 Ctx->getTargetInfo().getDarwinTargetVariantSDKVersion()) 153 M->setDarwinTargetVariantSDKVersion(*TVSDKVersion); 154 Builder.reset(new CodeGen::CodeGenModule(Context, HeaderSearchOpts, 155 PreprocessorOpts, CodeGenOpts, 156 *M, Diags, CoverageInfo)); 157 158 for (auto &&Lib : CodeGenOpts.DependentLibraries) 159 Builder->AddDependentLib(Lib); 160 for (auto &&Opt : CodeGenOpts.LinkerOptions) 161 Builder->AppendLinkerOptions(Opt); 162 } 163 164 void HandleCXXStaticMemberVarInstantiation(VarDecl *VD) override { 165 if (Diags.hasErrorOccurred()) 166 return; 167 168 Builder->HandleCXXStaticMemberVarInstantiation(VD); 169 } 170 171 bool HandleTopLevelDecl(DeclGroupRef DG) override { 172 if (Diags.hasErrorOccurred()) 173 return true; 174 175 HandlingTopLevelDeclRAII HandlingDecl(*this); 176 177 // Make sure to emit all elements of a Decl. 178 for (DeclGroupRef::iterator I = DG.begin(), E = DG.end(); I != E; ++I) 179 Builder->EmitTopLevelDecl(*I); 180 181 return true; 182 } 183 184 void EmitDeferredDecls() { 185 if (DeferredInlineMemberFuncDefs.empty()) 186 return; 187 188 // Emit any deferred inline method definitions. Note that more deferred 189 // methods may be added during this loop, since ASTConsumer callbacks 190 // can be invoked if AST inspection results in declarations being added. 191 HandlingTopLevelDeclRAII HandlingDecl(*this); 192 for (unsigned I = 0; I != DeferredInlineMemberFuncDefs.size(); ++I) 193 Builder->EmitTopLevelDecl(DeferredInlineMemberFuncDefs[I]); 194 DeferredInlineMemberFuncDefs.clear(); 195 } 196 197 void HandleInlineFunctionDefinition(FunctionDecl *D) override { 198 if (Diags.hasErrorOccurred()) 199 return; 200 201 assert(D->doesThisDeclarationHaveABody()); 202 203 // We may want to emit this definition. However, that decision might be 204 // based on computing the linkage, and we have to defer that in case we 205 // are inside of something that will change the method's final linkage, 206 // e.g. 207 // typedef struct { 208 // void bar(); 209 // void foo() { bar(); } 210 // } A; 211 DeferredInlineMemberFuncDefs.push_back(D); 212 213 // Provide some coverage mapping even for methods that aren't emitted. 214 // Don't do this for templated classes though, as they may not be 215 // instantiable. 216 if (!D->getLexicalDeclContext()->isDependentContext()) 217 Builder->AddDeferredUnusedCoverageMapping(D); 218 } 219 220 /// HandleTagDeclDefinition - This callback is invoked each time a TagDecl 221 /// to (e.g. struct, union, enum, class) is completed. This allows the 222 /// client hack on the type, which can occur at any point in the file 223 /// (because these can be defined in declspecs). 224 void HandleTagDeclDefinition(TagDecl *D) override { 225 if (Diags.hasErrorOccurred()) 226 return; 227 228 // Don't allow re-entrant calls to CodeGen triggered by PCH 229 // deserialization to emit deferred decls. 230 HandlingTopLevelDeclRAII HandlingDecl(*this, /*EmitDeferred=*/false); 231 232 Builder->UpdateCompletedType(D); 233 234 // For MSVC compatibility, treat declarations of static data members with 235 // inline initializers as definitions. 236 if (Ctx->getTargetInfo().getCXXABI().isMicrosoft()) { 237 for (Decl *Member : D->decls()) { 238 if (VarDecl *VD = dyn_cast<VarDecl>(Member)) { 239 if (Ctx->isMSStaticDataMemberInlineDefinition(VD) && 240 Ctx->DeclMustBeEmitted(VD)) { 241 Builder->EmitGlobal(VD); 242 } 243 } 244 } 245 } 246 // For OpenMP emit declare reduction functions, if required. 247 if (Ctx->getLangOpts().OpenMP) { 248 for (Decl *Member : D->decls()) { 249 if (auto *DRD = dyn_cast<OMPDeclareReductionDecl>(Member)) { 250 if (Ctx->DeclMustBeEmitted(DRD)) 251 Builder->EmitGlobal(DRD); 252 } else if (auto *DMD = dyn_cast<OMPDeclareMapperDecl>(Member)) { 253 if (Ctx->DeclMustBeEmitted(DMD)) 254 Builder->EmitGlobal(DMD); 255 } 256 } 257 } 258 } 259 260 void HandleTagDeclRequiredDefinition(const TagDecl *D) override { 261 if (Diags.hasErrorOccurred()) 262 return; 263 264 // Don't allow re-entrant calls to CodeGen triggered by PCH 265 // deserialization to emit deferred decls. 266 HandlingTopLevelDeclRAII HandlingDecl(*this, /*EmitDeferred=*/false); 267 268 if (CodeGen::CGDebugInfo *DI = Builder->getModuleDebugInfo()) 269 if (const RecordDecl *RD = dyn_cast<RecordDecl>(D)) 270 DI->completeRequiredType(RD); 271 } 272 273 void HandleTranslationUnit(ASTContext &Ctx) override { 274 // Release the Builder when there is no error. 275 if (!Diags.hasErrorOccurred() && Builder) 276 Builder->Release(); 277 278 // If there are errors before or when releasing the Builder, reset 279 // the module to stop here before invoking the backend. 280 if (Diags.hasErrorOccurred()) { 281 if (Builder) 282 Builder->clear(); 283 M.reset(); 284 return; 285 } 286 } 287 288 void AssignInheritanceModel(CXXRecordDecl *RD) override { 289 if (Diags.hasErrorOccurred()) 290 return; 291 292 Builder->RefreshTypeCacheForClass(RD); 293 } 294 295 void CompleteTentativeDefinition(VarDecl *D) override { 296 if (Diags.hasErrorOccurred()) 297 return; 298 299 Builder->EmitTentativeDefinition(D); 300 } 301 302 void CompleteExternalDeclaration(VarDecl *D) override { 303 Builder->EmitExternalDeclaration(D); 304 } 305 306 void HandleVTable(CXXRecordDecl *RD) override { 307 if (Diags.hasErrorOccurred()) 308 return; 309 310 Builder->EmitVTable(RD); 311 } 312 }; 313 } 314 315 void CodeGenerator::anchor() { } 316 317 CodeGenModule &CodeGenerator::CGM() { 318 return static_cast<CodeGeneratorImpl*>(this)->CGM(); 319 } 320 321 llvm::Module *CodeGenerator::GetModule() { 322 return static_cast<CodeGeneratorImpl*>(this)->GetModule(); 323 } 324 325 llvm::Module *CodeGenerator::ReleaseModule() { 326 return static_cast<CodeGeneratorImpl*>(this)->ReleaseModule(); 327 } 328 329 CGDebugInfo *CodeGenerator::getCGDebugInfo() { 330 return static_cast<CodeGeneratorImpl*>(this)->getCGDebugInfo(); 331 } 332 333 const Decl *CodeGenerator::GetDeclForMangledName(llvm::StringRef name) { 334 return static_cast<CodeGeneratorImpl*>(this)->GetDeclForMangledName(name); 335 } 336 337 llvm::StringRef CodeGenerator::GetMangledName(GlobalDecl GD) { 338 return static_cast<CodeGeneratorImpl *>(this)->GetMangledName(GD); 339 } 340 341 llvm::Constant *CodeGenerator::GetAddrOfGlobal(GlobalDecl global, 342 bool isForDefinition) { 343 return static_cast<CodeGeneratorImpl*>(this) 344 ->GetAddrOfGlobal(global, isForDefinition); 345 } 346 347 llvm::Module *CodeGenerator::StartModule(llvm::StringRef ModuleName, 348 llvm::LLVMContext &C) { 349 return static_cast<CodeGeneratorImpl*>(this)->StartModule(ModuleName, C); 350 } 351 352 CodeGenerator *clang::CreateLLVMCodeGen( 353 DiagnosticsEngine &Diags, llvm::StringRef ModuleName, 354 const HeaderSearchOptions &HeaderSearchOpts, 355 const PreprocessorOptions &PreprocessorOpts, const CodeGenOptions &CGO, 356 llvm::LLVMContext &C, CoverageSourceInfo *CoverageInfo) { 357 return new CodeGeneratorImpl(Diags, ModuleName, HeaderSearchOpts, 358 PreprocessorOpts, CGO, C, CoverageInfo); 359 } 360