1 //===--- CodeGenModule.cpp - Emit LLVM Code from ASTs for a Module --------===// 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 coordinates the per-module state used while generating code. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "CodeGenModule.h" 15 #include "CGBlocks.h" 16 #include "CGCUDARuntime.h" 17 #include "CGCXXABI.h" 18 #include "CGCall.h" 19 #include "CGDebugInfo.h" 20 #include "CGObjCRuntime.h" 21 #include "CGOpenCLRuntime.h" 22 #include "CGOpenMPRuntime.h" 23 #include "CGOpenMPRuntimeNVPTX.h" 24 #include "CodeGenFunction.h" 25 #include "CodeGenPGO.h" 26 #include "ConstantEmitter.h" 27 #include "CoverageMappingGen.h" 28 #include "TargetInfo.h" 29 #include "clang/AST/ASTContext.h" 30 #include "clang/AST/CharUnits.h" 31 #include "clang/AST/DeclCXX.h" 32 #include "clang/AST/DeclObjC.h" 33 #include "clang/AST/DeclTemplate.h" 34 #include "clang/AST/Mangle.h" 35 #include "clang/AST/RecordLayout.h" 36 #include "clang/AST/RecursiveASTVisitor.h" 37 #include "clang/Basic/Builtins.h" 38 #include "clang/Basic/CharInfo.h" 39 #include "clang/Basic/Diagnostic.h" 40 #include "clang/Basic/Module.h" 41 #include "clang/Basic/SourceManager.h" 42 #include "clang/Basic/TargetInfo.h" 43 #include "clang/Basic/Version.h" 44 #include "clang/CodeGen/ConstantInitBuilder.h" 45 #include "clang/Frontend/CodeGenOptions.h" 46 #include "clang/Sema/SemaDiagnostic.h" 47 #include "llvm/ADT/Triple.h" 48 #include "llvm/Analysis/TargetLibraryInfo.h" 49 #include "llvm/IR/CallSite.h" 50 #include "llvm/IR/CallingConv.h" 51 #include "llvm/IR/DataLayout.h" 52 #include "llvm/IR/Intrinsics.h" 53 #include "llvm/IR/LLVMContext.h" 54 #include "llvm/IR/Module.h" 55 #include "llvm/ProfileData/InstrProfReader.h" 56 #include "llvm/Support/ConvertUTF.h" 57 #include "llvm/Support/ErrorHandling.h" 58 #include "llvm/Support/MD5.h" 59 60 using namespace clang; 61 using namespace CodeGen; 62 63 static llvm::cl::opt<bool> LimitedCoverage( 64 "limited-coverage-experimental", llvm::cl::ZeroOrMore, 65 llvm::cl::desc("Emit limited coverage mapping information (experimental)"), 66 llvm::cl::init(false)); 67 68 static const char AnnotationSection[] = "llvm.metadata"; 69 70 static CGCXXABI *createCXXABI(CodeGenModule &CGM) { 71 switch (CGM.getTarget().getCXXABI().getKind()) { 72 case TargetCXXABI::GenericAArch64: 73 case TargetCXXABI::GenericARM: 74 case TargetCXXABI::iOS: 75 case TargetCXXABI::iOS64: 76 case TargetCXXABI::WatchOS: 77 case TargetCXXABI::GenericMIPS: 78 case TargetCXXABI::GenericItanium: 79 case TargetCXXABI::WebAssembly: 80 return CreateItaniumCXXABI(CGM); 81 case TargetCXXABI::Microsoft: 82 return CreateMicrosoftCXXABI(CGM); 83 } 84 85 llvm_unreachable("invalid C++ ABI kind"); 86 } 87 88 CodeGenModule::CodeGenModule(ASTContext &C, const HeaderSearchOptions &HSO, 89 const PreprocessorOptions &PPO, 90 const CodeGenOptions &CGO, llvm::Module &M, 91 DiagnosticsEngine &diags, 92 CoverageSourceInfo *CoverageInfo) 93 : Context(C), LangOpts(C.getLangOpts()), HeaderSearchOpts(HSO), 94 PreprocessorOpts(PPO), CodeGenOpts(CGO), TheModule(M), Diags(diags), 95 Target(C.getTargetInfo()), ABI(createCXXABI(*this)), 96 VMContext(M.getContext()), Types(*this), VTables(*this), 97 SanitizerMD(new SanitizerMetadata(*this)) { 98 99 // Initialize the type cache. 100 llvm::LLVMContext &LLVMContext = M.getContext(); 101 VoidTy = llvm::Type::getVoidTy(LLVMContext); 102 Int8Ty = llvm::Type::getInt8Ty(LLVMContext); 103 Int16Ty = llvm::Type::getInt16Ty(LLVMContext); 104 Int32Ty = llvm::Type::getInt32Ty(LLVMContext); 105 Int64Ty = llvm::Type::getInt64Ty(LLVMContext); 106 FloatTy = llvm::Type::getFloatTy(LLVMContext); 107 DoubleTy = llvm::Type::getDoubleTy(LLVMContext); 108 PointerWidthInBits = C.getTargetInfo().getPointerWidth(0); 109 PointerAlignInBytes = 110 C.toCharUnitsFromBits(C.getTargetInfo().getPointerAlign(0)).getQuantity(); 111 SizeSizeInBytes = 112 C.toCharUnitsFromBits(C.getTargetInfo().getMaxPointerWidth()).getQuantity(); 113 IntAlignInBytes = 114 C.toCharUnitsFromBits(C.getTargetInfo().getIntAlign()).getQuantity(); 115 IntTy = llvm::IntegerType::get(LLVMContext, C.getTargetInfo().getIntWidth()); 116 IntPtrTy = llvm::IntegerType::get(LLVMContext, 117 C.getTargetInfo().getMaxPointerWidth()); 118 Int8PtrTy = Int8Ty->getPointerTo(0); 119 Int8PtrPtrTy = Int8PtrTy->getPointerTo(0); 120 AllocaInt8PtrTy = Int8Ty->getPointerTo( 121 M.getDataLayout().getAllocaAddrSpace()); 122 ASTAllocaAddressSpace = getTargetCodeGenInfo().getASTAllocaAddressSpace(); 123 124 RuntimeCC = getTargetCodeGenInfo().getABIInfo().getRuntimeCC(); 125 BuiltinCC = getTargetCodeGenInfo().getABIInfo().getBuiltinCC(); 126 127 if (LangOpts.ObjC1) 128 createObjCRuntime(); 129 if (LangOpts.OpenCL) 130 createOpenCLRuntime(); 131 if (LangOpts.OpenMP) 132 createOpenMPRuntime(); 133 if (LangOpts.CUDA) 134 createCUDARuntime(); 135 136 // Enable TBAA unless it's suppressed. ThreadSanitizer needs TBAA even at O0. 137 if (LangOpts.Sanitize.has(SanitizerKind::Thread) || 138 (!CodeGenOpts.RelaxedAliasing && CodeGenOpts.OptimizationLevel > 0)) 139 TBAA.reset(new CodeGenTBAA(Context, VMContext, CodeGenOpts, getLangOpts(), 140 getCXXABI().getMangleContext())); 141 142 // If debug info or coverage generation is enabled, create the CGDebugInfo 143 // object. 144 if (CodeGenOpts.getDebugInfo() != codegenoptions::NoDebugInfo || 145 CodeGenOpts.EmitGcovArcs || CodeGenOpts.EmitGcovNotes) 146 DebugInfo.reset(new CGDebugInfo(*this)); 147 148 Block.GlobalUniqueCount = 0; 149 150 if (C.getLangOpts().ObjC1) 151 ObjCData.reset(new ObjCEntrypoints()); 152 153 if (CodeGenOpts.hasProfileClangUse()) { 154 auto ReaderOrErr = llvm::IndexedInstrProfReader::create( 155 CodeGenOpts.ProfileInstrumentUsePath); 156 if (auto E = ReaderOrErr.takeError()) { 157 unsigned DiagID = Diags.getCustomDiagID(DiagnosticsEngine::Error, 158 "Could not read profile %0: %1"); 159 llvm::handleAllErrors(std::move(E), [&](const llvm::ErrorInfoBase &EI) { 160 getDiags().Report(DiagID) << CodeGenOpts.ProfileInstrumentUsePath 161 << EI.message(); 162 }); 163 } else 164 PGOReader = std::move(ReaderOrErr.get()); 165 } 166 167 // If coverage mapping generation is enabled, create the 168 // CoverageMappingModuleGen object. 169 if (CodeGenOpts.CoverageMapping) 170 CoverageMapping.reset(new CoverageMappingModuleGen(*this, *CoverageInfo)); 171 } 172 173 CodeGenModule::~CodeGenModule() {} 174 175 void CodeGenModule::createObjCRuntime() { 176 // This is just isGNUFamily(), but we want to force implementors of 177 // new ABIs to decide how best to do this. 178 switch (LangOpts.ObjCRuntime.getKind()) { 179 case ObjCRuntime::GNUstep: 180 case ObjCRuntime::GCC: 181 case ObjCRuntime::ObjFW: 182 ObjCRuntime.reset(CreateGNUObjCRuntime(*this)); 183 return; 184 185 case ObjCRuntime::FragileMacOSX: 186 case ObjCRuntime::MacOSX: 187 case ObjCRuntime::iOS: 188 case ObjCRuntime::WatchOS: 189 ObjCRuntime.reset(CreateMacObjCRuntime(*this)); 190 return; 191 } 192 llvm_unreachable("bad runtime kind"); 193 } 194 195 void CodeGenModule::createOpenCLRuntime() { 196 OpenCLRuntime.reset(new CGOpenCLRuntime(*this)); 197 } 198 199 void CodeGenModule::createOpenMPRuntime() { 200 // Select a specialized code generation class based on the target, if any. 201 // If it does not exist use the default implementation. 202 switch (getTriple().getArch()) { 203 case llvm::Triple::nvptx: 204 case llvm::Triple::nvptx64: 205 assert(getLangOpts().OpenMPIsDevice && 206 "OpenMP NVPTX is only prepared to deal with device code."); 207 OpenMPRuntime.reset(new CGOpenMPRuntimeNVPTX(*this)); 208 break; 209 default: 210 OpenMPRuntime.reset(new CGOpenMPRuntime(*this)); 211 break; 212 } 213 } 214 215 void CodeGenModule::createCUDARuntime() { 216 CUDARuntime.reset(CreateNVCUDARuntime(*this)); 217 } 218 219 void CodeGenModule::addReplacement(StringRef Name, llvm::Constant *C) { 220 Replacements[Name] = C; 221 } 222 223 void CodeGenModule::applyReplacements() { 224 for (auto &I : Replacements) { 225 StringRef MangledName = I.first(); 226 llvm::Constant *Replacement = I.second; 227 llvm::GlobalValue *Entry = GetGlobalValue(MangledName); 228 if (!Entry) 229 continue; 230 auto *OldF = cast<llvm::Function>(Entry); 231 auto *NewF = dyn_cast<llvm::Function>(Replacement); 232 if (!NewF) { 233 if (auto *Alias = dyn_cast<llvm::GlobalAlias>(Replacement)) { 234 NewF = dyn_cast<llvm::Function>(Alias->getAliasee()); 235 } else { 236 auto *CE = cast<llvm::ConstantExpr>(Replacement); 237 assert(CE->getOpcode() == llvm::Instruction::BitCast || 238 CE->getOpcode() == llvm::Instruction::GetElementPtr); 239 NewF = dyn_cast<llvm::Function>(CE->getOperand(0)); 240 } 241 } 242 243 // Replace old with new, but keep the old order. 244 OldF->replaceAllUsesWith(Replacement); 245 if (NewF) { 246 NewF->removeFromParent(); 247 OldF->getParent()->getFunctionList().insertAfter(OldF->getIterator(), 248 NewF); 249 } 250 OldF->eraseFromParent(); 251 } 252 } 253 254 void CodeGenModule::addGlobalValReplacement(llvm::GlobalValue *GV, llvm::Constant *C) { 255 GlobalValReplacements.push_back(std::make_pair(GV, C)); 256 } 257 258 void CodeGenModule::applyGlobalValReplacements() { 259 for (auto &I : GlobalValReplacements) { 260 llvm::GlobalValue *GV = I.first; 261 llvm::Constant *C = I.second; 262 263 GV->replaceAllUsesWith(C); 264 GV->eraseFromParent(); 265 } 266 } 267 268 // This is only used in aliases that we created and we know they have a 269 // linear structure. 270 static const llvm::GlobalObject *getAliasedGlobal( 271 const llvm::GlobalIndirectSymbol &GIS) { 272 llvm::SmallPtrSet<const llvm::GlobalIndirectSymbol*, 4> Visited; 273 const llvm::Constant *C = &GIS; 274 for (;;) { 275 C = C->stripPointerCasts(); 276 if (auto *GO = dyn_cast<llvm::GlobalObject>(C)) 277 return GO; 278 // stripPointerCasts will not walk over weak aliases. 279 auto *GIS2 = dyn_cast<llvm::GlobalIndirectSymbol>(C); 280 if (!GIS2) 281 return nullptr; 282 if (!Visited.insert(GIS2).second) 283 return nullptr; 284 C = GIS2->getIndirectSymbol(); 285 } 286 } 287 288 void CodeGenModule::checkAliases() { 289 // Check if the constructed aliases are well formed. It is really unfortunate 290 // that we have to do this in CodeGen, but we only construct mangled names 291 // and aliases during codegen. 292 bool Error = false; 293 DiagnosticsEngine &Diags = getDiags(); 294 for (const GlobalDecl &GD : Aliases) { 295 const auto *D = cast<ValueDecl>(GD.getDecl()); 296 SourceLocation Location; 297 bool IsIFunc = D->hasAttr<IFuncAttr>(); 298 if (const Attr *A = D->getDefiningAttr()) 299 Location = A->getLocation(); 300 else 301 llvm_unreachable("Not an alias or ifunc?"); 302 StringRef MangledName = getMangledName(GD); 303 llvm::GlobalValue *Entry = GetGlobalValue(MangledName); 304 auto *Alias = cast<llvm::GlobalIndirectSymbol>(Entry); 305 const llvm::GlobalValue *GV = getAliasedGlobal(*Alias); 306 if (!GV) { 307 Error = true; 308 Diags.Report(Location, diag::err_cyclic_alias) << IsIFunc; 309 } else if (GV->isDeclaration()) { 310 Error = true; 311 Diags.Report(Location, diag::err_alias_to_undefined) 312 << IsIFunc << IsIFunc; 313 } else if (IsIFunc) { 314 // Check resolver function type. 315 llvm::FunctionType *FTy = dyn_cast<llvm::FunctionType>( 316 GV->getType()->getPointerElementType()); 317 assert(FTy); 318 if (!FTy->getReturnType()->isPointerTy()) 319 Diags.Report(Location, diag::err_ifunc_resolver_return); 320 if (FTy->getNumParams()) 321 Diags.Report(Location, diag::err_ifunc_resolver_params); 322 } 323 324 llvm::Constant *Aliasee = Alias->getIndirectSymbol(); 325 llvm::GlobalValue *AliaseeGV; 326 if (auto CE = dyn_cast<llvm::ConstantExpr>(Aliasee)) 327 AliaseeGV = cast<llvm::GlobalValue>(CE->getOperand(0)); 328 else 329 AliaseeGV = cast<llvm::GlobalValue>(Aliasee); 330 331 if (const SectionAttr *SA = D->getAttr<SectionAttr>()) { 332 StringRef AliasSection = SA->getName(); 333 if (AliasSection != AliaseeGV->getSection()) 334 Diags.Report(SA->getLocation(), diag::warn_alias_with_section) 335 << AliasSection << IsIFunc << IsIFunc; 336 } 337 338 // We have to handle alias to weak aliases in here. LLVM itself disallows 339 // this since the object semantics would not match the IL one. For 340 // compatibility with gcc we implement it by just pointing the alias 341 // to its aliasee's aliasee. We also warn, since the user is probably 342 // expecting the link to be weak. 343 if (auto GA = dyn_cast<llvm::GlobalIndirectSymbol>(AliaseeGV)) { 344 if (GA->isInterposable()) { 345 Diags.Report(Location, diag::warn_alias_to_weak_alias) 346 << GV->getName() << GA->getName() << IsIFunc; 347 Aliasee = llvm::ConstantExpr::getPointerBitCastOrAddrSpaceCast( 348 GA->getIndirectSymbol(), Alias->getType()); 349 Alias->setIndirectSymbol(Aliasee); 350 } 351 } 352 } 353 if (!Error) 354 return; 355 356 for (const GlobalDecl &GD : Aliases) { 357 StringRef MangledName = getMangledName(GD); 358 llvm::GlobalValue *Entry = GetGlobalValue(MangledName); 359 auto *Alias = dyn_cast<llvm::GlobalIndirectSymbol>(Entry); 360 Alias->replaceAllUsesWith(llvm::UndefValue::get(Alias->getType())); 361 Alias->eraseFromParent(); 362 } 363 } 364 365 void CodeGenModule::clear() { 366 DeferredDeclsToEmit.clear(); 367 if (OpenMPRuntime) 368 OpenMPRuntime->clear(); 369 } 370 371 void InstrProfStats::reportDiagnostics(DiagnosticsEngine &Diags, 372 StringRef MainFile) { 373 if (!hasDiagnostics()) 374 return; 375 if (VisitedInMainFile > 0 && VisitedInMainFile == MissingInMainFile) { 376 if (MainFile.empty()) 377 MainFile = "<stdin>"; 378 Diags.Report(diag::warn_profile_data_unprofiled) << MainFile; 379 } else { 380 if (Mismatched > 0) 381 Diags.Report(diag::warn_profile_data_out_of_date) << Visited << Mismatched; 382 383 if (Missing > 0) 384 Diags.Report(diag::warn_profile_data_missing) << Visited << Missing; 385 } 386 } 387 388 void CodeGenModule::Release() { 389 EmitDeferred(); 390 EmitVTablesOpportunistically(); 391 applyGlobalValReplacements(); 392 applyReplacements(); 393 checkAliases(); 394 EmitCXXGlobalInitFunc(); 395 EmitCXXGlobalDtorFunc(); 396 EmitCXXThreadLocalInitFunc(); 397 if (ObjCRuntime) 398 if (llvm::Function *ObjCInitFunction = ObjCRuntime->ModuleInitFunction()) 399 AddGlobalCtor(ObjCInitFunction); 400 if (Context.getLangOpts().CUDA && !Context.getLangOpts().CUDAIsDevice && 401 CUDARuntime) { 402 if (llvm::Function *CudaCtorFunction = CUDARuntime->makeModuleCtorFunction()) 403 AddGlobalCtor(CudaCtorFunction); 404 if (llvm::Function *CudaDtorFunction = CUDARuntime->makeModuleDtorFunction()) 405 AddGlobalDtor(CudaDtorFunction); 406 } 407 if (OpenMPRuntime) 408 if (llvm::Function *OpenMPRegistrationFunction = 409 OpenMPRuntime->emitRegistrationFunction()) { 410 auto ComdatKey = OpenMPRegistrationFunction->hasComdat() ? 411 OpenMPRegistrationFunction : nullptr; 412 AddGlobalCtor(OpenMPRegistrationFunction, 0, ComdatKey); 413 } 414 if (PGOReader) { 415 getModule().setProfileSummary(PGOReader->getSummary().getMD(VMContext)); 416 if (PGOStats.hasDiagnostics()) 417 PGOStats.reportDiagnostics(getDiags(), getCodeGenOpts().MainFileName); 418 } 419 EmitCtorList(GlobalCtors, "llvm.global_ctors"); 420 EmitCtorList(GlobalDtors, "llvm.global_dtors"); 421 EmitGlobalAnnotations(); 422 EmitStaticExternCAliases(); 423 EmitDeferredUnusedCoverageMappings(); 424 if (CoverageMapping) 425 CoverageMapping->emit(); 426 if (CodeGenOpts.SanitizeCfiCrossDso) { 427 CodeGenFunction(*this).EmitCfiCheckFail(); 428 CodeGenFunction(*this).EmitCfiCheckStub(); 429 } 430 emitAtAvailableLinkGuard(); 431 emitLLVMUsed(); 432 if (SanStats) 433 SanStats->finish(); 434 435 if (CodeGenOpts.Autolink && 436 (Context.getLangOpts().Modules || !LinkerOptionsMetadata.empty())) { 437 EmitModuleLinkOptions(); 438 } 439 440 // Record mregparm value now so it is visible through rest of codegen. 441 if (Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86) 442 getModule().addModuleFlag(llvm::Module::Error, "NumRegisterParameters", 443 CodeGenOpts.NumRegisterParameters); 444 445 if (CodeGenOpts.DwarfVersion) { 446 // We actually want the latest version when there are conflicts. 447 // We can change from Warning to Latest if such mode is supported. 448 getModule().addModuleFlag(llvm::Module::Warning, "Dwarf Version", 449 CodeGenOpts.DwarfVersion); 450 } 451 if (CodeGenOpts.EmitCodeView) { 452 // Indicate that we want CodeView in the metadata. 453 getModule().addModuleFlag(llvm::Module::Warning, "CodeView", 1); 454 } 455 if (CodeGenOpts.OptimizationLevel > 0 && CodeGenOpts.StrictVTablePointers) { 456 // We don't support LTO with 2 with different StrictVTablePointers 457 // FIXME: we could support it by stripping all the information introduced 458 // by StrictVTablePointers. 459 460 getModule().addModuleFlag(llvm::Module::Error, "StrictVTablePointers",1); 461 462 llvm::Metadata *Ops[2] = { 463 llvm::MDString::get(VMContext, "StrictVTablePointers"), 464 llvm::ConstantAsMetadata::get(llvm::ConstantInt::get( 465 llvm::Type::getInt32Ty(VMContext), 1))}; 466 467 getModule().addModuleFlag(llvm::Module::Require, 468 "StrictVTablePointersRequirement", 469 llvm::MDNode::get(VMContext, Ops)); 470 } 471 if (DebugInfo) 472 // We support a single version in the linked module. The LLVM 473 // parser will drop debug info with a different version number 474 // (and warn about it, too). 475 getModule().addModuleFlag(llvm::Module::Warning, "Debug Info Version", 476 llvm::DEBUG_METADATA_VERSION); 477 478 // We need to record the widths of enums and wchar_t, so that we can generate 479 // the correct build attributes in the ARM backend. wchar_size is also used by 480 // TargetLibraryInfo. 481 uint64_t WCharWidth = 482 Context.getTypeSizeInChars(Context.getWideCharType()).getQuantity(); 483 getModule().addModuleFlag(llvm::Module::Error, "wchar_size", WCharWidth); 484 485 llvm::Triple::ArchType Arch = Context.getTargetInfo().getTriple().getArch(); 486 if ( Arch == llvm::Triple::arm 487 || Arch == llvm::Triple::armeb 488 || Arch == llvm::Triple::thumb 489 || Arch == llvm::Triple::thumbeb) { 490 // The minimum width of an enum in bytes 491 uint64_t EnumWidth = Context.getLangOpts().ShortEnums ? 1 : 4; 492 getModule().addModuleFlag(llvm::Module::Error, "min_enum_size", EnumWidth); 493 } 494 495 if (CodeGenOpts.SanitizeCfiCrossDso) { 496 // Indicate that we want cross-DSO control flow integrity checks. 497 getModule().addModuleFlag(llvm::Module::Override, "Cross-DSO CFI", 1); 498 } 499 500 if (LangOpts.CUDAIsDevice && getTriple().isNVPTX()) { 501 // Indicate whether __nvvm_reflect should be configured to flush denormal 502 // floating point values to 0. (This corresponds to its "__CUDA_FTZ" 503 // property.) 504 getModule().addModuleFlag(llvm::Module::Override, "nvvm-reflect-ftz", 505 LangOpts.CUDADeviceFlushDenormalsToZero ? 1 : 0); 506 } 507 508 // Emit OpenCL specific module metadata: OpenCL/SPIR version. 509 if (LangOpts.OpenCL) { 510 EmitOpenCLMetadata(); 511 // Emit SPIR version. 512 if (getTriple().getArch() == llvm::Triple::spir || 513 getTriple().getArch() == llvm::Triple::spir64) { 514 // SPIR v2.0 s2.12 - The SPIR version used by the module is stored in the 515 // opencl.spir.version named metadata. 516 llvm::Metadata *SPIRVerElts[] = { 517 llvm::ConstantAsMetadata::get(llvm::ConstantInt::get( 518 Int32Ty, LangOpts.OpenCLVersion / 100)), 519 llvm::ConstantAsMetadata::get(llvm::ConstantInt::get( 520 Int32Ty, (LangOpts.OpenCLVersion / 100 > 1) ? 0 : 2))}; 521 llvm::NamedMDNode *SPIRVerMD = 522 TheModule.getOrInsertNamedMetadata("opencl.spir.version"); 523 llvm::LLVMContext &Ctx = TheModule.getContext(); 524 SPIRVerMD->addOperand(llvm::MDNode::get(Ctx, SPIRVerElts)); 525 } 526 } 527 528 if (uint32_t PLevel = Context.getLangOpts().PICLevel) { 529 assert(PLevel < 3 && "Invalid PIC Level"); 530 getModule().setPICLevel(static_cast<llvm::PICLevel::Level>(PLevel)); 531 if (Context.getLangOpts().PIE) 532 getModule().setPIELevel(static_cast<llvm::PIELevel::Level>(PLevel)); 533 } 534 535 SimplifyPersonality(); 536 537 if (getCodeGenOpts().EmitDeclMetadata) 538 EmitDeclMetadata(); 539 540 if (getCodeGenOpts().EmitGcovArcs || getCodeGenOpts().EmitGcovNotes) 541 EmitCoverageFile(); 542 543 if (DebugInfo) 544 DebugInfo->finalize(); 545 546 EmitVersionIdentMetadata(); 547 548 EmitTargetMetadata(); 549 } 550 551 void CodeGenModule::EmitOpenCLMetadata() { 552 // SPIR v2.0 s2.13 - The OpenCL version used by the module is stored in the 553 // opencl.ocl.version named metadata node. 554 llvm::Metadata *OCLVerElts[] = { 555 llvm::ConstantAsMetadata::get(llvm::ConstantInt::get( 556 Int32Ty, LangOpts.OpenCLVersion / 100)), 557 llvm::ConstantAsMetadata::get(llvm::ConstantInt::get( 558 Int32Ty, (LangOpts.OpenCLVersion % 100) / 10))}; 559 llvm::NamedMDNode *OCLVerMD = 560 TheModule.getOrInsertNamedMetadata("opencl.ocl.version"); 561 llvm::LLVMContext &Ctx = TheModule.getContext(); 562 OCLVerMD->addOperand(llvm::MDNode::get(Ctx, OCLVerElts)); 563 } 564 565 void CodeGenModule::UpdateCompletedType(const TagDecl *TD) { 566 // Make sure that this type is translated. 567 Types.UpdateCompletedType(TD); 568 } 569 570 void CodeGenModule::RefreshTypeCacheForClass(const CXXRecordDecl *RD) { 571 // Make sure that this type is translated. 572 Types.RefreshTypeCacheForClass(RD); 573 } 574 575 llvm::MDNode *CodeGenModule::getTBAATypeInfo(QualType QTy) { 576 if (!TBAA) 577 return nullptr; 578 return TBAA->getTypeInfo(QTy); 579 } 580 581 TBAAAccessInfo CodeGenModule::getTBAAAccessInfo(QualType AccessType) { 582 return TBAAAccessInfo(getTBAATypeInfo(AccessType)); 583 } 584 585 TBAAAccessInfo CodeGenModule::getTBAAVTablePtrAccessInfo() { 586 if (!TBAA) 587 return TBAAAccessInfo(); 588 return TBAA->getVTablePtrAccessInfo(); 589 } 590 591 llvm::MDNode *CodeGenModule::getTBAAStructInfo(QualType QTy) { 592 if (!TBAA) 593 return nullptr; 594 return TBAA->getTBAAStructInfo(QTy); 595 } 596 597 llvm::MDNode *CodeGenModule::getTBAABaseTypeInfo(QualType QTy) { 598 if (!TBAA) 599 return nullptr; 600 return TBAA->getBaseTypeInfo(QTy); 601 } 602 603 llvm::MDNode *CodeGenModule::getTBAAAccessTagInfo(TBAAAccessInfo Info) { 604 if (!TBAA) 605 return nullptr; 606 return TBAA->getAccessTagInfo(Info); 607 } 608 609 TBAAAccessInfo CodeGenModule::getTBAAMayAliasAccessInfo() { 610 if (!TBAA) 611 return TBAAAccessInfo(); 612 return TBAA->getMayAliasAccessInfo(); 613 } 614 615 TBAAAccessInfo CodeGenModule::mergeTBAAInfoForCast(TBAAAccessInfo SourceInfo, 616 TBAAAccessInfo TargetInfo) { 617 if (!TBAA) 618 return TBAAAccessInfo(); 619 return TBAA->mergeTBAAInfoForCast(SourceInfo, TargetInfo); 620 } 621 622 void CodeGenModule::DecorateInstructionWithTBAA(llvm::Instruction *Inst, 623 TBAAAccessInfo TBAAInfo) { 624 if (llvm::MDNode *Tag = getTBAAAccessTagInfo(TBAAInfo)) 625 Inst->setMetadata(llvm::LLVMContext::MD_tbaa, Tag); 626 } 627 628 void CodeGenModule::DecorateInstructionWithInvariantGroup( 629 llvm::Instruction *I, const CXXRecordDecl *RD) { 630 I->setMetadata(llvm::LLVMContext::MD_invariant_group, 631 llvm::MDNode::get(getLLVMContext(), {})); 632 } 633 634 void CodeGenModule::Error(SourceLocation loc, StringRef message) { 635 unsigned diagID = getDiags().getCustomDiagID(DiagnosticsEngine::Error, "%0"); 636 getDiags().Report(Context.getFullLoc(loc), diagID) << message; 637 } 638 639 /// ErrorUnsupported - Print out an error that codegen doesn't support the 640 /// specified stmt yet. 641 void CodeGenModule::ErrorUnsupported(const Stmt *S, const char *Type) { 642 unsigned DiagID = getDiags().getCustomDiagID(DiagnosticsEngine::Error, 643 "cannot compile this %0 yet"); 644 std::string Msg = Type; 645 getDiags().Report(Context.getFullLoc(S->getLocStart()), DiagID) 646 << Msg << S->getSourceRange(); 647 } 648 649 /// ErrorUnsupported - Print out an error that codegen doesn't support the 650 /// specified decl yet. 651 void CodeGenModule::ErrorUnsupported(const Decl *D, const char *Type) { 652 unsigned DiagID = getDiags().getCustomDiagID(DiagnosticsEngine::Error, 653 "cannot compile this %0 yet"); 654 std::string Msg = Type; 655 getDiags().Report(Context.getFullLoc(D->getLocation()), DiagID) << Msg; 656 } 657 658 llvm::ConstantInt *CodeGenModule::getSize(CharUnits size) { 659 return llvm::ConstantInt::get(SizeTy, size.getQuantity()); 660 } 661 662 void CodeGenModule::setGlobalVisibility(llvm::GlobalValue *GV, 663 const NamedDecl *D) const { 664 // Internal definitions always have default visibility. 665 if (GV->hasLocalLinkage()) { 666 GV->setVisibility(llvm::GlobalValue::DefaultVisibility); 667 return; 668 } 669 670 // Set visibility for definitions. 671 LinkageInfo LV = D->getLinkageAndVisibility(); 672 if (LV.isVisibilityExplicit() || !GV->hasAvailableExternallyLinkage()) 673 GV->setVisibility(GetLLVMVisibility(LV.getVisibility())); 674 } 675 676 static llvm::GlobalVariable::ThreadLocalMode GetLLVMTLSModel(StringRef S) { 677 return llvm::StringSwitch<llvm::GlobalVariable::ThreadLocalMode>(S) 678 .Case("global-dynamic", llvm::GlobalVariable::GeneralDynamicTLSModel) 679 .Case("local-dynamic", llvm::GlobalVariable::LocalDynamicTLSModel) 680 .Case("initial-exec", llvm::GlobalVariable::InitialExecTLSModel) 681 .Case("local-exec", llvm::GlobalVariable::LocalExecTLSModel); 682 } 683 684 static llvm::GlobalVariable::ThreadLocalMode GetLLVMTLSModel( 685 CodeGenOptions::TLSModel M) { 686 switch (M) { 687 case CodeGenOptions::GeneralDynamicTLSModel: 688 return llvm::GlobalVariable::GeneralDynamicTLSModel; 689 case CodeGenOptions::LocalDynamicTLSModel: 690 return llvm::GlobalVariable::LocalDynamicTLSModel; 691 case CodeGenOptions::InitialExecTLSModel: 692 return llvm::GlobalVariable::InitialExecTLSModel; 693 case CodeGenOptions::LocalExecTLSModel: 694 return llvm::GlobalVariable::LocalExecTLSModel; 695 } 696 llvm_unreachable("Invalid TLS model!"); 697 } 698 699 void CodeGenModule::setTLSMode(llvm::GlobalValue *GV, const VarDecl &D) const { 700 assert(D.getTLSKind() && "setting TLS mode on non-TLS var!"); 701 702 llvm::GlobalValue::ThreadLocalMode TLM; 703 TLM = GetLLVMTLSModel(CodeGenOpts.getDefaultTLSModel()); 704 705 // Override the TLS model if it is explicitly specified. 706 if (const TLSModelAttr *Attr = D.getAttr<TLSModelAttr>()) { 707 TLM = GetLLVMTLSModel(Attr->getModel()); 708 } 709 710 GV->setThreadLocalMode(TLM); 711 } 712 713 StringRef CodeGenModule::getMangledName(GlobalDecl GD) { 714 GlobalDecl CanonicalGD = GD.getCanonicalDecl(); 715 716 // Some ABIs don't have constructor variants. Make sure that base and 717 // complete constructors get mangled the same. 718 if (const auto *CD = dyn_cast<CXXConstructorDecl>(CanonicalGD.getDecl())) { 719 if (!getTarget().getCXXABI().hasConstructorVariants()) { 720 CXXCtorType OrigCtorType = GD.getCtorType(); 721 assert(OrigCtorType == Ctor_Base || OrigCtorType == Ctor_Complete); 722 if (OrigCtorType == Ctor_Base) 723 CanonicalGD = GlobalDecl(CD, Ctor_Complete); 724 } 725 } 726 727 auto FoundName = MangledDeclNames.find(CanonicalGD); 728 if (FoundName != MangledDeclNames.end()) 729 return FoundName->second; 730 731 const auto *ND = cast<NamedDecl>(GD.getDecl()); 732 SmallString<256> Buffer; 733 StringRef Str; 734 if (getCXXABI().getMangleContext().shouldMangleDeclName(ND)) { 735 llvm::raw_svector_ostream Out(Buffer); 736 if (const auto *D = dyn_cast<CXXConstructorDecl>(ND)) 737 getCXXABI().getMangleContext().mangleCXXCtor(D, GD.getCtorType(), Out); 738 else if (const auto *D = dyn_cast<CXXDestructorDecl>(ND)) 739 getCXXABI().getMangleContext().mangleCXXDtor(D, GD.getDtorType(), Out); 740 else 741 getCXXABI().getMangleContext().mangleName(ND, Out); 742 Str = Out.str(); 743 } else { 744 IdentifierInfo *II = ND->getIdentifier(); 745 assert(II && "Attempt to mangle unnamed decl."); 746 const auto *FD = dyn_cast<FunctionDecl>(ND); 747 748 if (FD && 749 FD->getType()->castAs<FunctionType>()->getCallConv() == CC_X86RegCall) { 750 llvm::raw_svector_ostream Out(Buffer); 751 Out << "__regcall3__" << II->getName(); 752 Str = Out.str(); 753 } else { 754 Str = II->getName(); 755 } 756 } 757 758 // Keep the first result in the case of a mangling collision. 759 auto Result = Manglings.insert(std::make_pair(Str, GD)); 760 return MangledDeclNames[CanonicalGD] = Result.first->first(); 761 } 762 763 StringRef CodeGenModule::getBlockMangledName(GlobalDecl GD, 764 const BlockDecl *BD) { 765 MangleContext &MangleCtx = getCXXABI().getMangleContext(); 766 const Decl *D = GD.getDecl(); 767 768 SmallString<256> Buffer; 769 llvm::raw_svector_ostream Out(Buffer); 770 if (!D) 771 MangleCtx.mangleGlobalBlock(BD, 772 dyn_cast_or_null<VarDecl>(initializedGlobalDecl.getDecl()), Out); 773 else if (const auto *CD = dyn_cast<CXXConstructorDecl>(D)) 774 MangleCtx.mangleCtorBlock(CD, GD.getCtorType(), BD, Out); 775 else if (const auto *DD = dyn_cast<CXXDestructorDecl>(D)) 776 MangleCtx.mangleDtorBlock(DD, GD.getDtorType(), BD, Out); 777 else 778 MangleCtx.mangleBlock(cast<DeclContext>(D), BD, Out); 779 780 auto Result = Manglings.insert(std::make_pair(Out.str(), BD)); 781 return Result.first->first(); 782 } 783 784 llvm::GlobalValue *CodeGenModule::GetGlobalValue(StringRef Name) { 785 return getModule().getNamedValue(Name); 786 } 787 788 /// AddGlobalCtor - Add a function to the list that will be called before 789 /// main() runs. 790 void CodeGenModule::AddGlobalCtor(llvm::Function *Ctor, int Priority, 791 llvm::Constant *AssociatedData) { 792 // FIXME: Type coercion of void()* types. 793 GlobalCtors.push_back(Structor(Priority, Ctor, AssociatedData)); 794 } 795 796 /// AddGlobalDtor - Add a function to the list that will be called 797 /// when the module is unloaded. 798 void CodeGenModule::AddGlobalDtor(llvm::Function *Dtor, int Priority) { 799 // FIXME: Type coercion of void()* types. 800 GlobalDtors.push_back(Structor(Priority, Dtor, nullptr)); 801 } 802 803 void CodeGenModule::EmitCtorList(CtorList &Fns, const char *GlobalName) { 804 if (Fns.empty()) return; 805 806 // Ctor function type is void()*. 807 llvm::FunctionType* CtorFTy = llvm::FunctionType::get(VoidTy, false); 808 llvm::Type *CtorPFTy = llvm::PointerType::getUnqual(CtorFTy); 809 810 // Get the type of a ctor entry, { i32, void ()*, i8* }. 811 llvm::StructType *CtorStructTy = llvm::StructType::get( 812 Int32Ty, llvm::PointerType::getUnqual(CtorFTy), VoidPtrTy); 813 814 // Construct the constructor and destructor arrays. 815 ConstantInitBuilder builder(*this); 816 auto ctors = builder.beginArray(CtorStructTy); 817 for (const auto &I : Fns) { 818 auto ctor = ctors.beginStruct(CtorStructTy); 819 ctor.addInt(Int32Ty, I.Priority); 820 ctor.add(llvm::ConstantExpr::getBitCast(I.Initializer, CtorPFTy)); 821 if (I.AssociatedData) 822 ctor.add(llvm::ConstantExpr::getBitCast(I.AssociatedData, VoidPtrTy)); 823 else 824 ctor.addNullPointer(VoidPtrTy); 825 ctor.finishAndAddTo(ctors); 826 } 827 828 auto list = 829 ctors.finishAndCreateGlobal(GlobalName, getPointerAlign(), 830 /*constant*/ false, 831 llvm::GlobalValue::AppendingLinkage); 832 833 // The LTO linker doesn't seem to like it when we set an alignment 834 // on appending variables. Take it off as a workaround. 835 list->setAlignment(0); 836 837 Fns.clear(); 838 } 839 840 llvm::GlobalValue::LinkageTypes 841 CodeGenModule::getFunctionLinkage(GlobalDecl GD) { 842 const auto *D = cast<FunctionDecl>(GD.getDecl()); 843 844 GVALinkage Linkage = getContext().GetGVALinkageForFunction(D); 845 846 if (isa<CXXDestructorDecl>(D) && 847 getCXXABI().useThunkForDtorVariant(cast<CXXDestructorDecl>(D), 848 GD.getDtorType())) { 849 // Destructor variants in the Microsoft C++ ABI are always internal or 850 // linkonce_odr thunks emitted on an as-needed basis. 851 return Linkage == GVA_Internal ? llvm::GlobalValue::InternalLinkage 852 : llvm::GlobalValue::LinkOnceODRLinkage; 853 } 854 855 if (isa<CXXConstructorDecl>(D) && 856 cast<CXXConstructorDecl>(D)->isInheritingConstructor() && 857 Context.getTargetInfo().getCXXABI().isMicrosoft()) { 858 // Our approach to inheriting constructors is fundamentally different from 859 // that used by the MS ABI, so keep our inheriting constructor thunks 860 // internal rather than trying to pick an unambiguous mangling for them. 861 return llvm::GlobalValue::InternalLinkage; 862 } 863 864 return getLLVMLinkageForDeclarator(D, Linkage, /*isConstantVariable=*/false); 865 } 866 867 void CodeGenModule::setFunctionDLLStorageClass(GlobalDecl GD, llvm::Function *F) { 868 const auto *FD = cast<FunctionDecl>(GD.getDecl()); 869 870 if (const auto *Dtor = dyn_cast_or_null<CXXDestructorDecl>(FD)) { 871 if (getCXXABI().useThunkForDtorVariant(Dtor, GD.getDtorType())) { 872 // Don't dllexport/import destructor thunks. 873 F->setDLLStorageClass(llvm::GlobalValue::DefaultStorageClass); 874 return; 875 } 876 } 877 878 if (FD->hasAttr<DLLImportAttr>()) 879 F->setDLLStorageClass(llvm::GlobalVariable::DLLImportStorageClass); 880 else if (FD->hasAttr<DLLExportAttr>()) 881 F->setDLLStorageClass(llvm::GlobalVariable::DLLExportStorageClass); 882 else 883 F->setDLLStorageClass(llvm::GlobalVariable::DefaultStorageClass); 884 } 885 886 llvm::ConstantInt *CodeGenModule::CreateCrossDsoCfiTypeId(llvm::Metadata *MD) { 887 llvm::MDString *MDS = dyn_cast<llvm::MDString>(MD); 888 if (!MDS) return nullptr; 889 890 return llvm::ConstantInt::get(Int64Ty, llvm::MD5Hash(MDS->getString())); 891 } 892 893 void CodeGenModule::setFunctionDefinitionAttributes(const FunctionDecl *D, 894 llvm::Function *F) { 895 setNonAliasAttributes(D, F); 896 } 897 898 void CodeGenModule::SetLLVMFunctionAttributes(const Decl *D, 899 const CGFunctionInfo &Info, 900 llvm::Function *F) { 901 unsigned CallingConv; 902 llvm::AttributeList PAL; 903 ConstructAttributeList(F->getName(), Info, D, PAL, CallingConv, false); 904 F->setAttributes(PAL); 905 F->setCallingConv(static_cast<llvm::CallingConv::ID>(CallingConv)); 906 } 907 908 /// Determines whether the language options require us to model 909 /// unwind exceptions. We treat -fexceptions as mandating this 910 /// except under the fragile ObjC ABI with only ObjC exceptions 911 /// enabled. This means, for example, that C with -fexceptions 912 /// enables this. 913 static bool hasUnwindExceptions(const LangOptions &LangOpts) { 914 // If exceptions are completely disabled, obviously this is false. 915 if (!LangOpts.Exceptions) return false; 916 917 // If C++ exceptions are enabled, this is true. 918 if (LangOpts.CXXExceptions) return true; 919 920 // If ObjC exceptions are enabled, this depends on the ABI. 921 if (LangOpts.ObjCExceptions) { 922 return LangOpts.ObjCRuntime.hasUnwindExceptions(); 923 } 924 925 return true; 926 } 927 928 void CodeGenModule::SetLLVMFunctionAttributesForDefinition(const Decl *D, 929 llvm::Function *F) { 930 llvm::AttrBuilder B; 931 932 if (CodeGenOpts.UnwindTables) 933 B.addAttribute(llvm::Attribute::UWTable); 934 935 if (!hasUnwindExceptions(LangOpts)) 936 B.addAttribute(llvm::Attribute::NoUnwind); 937 938 if (LangOpts.getStackProtector() == LangOptions::SSPOn) 939 B.addAttribute(llvm::Attribute::StackProtect); 940 else if (LangOpts.getStackProtector() == LangOptions::SSPStrong) 941 B.addAttribute(llvm::Attribute::StackProtectStrong); 942 else if (LangOpts.getStackProtector() == LangOptions::SSPReq) 943 B.addAttribute(llvm::Attribute::StackProtectReq); 944 945 if (!D) { 946 // If we don't have a declaration to control inlining, the function isn't 947 // explicitly marked as alwaysinline for semantic reasons, and inlining is 948 // disabled, mark the function as noinline. 949 if (!F->hasFnAttribute(llvm::Attribute::AlwaysInline) && 950 CodeGenOpts.getInlining() == CodeGenOptions::OnlyAlwaysInlining) 951 B.addAttribute(llvm::Attribute::NoInline); 952 953 F->addAttributes(llvm::AttributeList::FunctionIndex, B); 954 return; 955 } 956 957 // Track whether we need to add the optnone LLVM attribute, 958 // starting with the default for this optimization level. 959 bool ShouldAddOptNone = 960 !CodeGenOpts.DisableO0ImplyOptNone && CodeGenOpts.OptimizationLevel == 0; 961 // We can't add optnone in the following cases, it won't pass the verifier. 962 ShouldAddOptNone &= !D->hasAttr<MinSizeAttr>(); 963 ShouldAddOptNone &= !F->hasFnAttribute(llvm::Attribute::AlwaysInline); 964 ShouldAddOptNone &= !D->hasAttr<AlwaysInlineAttr>(); 965 966 if (ShouldAddOptNone || D->hasAttr<OptimizeNoneAttr>()) { 967 B.addAttribute(llvm::Attribute::OptimizeNone); 968 969 // OptimizeNone implies noinline; we should not be inlining such functions. 970 B.addAttribute(llvm::Attribute::NoInline); 971 assert(!F->hasFnAttribute(llvm::Attribute::AlwaysInline) && 972 "OptimizeNone and AlwaysInline on same function!"); 973 974 // We still need to handle naked functions even though optnone subsumes 975 // much of their semantics. 976 if (D->hasAttr<NakedAttr>()) 977 B.addAttribute(llvm::Attribute::Naked); 978 979 // OptimizeNone wins over OptimizeForSize and MinSize. 980 F->removeFnAttr(llvm::Attribute::OptimizeForSize); 981 F->removeFnAttr(llvm::Attribute::MinSize); 982 } else if (D->hasAttr<NakedAttr>()) { 983 // Naked implies noinline: we should not be inlining such functions. 984 B.addAttribute(llvm::Attribute::Naked); 985 B.addAttribute(llvm::Attribute::NoInline); 986 } else if (D->hasAttr<NoDuplicateAttr>()) { 987 B.addAttribute(llvm::Attribute::NoDuplicate); 988 } else if (D->hasAttr<NoInlineAttr>()) { 989 B.addAttribute(llvm::Attribute::NoInline); 990 } else if (D->hasAttr<AlwaysInlineAttr>() && 991 !F->hasFnAttribute(llvm::Attribute::NoInline)) { 992 // (noinline wins over always_inline, and we can't specify both in IR) 993 B.addAttribute(llvm::Attribute::AlwaysInline); 994 } else if (CodeGenOpts.getInlining() == CodeGenOptions::OnlyAlwaysInlining) { 995 // If we're not inlining, then force everything that isn't always_inline to 996 // carry an explicit noinline attribute. 997 if (!F->hasFnAttribute(llvm::Attribute::AlwaysInline)) 998 B.addAttribute(llvm::Attribute::NoInline); 999 } else { 1000 // Otherwise, propagate the inline hint attribute and potentially use its 1001 // absence to mark things as noinline. 1002 if (auto *FD = dyn_cast<FunctionDecl>(D)) { 1003 if (any_of(FD->redecls(), [&](const FunctionDecl *Redecl) { 1004 return Redecl->isInlineSpecified(); 1005 })) { 1006 B.addAttribute(llvm::Attribute::InlineHint); 1007 } else if (CodeGenOpts.getInlining() == 1008 CodeGenOptions::OnlyHintInlining && 1009 !FD->isInlined() && 1010 !F->hasFnAttribute(llvm::Attribute::AlwaysInline)) { 1011 B.addAttribute(llvm::Attribute::NoInline); 1012 } 1013 } 1014 } 1015 1016 // Add other optimization related attributes if we are optimizing this 1017 // function. 1018 if (!D->hasAttr<OptimizeNoneAttr>()) { 1019 if (D->hasAttr<ColdAttr>()) { 1020 if (!ShouldAddOptNone) 1021 B.addAttribute(llvm::Attribute::OptimizeForSize); 1022 B.addAttribute(llvm::Attribute::Cold); 1023 } 1024 1025 if (D->hasAttr<MinSizeAttr>()) 1026 B.addAttribute(llvm::Attribute::MinSize); 1027 } 1028 1029 F->addAttributes(llvm::AttributeList::FunctionIndex, B); 1030 1031 unsigned alignment = D->getMaxAlignment() / Context.getCharWidth(); 1032 if (alignment) 1033 F->setAlignment(alignment); 1034 1035 // Some C++ ABIs require 2-byte alignment for member functions, in order to 1036 // reserve a bit for differentiating between virtual and non-virtual member 1037 // functions. If the current target's C++ ABI requires this and this is a 1038 // member function, set its alignment accordingly. 1039 if (getTarget().getCXXABI().areMemberFunctionsAligned()) { 1040 if (F->getAlignment() < 2 && isa<CXXMethodDecl>(D)) 1041 F->setAlignment(2); 1042 } 1043 1044 // In the cross-dso CFI mode, we want !type attributes on definitions only. 1045 if (CodeGenOpts.SanitizeCfiCrossDso) 1046 if (auto *FD = dyn_cast<FunctionDecl>(D)) 1047 CreateFunctionTypeMetadata(FD, F); 1048 } 1049 1050 void CodeGenModule::SetCommonAttributes(const Decl *D, 1051 llvm::GlobalValue *GV) { 1052 if (const auto *ND = dyn_cast_or_null<NamedDecl>(D)) 1053 setGlobalVisibility(GV, ND); 1054 else 1055 GV->setVisibility(llvm::GlobalValue::DefaultVisibility); 1056 1057 if (D && D->hasAttr<UsedAttr>()) 1058 addUsedGlobal(GV); 1059 } 1060 1061 void CodeGenModule::setAliasAttributes(const Decl *D, 1062 llvm::GlobalValue *GV) { 1063 SetCommonAttributes(D, GV); 1064 1065 // Process the dllexport attribute based on whether the original definition 1066 // (not necessarily the aliasee) was exported. 1067 if (D->hasAttr<DLLExportAttr>()) 1068 GV->setDLLStorageClass(llvm::GlobalValue::DLLExportStorageClass); 1069 } 1070 1071 void CodeGenModule::setNonAliasAttributes(const Decl *D, 1072 llvm::GlobalObject *GO) { 1073 SetCommonAttributes(D, GO); 1074 1075 if (D) { 1076 if (auto *GV = dyn_cast<llvm::GlobalVariable>(GO)) { 1077 if (auto *SA = D->getAttr<PragmaClangBSSSectionAttr>()) 1078 GV->addAttribute("bss-section", SA->getName()); 1079 if (auto *SA = D->getAttr<PragmaClangDataSectionAttr>()) 1080 GV->addAttribute("data-section", SA->getName()); 1081 if (auto *SA = D->getAttr<PragmaClangRodataSectionAttr>()) 1082 GV->addAttribute("rodata-section", SA->getName()); 1083 } 1084 1085 if (auto *F = dyn_cast<llvm::Function>(GO)) { 1086 if (auto *SA = D->getAttr<PragmaClangTextSectionAttr>()) 1087 if (!D->getAttr<SectionAttr>()) 1088 F->addFnAttr("implicit-section-name", SA->getName()); 1089 } 1090 1091 if (const SectionAttr *SA = D->getAttr<SectionAttr>()) 1092 GO->setSection(SA->getName()); 1093 } 1094 1095 getTargetCodeGenInfo().setTargetAttributes(D, GO, *this, ForDefinition); 1096 } 1097 1098 void CodeGenModule::SetInternalFunctionAttributes(const Decl *D, 1099 llvm::Function *F, 1100 const CGFunctionInfo &FI) { 1101 SetLLVMFunctionAttributes(D, FI, F); 1102 SetLLVMFunctionAttributesForDefinition(D, F); 1103 1104 F->setLinkage(llvm::Function::InternalLinkage); 1105 1106 setNonAliasAttributes(D, F); 1107 } 1108 1109 static void setLinkageAndVisibilityForGV(llvm::GlobalValue *GV, 1110 const NamedDecl *ND) { 1111 // Set linkage and visibility in case we never see a definition. 1112 LinkageInfo LV = ND->getLinkageAndVisibility(); 1113 if (!isExternallyVisible(LV.getLinkage())) { 1114 // Don't set internal linkage on declarations. 1115 } else { 1116 if (ND->hasAttr<DLLImportAttr>()) { 1117 GV->setLinkage(llvm::GlobalValue::ExternalLinkage); 1118 GV->setDLLStorageClass(llvm::GlobalValue::DLLImportStorageClass); 1119 } else if (ND->hasAttr<DLLExportAttr>()) { 1120 GV->setLinkage(llvm::GlobalValue::ExternalLinkage); 1121 } else if (ND->hasAttr<WeakAttr>() || ND->isWeakImported()) { 1122 // "extern_weak" is overloaded in LLVM; we probably should have 1123 // separate linkage types for this. 1124 GV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage); 1125 } 1126 1127 // Set visibility on a declaration only if it's explicit. 1128 if (LV.isVisibilityExplicit()) 1129 GV->setVisibility(CodeGenModule::GetLLVMVisibility(LV.getVisibility())); 1130 } 1131 } 1132 1133 void CodeGenModule::CreateFunctionTypeMetadata(const FunctionDecl *FD, 1134 llvm::Function *F) { 1135 // Only if we are checking indirect calls. 1136 if (!LangOpts.Sanitize.has(SanitizerKind::CFIICall)) 1137 return; 1138 1139 // Non-static class methods are handled via vtable pointer checks elsewhere. 1140 if (isa<CXXMethodDecl>(FD) && !cast<CXXMethodDecl>(FD)->isStatic()) 1141 return; 1142 1143 // Additionally, if building with cross-DSO support... 1144 if (CodeGenOpts.SanitizeCfiCrossDso) { 1145 // Skip available_externally functions. They won't be codegen'ed in the 1146 // current module anyway. 1147 if (getContext().GetGVALinkageForFunction(FD) == GVA_AvailableExternally) 1148 return; 1149 } 1150 1151 llvm::Metadata *MD = CreateMetadataIdentifierForType(FD->getType()); 1152 F->addTypeMetadata(0, MD); 1153 1154 // Emit a hash-based bit set entry for cross-DSO calls. 1155 if (CodeGenOpts.SanitizeCfiCrossDso) 1156 if (auto CrossDsoTypeId = CreateCrossDsoCfiTypeId(MD)) 1157 F->addTypeMetadata(0, llvm::ConstantAsMetadata::get(CrossDsoTypeId)); 1158 } 1159 1160 void CodeGenModule::SetFunctionAttributes(GlobalDecl GD, llvm::Function *F, 1161 bool IsIncompleteFunction, 1162 bool IsThunk, 1163 ForDefinition_t IsForDefinition) { 1164 1165 if (llvm::Intrinsic::ID IID = F->getIntrinsicID()) { 1166 // If this is an intrinsic function, set the function's attributes 1167 // to the intrinsic's attributes. 1168 F->setAttributes(llvm::Intrinsic::getAttributes(getLLVMContext(), IID)); 1169 return; 1170 } 1171 1172 const auto *FD = cast<FunctionDecl>(GD.getDecl()); 1173 1174 if (!IsIncompleteFunction) { 1175 SetLLVMFunctionAttributes(FD, getTypes().arrangeGlobalDeclaration(GD), F); 1176 // Setup target-specific attributes. 1177 if (!IsForDefinition) 1178 getTargetCodeGenInfo().setTargetAttributes(FD, F, *this, 1179 NotForDefinition); 1180 } 1181 1182 // Add the Returned attribute for "this", except for iOS 5 and earlier 1183 // where substantial code, including the libstdc++ dylib, was compiled with 1184 // GCC and does not actually return "this". 1185 if (!IsThunk && getCXXABI().HasThisReturn(GD) && 1186 !(getTriple().isiOS() && getTriple().isOSVersionLT(6))) { 1187 assert(!F->arg_empty() && 1188 F->arg_begin()->getType() 1189 ->canLosslesslyBitCastTo(F->getReturnType()) && 1190 "unexpected this return"); 1191 F->addAttribute(1, llvm::Attribute::Returned); 1192 } 1193 1194 // Only a few attributes are set on declarations; these may later be 1195 // overridden by a definition. 1196 1197 setLinkageAndVisibilityForGV(F, FD); 1198 1199 if (FD->getAttr<PragmaClangTextSectionAttr>()) { 1200 F->addFnAttr("implicit-section-name"); 1201 } 1202 1203 if (const SectionAttr *SA = FD->getAttr<SectionAttr>()) 1204 F->setSection(SA->getName()); 1205 1206 if (FD->isReplaceableGlobalAllocationFunction()) { 1207 // A replaceable global allocation function does not act like a builtin by 1208 // default, only if it is invoked by a new-expression or delete-expression. 1209 F->addAttribute(llvm::AttributeList::FunctionIndex, 1210 llvm::Attribute::NoBuiltin); 1211 1212 // A sane operator new returns a non-aliasing pointer. 1213 // FIXME: Also add NonNull attribute to the return value 1214 // for the non-nothrow forms? 1215 auto Kind = FD->getDeclName().getCXXOverloadedOperator(); 1216 if (getCodeGenOpts().AssumeSaneOperatorNew && 1217 (Kind == OO_New || Kind == OO_Array_New)) 1218 F->addAttribute(llvm::AttributeList::ReturnIndex, 1219 llvm::Attribute::NoAlias); 1220 } 1221 1222 if (isa<CXXConstructorDecl>(FD) || isa<CXXDestructorDecl>(FD)) 1223 F->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global); 1224 else if (const auto *MD = dyn_cast<CXXMethodDecl>(FD)) 1225 if (MD->isVirtual()) 1226 F->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global); 1227 1228 // Don't emit entries for function declarations in the cross-DSO mode. This 1229 // is handled with better precision by the receiving DSO. 1230 if (!CodeGenOpts.SanitizeCfiCrossDso) 1231 CreateFunctionTypeMetadata(FD, F); 1232 } 1233 1234 void CodeGenModule::addUsedGlobal(llvm::GlobalValue *GV) { 1235 assert(!GV->isDeclaration() && 1236 "Only globals with definition can force usage."); 1237 LLVMUsed.emplace_back(GV); 1238 } 1239 1240 void CodeGenModule::addCompilerUsedGlobal(llvm::GlobalValue *GV) { 1241 assert(!GV->isDeclaration() && 1242 "Only globals with definition can force usage."); 1243 LLVMCompilerUsed.emplace_back(GV); 1244 } 1245 1246 static void emitUsed(CodeGenModule &CGM, StringRef Name, 1247 std::vector<llvm::WeakTrackingVH> &List) { 1248 // Don't create llvm.used if there is no need. 1249 if (List.empty()) 1250 return; 1251 1252 // Convert List to what ConstantArray needs. 1253 SmallVector<llvm::Constant*, 8> UsedArray; 1254 UsedArray.resize(List.size()); 1255 for (unsigned i = 0, e = List.size(); i != e; ++i) { 1256 UsedArray[i] = 1257 llvm::ConstantExpr::getPointerBitCastOrAddrSpaceCast( 1258 cast<llvm::Constant>(&*List[i]), CGM.Int8PtrTy); 1259 } 1260 1261 if (UsedArray.empty()) 1262 return; 1263 llvm::ArrayType *ATy = llvm::ArrayType::get(CGM.Int8PtrTy, UsedArray.size()); 1264 1265 auto *GV = new llvm::GlobalVariable( 1266 CGM.getModule(), ATy, false, llvm::GlobalValue::AppendingLinkage, 1267 llvm::ConstantArray::get(ATy, UsedArray), Name); 1268 1269 GV->setSection("llvm.metadata"); 1270 } 1271 1272 void CodeGenModule::emitLLVMUsed() { 1273 emitUsed(*this, "llvm.used", LLVMUsed); 1274 emitUsed(*this, "llvm.compiler.used", LLVMCompilerUsed); 1275 } 1276 1277 void CodeGenModule::AppendLinkerOptions(StringRef Opts) { 1278 auto *MDOpts = llvm::MDString::get(getLLVMContext(), Opts); 1279 LinkerOptionsMetadata.push_back(llvm::MDNode::get(getLLVMContext(), MDOpts)); 1280 } 1281 1282 void CodeGenModule::AddDetectMismatch(StringRef Name, StringRef Value) { 1283 llvm::SmallString<32> Opt; 1284 getTargetCodeGenInfo().getDetectMismatchOption(Name, Value, Opt); 1285 auto *MDOpts = llvm::MDString::get(getLLVMContext(), Opt); 1286 LinkerOptionsMetadata.push_back(llvm::MDNode::get(getLLVMContext(), MDOpts)); 1287 } 1288 1289 void CodeGenModule::AddDependentLib(StringRef Lib) { 1290 llvm::SmallString<24> Opt; 1291 getTargetCodeGenInfo().getDependentLibraryOption(Lib, Opt); 1292 auto *MDOpts = llvm::MDString::get(getLLVMContext(), Opt); 1293 LinkerOptionsMetadata.push_back(llvm::MDNode::get(getLLVMContext(), MDOpts)); 1294 } 1295 1296 /// \brief Add link options implied by the given module, including modules 1297 /// it depends on, using a postorder walk. 1298 static void addLinkOptionsPostorder(CodeGenModule &CGM, Module *Mod, 1299 SmallVectorImpl<llvm::MDNode *> &Metadata, 1300 llvm::SmallPtrSet<Module *, 16> &Visited) { 1301 // Import this module's parent. 1302 if (Mod->Parent && Visited.insert(Mod->Parent).second) { 1303 addLinkOptionsPostorder(CGM, Mod->Parent, Metadata, Visited); 1304 } 1305 1306 // Import this module's dependencies. 1307 for (unsigned I = Mod->Imports.size(); I > 0; --I) { 1308 if (Visited.insert(Mod->Imports[I - 1]).second) 1309 addLinkOptionsPostorder(CGM, Mod->Imports[I-1], Metadata, Visited); 1310 } 1311 1312 // Add linker options to link against the libraries/frameworks 1313 // described by this module. 1314 llvm::LLVMContext &Context = CGM.getLLVMContext(); 1315 for (unsigned I = Mod->LinkLibraries.size(); I > 0; --I) { 1316 // Link against a framework. Frameworks are currently Darwin only, so we 1317 // don't to ask TargetCodeGenInfo for the spelling of the linker option. 1318 if (Mod->LinkLibraries[I-1].IsFramework) { 1319 llvm::Metadata *Args[2] = { 1320 llvm::MDString::get(Context, "-framework"), 1321 llvm::MDString::get(Context, Mod->LinkLibraries[I - 1].Library)}; 1322 1323 Metadata.push_back(llvm::MDNode::get(Context, Args)); 1324 continue; 1325 } 1326 1327 // Link against a library. 1328 llvm::SmallString<24> Opt; 1329 CGM.getTargetCodeGenInfo().getDependentLibraryOption( 1330 Mod->LinkLibraries[I-1].Library, Opt); 1331 auto *OptString = llvm::MDString::get(Context, Opt); 1332 Metadata.push_back(llvm::MDNode::get(Context, OptString)); 1333 } 1334 } 1335 1336 void CodeGenModule::EmitModuleLinkOptions() { 1337 // Collect the set of all of the modules we want to visit to emit link 1338 // options, which is essentially the imported modules and all of their 1339 // non-explicit child modules. 1340 llvm::SetVector<clang::Module *> LinkModules; 1341 llvm::SmallPtrSet<clang::Module *, 16> Visited; 1342 SmallVector<clang::Module *, 16> Stack; 1343 1344 // Seed the stack with imported modules. 1345 for (Module *M : ImportedModules) { 1346 // Do not add any link flags when an implementation TU of a module imports 1347 // a header of that same module. 1348 if (M->getTopLevelModuleName() == getLangOpts().CurrentModule && 1349 !getLangOpts().isCompilingModule()) 1350 continue; 1351 if (Visited.insert(M).second) 1352 Stack.push_back(M); 1353 } 1354 1355 // Find all of the modules to import, making a little effort to prune 1356 // non-leaf modules. 1357 while (!Stack.empty()) { 1358 clang::Module *Mod = Stack.pop_back_val(); 1359 1360 bool AnyChildren = false; 1361 1362 // Visit the submodules of this module. 1363 for (clang::Module::submodule_iterator Sub = Mod->submodule_begin(), 1364 SubEnd = Mod->submodule_end(); 1365 Sub != SubEnd; ++Sub) { 1366 // Skip explicit children; they need to be explicitly imported to be 1367 // linked against. 1368 if ((*Sub)->IsExplicit) 1369 continue; 1370 1371 if (Visited.insert(*Sub).second) { 1372 Stack.push_back(*Sub); 1373 AnyChildren = true; 1374 } 1375 } 1376 1377 // We didn't find any children, so add this module to the list of 1378 // modules to link against. 1379 if (!AnyChildren) { 1380 LinkModules.insert(Mod); 1381 } 1382 } 1383 1384 // Add link options for all of the imported modules in reverse topological 1385 // order. We don't do anything to try to order import link flags with respect 1386 // to linker options inserted by things like #pragma comment(). 1387 SmallVector<llvm::MDNode *, 16> MetadataArgs; 1388 Visited.clear(); 1389 for (Module *M : LinkModules) 1390 if (Visited.insert(M).second) 1391 addLinkOptionsPostorder(*this, M, MetadataArgs, Visited); 1392 std::reverse(MetadataArgs.begin(), MetadataArgs.end()); 1393 LinkerOptionsMetadata.append(MetadataArgs.begin(), MetadataArgs.end()); 1394 1395 // Add the linker options metadata flag. 1396 auto *NMD = getModule().getOrInsertNamedMetadata("llvm.linker.options"); 1397 for (auto *MD : LinkerOptionsMetadata) 1398 NMD->addOperand(MD); 1399 } 1400 1401 void CodeGenModule::EmitDeferred() { 1402 // Emit code for any potentially referenced deferred decls. Since a 1403 // previously unused static decl may become used during the generation of code 1404 // for a static function, iterate until no changes are made. 1405 1406 if (!DeferredVTables.empty()) { 1407 EmitDeferredVTables(); 1408 1409 // Emitting a vtable doesn't directly cause more vtables to 1410 // become deferred, although it can cause functions to be 1411 // emitted that then need those vtables. 1412 assert(DeferredVTables.empty()); 1413 } 1414 1415 // Stop if we're out of both deferred vtables and deferred declarations. 1416 if (DeferredDeclsToEmit.empty()) 1417 return; 1418 1419 // Grab the list of decls to emit. If EmitGlobalDefinition schedules more 1420 // work, it will not interfere with this. 1421 std::vector<GlobalDecl> CurDeclsToEmit; 1422 CurDeclsToEmit.swap(DeferredDeclsToEmit); 1423 1424 for (GlobalDecl &D : CurDeclsToEmit) { 1425 // We should call GetAddrOfGlobal with IsForDefinition set to true in order 1426 // to get GlobalValue with exactly the type we need, not something that 1427 // might had been created for another decl with the same mangled name but 1428 // different type. 1429 llvm::GlobalValue *GV = dyn_cast<llvm::GlobalValue>( 1430 GetAddrOfGlobal(D, ForDefinition)); 1431 1432 // In case of different address spaces, we may still get a cast, even with 1433 // IsForDefinition equal to true. Query mangled names table to get 1434 // GlobalValue. 1435 if (!GV) 1436 GV = GetGlobalValue(getMangledName(D)); 1437 1438 // Make sure GetGlobalValue returned non-null. 1439 assert(GV); 1440 1441 // Check to see if we've already emitted this. This is necessary 1442 // for a couple of reasons: first, decls can end up in the 1443 // deferred-decls queue multiple times, and second, decls can end 1444 // up with definitions in unusual ways (e.g. by an extern inline 1445 // function acquiring a strong function redefinition). Just 1446 // ignore these cases. 1447 if (!GV->isDeclaration()) 1448 continue; 1449 1450 // Otherwise, emit the definition and move on to the next one. 1451 EmitGlobalDefinition(D, GV); 1452 1453 // If we found out that we need to emit more decls, do that recursively. 1454 // This has the advantage that the decls are emitted in a DFS and related 1455 // ones are close together, which is convenient for testing. 1456 if (!DeferredVTables.empty() || !DeferredDeclsToEmit.empty()) { 1457 EmitDeferred(); 1458 assert(DeferredVTables.empty() && DeferredDeclsToEmit.empty()); 1459 } 1460 } 1461 } 1462 1463 void CodeGenModule::EmitVTablesOpportunistically() { 1464 // Try to emit external vtables as available_externally if they have emitted 1465 // all inlined virtual functions. It runs after EmitDeferred() and therefore 1466 // is not allowed to create new references to things that need to be emitted 1467 // lazily. Note that it also uses fact that we eagerly emitting RTTI. 1468 1469 assert((OpportunisticVTables.empty() || shouldOpportunisticallyEmitVTables()) 1470 && "Only emit opportunistic vtables with optimizations"); 1471 1472 for (const CXXRecordDecl *RD : OpportunisticVTables) { 1473 assert(getVTables().isVTableExternal(RD) && 1474 "This queue should only contain external vtables"); 1475 if (getCXXABI().canSpeculativelyEmitVTable(RD)) 1476 VTables.GenerateClassData(RD); 1477 } 1478 OpportunisticVTables.clear(); 1479 } 1480 1481 void CodeGenModule::EmitGlobalAnnotations() { 1482 if (Annotations.empty()) 1483 return; 1484 1485 // Create a new global variable for the ConstantStruct in the Module. 1486 llvm::Constant *Array = llvm::ConstantArray::get(llvm::ArrayType::get( 1487 Annotations[0]->getType(), Annotations.size()), Annotations); 1488 auto *gv = new llvm::GlobalVariable(getModule(), Array->getType(), false, 1489 llvm::GlobalValue::AppendingLinkage, 1490 Array, "llvm.global.annotations"); 1491 gv->setSection(AnnotationSection); 1492 } 1493 1494 llvm::Constant *CodeGenModule::EmitAnnotationString(StringRef Str) { 1495 llvm::Constant *&AStr = AnnotationStrings[Str]; 1496 if (AStr) 1497 return AStr; 1498 1499 // Not found yet, create a new global. 1500 llvm::Constant *s = llvm::ConstantDataArray::getString(getLLVMContext(), Str); 1501 auto *gv = 1502 new llvm::GlobalVariable(getModule(), s->getType(), true, 1503 llvm::GlobalValue::PrivateLinkage, s, ".str"); 1504 gv->setSection(AnnotationSection); 1505 gv->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global); 1506 AStr = gv; 1507 return gv; 1508 } 1509 1510 llvm::Constant *CodeGenModule::EmitAnnotationUnit(SourceLocation Loc) { 1511 SourceManager &SM = getContext().getSourceManager(); 1512 PresumedLoc PLoc = SM.getPresumedLoc(Loc); 1513 if (PLoc.isValid()) 1514 return EmitAnnotationString(PLoc.getFilename()); 1515 return EmitAnnotationString(SM.getBufferName(Loc)); 1516 } 1517 1518 llvm::Constant *CodeGenModule::EmitAnnotationLineNo(SourceLocation L) { 1519 SourceManager &SM = getContext().getSourceManager(); 1520 PresumedLoc PLoc = SM.getPresumedLoc(L); 1521 unsigned LineNo = PLoc.isValid() ? PLoc.getLine() : 1522 SM.getExpansionLineNumber(L); 1523 return llvm::ConstantInt::get(Int32Ty, LineNo); 1524 } 1525 1526 llvm::Constant *CodeGenModule::EmitAnnotateAttr(llvm::GlobalValue *GV, 1527 const AnnotateAttr *AA, 1528 SourceLocation L) { 1529 // Get the globals for file name, annotation, and the line number. 1530 llvm::Constant *AnnoGV = EmitAnnotationString(AA->getAnnotation()), 1531 *UnitGV = EmitAnnotationUnit(L), 1532 *LineNoCst = EmitAnnotationLineNo(L); 1533 1534 // Create the ConstantStruct for the global annotation. 1535 llvm::Constant *Fields[4] = { 1536 llvm::ConstantExpr::getBitCast(GV, Int8PtrTy), 1537 llvm::ConstantExpr::getBitCast(AnnoGV, Int8PtrTy), 1538 llvm::ConstantExpr::getBitCast(UnitGV, Int8PtrTy), 1539 LineNoCst 1540 }; 1541 return llvm::ConstantStruct::getAnon(Fields); 1542 } 1543 1544 void CodeGenModule::AddGlobalAnnotations(const ValueDecl *D, 1545 llvm::GlobalValue *GV) { 1546 assert(D->hasAttr<AnnotateAttr>() && "no annotate attribute"); 1547 // Get the struct elements for these annotations. 1548 for (const auto *I : D->specific_attrs<AnnotateAttr>()) 1549 Annotations.push_back(EmitAnnotateAttr(GV, I, D->getLocation())); 1550 } 1551 1552 bool CodeGenModule::isInSanitizerBlacklist(SanitizerMask Kind, 1553 llvm::Function *Fn, 1554 SourceLocation Loc) const { 1555 const auto &SanitizerBL = getContext().getSanitizerBlacklist(); 1556 // Blacklist by function name. 1557 if (SanitizerBL.isBlacklistedFunction(Kind, Fn->getName())) 1558 return true; 1559 // Blacklist by location. 1560 if (Loc.isValid()) 1561 return SanitizerBL.isBlacklistedLocation(Kind, Loc); 1562 // If location is unknown, this may be a compiler-generated function. Assume 1563 // it's located in the main file. 1564 auto &SM = Context.getSourceManager(); 1565 if (const auto *MainFile = SM.getFileEntryForID(SM.getMainFileID())) { 1566 return SanitizerBL.isBlacklistedFile(Kind, MainFile->getName()); 1567 } 1568 return false; 1569 } 1570 1571 bool CodeGenModule::isInSanitizerBlacklist(llvm::GlobalVariable *GV, 1572 SourceLocation Loc, QualType Ty, 1573 StringRef Category) const { 1574 // For now globals can be blacklisted only in ASan and KASan. 1575 const SanitizerMask EnabledAsanMask = LangOpts.Sanitize.Mask & 1576 (SanitizerKind::Address | SanitizerKind::KernelAddress); 1577 if (!EnabledAsanMask) 1578 return false; 1579 const auto &SanitizerBL = getContext().getSanitizerBlacklist(); 1580 if (SanitizerBL.isBlacklistedGlobal(EnabledAsanMask, GV->getName(), Category)) 1581 return true; 1582 if (SanitizerBL.isBlacklistedLocation(EnabledAsanMask, Loc, Category)) 1583 return true; 1584 // Check global type. 1585 if (!Ty.isNull()) { 1586 // Drill down the array types: if global variable of a fixed type is 1587 // blacklisted, we also don't instrument arrays of them. 1588 while (auto AT = dyn_cast<ArrayType>(Ty.getTypePtr())) 1589 Ty = AT->getElementType(); 1590 Ty = Ty.getCanonicalType().getUnqualifiedType(); 1591 // We allow to blacklist only record types (classes, structs etc.) 1592 if (Ty->isRecordType()) { 1593 std::string TypeStr = Ty.getAsString(getContext().getPrintingPolicy()); 1594 if (SanitizerBL.isBlacklistedType(EnabledAsanMask, TypeStr, Category)) 1595 return true; 1596 } 1597 } 1598 return false; 1599 } 1600 1601 bool CodeGenModule::imbueXRayAttrs(llvm::Function *Fn, SourceLocation Loc, 1602 StringRef Category) const { 1603 if (!LangOpts.XRayInstrument) 1604 return false; 1605 const auto &XRayFilter = getContext().getXRayFilter(); 1606 using ImbueAttr = XRayFunctionFilter::ImbueAttribute; 1607 auto Attr = XRayFunctionFilter::ImbueAttribute::NONE; 1608 if (Loc.isValid()) 1609 Attr = XRayFilter.shouldImbueLocation(Loc, Category); 1610 if (Attr == ImbueAttr::NONE) 1611 Attr = XRayFilter.shouldImbueFunction(Fn->getName()); 1612 switch (Attr) { 1613 case ImbueAttr::NONE: 1614 return false; 1615 case ImbueAttr::ALWAYS: 1616 Fn->addFnAttr("function-instrument", "xray-always"); 1617 break; 1618 case ImbueAttr::ALWAYS_ARG1: 1619 Fn->addFnAttr("function-instrument", "xray-always"); 1620 Fn->addFnAttr("xray-log-args", "1"); 1621 break; 1622 case ImbueAttr::NEVER: 1623 Fn->addFnAttr("function-instrument", "xray-never"); 1624 break; 1625 } 1626 return true; 1627 } 1628 1629 bool CodeGenModule::MustBeEmitted(const ValueDecl *Global) { 1630 // Never defer when EmitAllDecls is specified. 1631 if (LangOpts.EmitAllDecls) 1632 return true; 1633 1634 return getContext().DeclMustBeEmitted(Global); 1635 } 1636 1637 bool CodeGenModule::MayBeEmittedEagerly(const ValueDecl *Global) { 1638 if (const auto *FD = dyn_cast<FunctionDecl>(Global)) 1639 if (FD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation) 1640 // Implicit template instantiations may change linkage if they are later 1641 // explicitly instantiated, so they should not be emitted eagerly. 1642 return false; 1643 if (const auto *VD = dyn_cast<VarDecl>(Global)) 1644 if (Context.getInlineVariableDefinitionKind(VD) == 1645 ASTContext::InlineVariableDefinitionKind::WeakUnknown) 1646 // A definition of an inline constexpr static data member may change 1647 // linkage later if it's redeclared outside the class. 1648 return false; 1649 // If OpenMP is enabled and threadprivates must be generated like TLS, delay 1650 // codegen for global variables, because they may be marked as threadprivate. 1651 if (LangOpts.OpenMP && LangOpts.OpenMPUseTLS && 1652 getContext().getTargetInfo().isTLSSupported() && isa<VarDecl>(Global)) 1653 return false; 1654 1655 return true; 1656 } 1657 1658 ConstantAddress CodeGenModule::GetAddrOfUuidDescriptor( 1659 const CXXUuidofExpr* E) { 1660 // Sema has verified that IIDSource has a __declspec(uuid()), and that its 1661 // well-formed. 1662 StringRef Uuid = E->getUuidStr(); 1663 std::string Name = "_GUID_" + Uuid.lower(); 1664 std::replace(Name.begin(), Name.end(), '-', '_'); 1665 1666 // The UUID descriptor should be pointer aligned. 1667 CharUnits Alignment = CharUnits::fromQuantity(PointerAlignInBytes); 1668 1669 // Look for an existing global. 1670 if (llvm::GlobalVariable *GV = getModule().getNamedGlobal(Name)) 1671 return ConstantAddress(GV, Alignment); 1672 1673 llvm::Constant *Init = EmitUuidofInitializer(Uuid); 1674 assert(Init && "failed to initialize as constant"); 1675 1676 auto *GV = new llvm::GlobalVariable( 1677 getModule(), Init->getType(), 1678 /*isConstant=*/true, llvm::GlobalValue::LinkOnceODRLinkage, Init, Name); 1679 if (supportsCOMDAT()) 1680 GV->setComdat(TheModule.getOrInsertComdat(GV->getName())); 1681 return ConstantAddress(GV, Alignment); 1682 } 1683 1684 ConstantAddress CodeGenModule::GetWeakRefReference(const ValueDecl *VD) { 1685 const AliasAttr *AA = VD->getAttr<AliasAttr>(); 1686 assert(AA && "No alias?"); 1687 1688 CharUnits Alignment = getContext().getDeclAlign(VD); 1689 llvm::Type *DeclTy = getTypes().ConvertTypeForMem(VD->getType()); 1690 1691 // See if there is already something with the target's name in the module. 1692 llvm::GlobalValue *Entry = GetGlobalValue(AA->getAliasee()); 1693 if (Entry) { 1694 unsigned AS = getContext().getTargetAddressSpace(VD->getType()); 1695 auto Ptr = llvm::ConstantExpr::getBitCast(Entry, DeclTy->getPointerTo(AS)); 1696 return ConstantAddress(Ptr, Alignment); 1697 } 1698 1699 llvm::Constant *Aliasee; 1700 if (isa<llvm::FunctionType>(DeclTy)) 1701 Aliasee = GetOrCreateLLVMFunction(AA->getAliasee(), DeclTy, 1702 GlobalDecl(cast<FunctionDecl>(VD)), 1703 /*ForVTable=*/false); 1704 else 1705 Aliasee = GetOrCreateLLVMGlobal(AA->getAliasee(), 1706 llvm::PointerType::getUnqual(DeclTy), 1707 nullptr); 1708 1709 auto *F = cast<llvm::GlobalValue>(Aliasee); 1710 F->setLinkage(llvm::Function::ExternalWeakLinkage); 1711 WeakRefReferences.insert(F); 1712 1713 return ConstantAddress(Aliasee, Alignment); 1714 } 1715 1716 void CodeGenModule::EmitGlobal(GlobalDecl GD) { 1717 const auto *Global = cast<ValueDecl>(GD.getDecl()); 1718 1719 // Weak references don't produce any output by themselves. 1720 if (Global->hasAttr<WeakRefAttr>()) 1721 return; 1722 1723 // If this is an alias definition (which otherwise looks like a declaration) 1724 // emit it now. 1725 if (Global->hasAttr<AliasAttr>()) 1726 return EmitAliasDefinition(GD); 1727 1728 // IFunc like an alias whose value is resolved at runtime by calling resolver. 1729 if (Global->hasAttr<IFuncAttr>()) 1730 return emitIFuncDefinition(GD); 1731 1732 // If this is CUDA, be selective about which declarations we emit. 1733 if (LangOpts.CUDA) { 1734 if (LangOpts.CUDAIsDevice) { 1735 if (!Global->hasAttr<CUDADeviceAttr>() && 1736 !Global->hasAttr<CUDAGlobalAttr>() && 1737 !Global->hasAttr<CUDAConstantAttr>() && 1738 !Global->hasAttr<CUDASharedAttr>()) 1739 return; 1740 } else { 1741 // We need to emit host-side 'shadows' for all global 1742 // device-side variables because the CUDA runtime needs their 1743 // size and host-side address in order to provide access to 1744 // their device-side incarnations. 1745 1746 // So device-only functions are the only things we skip. 1747 if (isa<FunctionDecl>(Global) && !Global->hasAttr<CUDAHostAttr>() && 1748 Global->hasAttr<CUDADeviceAttr>()) 1749 return; 1750 1751 assert((isa<FunctionDecl>(Global) || isa<VarDecl>(Global)) && 1752 "Expected Variable or Function"); 1753 } 1754 } 1755 1756 if (LangOpts.OpenMP) { 1757 // If this is OpenMP device, check if it is legal to emit this global 1758 // normally. 1759 if (OpenMPRuntime && OpenMPRuntime->emitTargetGlobal(GD)) 1760 return; 1761 if (auto *DRD = dyn_cast<OMPDeclareReductionDecl>(Global)) { 1762 if (MustBeEmitted(Global)) 1763 EmitOMPDeclareReduction(DRD); 1764 return; 1765 } 1766 } 1767 1768 // Ignore declarations, they will be emitted on their first use. 1769 if (const auto *FD = dyn_cast<FunctionDecl>(Global)) { 1770 // Forward declarations are emitted lazily on first use. 1771 if (!FD->doesThisDeclarationHaveABody()) { 1772 if (!FD->doesDeclarationForceExternallyVisibleDefinition()) 1773 return; 1774 1775 StringRef MangledName = getMangledName(GD); 1776 1777 // Compute the function info and LLVM type. 1778 const CGFunctionInfo &FI = getTypes().arrangeGlobalDeclaration(GD); 1779 llvm::Type *Ty = getTypes().GetFunctionType(FI); 1780 1781 GetOrCreateLLVMFunction(MangledName, Ty, GD, /*ForVTable=*/false, 1782 /*DontDefer=*/false); 1783 return; 1784 } 1785 } else { 1786 const auto *VD = cast<VarDecl>(Global); 1787 assert(VD->isFileVarDecl() && "Cannot emit local var decl as global."); 1788 // We need to emit device-side global CUDA variables even if a 1789 // variable does not have a definition -- we still need to define 1790 // host-side shadow for it. 1791 bool MustEmitForCuda = LangOpts.CUDA && !LangOpts.CUDAIsDevice && 1792 !VD->hasDefinition() && 1793 (VD->hasAttr<CUDAConstantAttr>() || 1794 VD->hasAttr<CUDADeviceAttr>()); 1795 if (!MustEmitForCuda && 1796 VD->isThisDeclarationADefinition() != VarDecl::Definition && 1797 !Context.isMSStaticDataMemberInlineDefinition(VD)) { 1798 // If this declaration may have caused an inline variable definition to 1799 // change linkage, make sure that it's emitted. 1800 if (Context.getInlineVariableDefinitionKind(VD) == 1801 ASTContext::InlineVariableDefinitionKind::Strong) 1802 GetAddrOfGlobalVar(VD); 1803 return; 1804 } 1805 } 1806 1807 // Defer code generation to first use when possible, e.g. if this is an inline 1808 // function. If the global must always be emitted, do it eagerly if possible 1809 // to benefit from cache locality. 1810 if (MustBeEmitted(Global) && MayBeEmittedEagerly(Global)) { 1811 // Emit the definition if it can't be deferred. 1812 EmitGlobalDefinition(GD); 1813 return; 1814 } 1815 1816 // If we're deferring emission of a C++ variable with an 1817 // initializer, remember the order in which it appeared in the file. 1818 if (getLangOpts().CPlusPlus && isa<VarDecl>(Global) && 1819 cast<VarDecl>(Global)->hasInit()) { 1820 DelayedCXXInitPosition[Global] = CXXGlobalInits.size(); 1821 CXXGlobalInits.push_back(nullptr); 1822 } 1823 1824 StringRef MangledName = getMangledName(GD); 1825 if (GetGlobalValue(MangledName) != nullptr) { 1826 // The value has already been used and should therefore be emitted. 1827 addDeferredDeclToEmit(GD); 1828 } else if (MustBeEmitted(Global)) { 1829 // The value must be emitted, but cannot be emitted eagerly. 1830 assert(!MayBeEmittedEagerly(Global)); 1831 addDeferredDeclToEmit(GD); 1832 } else { 1833 // Otherwise, remember that we saw a deferred decl with this name. The 1834 // first use of the mangled name will cause it to move into 1835 // DeferredDeclsToEmit. 1836 DeferredDecls[MangledName] = GD; 1837 } 1838 } 1839 1840 // Check if T is a class type with a destructor that's not dllimport. 1841 static bool HasNonDllImportDtor(QualType T) { 1842 if (const auto *RT = T->getBaseElementTypeUnsafe()->getAs<RecordType>()) 1843 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(RT->getDecl())) 1844 if (RD->getDestructor() && !RD->getDestructor()->hasAttr<DLLImportAttr>()) 1845 return true; 1846 1847 return false; 1848 } 1849 1850 namespace { 1851 struct FunctionIsDirectlyRecursive : 1852 public RecursiveASTVisitor<FunctionIsDirectlyRecursive> { 1853 const StringRef Name; 1854 const Builtin::Context &BI; 1855 bool Result; 1856 FunctionIsDirectlyRecursive(StringRef N, const Builtin::Context &C) : 1857 Name(N), BI(C), Result(false) { 1858 } 1859 typedef RecursiveASTVisitor<FunctionIsDirectlyRecursive> Base; 1860 1861 bool TraverseCallExpr(CallExpr *E) { 1862 const FunctionDecl *FD = E->getDirectCallee(); 1863 if (!FD) 1864 return true; 1865 AsmLabelAttr *Attr = FD->getAttr<AsmLabelAttr>(); 1866 if (Attr && Name == Attr->getLabel()) { 1867 Result = true; 1868 return false; 1869 } 1870 unsigned BuiltinID = FD->getBuiltinID(); 1871 if (!BuiltinID || !BI.isLibFunction(BuiltinID)) 1872 return true; 1873 StringRef BuiltinName = BI.getName(BuiltinID); 1874 if (BuiltinName.startswith("__builtin_") && 1875 Name == BuiltinName.slice(strlen("__builtin_"), StringRef::npos)) { 1876 Result = true; 1877 return false; 1878 } 1879 return true; 1880 } 1881 }; 1882 1883 // Make sure we're not referencing non-imported vars or functions. 1884 struct DLLImportFunctionVisitor 1885 : public RecursiveASTVisitor<DLLImportFunctionVisitor> { 1886 bool SafeToInline = true; 1887 1888 bool shouldVisitImplicitCode() const { return true; } 1889 1890 bool VisitVarDecl(VarDecl *VD) { 1891 if (VD->getTLSKind()) { 1892 // A thread-local variable cannot be imported. 1893 SafeToInline = false; 1894 return SafeToInline; 1895 } 1896 1897 // A variable definition might imply a destructor call. 1898 if (VD->isThisDeclarationADefinition()) 1899 SafeToInline = !HasNonDllImportDtor(VD->getType()); 1900 1901 return SafeToInline; 1902 } 1903 1904 bool VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) { 1905 if (const auto *D = E->getTemporary()->getDestructor()) 1906 SafeToInline = D->hasAttr<DLLImportAttr>(); 1907 return SafeToInline; 1908 } 1909 1910 bool VisitDeclRefExpr(DeclRefExpr *E) { 1911 ValueDecl *VD = E->getDecl(); 1912 if (isa<FunctionDecl>(VD)) 1913 SafeToInline = VD->hasAttr<DLLImportAttr>(); 1914 else if (VarDecl *V = dyn_cast<VarDecl>(VD)) 1915 SafeToInline = !V->hasGlobalStorage() || V->hasAttr<DLLImportAttr>(); 1916 return SafeToInline; 1917 } 1918 1919 bool VisitCXXConstructExpr(CXXConstructExpr *E) { 1920 SafeToInline = E->getConstructor()->hasAttr<DLLImportAttr>(); 1921 return SafeToInline; 1922 } 1923 1924 bool VisitCXXMemberCallExpr(CXXMemberCallExpr *E) { 1925 CXXMethodDecl *M = E->getMethodDecl(); 1926 if (!M) { 1927 // Call through a pointer to member function. This is safe to inline. 1928 SafeToInline = true; 1929 } else { 1930 SafeToInline = M->hasAttr<DLLImportAttr>(); 1931 } 1932 return SafeToInline; 1933 } 1934 1935 bool VisitCXXDeleteExpr(CXXDeleteExpr *E) { 1936 SafeToInline = E->getOperatorDelete()->hasAttr<DLLImportAttr>(); 1937 return SafeToInline; 1938 } 1939 1940 bool VisitCXXNewExpr(CXXNewExpr *E) { 1941 SafeToInline = E->getOperatorNew()->hasAttr<DLLImportAttr>(); 1942 return SafeToInline; 1943 } 1944 }; 1945 } 1946 1947 // isTriviallyRecursive - Check if this function calls another 1948 // decl that, because of the asm attribute or the other decl being a builtin, 1949 // ends up pointing to itself. 1950 bool 1951 CodeGenModule::isTriviallyRecursive(const FunctionDecl *FD) { 1952 StringRef Name; 1953 if (getCXXABI().getMangleContext().shouldMangleDeclName(FD)) { 1954 // asm labels are a special kind of mangling we have to support. 1955 AsmLabelAttr *Attr = FD->getAttr<AsmLabelAttr>(); 1956 if (!Attr) 1957 return false; 1958 Name = Attr->getLabel(); 1959 } else { 1960 Name = FD->getName(); 1961 } 1962 1963 FunctionIsDirectlyRecursive Walker(Name, Context.BuiltinInfo); 1964 Walker.TraverseFunctionDecl(const_cast<FunctionDecl*>(FD)); 1965 return Walker.Result; 1966 } 1967 1968 bool CodeGenModule::shouldEmitFunction(GlobalDecl GD) { 1969 if (getFunctionLinkage(GD) != llvm::Function::AvailableExternallyLinkage) 1970 return true; 1971 const auto *F = cast<FunctionDecl>(GD.getDecl()); 1972 if (CodeGenOpts.OptimizationLevel == 0 && !F->hasAttr<AlwaysInlineAttr>()) 1973 return false; 1974 1975 if (F->hasAttr<DLLImportAttr>()) { 1976 // Check whether it would be safe to inline this dllimport function. 1977 DLLImportFunctionVisitor Visitor; 1978 Visitor.TraverseFunctionDecl(const_cast<FunctionDecl*>(F)); 1979 if (!Visitor.SafeToInline) 1980 return false; 1981 1982 if (const CXXDestructorDecl *Dtor = dyn_cast<CXXDestructorDecl>(F)) { 1983 // Implicit destructor invocations aren't captured in the AST, so the 1984 // check above can't see them. Check for them manually here. 1985 for (const Decl *Member : Dtor->getParent()->decls()) 1986 if (isa<FieldDecl>(Member)) 1987 if (HasNonDllImportDtor(cast<FieldDecl>(Member)->getType())) 1988 return false; 1989 for (const CXXBaseSpecifier &B : Dtor->getParent()->bases()) 1990 if (HasNonDllImportDtor(B.getType())) 1991 return false; 1992 } 1993 } 1994 1995 // PR9614. Avoid cases where the source code is lying to us. An available 1996 // externally function should have an equivalent function somewhere else, 1997 // but a function that calls itself is clearly not equivalent to the real 1998 // implementation. 1999 // This happens in glibc's btowc and in some configure checks. 2000 return !isTriviallyRecursive(F); 2001 } 2002 2003 bool CodeGenModule::shouldOpportunisticallyEmitVTables() { 2004 return CodeGenOpts.OptimizationLevel > 0; 2005 } 2006 2007 void CodeGenModule::EmitGlobalDefinition(GlobalDecl GD, llvm::GlobalValue *GV) { 2008 const auto *D = cast<ValueDecl>(GD.getDecl()); 2009 2010 PrettyStackTraceDecl CrashInfo(const_cast<ValueDecl *>(D), D->getLocation(), 2011 Context.getSourceManager(), 2012 "Generating code for declaration"); 2013 2014 if (isa<FunctionDecl>(D)) { 2015 // At -O0, don't generate IR for functions with available_externally 2016 // linkage. 2017 if (!shouldEmitFunction(GD)) 2018 return; 2019 2020 if (const auto *Method = dyn_cast<CXXMethodDecl>(D)) { 2021 // Make sure to emit the definition(s) before we emit the thunks. 2022 // This is necessary for the generation of certain thunks. 2023 if (const auto *CD = dyn_cast<CXXConstructorDecl>(Method)) 2024 ABI->emitCXXStructor(CD, getFromCtorType(GD.getCtorType())); 2025 else if (const auto *DD = dyn_cast<CXXDestructorDecl>(Method)) 2026 ABI->emitCXXStructor(DD, getFromDtorType(GD.getDtorType())); 2027 else 2028 EmitGlobalFunctionDefinition(GD, GV); 2029 2030 if (Method->isVirtual()) 2031 getVTables().EmitThunks(GD); 2032 2033 return; 2034 } 2035 2036 return EmitGlobalFunctionDefinition(GD, GV); 2037 } 2038 2039 if (const auto *VD = dyn_cast<VarDecl>(D)) 2040 return EmitGlobalVarDefinition(VD, !VD->hasDefinition()); 2041 2042 llvm_unreachable("Invalid argument to EmitGlobalDefinition()"); 2043 } 2044 2045 static void ReplaceUsesOfNonProtoTypeWithRealFunction(llvm::GlobalValue *Old, 2046 llvm::Function *NewFn); 2047 2048 /// GetOrCreateLLVMFunction - If the specified mangled name is not in the 2049 /// module, create and return an llvm Function with the specified type. If there 2050 /// is something in the module with the specified name, return it potentially 2051 /// bitcasted to the right type. 2052 /// 2053 /// If D is non-null, it specifies a decl that correspond to this. This is used 2054 /// to set the attributes on the function when it is first created. 2055 llvm::Constant *CodeGenModule::GetOrCreateLLVMFunction( 2056 StringRef MangledName, llvm::Type *Ty, GlobalDecl GD, bool ForVTable, 2057 bool DontDefer, bool IsThunk, llvm::AttributeList ExtraAttrs, 2058 ForDefinition_t IsForDefinition) { 2059 const Decl *D = GD.getDecl(); 2060 2061 // Lookup the entry, lazily creating it if necessary. 2062 llvm::GlobalValue *Entry = GetGlobalValue(MangledName); 2063 if (Entry) { 2064 if (WeakRefReferences.erase(Entry)) { 2065 const FunctionDecl *FD = cast_or_null<FunctionDecl>(D); 2066 if (FD && !FD->hasAttr<WeakAttr>()) 2067 Entry->setLinkage(llvm::Function::ExternalLinkage); 2068 } 2069 2070 // Handle dropped DLL attributes. 2071 if (D && !D->hasAttr<DLLImportAttr>() && !D->hasAttr<DLLExportAttr>()) 2072 Entry->setDLLStorageClass(llvm::GlobalValue::DefaultStorageClass); 2073 2074 // If there are two attempts to define the same mangled name, issue an 2075 // error. 2076 if (IsForDefinition && !Entry->isDeclaration()) { 2077 GlobalDecl OtherGD; 2078 // Check that GD is not yet in DiagnosedConflictingDefinitions is required 2079 // to make sure that we issue an error only once. 2080 if (lookupRepresentativeDecl(MangledName, OtherGD) && 2081 (GD.getCanonicalDecl().getDecl() != 2082 OtherGD.getCanonicalDecl().getDecl()) && 2083 DiagnosedConflictingDefinitions.insert(GD).second) { 2084 getDiags().Report(D->getLocation(), 2085 diag::err_duplicate_mangled_name); 2086 getDiags().Report(OtherGD.getDecl()->getLocation(), 2087 diag::note_previous_definition); 2088 } 2089 } 2090 2091 if ((isa<llvm::Function>(Entry) || isa<llvm::GlobalAlias>(Entry)) && 2092 (Entry->getType()->getElementType() == Ty)) { 2093 return Entry; 2094 } 2095 2096 // Make sure the result is of the correct type. 2097 // (If function is requested for a definition, we always need to create a new 2098 // function, not just return a bitcast.) 2099 if (!IsForDefinition) 2100 return llvm::ConstantExpr::getBitCast(Entry, Ty->getPointerTo()); 2101 } 2102 2103 // This function doesn't have a complete type (for example, the return 2104 // type is an incomplete struct). Use a fake type instead, and make 2105 // sure not to try to set attributes. 2106 bool IsIncompleteFunction = false; 2107 2108 llvm::FunctionType *FTy; 2109 if (isa<llvm::FunctionType>(Ty)) { 2110 FTy = cast<llvm::FunctionType>(Ty); 2111 } else { 2112 FTy = llvm::FunctionType::get(VoidTy, false); 2113 IsIncompleteFunction = true; 2114 } 2115 2116 llvm::Function *F = 2117 llvm::Function::Create(FTy, llvm::Function::ExternalLinkage, 2118 Entry ? StringRef() : MangledName, &getModule()); 2119 2120 // If we already created a function with the same mangled name (but different 2121 // type) before, take its name and add it to the list of functions to be 2122 // replaced with F at the end of CodeGen. 2123 // 2124 // This happens if there is a prototype for a function (e.g. "int f()") and 2125 // then a definition of a different type (e.g. "int f(int x)"). 2126 if (Entry) { 2127 F->takeName(Entry); 2128 2129 // This might be an implementation of a function without a prototype, in 2130 // which case, try to do special replacement of calls which match the new 2131 // prototype. The really key thing here is that we also potentially drop 2132 // arguments from the call site so as to make a direct call, which makes the 2133 // inliner happier and suppresses a number of optimizer warnings (!) about 2134 // dropping arguments. 2135 if (!Entry->use_empty()) { 2136 ReplaceUsesOfNonProtoTypeWithRealFunction(Entry, F); 2137 Entry->removeDeadConstantUsers(); 2138 } 2139 2140 llvm::Constant *BC = llvm::ConstantExpr::getBitCast( 2141 F, Entry->getType()->getElementType()->getPointerTo()); 2142 addGlobalValReplacement(Entry, BC); 2143 } 2144 2145 assert(F->getName() == MangledName && "name was uniqued!"); 2146 if (D) 2147 SetFunctionAttributes(GD, F, IsIncompleteFunction, IsThunk, 2148 IsForDefinition); 2149 if (ExtraAttrs.hasAttributes(llvm::AttributeList::FunctionIndex)) { 2150 llvm::AttrBuilder B(ExtraAttrs, llvm::AttributeList::FunctionIndex); 2151 F->addAttributes(llvm::AttributeList::FunctionIndex, B); 2152 } 2153 2154 if (!DontDefer) { 2155 // All MSVC dtors other than the base dtor are linkonce_odr and delegate to 2156 // each other bottoming out with the base dtor. Therefore we emit non-base 2157 // dtors on usage, even if there is no dtor definition in the TU. 2158 if (D && isa<CXXDestructorDecl>(D) && 2159 getCXXABI().useThunkForDtorVariant(cast<CXXDestructorDecl>(D), 2160 GD.getDtorType())) 2161 addDeferredDeclToEmit(GD); 2162 2163 // This is the first use or definition of a mangled name. If there is a 2164 // deferred decl with this name, remember that we need to emit it at the end 2165 // of the file. 2166 auto DDI = DeferredDecls.find(MangledName); 2167 if (DDI != DeferredDecls.end()) { 2168 // Move the potentially referenced deferred decl to the 2169 // DeferredDeclsToEmit list, and remove it from DeferredDecls (since we 2170 // don't need it anymore). 2171 addDeferredDeclToEmit(DDI->second); 2172 DeferredDecls.erase(DDI); 2173 2174 // Otherwise, there are cases we have to worry about where we're 2175 // using a declaration for which we must emit a definition but where 2176 // we might not find a top-level definition: 2177 // - member functions defined inline in their classes 2178 // - friend functions defined inline in some class 2179 // - special member functions with implicit definitions 2180 // If we ever change our AST traversal to walk into class methods, 2181 // this will be unnecessary. 2182 // 2183 // We also don't emit a definition for a function if it's going to be an 2184 // entry in a vtable, unless it's already marked as used. 2185 } else if (getLangOpts().CPlusPlus && D) { 2186 // Look for a declaration that's lexically in a record. 2187 for (const auto *FD = cast<FunctionDecl>(D)->getMostRecentDecl(); FD; 2188 FD = FD->getPreviousDecl()) { 2189 if (isa<CXXRecordDecl>(FD->getLexicalDeclContext())) { 2190 if (FD->doesThisDeclarationHaveABody()) { 2191 addDeferredDeclToEmit(GD.getWithDecl(FD)); 2192 break; 2193 } 2194 } 2195 } 2196 } 2197 } 2198 2199 // Make sure the result is of the requested type. 2200 if (!IsIncompleteFunction) { 2201 assert(F->getType()->getElementType() == Ty); 2202 return F; 2203 } 2204 2205 llvm::Type *PTy = llvm::PointerType::getUnqual(Ty); 2206 return llvm::ConstantExpr::getBitCast(F, PTy); 2207 } 2208 2209 /// GetAddrOfFunction - Return the address of the given function. If Ty is 2210 /// non-null, then this function will use the specified type if it has to 2211 /// create it (this occurs when we see a definition of the function). 2212 llvm::Constant *CodeGenModule::GetAddrOfFunction(GlobalDecl GD, 2213 llvm::Type *Ty, 2214 bool ForVTable, 2215 bool DontDefer, 2216 ForDefinition_t IsForDefinition) { 2217 // If there was no specific requested type, just convert it now. 2218 if (!Ty) { 2219 const auto *FD = cast<FunctionDecl>(GD.getDecl()); 2220 auto CanonTy = Context.getCanonicalType(FD->getType()); 2221 Ty = getTypes().ConvertFunctionType(CanonTy, FD); 2222 } 2223 2224 StringRef MangledName = getMangledName(GD); 2225 return GetOrCreateLLVMFunction(MangledName, Ty, GD, ForVTable, DontDefer, 2226 /*IsThunk=*/false, llvm::AttributeList(), 2227 IsForDefinition); 2228 } 2229 2230 static const FunctionDecl * 2231 GetRuntimeFunctionDecl(ASTContext &C, StringRef Name) { 2232 TranslationUnitDecl *TUDecl = C.getTranslationUnitDecl(); 2233 DeclContext *DC = TranslationUnitDecl::castToDeclContext(TUDecl); 2234 2235 IdentifierInfo &CII = C.Idents.get(Name); 2236 for (const auto &Result : DC->lookup(&CII)) 2237 if (const auto FD = dyn_cast<FunctionDecl>(Result)) 2238 return FD; 2239 2240 if (!C.getLangOpts().CPlusPlus) 2241 return nullptr; 2242 2243 // Demangle the premangled name from getTerminateFn() 2244 IdentifierInfo &CXXII = 2245 (Name == "_ZSt9terminatev" || Name == "\01?terminate@@YAXXZ") 2246 ? C.Idents.get("terminate") 2247 : C.Idents.get(Name); 2248 2249 for (const auto &N : {"__cxxabiv1", "std"}) { 2250 IdentifierInfo &NS = C.Idents.get(N); 2251 for (const auto &Result : DC->lookup(&NS)) { 2252 NamespaceDecl *ND = dyn_cast<NamespaceDecl>(Result); 2253 if (auto LSD = dyn_cast<LinkageSpecDecl>(Result)) 2254 for (const auto &Result : LSD->lookup(&NS)) 2255 if ((ND = dyn_cast<NamespaceDecl>(Result))) 2256 break; 2257 2258 if (ND) 2259 for (const auto &Result : ND->lookup(&CXXII)) 2260 if (const auto *FD = dyn_cast<FunctionDecl>(Result)) 2261 return FD; 2262 } 2263 } 2264 2265 return nullptr; 2266 } 2267 2268 /// CreateRuntimeFunction - Create a new runtime function with the specified 2269 /// type and name. 2270 llvm::Constant * 2271 CodeGenModule::CreateRuntimeFunction(llvm::FunctionType *FTy, StringRef Name, 2272 llvm::AttributeList ExtraAttrs, 2273 bool Local) { 2274 llvm::Constant *C = 2275 GetOrCreateLLVMFunction(Name, FTy, GlobalDecl(), /*ForVTable=*/false, 2276 /*DontDefer=*/false, /*IsThunk=*/false, 2277 ExtraAttrs); 2278 2279 if (auto *F = dyn_cast<llvm::Function>(C)) { 2280 if (F->empty()) { 2281 F->setCallingConv(getRuntimeCC()); 2282 2283 if (!Local && getTriple().isOSBinFormatCOFF() && 2284 !getCodeGenOpts().LTOVisibilityPublicStd) { 2285 const FunctionDecl *FD = GetRuntimeFunctionDecl(Context, Name); 2286 if (!FD || FD->hasAttr<DLLImportAttr>()) { 2287 F->setDLLStorageClass(llvm::GlobalValue::DLLImportStorageClass); 2288 F->setLinkage(llvm::GlobalValue::ExternalLinkage); 2289 } 2290 } 2291 } 2292 } 2293 2294 return C; 2295 } 2296 2297 /// CreateBuiltinFunction - Create a new builtin function with the specified 2298 /// type and name. 2299 llvm::Constant * 2300 CodeGenModule::CreateBuiltinFunction(llvm::FunctionType *FTy, StringRef Name, 2301 llvm::AttributeList ExtraAttrs) { 2302 llvm::Constant *C = 2303 GetOrCreateLLVMFunction(Name, FTy, GlobalDecl(), /*ForVTable=*/false, 2304 /*DontDefer=*/false, /*IsThunk=*/false, ExtraAttrs); 2305 if (auto *F = dyn_cast<llvm::Function>(C)) 2306 if (F->empty()) 2307 F->setCallingConv(getBuiltinCC()); 2308 return C; 2309 } 2310 2311 /// isTypeConstant - Determine whether an object of this type can be emitted 2312 /// as a constant. 2313 /// 2314 /// If ExcludeCtor is true, the duration when the object's constructor runs 2315 /// will not be considered. The caller will need to verify that the object is 2316 /// not written to during its construction. 2317 bool CodeGenModule::isTypeConstant(QualType Ty, bool ExcludeCtor) { 2318 if (!Ty.isConstant(Context) && !Ty->isReferenceType()) 2319 return false; 2320 2321 if (Context.getLangOpts().CPlusPlus) { 2322 if (const CXXRecordDecl *Record 2323 = Context.getBaseElementType(Ty)->getAsCXXRecordDecl()) 2324 return ExcludeCtor && !Record->hasMutableFields() && 2325 Record->hasTrivialDestructor(); 2326 } 2327 2328 return true; 2329 } 2330 2331 /// GetOrCreateLLVMGlobal - If the specified mangled name is not in the module, 2332 /// create and return an llvm GlobalVariable with the specified type. If there 2333 /// is something in the module with the specified name, return it potentially 2334 /// bitcasted to the right type. 2335 /// 2336 /// If D is non-null, it specifies a decl that correspond to this. This is used 2337 /// to set the attributes on the global when it is first created. 2338 /// 2339 /// If IsForDefinition is true, it is guranteed that an actual global with 2340 /// type Ty will be returned, not conversion of a variable with the same 2341 /// mangled name but some other type. 2342 llvm::Constant * 2343 CodeGenModule::GetOrCreateLLVMGlobal(StringRef MangledName, 2344 llvm::PointerType *Ty, 2345 const VarDecl *D, 2346 ForDefinition_t IsForDefinition) { 2347 // Lookup the entry, lazily creating it if necessary. 2348 llvm::GlobalValue *Entry = GetGlobalValue(MangledName); 2349 if (Entry) { 2350 if (WeakRefReferences.erase(Entry)) { 2351 if (D && !D->hasAttr<WeakAttr>()) 2352 Entry->setLinkage(llvm::Function::ExternalLinkage); 2353 } 2354 2355 // Handle dropped DLL attributes. 2356 if (D && !D->hasAttr<DLLImportAttr>() && !D->hasAttr<DLLExportAttr>()) 2357 Entry->setDLLStorageClass(llvm::GlobalValue::DefaultStorageClass); 2358 2359 if (Entry->getType() == Ty) 2360 return Entry; 2361 2362 // If there are two attempts to define the same mangled name, issue an 2363 // error. 2364 if (IsForDefinition && !Entry->isDeclaration()) { 2365 GlobalDecl OtherGD; 2366 const VarDecl *OtherD; 2367 2368 // Check that D is not yet in DiagnosedConflictingDefinitions is required 2369 // to make sure that we issue an error only once. 2370 if (D && lookupRepresentativeDecl(MangledName, OtherGD) && 2371 (D->getCanonicalDecl() != OtherGD.getCanonicalDecl().getDecl()) && 2372 (OtherD = dyn_cast<VarDecl>(OtherGD.getDecl())) && 2373 OtherD->hasInit() && 2374 DiagnosedConflictingDefinitions.insert(D).second) { 2375 getDiags().Report(D->getLocation(), 2376 diag::err_duplicate_mangled_name); 2377 getDiags().Report(OtherGD.getDecl()->getLocation(), 2378 diag::note_previous_definition); 2379 } 2380 } 2381 2382 // Make sure the result is of the correct type. 2383 if (Entry->getType()->getAddressSpace() != Ty->getAddressSpace()) 2384 return llvm::ConstantExpr::getAddrSpaceCast(Entry, Ty); 2385 2386 // (If global is requested for a definition, we always need to create a new 2387 // global, not just return a bitcast.) 2388 if (!IsForDefinition) 2389 return llvm::ConstantExpr::getBitCast(Entry, Ty); 2390 } 2391 2392 auto AddrSpace = GetGlobalVarAddressSpace(D); 2393 auto TargetAddrSpace = getContext().getTargetAddressSpace(AddrSpace); 2394 2395 auto *GV = new llvm::GlobalVariable( 2396 getModule(), Ty->getElementType(), false, 2397 llvm::GlobalValue::ExternalLinkage, nullptr, MangledName, nullptr, 2398 llvm::GlobalVariable::NotThreadLocal, TargetAddrSpace); 2399 2400 // If we already created a global with the same mangled name (but different 2401 // type) before, take its name and remove it from its parent. 2402 if (Entry) { 2403 GV->takeName(Entry); 2404 2405 if (!Entry->use_empty()) { 2406 llvm::Constant *NewPtrForOldDecl = 2407 llvm::ConstantExpr::getBitCast(GV, Entry->getType()); 2408 Entry->replaceAllUsesWith(NewPtrForOldDecl); 2409 } 2410 2411 Entry->eraseFromParent(); 2412 } 2413 2414 // This is the first use or definition of a mangled name. If there is a 2415 // deferred decl with this name, remember that we need to emit it at the end 2416 // of the file. 2417 auto DDI = DeferredDecls.find(MangledName); 2418 if (DDI != DeferredDecls.end()) { 2419 // Move the potentially referenced deferred decl to the DeferredDeclsToEmit 2420 // list, and remove it from DeferredDecls (since we don't need it anymore). 2421 addDeferredDeclToEmit(DDI->second); 2422 DeferredDecls.erase(DDI); 2423 } 2424 2425 // Handle things which are present even on external declarations. 2426 if (D) { 2427 // FIXME: This code is overly simple and should be merged with other global 2428 // handling. 2429 GV->setConstant(isTypeConstant(D->getType(), false)); 2430 2431 GV->setAlignment(getContext().getDeclAlign(D).getQuantity()); 2432 2433 setLinkageAndVisibilityForGV(GV, D); 2434 2435 if (D->getTLSKind()) { 2436 if (D->getTLSKind() == VarDecl::TLS_Dynamic) 2437 CXXThreadLocals.push_back(D); 2438 setTLSMode(GV, *D); 2439 } 2440 2441 // If required by the ABI, treat declarations of static data members with 2442 // inline initializers as definitions. 2443 if (getContext().isMSStaticDataMemberInlineDefinition(D)) { 2444 EmitGlobalVarDefinition(D); 2445 } 2446 2447 // Emit section information for extern variables. 2448 if (D->hasExternalStorage()) { 2449 if (const SectionAttr *SA = D->getAttr<SectionAttr>()) 2450 GV->setSection(SA->getName()); 2451 } 2452 2453 // Handle XCore specific ABI requirements. 2454 if (getTriple().getArch() == llvm::Triple::xcore && 2455 D->getLanguageLinkage() == CLanguageLinkage && 2456 D->getType().isConstant(Context) && 2457 isExternallyVisible(D->getLinkageAndVisibility().getLinkage())) 2458 GV->setSection(".cp.rodata"); 2459 2460 // Check if we a have a const declaration with an initializer, we may be 2461 // able to emit it as available_externally to expose it's value to the 2462 // optimizer. 2463 if (Context.getLangOpts().CPlusPlus && GV->hasExternalLinkage() && 2464 D->getType().isConstQualified() && !GV->hasInitializer() && 2465 !D->hasDefinition() && D->hasInit() && !D->hasAttr<DLLImportAttr>()) { 2466 const auto *Record = 2467 Context.getBaseElementType(D->getType())->getAsCXXRecordDecl(); 2468 bool HasMutableFields = Record && Record->hasMutableFields(); 2469 if (!HasMutableFields) { 2470 const VarDecl *InitDecl; 2471 const Expr *InitExpr = D->getAnyInitializer(InitDecl); 2472 if (InitExpr) { 2473 ConstantEmitter emitter(*this); 2474 llvm::Constant *Init = emitter.tryEmitForInitializer(*InitDecl); 2475 if (Init) { 2476 auto *InitType = Init->getType(); 2477 if (GV->getType()->getElementType() != InitType) { 2478 // The type of the initializer does not match the definition. 2479 // This happens when an initializer has a different type from 2480 // the type of the global (because of padding at the end of a 2481 // structure for instance). 2482 GV->setName(StringRef()); 2483 // Make a new global with the correct type, this is now guaranteed 2484 // to work. 2485 auto *NewGV = cast<llvm::GlobalVariable>( 2486 GetAddrOfGlobalVar(D, InitType, IsForDefinition)); 2487 2488 // Erase the old global, since it is no longer used. 2489 cast<llvm::GlobalValue>(GV)->eraseFromParent(); 2490 GV = NewGV; 2491 } else { 2492 GV->setInitializer(Init); 2493 GV->setConstant(true); 2494 GV->setLinkage(llvm::GlobalValue::AvailableExternallyLinkage); 2495 } 2496 emitter.finalize(GV); 2497 } 2498 } 2499 } 2500 } 2501 } 2502 2503 auto ExpectedAS = 2504 D ? D->getType().getAddressSpace() 2505 : static_cast<unsigned>(LangOpts.OpenCL ? LangAS::opencl_global 2506 : LangAS::Default); 2507 assert(getContext().getTargetAddressSpace(ExpectedAS) == 2508 Ty->getPointerAddressSpace()); 2509 if (AddrSpace != ExpectedAS) 2510 return getTargetCodeGenInfo().performAddrSpaceCast(*this, GV, AddrSpace, 2511 ExpectedAS, Ty); 2512 2513 return GV; 2514 } 2515 2516 llvm::Constant * 2517 CodeGenModule::GetAddrOfGlobal(GlobalDecl GD, 2518 ForDefinition_t IsForDefinition) { 2519 const Decl *D = GD.getDecl(); 2520 if (isa<CXXConstructorDecl>(D)) 2521 return getAddrOfCXXStructor(cast<CXXConstructorDecl>(D), 2522 getFromCtorType(GD.getCtorType()), 2523 /*FnInfo=*/nullptr, /*FnType=*/nullptr, 2524 /*DontDefer=*/false, IsForDefinition); 2525 else if (isa<CXXDestructorDecl>(D)) 2526 return getAddrOfCXXStructor(cast<CXXDestructorDecl>(D), 2527 getFromDtorType(GD.getDtorType()), 2528 /*FnInfo=*/nullptr, /*FnType=*/nullptr, 2529 /*DontDefer=*/false, IsForDefinition); 2530 else if (isa<CXXMethodDecl>(D)) { 2531 auto FInfo = &getTypes().arrangeCXXMethodDeclaration( 2532 cast<CXXMethodDecl>(D)); 2533 auto Ty = getTypes().GetFunctionType(*FInfo); 2534 return GetAddrOfFunction(GD, Ty, /*ForVTable=*/false, /*DontDefer=*/false, 2535 IsForDefinition); 2536 } else if (isa<FunctionDecl>(D)) { 2537 const CGFunctionInfo &FI = getTypes().arrangeGlobalDeclaration(GD); 2538 llvm::FunctionType *Ty = getTypes().GetFunctionType(FI); 2539 return GetAddrOfFunction(GD, Ty, /*ForVTable=*/false, /*DontDefer=*/false, 2540 IsForDefinition); 2541 } else 2542 return GetAddrOfGlobalVar(cast<VarDecl>(D), /*Ty=*/nullptr, 2543 IsForDefinition); 2544 } 2545 2546 llvm::GlobalVariable * 2547 CodeGenModule::CreateOrReplaceCXXRuntimeVariable(StringRef Name, 2548 llvm::Type *Ty, 2549 llvm::GlobalValue::LinkageTypes Linkage) { 2550 llvm::GlobalVariable *GV = getModule().getNamedGlobal(Name); 2551 llvm::GlobalVariable *OldGV = nullptr; 2552 2553 if (GV) { 2554 // Check if the variable has the right type. 2555 if (GV->getType()->getElementType() == Ty) 2556 return GV; 2557 2558 // Because C++ name mangling, the only way we can end up with an already 2559 // existing global with the same name is if it has been declared extern "C". 2560 assert(GV->isDeclaration() && "Declaration has wrong type!"); 2561 OldGV = GV; 2562 } 2563 2564 // Create a new variable. 2565 GV = new llvm::GlobalVariable(getModule(), Ty, /*isConstant=*/true, 2566 Linkage, nullptr, Name); 2567 2568 if (OldGV) { 2569 // Replace occurrences of the old variable if needed. 2570 GV->takeName(OldGV); 2571 2572 if (!OldGV->use_empty()) { 2573 llvm::Constant *NewPtrForOldDecl = 2574 llvm::ConstantExpr::getBitCast(GV, OldGV->getType()); 2575 OldGV->replaceAllUsesWith(NewPtrForOldDecl); 2576 } 2577 2578 OldGV->eraseFromParent(); 2579 } 2580 2581 if (supportsCOMDAT() && GV->isWeakForLinker() && 2582 !GV->hasAvailableExternallyLinkage()) 2583 GV->setComdat(TheModule.getOrInsertComdat(GV->getName())); 2584 2585 return GV; 2586 } 2587 2588 /// GetAddrOfGlobalVar - Return the llvm::Constant for the address of the 2589 /// given global variable. If Ty is non-null and if the global doesn't exist, 2590 /// then it will be created with the specified type instead of whatever the 2591 /// normal requested type would be. If IsForDefinition is true, it is guranteed 2592 /// that an actual global with type Ty will be returned, not conversion of a 2593 /// variable with the same mangled name but some other type. 2594 llvm::Constant *CodeGenModule::GetAddrOfGlobalVar(const VarDecl *D, 2595 llvm::Type *Ty, 2596 ForDefinition_t IsForDefinition) { 2597 assert(D->hasGlobalStorage() && "Not a global variable"); 2598 QualType ASTTy = D->getType(); 2599 if (!Ty) 2600 Ty = getTypes().ConvertTypeForMem(ASTTy); 2601 2602 llvm::PointerType *PTy = 2603 llvm::PointerType::get(Ty, getContext().getTargetAddressSpace(ASTTy)); 2604 2605 StringRef MangledName = getMangledName(D); 2606 return GetOrCreateLLVMGlobal(MangledName, PTy, D, IsForDefinition); 2607 } 2608 2609 /// CreateRuntimeVariable - Create a new runtime global variable with the 2610 /// specified type and name. 2611 llvm::Constant * 2612 CodeGenModule::CreateRuntimeVariable(llvm::Type *Ty, 2613 StringRef Name) { 2614 return GetOrCreateLLVMGlobal(Name, llvm::PointerType::getUnqual(Ty), nullptr); 2615 } 2616 2617 void CodeGenModule::EmitTentativeDefinition(const VarDecl *D) { 2618 assert(!D->getInit() && "Cannot emit definite definitions here!"); 2619 2620 StringRef MangledName = getMangledName(D); 2621 llvm::GlobalValue *GV = GetGlobalValue(MangledName); 2622 2623 // We already have a definition, not declaration, with the same mangled name. 2624 // Emitting of declaration is not required (and actually overwrites emitted 2625 // definition). 2626 if (GV && !GV->isDeclaration()) 2627 return; 2628 2629 // If we have not seen a reference to this variable yet, place it into the 2630 // deferred declarations table to be emitted if needed later. 2631 if (!MustBeEmitted(D) && !GV) { 2632 DeferredDecls[MangledName] = D; 2633 return; 2634 } 2635 2636 // The tentative definition is the only definition. 2637 EmitGlobalVarDefinition(D); 2638 } 2639 2640 CharUnits CodeGenModule::GetTargetTypeStoreSize(llvm::Type *Ty) const { 2641 return Context.toCharUnitsFromBits( 2642 getDataLayout().getTypeStoreSizeInBits(Ty)); 2643 } 2644 2645 unsigned CodeGenModule::GetGlobalVarAddressSpace(const VarDecl *D) { 2646 unsigned AddrSpace; 2647 if (LangOpts.OpenCL) { 2648 AddrSpace = D ? D->getType().getAddressSpace() 2649 : static_cast<unsigned>(LangAS::opencl_global); 2650 assert(AddrSpace == LangAS::opencl_global || 2651 AddrSpace == LangAS::opencl_constant || 2652 AddrSpace == LangAS::opencl_local || 2653 AddrSpace >= LangAS::FirstTargetAddressSpace); 2654 return AddrSpace; 2655 } 2656 2657 if (LangOpts.CUDA && LangOpts.CUDAIsDevice) { 2658 if (D && D->hasAttr<CUDAConstantAttr>()) 2659 return LangAS::cuda_constant; 2660 else if (D && D->hasAttr<CUDASharedAttr>()) 2661 return LangAS::cuda_shared; 2662 else 2663 return LangAS::cuda_device; 2664 } 2665 2666 return getTargetCodeGenInfo().getGlobalVarAddressSpace(*this, D); 2667 } 2668 2669 template<typename SomeDecl> 2670 void CodeGenModule::MaybeHandleStaticInExternC(const SomeDecl *D, 2671 llvm::GlobalValue *GV) { 2672 if (!getLangOpts().CPlusPlus) 2673 return; 2674 2675 // Must have 'used' attribute, or else inline assembly can't rely on 2676 // the name existing. 2677 if (!D->template hasAttr<UsedAttr>()) 2678 return; 2679 2680 // Must have internal linkage and an ordinary name. 2681 if (!D->getIdentifier() || D->getFormalLinkage() != InternalLinkage) 2682 return; 2683 2684 // Must be in an extern "C" context. Entities declared directly within 2685 // a record are not extern "C" even if the record is in such a context. 2686 const SomeDecl *First = D->getFirstDecl(); 2687 if (First->getDeclContext()->isRecord() || !First->isInExternCContext()) 2688 return; 2689 2690 // OK, this is an internal linkage entity inside an extern "C" linkage 2691 // specification. Make a note of that so we can give it the "expected" 2692 // mangled name if nothing else is using that name. 2693 std::pair<StaticExternCMap::iterator, bool> R = 2694 StaticExternCValues.insert(std::make_pair(D->getIdentifier(), GV)); 2695 2696 // If we have multiple internal linkage entities with the same name 2697 // in extern "C" regions, none of them gets that name. 2698 if (!R.second) 2699 R.first->second = nullptr; 2700 } 2701 2702 static bool shouldBeInCOMDAT(CodeGenModule &CGM, const Decl &D) { 2703 if (!CGM.supportsCOMDAT()) 2704 return false; 2705 2706 if (D.hasAttr<SelectAnyAttr>()) 2707 return true; 2708 2709 GVALinkage Linkage; 2710 if (auto *VD = dyn_cast<VarDecl>(&D)) 2711 Linkage = CGM.getContext().GetGVALinkageForVariable(VD); 2712 else 2713 Linkage = CGM.getContext().GetGVALinkageForFunction(cast<FunctionDecl>(&D)); 2714 2715 switch (Linkage) { 2716 case GVA_Internal: 2717 case GVA_AvailableExternally: 2718 case GVA_StrongExternal: 2719 return false; 2720 case GVA_DiscardableODR: 2721 case GVA_StrongODR: 2722 return true; 2723 } 2724 llvm_unreachable("No such linkage"); 2725 } 2726 2727 void CodeGenModule::maybeSetTrivialComdat(const Decl &D, 2728 llvm::GlobalObject &GO) { 2729 if (!shouldBeInCOMDAT(*this, D)) 2730 return; 2731 GO.setComdat(TheModule.getOrInsertComdat(GO.getName())); 2732 } 2733 2734 /// Pass IsTentative as true if you want to create a tentative definition. 2735 void CodeGenModule::EmitGlobalVarDefinition(const VarDecl *D, 2736 bool IsTentative) { 2737 // OpenCL global variables of sampler type are translated to function calls, 2738 // therefore no need to be translated. 2739 QualType ASTTy = D->getType(); 2740 if (getLangOpts().OpenCL && ASTTy->isSamplerT()) 2741 return; 2742 2743 llvm::Constant *Init = nullptr; 2744 CXXRecordDecl *RD = ASTTy->getBaseElementTypeUnsafe()->getAsCXXRecordDecl(); 2745 bool NeedsGlobalCtor = false; 2746 bool NeedsGlobalDtor = RD && !RD->hasTrivialDestructor(); 2747 2748 const VarDecl *InitDecl; 2749 const Expr *InitExpr = D->getAnyInitializer(InitDecl); 2750 2751 Optional<ConstantEmitter> emitter; 2752 2753 // CUDA E.2.4.1 "__shared__ variables cannot have an initialization 2754 // as part of their declaration." Sema has already checked for 2755 // error cases, so we just need to set Init to UndefValue. 2756 if (getLangOpts().CUDA && getLangOpts().CUDAIsDevice && 2757 D->hasAttr<CUDASharedAttr>()) 2758 Init = llvm::UndefValue::get(getTypes().ConvertType(ASTTy)); 2759 else if (!InitExpr) { 2760 // This is a tentative definition; tentative definitions are 2761 // implicitly initialized with { 0 }. 2762 // 2763 // Note that tentative definitions are only emitted at the end of 2764 // a translation unit, so they should never have incomplete 2765 // type. In addition, EmitTentativeDefinition makes sure that we 2766 // never attempt to emit a tentative definition if a real one 2767 // exists. A use may still exists, however, so we still may need 2768 // to do a RAUW. 2769 assert(!ASTTy->isIncompleteType() && "Unexpected incomplete type"); 2770 Init = EmitNullConstant(D->getType()); 2771 } else { 2772 initializedGlobalDecl = GlobalDecl(D); 2773 emitter.emplace(*this); 2774 Init = emitter->tryEmitForInitializer(*InitDecl); 2775 2776 if (!Init) { 2777 QualType T = InitExpr->getType(); 2778 if (D->getType()->isReferenceType()) 2779 T = D->getType(); 2780 2781 if (getLangOpts().CPlusPlus) { 2782 Init = EmitNullConstant(T); 2783 NeedsGlobalCtor = true; 2784 } else { 2785 ErrorUnsupported(D, "static initializer"); 2786 Init = llvm::UndefValue::get(getTypes().ConvertType(T)); 2787 } 2788 } else { 2789 // We don't need an initializer, so remove the entry for the delayed 2790 // initializer position (just in case this entry was delayed) if we 2791 // also don't need to register a destructor. 2792 if (getLangOpts().CPlusPlus && !NeedsGlobalDtor) 2793 DelayedCXXInitPosition.erase(D); 2794 } 2795 } 2796 2797 llvm::Type* InitType = Init->getType(); 2798 llvm::Constant *Entry = 2799 GetAddrOfGlobalVar(D, InitType, ForDefinition_t(!IsTentative)); 2800 2801 // Strip off a bitcast if we got one back. 2802 if (auto *CE = dyn_cast<llvm::ConstantExpr>(Entry)) { 2803 assert(CE->getOpcode() == llvm::Instruction::BitCast || 2804 CE->getOpcode() == llvm::Instruction::AddrSpaceCast || 2805 // All zero index gep. 2806 CE->getOpcode() == llvm::Instruction::GetElementPtr); 2807 Entry = CE->getOperand(0); 2808 } 2809 2810 // Entry is now either a Function or GlobalVariable. 2811 auto *GV = dyn_cast<llvm::GlobalVariable>(Entry); 2812 2813 // We have a definition after a declaration with the wrong type. 2814 // We must make a new GlobalVariable* and update everything that used OldGV 2815 // (a declaration or tentative definition) with the new GlobalVariable* 2816 // (which will be a definition). 2817 // 2818 // This happens if there is a prototype for a global (e.g. 2819 // "extern int x[];") and then a definition of a different type (e.g. 2820 // "int x[10];"). This also happens when an initializer has a different type 2821 // from the type of the global (this happens with unions). 2822 if (!GV || GV->getType()->getElementType() != InitType || 2823 GV->getType()->getAddressSpace() != 2824 getContext().getTargetAddressSpace(GetGlobalVarAddressSpace(D))) { 2825 2826 // Move the old entry aside so that we'll create a new one. 2827 Entry->setName(StringRef()); 2828 2829 // Make a new global with the correct type, this is now guaranteed to work. 2830 GV = cast<llvm::GlobalVariable>( 2831 GetAddrOfGlobalVar(D, InitType, ForDefinition_t(!IsTentative))); 2832 2833 // Replace all uses of the old global with the new global 2834 llvm::Constant *NewPtrForOldDecl = 2835 llvm::ConstantExpr::getBitCast(GV, Entry->getType()); 2836 Entry->replaceAllUsesWith(NewPtrForOldDecl); 2837 2838 // Erase the old global, since it is no longer used. 2839 cast<llvm::GlobalValue>(Entry)->eraseFromParent(); 2840 } 2841 2842 MaybeHandleStaticInExternC(D, GV); 2843 2844 if (D->hasAttr<AnnotateAttr>()) 2845 AddGlobalAnnotations(D, GV); 2846 2847 // Set the llvm linkage type as appropriate. 2848 llvm::GlobalValue::LinkageTypes Linkage = 2849 getLLVMLinkageVarDefinition(D, GV->isConstant()); 2850 2851 // CUDA B.2.1 "The __device__ qualifier declares a variable that resides on 2852 // the device. [...]" 2853 // CUDA B.2.2 "The __constant__ qualifier, optionally used together with 2854 // __device__, declares a variable that: [...] 2855 // Is accessible from all the threads within the grid and from the host 2856 // through the runtime library (cudaGetSymbolAddress() / cudaGetSymbolSize() 2857 // / cudaMemcpyToSymbol() / cudaMemcpyFromSymbol())." 2858 if (GV && LangOpts.CUDA) { 2859 if (LangOpts.CUDAIsDevice) { 2860 if (D->hasAttr<CUDADeviceAttr>() || D->hasAttr<CUDAConstantAttr>()) 2861 GV->setExternallyInitialized(true); 2862 } else { 2863 // Host-side shadows of external declarations of device-side 2864 // global variables become internal definitions. These have to 2865 // be internal in order to prevent name conflicts with global 2866 // host variables with the same name in a different TUs. 2867 if (D->hasAttr<CUDADeviceAttr>() || D->hasAttr<CUDAConstantAttr>()) { 2868 Linkage = llvm::GlobalValue::InternalLinkage; 2869 2870 // Shadow variables and their properties must be registered 2871 // with CUDA runtime. 2872 unsigned Flags = 0; 2873 if (!D->hasDefinition()) 2874 Flags |= CGCUDARuntime::ExternDeviceVar; 2875 if (D->hasAttr<CUDAConstantAttr>()) 2876 Flags |= CGCUDARuntime::ConstantDeviceVar; 2877 getCUDARuntime().registerDeviceVar(*GV, Flags); 2878 } else if (D->hasAttr<CUDASharedAttr>()) 2879 // __shared__ variables are odd. Shadows do get created, but 2880 // they are not registered with the CUDA runtime, so they 2881 // can't really be used to access their device-side 2882 // counterparts. It's not clear yet whether it's nvcc's bug or 2883 // a feature, but we've got to do the same for compatibility. 2884 Linkage = llvm::GlobalValue::InternalLinkage; 2885 } 2886 } 2887 2888 GV->setInitializer(Init); 2889 if (emitter) emitter->finalize(GV); 2890 2891 // If it is safe to mark the global 'constant', do so now. 2892 GV->setConstant(!NeedsGlobalCtor && !NeedsGlobalDtor && 2893 isTypeConstant(D->getType(), true)); 2894 2895 // If it is in a read-only section, mark it 'constant'. 2896 if (const SectionAttr *SA = D->getAttr<SectionAttr>()) { 2897 const ASTContext::SectionInfo &SI = Context.SectionInfos[SA->getName()]; 2898 if ((SI.SectionFlags & ASTContext::PSF_Write) == 0) 2899 GV->setConstant(true); 2900 } 2901 2902 GV->setAlignment(getContext().getDeclAlign(D).getQuantity()); 2903 2904 2905 // On Darwin, if the normal linkage of a C++ thread_local variable is 2906 // LinkOnce or Weak, we keep the normal linkage to prevent multiple 2907 // copies within a linkage unit; otherwise, the backing variable has 2908 // internal linkage and all accesses should just be calls to the 2909 // Itanium-specified entry point, which has the normal linkage of the 2910 // variable. This is to preserve the ability to change the implementation 2911 // behind the scenes. 2912 if (!D->isStaticLocal() && D->getTLSKind() == VarDecl::TLS_Dynamic && 2913 Context.getTargetInfo().getTriple().isOSDarwin() && 2914 !llvm::GlobalVariable::isLinkOnceLinkage(Linkage) && 2915 !llvm::GlobalVariable::isWeakLinkage(Linkage)) 2916 Linkage = llvm::GlobalValue::InternalLinkage; 2917 2918 GV->setLinkage(Linkage); 2919 if (D->hasAttr<DLLImportAttr>()) 2920 GV->setDLLStorageClass(llvm::GlobalVariable::DLLImportStorageClass); 2921 else if (D->hasAttr<DLLExportAttr>()) 2922 GV->setDLLStorageClass(llvm::GlobalVariable::DLLExportStorageClass); 2923 else 2924 GV->setDLLStorageClass(llvm::GlobalVariable::DefaultStorageClass); 2925 2926 if (Linkage == llvm::GlobalVariable::CommonLinkage) { 2927 // common vars aren't constant even if declared const. 2928 GV->setConstant(false); 2929 // Tentative definition of global variables may be initialized with 2930 // non-zero null pointers. In this case they should have weak linkage 2931 // since common linkage must have zero initializer and must not have 2932 // explicit section therefore cannot have non-zero initial value. 2933 if (!GV->getInitializer()->isNullValue()) 2934 GV->setLinkage(llvm::GlobalVariable::WeakAnyLinkage); 2935 } 2936 2937 setNonAliasAttributes(D, GV); 2938 2939 if (D->getTLSKind() && !GV->isThreadLocal()) { 2940 if (D->getTLSKind() == VarDecl::TLS_Dynamic) 2941 CXXThreadLocals.push_back(D); 2942 setTLSMode(GV, *D); 2943 } 2944 2945 maybeSetTrivialComdat(*D, *GV); 2946 2947 // Emit the initializer function if necessary. 2948 if (NeedsGlobalCtor || NeedsGlobalDtor) 2949 EmitCXXGlobalVarDeclInitFunc(D, GV, NeedsGlobalCtor); 2950 2951 SanitizerMD->reportGlobalToASan(GV, *D, NeedsGlobalCtor); 2952 2953 // Emit global variable debug information. 2954 if (CGDebugInfo *DI = getModuleDebugInfo()) 2955 if (getCodeGenOpts().getDebugInfo() >= codegenoptions::LimitedDebugInfo) 2956 DI->EmitGlobalVariable(GV, D); 2957 } 2958 2959 static bool isVarDeclStrongDefinition(const ASTContext &Context, 2960 CodeGenModule &CGM, const VarDecl *D, 2961 bool NoCommon) { 2962 // Don't give variables common linkage if -fno-common was specified unless it 2963 // was overridden by a NoCommon attribute. 2964 if ((NoCommon || D->hasAttr<NoCommonAttr>()) && !D->hasAttr<CommonAttr>()) 2965 return true; 2966 2967 // C11 6.9.2/2: 2968 // A declaration of an identifier for an object that has file scope without 2969 // an initializer, and without a storage-class specifier or with the 2970 // storage-class specifier static, constitutes a tentative definition. 2971 if (D->getInit() || D->hasExternalStorage()) 2972 return true; 2973 2974 // A variable cannot be both common and exist in a section. 2975 if (D->hasAttr<SectionAttr>()) 2976 return true; 2977 2978 // A variable cannot be both common and exist in a section. 2979 // We dont try to determine which is the right section in the front-end. 2980 // If no specialized section name is applicable, it will resort to default. 2981 if (D->hasAttr<PragmaClangBSSSectionAttr>() || 2982 D->hasAttr<PragmaClangDataSectionAttr>() || 2983 D->hasAttr<PragmaClangRodataSectionAttr>()) 2984 return true; 2985 2986 // Thread local vars aren't considered common linkage. 2987 if (D->getTLSKind()) 2988 return true; 2989 2990 // Tentative definitions marked with WeakImportAttr are true definitions. 2991 if (D->hasAttr<WeakImportAttr>()) 2992 return true; 2993 2994 // A variable cannot be both common and exist in a comdat. 2995 if (shouldBeInCOMDAT(CGM, *D)) 2996 return true; 2997 2998 // Declarations with a required alignment do not have common linkage in MSVC 2999 // mode. 3000 if (Context.getTargetInfo().getCXXABI().isMicrosoft()) { 3001 if (D->hasAttr<AlignedAttr>()) 3002 return true; 3003 QualType VarType = D->getType(); 3004 if (Context.isAlignmentRequired(VarType)) 3005 return true; 3006 3007 if (const auto *RT = VarType->getAs<RecordType>()) { 3008 const RecordDecl *RD = RT->getDecl(); 3009 for (const FieldDecl *FD : RD->fields()) { 3010 if (FD->isBitField()) 3011 continue; 3012 if (FD->hasAttr<AlignedAttr>()) 3013 return true; 3014 if (Context.isAlignmentRequired(FD->getType())) 3015 return true; 3016 } 3017 } 3018 } 3019 3020 return false; 3021 } 3022 3023 llvm::GlobalValue::LinkageTypes CodeGenModule::getLLVMLinkageForDeclarator( 3024 const DeclaratorDecl *D, GVALinkage Linkage, bool IsConstantVariable) { 3025 if (Linkage == GVA_Internal) 3026 return llvm::Function::InternalLinkage; 3027 3028 if (D->hasAttr<WeakAttr>()) { 3029 if (IsConstantVariable) 3030 return llvm::GlobalVariable::WeakODRLinkage; 3031 else 3032 return llvm::GlobalVariable::WeakAnyLinkage; 3033 } 3034 3035 // We are guaranteed to have a strong definition somewhere else, 3036 // so we can use available_externally linkage. 3037 if (Linkage == GVA_AvailableExternally) 3038 return llvm::GlobalValue::AvailableExternallyLinkage; 3039 3040 // Note that Apple's kernel linker doesn't support symbol 3041 // coalescing, so we need to avoid linkonce and weak linkages there. 3042 // Normally, this means we just map to internal, but for explicit 3043 // instantiations we'll map to external. 3044 3045 // In C++, the compiler has to emit a definition in every translation unit 3046 // that references the function. We should use linkonce_odr because 3047 // a) if all references in this translation unit are optimized away, we 3048 // don't need to codegen it. b) if the function persists, it needs to be 3049 // merged with other definitions. c) C++ has the ODR, so we know the 3050 // definition is dependable. 3051 if (Linkage == GVA_DiscardableODR) 3052 return !Context.getLangOpts().AppleKext ? llvm::Function::LinkOnceODRLinkage 3053 : llvm::Function::InternalLinkage; 3054 3055 // An explicit instantiation of a template has weak linkage, since 3056 // explicit instantiations can occur in multiple translation units 3057 // and must all be equivalent. However, we are not allowed to 3058 // throw away these explicit instantiations. 3059 // 3060 // We don't currently support CUDA device code spread out across multiple TUs, 3061 // so say that CUDA templates are either external (for kernels) or internal. 3062 // This lets llvm perform aggressive inter-procedural optimizations. 3063 if (Linkage == GVA_StrongODR) { 3064 if (Context.getLangOpts().AppleKext) 3065 return llvm::Function::ExternalLinkage; 3066 if (Context.getLangOpts().CUDA && Context.getLangOpts().CUDAIsDevice) 3067 return D->hasAttr<CUDAGlobalAttr>() ? llvm::Function::ExternalLinkage 3068 : llvm::Function::InternalLinkage; 3069 return llvm::Function::WeakODRLinkage; 3070 } 3071 3072 // C++ doesn't have tentative definitions and thus cannot have common 3073 // linkage. 3074 if (!getLangOpts().CPlusPlus && isa<VarDecl>(D) && 3075 !isVarDeclStrongDefinition(Context, *this, cast<VarDecl>(D), 3076 CodeGenOpts.NoCommon)) 3077 return llvm::GlobalVariable::CommonLinkage; 3078 3079 // selectany symbols are externally visible, so use weak instead of 3080 // linkonce. MSVC optimizes away references to const selectany globals, so 3081 // all definitions should be the same and ODR linkage should be used. 3082 // http://msdn.microsoft.com/en-us/library/5tkz6s71.aspx 3083 if (D->hasAttr<SelectAnyAttr>()) 3084 return llvm::GlobalVariable::WeakODRLinkage; 3085 3086 // Otherwise, we have strong external linkage. 3087 assert(Linkage == GVA_StrongExternal); 3088 return llvm::GlobalVariable::ExternalLinkage; 3089 } 3090 3091 llvm::GlobalValue::LinkageTypes CodeGenModule::getLLVMLinkageVarDefinition( 3092 const VarDecl *VD, bool IsConstant) { 3093 GVALinkage Linkage = getContext().GetGVALinkageForVariable(VD); 3094 return getLLVMLinkageForDeclarator(VD, Linkage, IsConstant); 3095 } 3096 3097 /// Replace the uses of a function that was declared with a non-proto type. 3098 /// We want to silently drop extra arguments from call sites 3099 static void replaceUsesOfNonProtoConstant(llvm::Constant *old, 3100 llvm::Function *newFn) { 3101 // Fast path. 3102 if (old->use_empty()) return; 3103 3104 llvm::Type *newRetTy = newFn->getReturnType(); 3105 SmallVector<llvm::Value*, 4> newArgs; 3106 SmallVector<llvm::OperandBundleDef, 1> newBundles; 3107 3108 for (llvm::Value::use_iterator ui = old->use_begin(), ue = old->use_end(); 3109 ui != ue; ) { 3110 llvm::Value::use_iterator use = ui++; // Increment before the use is erased. 3111 llvm::User *user = use->getUser(); 3112 3113 // Recognize and replace uses of bitcasts. Most calls to 3114 // unprototyped functions will use bitcasts. 3115 if (auto *bitcast = dyn_cast<llvm::ConstantExpr>(user)) { 3116 if (bitcast->getOpcode() == llvm::Instruction::BitCast) 3117 replaceUsesOfNonProtoConstant(bitcast, newFn); 3118 continue; 3119 } 3120 3121 // Recognize calls to the function. 3122 llvm::CallSite callSite(user); 3123 if (!callSite) continue; 3124 if (!callSite.isCallee(&*use)) continue; 3125 3126 // If the return types don't match exactly, then we can't 3127 // transform this call unless it's dead. 3128 if (callSite->getType() != newRetTy && !callSite->use_empty()) 3129 continue; 3130 3131 // Get the call site's attribute list. 3132 SmallVector<llvm::AttributeSet, 8> newArgAttrs; 3133 llvm::AttributeList oldAttrs = callSite.getAttributes(); 3134 3135 // If the function was passed too few arguments, don't transform. 3136 unsigned newNumArgs = newFn->arg_size(); 3137 if (callSite.arg_size() < newNumArgs) continue; 3138 3139 // If extra arguments were passed, we silently drop them. 3140 // If any of the types mismatch, we don't transform. 3141 unsigned argNo = 0; 3142 bool dontTransform = false; 3143 for (llvm::Argument &A : newFn->args()) { 3144 if (callSite.getArgument(argNo)->getType() != A.getType()) { 3145 dontTransform = true; 3146 break; 3147 } 3148 3149 // Add any parameter attributes. 3150 newArgAttrs.push_back(oldAttrs.getParamAttributes(argNo)); 3151 argNo++; 3152 } 3153 if (dontTransform) 3154 continue; 3155 3156 // Okay, we can transform this. Create the new call instruction and copy 3157 // over the required information. 3158 newArgs.append(callSite.arg_begin(), callSite.arg_begin() + argNo); 3159 3160 // Copy over any operand bundles. 3161 callSite.getOperandBundlesAsDefs(newBundles); 3162 3163 llvm::CallSite newCall; 3164 if (callSite.isCall()) { 3165 newCall = llvm::CallInst::Create(newFn, newArgs, newBundles, "", 3166 callSite.getInstruction()); 3167 } else { 3168 auto *oldInvoke = cast<llvm::InvokeInst>(callSite.getInstruction()); 3169 newCall = llvm::InvokeInst::Create(newFn, 3170 oldInvoke->getNormalDest(), 3171 oldInvoke->getUnwindDest(), 3172 newArgs, newBundles, "", 3173 callSite.getInstruction()); 3174 } 3175 newArgs.clear(); // for the next iteration 3176 3177 if (!newCall->getType()->isVoidTy()) 3178 newCall->takeName(callSite.getInstruction()); 3179 newCall.setAttributes(llvm::AttributeList::get( 3180 newFn->getContext(), oldAttrs.getFnAttributes(), 3181 oldAttrs.getRetAttributes(), newArgAttrs)); 3182 newCall.setCallingConv(callSite.getCallingConv()); 3183 3184 // Finally, remove the old call, replacing any uses with the new one. 3185 if (!callSite->use_empty()) 3186 callSite->replaceAllUsesWith(newCall.getInstruction()); 3187 3188 // Copy debug location attached to CI. 3189 if (callSite->getDebugLoc()) 3190 newCall->setDebugLoc(callSite->getDebugLoc()); 3191 3192 callSite->eraseFromParent(); 3193 } 3194 } 3195 3196 /// ReplaceUsesOfNonProtoTypeWithRealFunction - This function is called when we 3197 /// implement a function with no prototype, e.g. "int foo() {}". If there are 3198 /// existing call uses of the old function in the module, this adjusts them to 3199 /// call the new function directly. 3200 /// 3201 /// This is not just a cleanup: the always_inline pass requires direct calls to 3202 /// functions to be able to inline them. If there is a bitcast in the way, it 3203 /// won't inline them. Instcombine normally deletes these calls, but it isn't 3204 /// run at -O0. 3205 static void ReplaceUsesOfNonProtoTypeWithRealFunction(llvm::GlobalValue *Old, 3206 llvm::Function *NewFn) { 3207 // If we're redefining a global as a function, don't transform it. 3208 if (!isa<llvm::Function>(Old)) return; 3209 3210 replaceUsesOfNonProtoConstant(Old, NewFn); 3211 } 3212 3213 void CodeGenModule::HandleCXXStaticMemberVarInstantiation(VarDecl *VD) { 3214 auto DK = VD->isThisDeclarationADefinition(); 3215 if (DK == VarDecl::Definition && VD->hasAttr<DLLImportAttr>()) 3216 return; 3217 3218 TemplateSpecializationKind TSK = VD->getTemplateSpecializationKind(); 3219 // If we have a definition, this might be a deferred decl. If the 3220 // instantiation is explicit, make sure we emit it at the end. 3221 if (VD->getDefinition() && TSK == TSK_ExplicitInstantiationDefinition) 3222 GetAddrOfGlobalVar(VD); 3223 3224 EmitTopLevelDecl(VD); 3225 } 3226 3227 void CodeGenModule::EmitGlobalFunctionDefinition(GlobalDecl GD, 3228 llvm::GlobalValue *GV) { 3229 const auto *D = cast<FunctionDecl>(GD.getDecl()); 3230 3231 // Compute the function info and LLVM type. 3232 const CGFunctionInfo &FI = getTypes().arrangeGlobalDeclaration(GD); 3233 llvm::FunctionType *Ty = getTypes().GetFunctionType(FI); 3234 3235 // Get or create the prototype for the function. 3236 if (!GV || (GV->getType()->getElementType() != Ty)) 3237 GV = cast<llvm::GlobalValue>(GetAddrOfFunction(GD, Ty, /*ForVTable=*/false, 3238 /*DontDefer=*/true, 3239 ForDefinition)); 3240 3241 // Already emitted. 3242 if (!GV->isDeclaration()) 3243 return; 3244 3245 // We need to set linkage and visibility on the function before 3246 // generating code for it because various parts of IR generation 3247 // want to propagate this information down (e.g. to local static 3248 // declarations). 3249 auto *Fn = cast<llvm::Function>(GV); 3250 setFunctionLinkage(GD, Fn); 3251 setFunctionDLLStorageClass(GD, Fn); 3252 3253 // FIXME: this is redundant with part of setFunctionDefinitionAttributes 3254 setGlobalVisibility(Fn, D); 3255 3256 MaybeHandleStaticInExternC(D, Fn); 3257 3258 maybeSetTrivialComdat(*D, *Fn); 3259 3260 CodeGenFunction(*this).GenerateCode(D, Fn, FI); 3261 3262 setFunctionDefinitionAttributes(D, Fn); 3263 SetLLVMFunctionAttributesForDefinition(D, Fn); 3264 3265 if (const ConstructorAttr *CA = D->getAttr<ConstructorAttr>()) 3266 AddGlobalCtor(Fn, CA->getPriority()); 3267 if (const DestructorAttr *DA = D->getAttr<DestructorAttr>()) 3268 AddGlobalDtor(Fn, DA->getPriority()); 3269 if (D->hasAttr<AnnotateAttr>()) 3270 AddGlobalAnnotations(D, Fn); 3271 } 3272 3273 void CodeGenModule::EmitAliasDefinition(GlobalDecl GD) { 3274 const auto *D = cast<ValueDecl>(GD.getDecl()); 3275 const AliasAttr *AA = D->getAttr<AliasAttr>(); 3276 assert(AA && "Not an alias?"); 3277 3278 StringRef MangledName = getMangledName(GD); 3279 3280 if (AA->getAliasee() == MangledName) { 3281 Diags.Report(AA->getLocation(), diag::err_cyclic_alias) << 0; 3282 return; 3283 } 3284 3285 // If there is a definition in the module, then it wins over the alias. 3286 // This is dubious, but allow it to be safe. Just ignore the alias. 3287 llvm::GlobalValue *Entry = GetGlobalValue(MangledName); 3288 if (Entry && !Entry->isDeclaration()) 3289 return; 3290 3291 Aliases.push_back(GD); 3292 3293 llvm::Type *DeclTy = getTypes().ConvertTypeForMem(D->getType()); 3294 3295 // Create a reference to the named value. This ensures that it is emitted 3296 // if a deferred decl. 3297 llvm::Constant *Aliasee; 3298 if (isa<llvm::FunctionType>(DeclTy)) 3299 Aliasee = GetOrCreateLLVMFunction(AA->getAliasee(), DeclTy, GD, 3300 /*ForVTable=*/false); 3301 else 3302 Aliasee = GetOrCreateLLVMGlobal(AA->getAliasee(), 3303 llvm::PointerType::getUnqual(DeclTy), 3304 /*D=*/nullptr); 3305 3306 // Create the new alias itself, but don't set a name yet. 3307 auto *GA = llvm::GlobalAlias::create( 3308 DeclTy, 0, llvm::Function::ExternalLinkage, "", Aliasee, &getModule()); 3309 3310 if (Entry) { 3311 if (GA->getAliasee() == Entry) { 3312 Diags.Report(AA->getLocation(), diag::err_cyclic_alias) << 0; 3313 return; 3314 } 3315 3316 assert(Entry->isDeclaration()); 3317 3318 // If there is a declaration in the module, then we had an extern followed 3319 // by the alias, as in: 3320 // extern int test6(); 3321 // ... 3322 // int test6() __attribute__((alias("test7"))); 3323 // 3324 // Remove it and replace uses of it with the alias. 3325 GA->takeName(Entry); 3326 3327 Entry->replaceAllUsesWith(llvm::ConstantExpr::getBitCast(GA, 3328 Entry->getType())); 3329 Entry->eraseFromParent(); 3330 } else { 3331 GA->setName(MangledName); 3332 } 3333 3334 // Set attributes which are particular to an alias; this is a 3335 // specialization of the attributes which may be set on a global 3336 // variable/function. 3337 if (D->hasAttr<WeakAttr>() || D->hasAttr<WeakRefAttr>() || 3338 D->isWeakImported()) { 3339 GA->setLinkage(llvm::Function::WeakAnyLinkage); 3340 } 3341 3342 if (const auto *VD = dyn_cast<VarDecl>(D)) 3343 if (VD->getTLSKind()) 3344 setTLSMode(GA, *VD); 3345 3346 setAliasAttributes(D, GA); 3347 } 3348 3349 void CodeGenModule::emitIFuncDefinition(GlobalDecl GD) { 3350 const auto *D = cast<ValueDecl>(GD.getDecl()); 3351 const IFuncAttr *IFA = D->getAttr<IFuncAttr>(); 3352 assert(IFA && "Not an ifunc?"); 3353 3354 StringRef MangledName = getMangledName(GD); 3355 3356 if (IFA->getResolver() == MangledName) { 3357 Diags.Report(IFA->getLocation(), diag::err_cyclic_alias) << 1; 3358 return; 3359 } 3360 3361 // Report an error if some definition overrides ifunc. 3362 llvm::GlobalValue *Entry = GetGlobalValue(MangledName); 3363 if (Entry && !Entry->isDeclaration()) { 3364 GlobalDecl OtherGD; 3365 if (lookupRepresentativeDecl(MangledName, OtherGD) && 3366 DiagnosedConflictingDefinitions.insert(GD).second) { 3367 Diags.Report(D->getLocation(), diag::err_duplicate_mangled_name); 3368 Diags.Report(OtherGD.getDecl()->getLocation(), 3369 diag::note_previous_definition); 3370 } 3371 return; 3372 } 3373 3374 Aliases.push_back(GD); 3375 3376 llvm::Type *DeclTy = getTypes().ConvertTypeForMem(D->getType()); 3377 llvm::Constant *Resolver = 3378 GetOrCreateLLVMFunction(IFA->getResolver(), DeclTy, GD, 3379 /*ForVTable=*/false); 3380 llvm::GlobalIFunc *GIF = 3381 llvm::GlobalIFunc::create(DeclTy, 0, llvm::Function::ExternalLinkage, 3382 "", Resolver, &getModule()); 3383 if (Entry) { 3384 if (GIF->getResolver() == Entry) { 3385 Diags.Report(IFA->getLocation(), diag::err_cyclic_alias) << 1; 3386 return; 3387 } 3388 assert(Entry->isDeclaration()); 3389 3390 // If there is a declaration in the module, then we had an extern followed 3391 // by the ifunc, as in: 3392 // extern int test(); 3393 // ... 3394 // int test() __attribute__((ifunc("resolver"))); 3395 // 3396 // Remove it and replace uses of it with the ifunc. 3397 GIF->takeName(Entry); 3398 3399 Entry->replaceAllUsesWith(llvm::ConstantExpr::getBitCast(GIF, 3400 Entry->getType())); 3401 Entry->eraseFromParent(); 3402 } else 3403 GIF->setName(MangledName); 3404 3405 SetCommonAttributes(D, GIF); 3406 } 3407 3408 llvm::Function *CodeGenModule::getIntrinsic(unsigned IID, 3409 ArrayRef<llvm::Type*> Tys) { 3410 return llvm::Intrinsic::getDeclaration(&getModule(), (llvm::Intrinsic::ID)IID, 3411 Tys); 3412 } 3413 3414 static llvm::StringMapEntry<llvm::GlobalVariable *> & 3415 GetConstantCFStringEntry(llvm::StringMap<llvm::GlobalVariable *> &Map, 3416 const StringLiteral *Literal, bool TargetIsLSB, 3417 bool &IsUTF16, unsigned &StringLength) { 3418 StringRef String = Literal->getString(); 3419 unsigned NumBytes = String.size(); 3420 3421 // Check for simple case. 3422 if (!Literal->containsNonAsciiOrNull()) { 3423 StringLength = NumBytes; 3424 return *Map.insert(std::make_pair(String, nullptr)).first; 3425 } 3426 3427 // Otherwise, convert the UTF8 literals into a string of shorts. 3428 IsUTF16 = true; 3429 3430 SmallVector<llvm::UTF16, 128> ToBuf(NumBytes + 1); // +1 for ending nulls. 3431 const llvm::UTF8 *FromPtr = (const llvm::UTF8 *)String.data(); 3432 llvm::UTF16 *ToPtr = &ToBuf[0]; 3433 3434 (void)llvm::ConvertUTF8toUTF16(&FromPtr, FromPtr + NumBytes, &ToPtr, 3435 ToPtr + NumBytes, llvm::strictConversion); 3436 3437 // ConvertUTF8toUTF16 returns the length in ToPtr. 3438 StringLength = ToPtr - &ToBuf[0]; 3439 3440 // Add an explicit null. 3441 *ToPtr = 0; 3442 return *Map.insert(std::make_pair( 3443 StringRef(reinterpret_cast<const char *>(ToBuf.data()), 3444 (StringLength + 1) * 2), 3445 nullptr)).first; 3446 } 3447 3448 ConstantAddress 3449 CodeGenModule::GetAddrOfConstantCFString(const StringLiteral *Literal) { 3450 unsigned StringLength = 0; 3451 bool isUTF16 = false; 3452 llvm::StringMapEntry<llvm::GlobalVariable *> &Entry = 3453 GetConstantCFStringEntry(CFConstantStringMap, Literal, 3454 getDataLayout().isLittleEndian(), isUTF16, 3455 StringLength); 3456 3457 if (auto *C = Entry.second) 3458 return ConstantAddress(C, CharUnits::fromQuantity(C->getAlignment())); 3459 3460 llvm::Constant *Zero = llvm::Constant::getNullValue(Int32Ty); 3461 llvm::Constant *Zeros[] = { Zero, Zero }; 3462 3463 // If we don't already have it, get __CFConstantStringClassReference. 3464 if (!CFConstantStringClassRef) { 3465 llvm::Type *Ty = getTypes().ConvertType(getContext().IntTy); 3466 Ty = llvm::ArrayType::get(Ty, 0); 3467 llvm::Constant *GV = 3468 CreateRuntimeVariable(Ty, "__CFConstantStringClassReference"); 3469 3470 if (getTriple().isOSBinFormatCOFF()) { 3471 IdentifierInfo &II = getContext().Idents.get(GV->getName()); 3472 TranslationUnitDecl *TUDecl = getContext().getTranslationUnitDecl(); 3473 DeclContext *DC = TranslationUnitDecl::castToDeclContext(TUDecl); 3474 llvm::GlobalValue *CGV = cast<llvm::GlobalValue>(GV); 3475 3476 const VarDecl *VD = nullptr; 3477 for (const auto &Result : DC->lookup(&II)) 3478 if ((VD = dyn_cast<VarDecl>(Result))) 3479 break; 3480 3481 if (!VD || !VD->hasAttr<DLLExportAttr>()) { 3482 CGV->setDLLStorageClass(llvm::GlobalValue::DLLImportStorageClass); 3483 CGV->setLinkage(llvm::GlobalValue::ExternalLinkage); 3484 } else { 3485 CGV->setDLLStorageClass(llvm::GlobalValue::DLLExportStorageClass); 3486 CGV->setLinkage(llvm::GlobalValue::ExternalLinkage); 3487 } 3488 } 3489 3490 // Decay array -> ptr 3491 CFConstantStringClassRef = 3492 llvm::ConstantExpr::getGetElementPtr(Ty, GV, Zeros); 3493 } 3494 3495 QualType CFTy = getContext().getCFConstantStringType(); 3496 3497 auto *STy = cast<llvm::StructType>(getTypes().ConvertType(CFTy)); 3498 3499 ConstantInitBuilder Builder(*this); 3500 auto Fields = Builder.beginStruct(STy); 3501 3502 // Class pointer. 3503 Fields.add(cast<llvm::ConstantExpr>(CFConstantStringClassRef)); 3504 3505 // Flags. 3506 Fields.addInt(IntTy, isUTF16 ? 0x07d0 : 0x07C8); 3507 3508 // String pointer. 3509 llvm::Constant *C = nullptr; 3510 if (isUTF16) { 3511 auto Arr = llvm::makeArrayRef( 3512 reinterpret_cast<uint16_t *>(const_cast<char *>(Entry.first().data())), 3513 Entry.first().size() / 2); 3514 C = llvm::ConstantDataArray::get(VMContext, Arr); 3515 } else { 3516 C = llvm::ConstantDataArray::getString(VMContext, Entry.first()); 3517 } 3518 3519 // Note: -fwritable-strings doesn't make the backing store strings of 3520 // CFStrings writable. (See <rdar://problem/10657500>) 3521 auto *GV = 3522 new llvm::GlobalVariable(getModule(), C->getType(), /*isConstant=*/true, 3523 llvm::GlobalValue::PrivateLinkage, C, ".str"); 3524 GV->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global); 3525 // Don't enforce the target's minimum global alignment, since the only use 3526 // of the string is via this class initializer. 3527 CharUnits Align = isUTF16 3528 ? getContext().getTypeAlignInChars(getContext().ShortTy) 3529 : getContext().getTypeAlignInChars(getContext().CharTy); 3530 GV->setAlignment(Align.getQuantity()); 3531 3532 // FIXME: We set the section explicitly to avoid a bug in ld64 224.1. 3533 // Without it LLVM can merge the string with a non unnamed_addr one during 3534 // LTO. Doing that changes the section it ends in, which surprises ld64. 3535 if (getTriple().isOSBinFormatMachO()) 3536 GV->setSection(isUTF16 ? "__TEXT,__ustring" 3537 : "__TEXT,__cstring,cstring_literals"); 3538 3539 // String. 3540 llvm::Constant *Str = 3541 llvm::ConstantExpr::getGetElementPtr(GV->getValueType(), GV, Zeros); 3542 3543 if (isUTF16) 3544 // Cast the UTF16 string to the correct type. 3545 Str = llvm::ConstantExpr::getBitCast(Str, Int8PtrTy); 3546 Fields.add(Str); 3547 3548 // String length. 3549 auto Ty = getTypes().ConvertType(getContext().LongTy); 3550 Fields.addInt(cast<llvm::IntegerType>(Ty), StringLength); 3551 3552 CharUnits Alignment = getPointerAlign(); 3553 3554 // The struct. 3555 GV = Fields.finishAndCreateGlobal("_unnamed_cfstring_", Alignment, 3556 /*isConstant=*/false, 3557 llvm::GlobalVariable::PrivateLinkage); 3558 switch (getTriple().getObjectFormat()) { 3559 case llvm::Triple::UnknownObjectFormat: 3560 llvm_unreachable("unknown file format"); 3561 case llvm::Triple::COFF: 3562 case llvm::Triple::ELF: 3563 case llvm::Triple::Wasm: 3564 GV->setSection("cfstring"); 3565 break; 3566 case llvm::Triple::MachO: 3567 GV->setSection("__DATA,__cfstring"); 3568 break; 3569 } 3570 Entry.second = GV; 3571 3572 return ConstantAddress(GV, Alignment); 3573 } 3574 3575 bool CodeGenModule::getExpressionLocationsEnabled() const { 3576 return !CodeGenOpts.EmitCodeView || CodeGenOpts.DebugColumnInfo; 3577 } 3578 3579 QualType CodeGenModule::getObjCFastEnumerationStateType() { 3580 if (ObjCFastEnumerationStateType.isNull()) { 3581 RecordDecl *D = Context.buildImplicitRecord("__objcFastEnumerationState"); 3582 D->startDefinition(); 3583 3584 QualType FieldTypes[] = { 3585 Context.UnsignedLongTy, 3586 Context.getPointerType(Context.getObjCIdType()), 3587 Context.getPointerType(Context.UnsignedLongTy), 3588 Context.getConstantArrayType(Context.UnsignedLongTy, 3589 llvm::APInt(32, 5), ArrayType::Normal, 0) 3590 }; 3591 3592 for (size_t i = 0; i < 4; ++i) { 3593 FieldDecl *Field = FieldDecl::Create(Context, 3594 D, 3595 SourceLocation(), 3596 SourceLocation(), nullptr, 3597 FieldTypes[i], /*TInfo=*/nullptr, 3598 /*BitWidth=*/nullptr, 3599 /*Mutable=*/false, 3600 ICIS_NoInit); 3601 Field->setAccess(AS_public); 3602 D->addDecl(Field); 3603 } 3604 3605 D->completeDefinition(); 3606 ObjCFastEnumerationStateType = Context.getTagDeclType(D); 3607 } 3608 3609 return ObjCFastEnumerationStateType; 3610 } 3611 3612 llvm::Constant * 3613 CodeGenModule::GetConstantArrayFromStringLiteral(const StringLiteral *E) { 3614 assert(!E->getType()->isPointerType() && "Strings are always arrays"); 3615 3616 // Don't emit it as the address of the string, emit the string data itself 3617 // as an inline array. 3618 if (E->getCharByteWidth() == 1) { 3619 SmallString<64> Str(E->getString()); 3620 3621 // Resize the string to the right size, which is indicated by its type. 3622 const ConstantArrayType *CAT = Context.getAsConstantArrayType(E->getType()); 3623 Str.resize(CAT->getSize().getZExtValue()); 3624 return llvm::ConstantDataArray::getString(VMContext, Str, false); 3625 } 3626 3627 auto *AType = cast<llvm::ArrayType>(getTypes().ConvertType(E->getType())); 3628 llvm::Type *ElemTy = AType->getElementType(); 3629 unsigned NumElements = AType->getNumElements(); 3630 3631 // Wide strings have either 2-byte or 4-byte elements. 3632 if (ElemTy->getPrimitiveSizeInBits() == 16) { 3633 SmallVector<uint16_t, 32> Elements; 3634 Elements.reserve(NumElements); 3635 3636 for(unsigned i = 0, e = E->getLength(); i != e; ++i) 3637 Elements.push_back(E->getCodeUnit(i)); 3638 Elements.resize(NumElements); 3639 return llvm::ConstantDataArray::get(VMContext, Elements); 3640 } 3641 3642 assert(ElemTy->getPrimitiveSizeInBits() == 32); 3643 SmallVector<uint32_t, 32> Elements; 3644 Elements.reserve(NumElements); 3645 3646 for(unsigned i = 0, e = E->getLength(); i != e; ++i) 3647 Elements.push_back(E->getCodeUnit(i)); 3648 Elements.resize(NumElements); 3649 return llvm::ConstantDataArray::get(VMContext, Elements); 3650 } 3651 3652 static llvm::GlobalVariable * 3653 GenerateStringLiteral(llvm::Constant *C, llvm::GlobalValue::LinkageTypes LT, 3654 CodeGenModule &CGM, StringRef GlobalName, 3655 CharUnits Alignment) { 3656 // OpenCL v1.2 s6.5.3: a string literal is in the constant address space. 3657 unsigned AddrSpace = 0; 3658 if (CGM.getLangOpts().OpenCL) 3659 AddrSpace = CGM.getContext().getTargetAddressSpace(LangAS::opencl_constant); 3660 3661 llvm::Module &M = CGM.getModule(); 3662 // Create a global variable for this string 3663 auto *GV = new llvm::GlobalVariable( 3664 M, C->getType(), !CGM.getLangOpts().WritableStrings, LT, C, GlobalName, 3665 nullptr, llvm::GlobalVariable::NotThreadLocal, AddrSpace); 3666 GV->setAlignment(Alignment.getQuantity()); 3667 GV->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global); 3668 if (GV->isWeakForLinker()) { 3669 assert(CGM.supportsCOMDAT() && "Only COFF uses weak string literals"); 3670 GV->setComdat(M.getOrInsertComdat(GV->getName())); 3671 } 3672 3673 return GV; 3674 } 3675 3676 /// GetAddrOfConstantStringFromLiteral - Return a pointer to a 3677 /// constant array for the given string literal. 3678 ConstantAddress 3679 CodeGenModule::GetAddrOfConstantStringFromLiteral(const StringLiteral *S, 3680 StringRef Name) { 3681 CharUnits Alignment = getContext().getAlignOfGlobalVarInChars(S->getType()); 3682 3683 llvm::Constant *C = GetConstantArrayFromStringLiteral(S); 3684 llvm::GlobalVariable **Entry = nullptr; 3685 if (!LangOpts.WritableStrings) { 3686 Entry = &ConstantStringMap[C]; 3687 if (auto GV = *Entry) { 3688 if (Alignment.getQuantity() > GV->getAlignment()) 3689 GV->setAlignment(Alignment.getQuantity()); 3690 return ConstantAddress(GV, Alignment); 3691 } 3692 } 3693 3694 SmallString<256> MangledNameBuffer; 3695 StringRef GlobalVariableName; 3696 llvm::GlobalValue::LinkageTypes LT; 3697 3698 // Mangle the string literal if the ABI allows for it. However, we cannot 3699 // do this if we are compiling with ASan or -fwritable-strings because they 3700 // rely on strings having normal linkage. 3701 if (!LangOpts.WritableStrings && 3702 !LangOpts.Sanitize.has(SanitizerKind::Address) && 3703 getCXXABI().getMangleContext().shouldMangleStringLiteral(S)) { 3704 llvm::raw_svector_ostream Out(MangledNameBuffer); 3705 getCXXABI().getMangleContext().mangleStringLiteral(S, Out); 3706 3707 LT = llvm::GlobalValue::LinkOnceODRLinkage; 3708 GlobalVariableName = MangledNameBuffer; 3709 } else { 3710 LT = llvm::GlobalValue::PrivateLinkage; 3711 GlobalVariableName = Name; 3712 } 3713 3714 auto GV = GenerateStringLiteral(C, LT, *this, GlobalVariableName, Alignment); 3715 if (Entry) 3716 *Entry = GV; 3717 3718 SanitizerMD->reportGlobalToASan(GV, S->getStrTokenLoc(0), "<string literal>", 3719 QualType()); 3720 return ConstantAddress(GV, Alignment); 3721 } 3722 3723 /// GetAddrOfConstantStringFromObjCEncode - Return a pointer to a constant 3724 /// array for the given ObjCEncodeExpr node. 3725 ConstantAddress 3726 CodeGenModule::GetAddrOfConstantStringFromObjCEncode(const ObjCEncodeExpr *E) { 3727 std::string Str; 3728 getContext().getObjCEncodingForType(E->getEncodedType(), Str); 3729 3730 return GetAddrOfConstantCString(Str); 3731 } 3732 3733 /// GetAddrOfConstantCString - Returns a pointer to a character array containing 3734 /// the literal and a terminating '\0' character. 3735 /// The result has pointer to array type. 3736 ConstantAddress CodeGenModule::GetAddrOfConstantCString( 3737 const std::string &Str, const char *GlobalName) { 3738 StringRef StrWithNull(Str.c_str(), Str.size() + 1); 3739 CharUnits Alignment = 3740 getContext().getAlignOfGlobalVarInChars(getContext().CharTy); 3741 3742 llvm::Constant *C = 3743 llvm::ConstantDataArray::getString(getLLVMContext(), StrWithNull, false); 3744 3745 // Don't share any string literals if strings aren't constant. 3746 llvm::GlobalVariable **Entry = nullptr; 3747 if (!LangOpts.WritableStrings) { 3748 Entry = &ConstantStringMap[C]; 3749 if (auto GV = *Entry) { 3750 if (Alignment.getQuantity() > GV->getAlignment()) 3751 GV->setAlignment(Alignment.getQuantity()); 3752 return ConstantAddress(GV, Alignment); 3753 } 3754 } 3755 3756 // Get the default prefix if a name wasn't specified. 3757 if (!GlobalName) 3758 GlobalName = ".str"; 3759 // Create a global variable for this. 3760 auto GV = GenerateStringLiteral(C, llvm::GlobalValue::PrivateLinkage, *this, 3761 GlobalName, Alignment); 3762 if (Entry) 3763 *Entry = GV; 3764 return ConstantAddress(GV, Alignment); 3765 } 3766 3767 ConstantAddress CodeGenModule::GetAddrOfGlobalTemporary( 3768 const MaterializeTemporaryExpr *E, const Expr *Init) { 3769 assert((E->getStorageDuration() == SD_Static || 3770 E->getStorageDuration() == SD_Thread) && "not a global temporary"); 3771 const auto *VD = cast<VarDecl>(E->getExtendingDecl()); 3772 3773 // If we're not materializing a subobject of the temporary, keep the 3774 // cv-qualifiers from the type of the MaterializeTemporaryExpr. 3775 QualType MaterializedType = Init->getType(); 3776 if (Init == E->GetTemporaryExpr()) 3777 MaterializedType = E->getType(); 3778 3779 CharUnits Align = getContext().getTypeAlignInChars(MaterializedType); 3780 3781 if (llvm::Constant *Slot = MaterializedGlobalTemporaryMap[E]) 3782 return ConstantAddress(Slot, Align); 3783 3784 // FIXME: If an externally-visible declaration extends multiple temporaries, 3785 // we need to give each temporary the same name in every translation unit (and 3786 // we also need to make the temporaries externally-visible). 3787 SmallString<256> Name; 3788 llvm::raw_svector_ostream Out(Name); 3789 getCXXABI().getMangleContext().mangleReferenceTemporary( 3790 VD, E->getManglingNumber(), Out); 3791 3792 APValue *Value = nullptr; 3793 if (E->getStorageDuration() == SD_Static) { 3794 // We might have a cached constant initializer for this temporary. Note 3795 // that this might have a different value from the value computed by 3796 // evaluating the initializer if the surrounding constant expression 3797 // modifies the temporary. 3798 Value = getContext().getMaterializedTemporaryValue(E, false); 3799 if (Value && Value->isUninit()) 3800 Value = nullptr; 3801 } 3802 3803 // Try evaluating it now, it might have a constant initializer. 3804 Expr::EvalResult EvalResult; 3805 if (!Value && Init->EvaluateAsRValue(EvalResult, getContext()) && 3806 !EvalResult.hasSideEffects()) 3807 Value = &EvalResult.Val; 3808 3809 unsigned AddrSpace = 3810 VD ? GetGlobalVarAddressSpace(VD) : MaterializedType.getAddressSpace(); 3811 3812 Optional<ConstantEmitter> emitter; 3813 llvm::Constant *InitialValue = nullptr; 3814 bool Constant = false; 3815 llvm::Type *Type; 3816 if (Value) { 3817 // The temporary has a constant initializer, use it. 3818 emitter.emplace(*this); 3819 InitialValue = emitter->emitForInitializer(*Value, AddrSpace, 3820 MaterializedType); 3821 Constant = isTypeConstant(MaterializedType, /*ExcludeCtor*/Value); 3822 Type = InitialValue->getType(); 3823 } else { 3824 // No initializer, the initialization will be provided when we 3825 // initialize the declaration which performed lifetime extension. 3826 Type = getTypes().ConvertTypeForMem(MaterializedType); 3827 } 3828 3829 // Create a global variable for this lifetime-extended temporary. 3830 llvm::GlobalValue::LinkageTypes Linkage = 3831 getLLVMLinkageVarDefinition(VD, Constant); 3832 if (Linkage == llvm::GlobalVariable::ExternalLinkage) { 3833 const VarDecl *InitVD; 3834 if (VD->isStaticDataMember() && VD->getAnyInitializer(InitVD) && 3835 isa<CXXRecordDecl>(InitVD->getLexicalDeclContext())) { 3836 // Temporaries defined inside a class get linkonce_odr linkage because the 3837 // class can be defined in multipe translation units. 3838 Linkage = llvm::GlobalVariable::LinkOnceODRLinkage; 3839 } else { 3840 // There is no need for this temporary to have external linkage if the 3841 // VarDecl has external linkage. 3842 Linkage = llvm::GlobalVariable::InternalLinkage; 3843 } 3844 } 3845 auto TargetAS = getContext().getTargetAddressSpace(AddrSpace); 3846 auto *GV = new llvm::GlobalVariable( 3847 getModule(), Type, Constant, Linkage, InitialValue, Name.c_str(), 3848 /*InsertBefore=*/nullptr, llvm::GlobalVariable::NotThreadLocal, TargetAS); 3849 if (emitter) emitter->finalize(GV); 3850 setGlobalVisibility(GV, VD); 3851 GV->setAlignment(Align.getQuantity()); 3852 if (supportsCOMDAT() && GV->isWeakForLinker()) 3853 GV->setComdat(TheModule.getOrInsertComdat(GV->getName())); 3854 if (VD->getTLSKind()) 3855 setTLSMode(GV, *VD); 3856 llvm::Constant *CV = GV; 3857 if (AddrSpace != LangAS::Default) 3858 CV = getTargetCodeGenInfo().performAddrSpaceCast( 3859 *this, GV, AddrSpace, LangAS::Default, 3860 Type->getPointerTo( 3861 getContext().getTargetAddressSpace(LangAS::Default))); 3862 MaterializedGlobalTemporaryMap[E] = CV; 3863 return ConstantAddress(CV, Align); 3864 } 3865 3866 /// EmitObjCPropertyImplementations - Emit information for synthesized 3867 /// properties for an implementation. 3868 void CodeGenModule::EmitObjCPropertyImplementations(const 3869 ObjCImplementationDecl *D) { 3870 for (const auto *PID : D->property_impls()) { 3871 // Dynamic is just for type-checking. 3872 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) { 3873 ObjCPropertyDecl *PD = PID->getPropertyDecl(); 3874 3875 // Determine which methods need to be implemented, some may have 3876 // been overridden. Note that ::isPropertyAccessor is not the method 3877 // we want, that just indicates if the decl came from a 3878 // property. What we want to know is if the method is defined in 3879 // this implementation. 3880 if (!D->getInstanceMethod(PD->getGetterName())) 3881 CodeGenFunction(*this).GenerateObjCGetter( 3882 const_cast<ObjCImplementationDecl *>(D), PID); 3883 if (!PD->isReadOnly() && 3884 !D->getInstanceMethod(PD->getSetterName())) 3885 CodeGenFunction(*this).GenerateObjCSetter( 3886 const_cast<ObjCImplementationDecl *>(D), PID); 3887 } 3888 } 3889 } 3890 3891 static bool needsDestructMethod(ObjCImplementationDecl *impl) { 3892 const ObjCInterfaceDecl *iface = impl->getClassInterface(); 3893 for (const ObjCIvarDecl *ivar = iface->all_declared_ivar_begin(); 3894 ivar; ivar = ivar->getNextIvar()) 3895 if (ivar->getType().isDestructedType()) 3896 return true; 3897 3898 return false; 3899 } 3900 3901 static bool AllTrivialInitializers(CodeGenModule &CGM, 3902 ObjCImplementationDecl *D) { 3903 CodeGenFunction CGF(CGM); 3904 for (ObjCImplementationDecl::init_iterator B = D->init_begin(), 3905 E = D->init_end(); B != E; ++B) { 3906 CXXCtorInitializer *CtorInitExp = *B; 3907 Expr *Init = CtorInitExp->getInit(); 3908 if (!CGF.isTrivialInitializer(Init)) 3909 return false; 3910 } 3911 return true; 3912 } 3913 3914 /// EmitObjCIvarInitializations - Emit information for ivar initialization 3915 /// for an implementation. 3916 void CodeGenModule::EmitObjCIvarInitializations(ObjCImplementationDecl *D) { 3917 // We might need a .cxx_destruct even if we don't have any ivar initializers. 3918 if (needsDestructMethod(D)) { 3919 IdentifierInfo *II = &getContext().Idents.get(".cxx_destruct"); 3920 Selector cxxSelector = getContext().Selectors.getSelector(0, &II); 3921 ObjCMethodDecl *DTORMethod = 3922 ObjCMethodDecl::Create(getContext(), D->getLocation(), D->getLocation(), 3923 cxxSelector, getContext().VoidTy, nullptr, D, 3924 /*isInstance=*/true, /*isVariadic=*/false, 3925 /*isPropertyAccessor=*/true, /*isImplicitlyDeclared=*/true, 3926 /*isDefined=*/false, ObjCMethodDecl::Required); 3927 D->addInstanceMethod(DTORMethod); 3928 CodeGenFunction(*this).GenerateObjCCtorDtorMethod(D, DTORMethod, false); 3929 D->setHasDestructors(true); 3930 } 3931 3932 // If the implementation doesn't have any ivar initializers, we don't need 3933 // a .cxx_construct. 3934 if (D->getNumIvarInitializers() == 0 || 3935 AllTrivialInitializers(*this, D)) 3936 return; 3937 3938 IdentifierInfo *II = &getContext().Idents.get(".cxx_construct"); 3939 Selector cxxSelector = getContext().Selectors.getSelector(0, &II); 3940 // The constructor returns 'self'. 3941 ObjCMethodDecl *CTORMethod = ObjCMethodDecl::Create(getContext(), 3942 D->getLocation(), 3943 D->getLocation(), 3944 cxxSelector, 3945 getContext().getObjCIdType(), 3946 nullptr, D, /*isInstance=*/true, 3947 /*isVariadic=*/false, 3948 /*isPropertyAccessor=*/true, 3949 /*isImplicitlyDeclared=*/true, 3950 /*isDefined=*/false, 3951 ObjCMethodDecl::Required); 3952 D->addInstanceMethod(CTORMethod); 3953 CodeGenFunction(*this).GenerateObjCCtorDtorMethod(D, CTORMethod, true); 3954 D->setHasNonZeroConstructors(true); 3955 } 3956 3957 // EmitLinkageSpec - Emit all declarations in a linkage spec. 3958 void CodeGenModule::EmitLinkageSpec(const LinkageSpecDecl *LSD) { 3959 if (LSD->getLanguage() != LinkageSpecDecl::lang_c && 3960 LSD->getLanguage() != LinkageSpecDecl::lang_cxx) { 3961 ErrorUnsupported(LSD, "linkage spec"); 3962 return; 3963 } 3964 3965 EmitDeclContext(LSD); 3966 } 3967 3968 void CodeGenModule::EmitDeclContext(const DeclContext *DC) { 3969 for (auto *I : DC->decls()) { 3970 // Unlike other DeclContexts, the contents of an ObjCImplDecl at TU scope 3971 // are themselves considered "top-level", so EmitTopLevelDecl on an 3972 // ObjCImplDecl does not recursively visit them. We need to do that in 3973 // case they're nested inside another construct (LinkageSpecDecl / 3974 // ExportDecl) that does stop them from being considered "top-level". 3975 if (auto *OID = dyn_cast<ObjCImplDecl>(I)) { 3976 for (auto *M : OID->methods()) 3977 EmitTopLevelDecl(M); 3978 } 3979 3980 EmitTopLevelDecl(I); 3981 } 3982 } 3983 3984 /// EmitTopLevelDecl - Emit code for a single top level declaration. 3985 void CodeGenModule::EmitTopLevelDecl(Decl *D) { 3986 // Ignore dependent declarations. 3987 if (D->getDeclContext() && D->getDeclContext()->isDependentContext()) 3988 return; 3989 3990 switch (D->getKind()) { 3991 case Decl::CXXConversion: 3992 case Decl::CXXMethod: 3993 case Decl::Function: 3994 // Skip function templates 3995 if (cast<FunctionDecl>(D)->getDescribedFunctionTemplate() || 3996 cast<FunctionDecl>(D)->isLateTemplateParsed()) 3997 return; 3998 3999 EmitGlobal(cast<FunctionDecl>(D)); 4000 // Always provide some coverage mapping 4001 // even for the functions that aren't emitted. 4002 AddDeferredUnusedCoverageMapping(D); 4003 break; 4004 4005 case Decl::CXXDeductionGuide: 4006 // Function-like, but does not result in code emission. 4007 break; 4008 4009 case Decl::Var: 4010 case Decl::Decomposition: 4011 // Skip variable templates 4012 if (cast<VarDecl>(D)->getDescribedVarTemplate()) 4013 return; 4014 LLVM_FALLTHROUGH; 4015 case Decl::VarTemplateSpecialization: 4016 EmitGlobal(cast<VarDecl>(D)); 4017 if (auto *DD = dyn_cast<DecompositionDecl>(D)) 4018 for (auto *B : DD->bindings()) 4019 if (auto *HD = B->getHoldingVar()) 4020 EmitGlobal(HD); 4021 break; 4022 4023 // Indirect fields from global anonymous structs and unions can be 4024 // ignored; only the actual variable requires IR gen support. 4025 case Decl::IndirectField: 4026 break; 4027 4028 // C++ Decls 4029 case Decl::Namespace: 4030 EmitDeclContext(cast<NamespaceDecl>(D)); 4031 break; 4032 case Decl::CXXRecord: 4033 if (DebugInfo) { 4034 if (auto *ES = D->getASTContext().getExternalSource()) 4035 if (ES->hasExternalDefinitions(D) == ExternalASTSource::EK_Never) 4036 DebugInfo->completeUnusedClass(cast<CXXRecordDecl>(*D)); 4037 } 4038 // Emit any static data members, they may be definitions. 4039 for (auto *I : cast<CXXRecordDecl>(D)->decls()) 4040 if (isa<VarDecl>(I) || isa<CXXRecordDecl>(I)) 4041 EmitTopLevelDecl(I); 4042 break; 4043 // No code generation needed. 4044 case Decl::UsingShadow: 4045 case Decl::ClassTemplate: 4046 case Decl::VarTemplate: 4047 case Decl::VarTemplatePartialSpecialization: 4048 case Decl::FunctionTemplate: 4049 case Decl::TypeAliasTemplate: 4050 case Decl::Block: 4051 case Decl::Empty: 4052 break; 4053 case Decl::Using: // using X; [C++] 4054 if (CGDebugInfo *DI = getModuleDebugInfo()) 4055 DI->EmitUsingDecl(cast<UsingDecl>(*D)); 4056 return; 4057 case Decl::NamespaceAlias: 4058 if (CGDebugInfo *DI = getModuleDebugInfo()) 4059 DI->EmitNamespaceAlias(cast<NamespaceAliasDecl>(*D)); 4060 return; 4061 case Decl::UsingDirective: // using namespace X; [C++] 4062 if (CGDebugInfo *DI = getModuleDebugInfo()) 4063 DI->EmitUsingDirective(cast<UsingDirectiveDecl>(*D)); 4064 return; 4065 case Decl::CXXConstructor: 4066 // Skip function templates 4067 if (cast<FunctionDecl>(D)->getDescribedFunctionTemplate() || 4068 cast<FunctionDecl>(D)->isLateTemplateParsed()) 4069 return; 4070 4071 getCXXABI().EmitCXXConstructors(cast<CXXConstructorDecl>(D)); 4072 break; 4073 case Decl::CXXDestructor: 4074 if (cast<FunctionDecl>(D)->isLateTemplateParsed()) 4075 return; 4076 getCXXABI().EmitCXXDestructors(cast<CXXDestructorDecl>(D)); 4077 break; 4078 4079 case Decl::StaticAssert: 4080 // Nothing to do. 4081 break; 4082 4083 // Objective-C Decls 4084 4085 // Forward declarations, no (immediate) code generation. 4086 case Decl::ObjCInterface: 4087 case Decl::ObjCCategory: 4088 break; 4089 4090 case Decl::ObjCProtocol: { 4091 auto *Proto = cast<ObjCProtocolDecl>(D); 4092 if (Proto->isThisDeclarationADefinition()) 4093 ObjCRuntime->GenerateProtocol(Proto); 4094 break; 4095 } 4096 4097 case Decl::ObjCCategoryImpl: 4098 // Categories have properties but don't support synthesize so we 4099 // can ignore them here. 4100 ObjCRuntime->GenerateCategory(cast<ObjCCategoryImplDecl>(D)); 4101 break; 4102 4103 case Decl::ObjCImplementation: { 4104 auto *OMD = cast<ObjCImplementationDecl>(D); 4105 EmitObjCPropertyImplementations(OMD); 4106 EmitObjCIvarInitializations(OMD); 4107 ObjCRuntime->GenerateClass(OMD); 4108 // Emit global variable debug information. 4109 if (CGDebugInfo *DI = getModuleDebugInfo()) 4110 if (getCodeGenOpts().getDebugInfo() >= codegenoptions::LimitedDebugInfo) 4111 DI->getOrCreateInterfaceType(getContext().getObjCInterfaceType( 4112 OMD->getClassInterface()), OMD->getLocation()); 4113 break; 4114 } 4115 case Decl::ObjCMethod: { 4116 auto *OMD = cast<ObjCMethodDecl>(D); 4117 // If this is not a prototype, emit the body. 4118 if (OMD->getBody()) 4119 CodeGenFunction(*this).GenerateObjCMethod(OMD); 4120 break; 4121 } 4122 case Decl::ObjCCompatibleAlias: 4123 ObjCRuntime->RegisterAlias(cast<ObjCCompatibleAliasDecl>(D)); 4124 break; 4125 4126 case Decl::PragmaComment: { 4127 const auto *PCD = cast<PragmaCommentDecl>(D); 4128 switch (PCD->getCommentKind()) { 4129 case PCK_Unknown: 4130 llvm_unreachable("unexpected pragma comment kind"); 4131 case PCK_Linker: 4132 AppendLinkerOptions(PCD->getArg()); 4133 break; 4134 case PCK_Lib: 4135 AddDependentLib(PCD->getArg()); 4136 break; 4137 case PCK_Compiler: 4138 case PCK_ExeStr: 4139 case PCK_User: 4140 break; // We ignore all of these. 4141 } 4142 break; 4143 } 4144 4145 case Decl::PragmaDetectMismatch: { 4146 const auto *PDMD = cast<PragmaDetectMismatchDecl>(D); 4147 AddDetectMismatch(PDMD->getName(), PDMD->getValue()); 4148 break; 4149 } 4150 4151 case Decl::LinkageSpec: 4152 EmitLinkageSpec(cast<LinkageSpecDecl>(D)); 4153 break; 4154 4155 case Decl::FileScopeAsm: { 4156 // File-scope asm is ignored during device-side CUDA compilation. 4157 if (LangOpts.CUDA && LangOpts.CUDAIsDevice) 4158 break; 4159 // File-scope asm is ignored during device-side OpenMP compilation. 4160 if (LangOpts.OpenMPIsDevice) 4161 break; 4162 auto *AD = cast<FileScopeAsmDecl>(D); 4163 getModule().appendModuleInlineAsm(AD->getAsmString()->getString()); 4164 break; 4165 } 4166 4167 case Decl::Import: { 4168 auto *Import = cast<ImportDecl>(D); 4169 4170 // If we've already imported this module, we're done. 4171 if (!ImportedModules.insert(Import->getImportedModule())) 4172 break; 4173 4174 // Emit debug information for direct imports. 4175 if (!Import->getImportedOwningModule()) { 4176 if (CGDebugInfo *DI = getModuleDebugInfo()) 4177 DI->EmitImportDecl(*Import); 4178 } 4179 4180 // Find all of the submodules and emit the module initializers. 4181 llvm::SmallPtrSet<clang::Module *, 16> Visited; 4182 SmallVector<clang::Module *, 16> Stack; 4183 Visited.insert(Import->getImportedModule()); 4184 Stack.push_back(Import->getImportedModule()); 4185 4186 while (!Stack.empty()) { 4187 clang::Module *Mod = Stack.pop_back_val(); 4188 if (!EmittedModuleInitializers.insert(Mod).second) 4189 continue; 4190 4191 for (auto *D : Context.getModuleInitializers(Mod)) 4192 EmitTopLevelDecl(D); 4193 4194 // Visit the submodules of this module. 4195 for (clang::Module::submodule_iterator Sub = Mod->submodule_begin(), 4196 SubEnd = Mod->submodule_end(); 4197 Sub != SubEnd; ++Sub) { 4198 // Skip explicit children; they need to be explicitly imported to emit 4199 // the initializers. 4200 if ((*Sub)->IsExplicit) 4201 continue; 4202 4203 if (Visited.insert(*Sub).second) 4204 Stack.push_back(*Sub); 4205 } 4206 } 4207 break; 4208 } 4209 4210 case Decl::Export: 4211 EmitDeclContext(cast<ExportDecl>(D)); 4212 break; 4213 4214 case Decl::OMPThreadPrivate: 4215 EmitOMPThreadPrivateDecl(cast<OMPThreadPrivateDecl>(D)); 4216 break; 4217 4218 case Decl::ClassTemplateSpecialization: { 4219 const auto *Spec = cast<ClassTemplateSpecializationDecl>(D); 4220 if (DebugInfo && 4221 Spec->getSpecializationKind() == TSK_ExplicitInstantiationDefinition && 4222 Spec->hasDefinition()) 4223 DebugInfo->completeTemplateDefinition(*Spec); 4224 break; 4225 } 4226 4227 case Decl::OMPDeclareReduction: 4228 EmitOMPDeclareReduction(cast<OMPDeclareReductionDecl>(D)); 4229 break; 4230 4231 default: 4232 // Make sure we handled everything we should, every other kind is a 4233 // non-top-level decl. FIXME: Would be nice to have an isTopLevelDeclKind 4234 // function. Need to recode Decl::Kind to do that easily. 4235 assert(isa<TypeDecl>(D) && "Unsupported decl kind"); 4236 break; 4237 } 4238 } 4239 4240 void CodeGenModule::AddDeferredUnusedCoverageMapping(Decl *D) { 4241 // Do we need to generate coverage mapping? 4242 if (!CodeGenOpts.CoverageMapping) 4243 return; 4244 switch (D->getKind()) { 4245 case Decl::CXXConversion: 4246 case Decl::CXXMethod: 4247 case Decl::Function: 4248 case Decl::ObjCMethod: 4249 case Decl::CXXConstructor: 4250 case Decl::CXXDestructor: { 4251 if (!cast<FunctionDecl>(D)->doesThisDeclarationHaveABody()) 4252 return; 4253 SourceManager &SM = getContext().getSourceManager(); 4254 if (LimitedCoverage && SM.getMainFileID() != SM.getFileID(D->getLocStart())) 4255 return; 4256 auto I = DeferredEmptyCoverageMappingDecls.find(D); 4257 if (I == DeferredEmptyCoverageMappingDecls.end()) 4258 DeferredEmptyCoverageMappingDecls[D] = true; 4259 break; 4260 } 4261 default: 4262 break; 4263 }; 4264 } 4265 4266 void CodeGenModule::ClearUnusedCoverageMapping(const Decl *D) { 4267 // Do we need to generate coverage mapping? 4268 if (!CodeGenOpts.CoverageMapping) 4269 return; 4270 if (const auto *Fn = dyn_cast<FunctionDecl>(D)) { 4271 if (Fn->isTemplateInstantiation()) 4272 ClearUnusedCoverageMapping(Fn->getTemplateInstantiationPattern()); 4273 } 4274 auto I = DeferredEmptyCoverageMappingDecls.find(D); 4275 if (I == DeferredEmptyCoverageMappingDecls.end()) 4276 DeferredEmptyCoverageMappingDecls[D] = false; 4277 else 4278 I->second = false; 4279 } 4280 4281 void CodeGenModule::EmitDeferredUnusedCoverageMappings() { 4282 std::vector<const Decl *> DeferredDecls; 4283 for (const auto &I : DeferredEmptyCoverageMappingDecls) { 4284 if (!I.second) 4285 continue; 4286 DeferredDecls.push_back(I.first); 4287 } 4288 // Sort the declarations by their location to make sure that the tests get a 4289 // predictable order for the coverage mapping for the unused declarations. 4290 if (CodeGenOpts.DumpCoverageMapping) 4291 std::sort(DeferredDecls.begin(), DeferredDecls.end(), 4292 [] (const Decl *LHS, const Decl *RHS) { 4293 return LHS->getLocStart() < RHS->getLocStart(); 4294 }); 4295 for (const auto *D : DeferredDecls) { 4296 switch (D->getKind()) { 4297 case Decl::CXXConversion: 4298 case Decl::CXXMethod: 4299 case Decl::Function: 4300 case Decl::ObjCMethod: { 4301 CodeGenPGO PGO(*this); 4302 GlobalDecl GD(cast<FunctionDecl>(D)); 4303 PGO.emitEmptyCounterMapping(D, getMangledName(GD), 4304 getFunctionLinkage(GD)); 4305 break; 4306 } 4307 case Decl::CXXConstructor: { 4308 CodeGenPGO PGO(*this); 4309 GlobalDecl GD(cast<CXXConstructorDecl>(D), Ctor_Base); 4310 PGO.emitEmptyCounterMapping(D, getMangledName(GD), 4311 getFunctionLinkage(GD)); 4312 break; 4313 } 4314 case Decl::CXXDestructor: { 4315 CodeGenPGO PGO(*this); 4316 GlobalDecl GD(cast<CXXDestructorDecl>(D), Dtor_Base); 4317 PGO.emitEmptyCounterMapping(D, getMangledName(GD), 4318 getFunctionLinkage(GD)); 4319 break; 4320 } 4321 default: 4322 break; 4323 }; 4324 } 4325 } 4326 4327 /// Turns the given pointer into a constant. 4328 static llvm::Constant *GetPointerConstant(llvm::LLVMContext &Context, 4329 const void *Ptr) { 4330 uintptr_t PtrInt = reinterpret_cast<uintptr_t>(Ptr); 4331 llvm::Type *i64 = llvm::Type::getInt64Ty(Context); 4332 return llvm::ConstantInt::get(i64, PtrInt); 4333 } 4334 4335 static void EmitGlobalDeclMetadata(CodeGenModule &CGM, 4336 llvm::NamedMDNode *&GlobalMetadata, 4337 GlobalDecl D, 4338 llvm::GlobalValue *Addr) { 4339 if (!GlobalMetadata) 4340 GlobalMetadata = 4341 CGM.getModule().getOrInsertNamedMetadata("clang.global.decl.ptrs"); 4342 4343 // TODO: should we report variant information for ctors/dtors? 4344 llvm::Metadata *Ops[] = {llvm::ConstantAsMetadata::get(Addr), 4345 llvm::ConstantAsMetadata::get(GetPointerConstant( 4346 CGM.getLLVMContext(), D.getDecl()))}; 4347 GlobalMetadata->addOperand(llvm::MDNode::get(CGM.getLLVMContext(), Ops)); 4348 } 4349 4350 /// For each function which is declared within an extern "C" region and marked 4351 /// as 'used', but has internal linkage, create an alias from the unmangled 4352 /// name to the mangled name if possible. People expect to be able to refer 4353 /// to such functions with an unmangled name from inline assembly within the 4354 /// same translation unit. 4355 void CodeGenModule::EmitStaticExternCAliases() { 4356 // Don't do anything if we're generating CUDA device code -- the NVPTX 4357 // assembly target doesn't support aliases. 4358 if (Context.getTargetInfo().getTriple().isNVPTX()) 4359 return; 4360 for (auto &I : StaticExternCValues) { 4361 IdentifierInfo *Name = I.first; 4362 llvm::GlobalValue *Val = I.second; 4363 if (Val && !getModule().getNamedValue(Name->getName())) 4364 addUsedGlobal(llvm::GlobalAlias::create(Name->getName(), Val)); 4365 } 4366 } 4367 4368 bool CodeGenModule::lookupRepresentativeDecl(StringRef MangledName, 4369 GlobalDecl &Result) const { 4370 auto Res = Manglings.find(MangledName); 4371 if (Res == Manglings.end()) 4372 return false; 4373 Result = Res->getValue(); 4374 return true; 4375 } 4376 4377 /// Emits metadata nodes associating all the global values in the 4378 /// current module with the Decls they came from. This is useful for 4379 /// projects using IR gen as a subroutine. 4380 /// 4381 /// Since there's currently no way to associate an MDNode directly 4382 /// with an llvm::GlobalValue, we create a global named metadata 4383 /// with the name 'clang.global.decl.ptrs'. 4384 void CodeGenModule::EmitDeclMetadata() { 4385 llvm::NamedMDNode *GlobalMetadata = nullptr; 4386 4387 for (auto &I : MangledDeclNames) { 4388 llvm::GlobalValue *Addr = getModule().getNamedValue(I.second); 4389 // Some mangled names don't necessarily have an associated GlobalValue 4390 // in this module, e.g. if we mangled it for DebugInfo. 4391 if (Addr) 4392 EmitGlobalDeclMetadata(*this, GlobalMetadata, I.first, Addr); 4393 } 4394 } 4395 4396 /// Emits metadata nodes for all the local variables in the current 4397 /// function. 4398 void CodeGenFunction::EmitDeclMetadata() { 4399 if (LocalDeclMap.empty()) return; 4400 4401 llvm::LLVMContext &Context = getLLVMContext(); 4402 4403 // Find the unique metadata ID for this name. 4404 unsigned DeclPtrKind = Context.getMDKindID("clang.decl.ptr"); 4405 4406 llvm::NamedMDNode *GlobalMetadata = nullptr; 4407 4408 for (auto &I : LocalDeclMap) { 4409 const Decl *D = I.first; 4410 llvm::Value *Addr = I.second.getPointer(); 4411 if (auto *Alloca = dyn_cast<llvm::AllocaInst>(Addr)) { 4412 llvm::Value *DAddr = GetPointerConstant(getLLVMContext(), D); 4413 Alloca->setMetadata( 4414 DeclPtrKind, llvm::MDNode::get( 4415 Context, llvm::ValueAsMetadata::getConstant(DAddr))); 4416 } else if (auto *GV = dyn_cast<llvm::GlobalValue>(Addr)) { 4417 GlobalDecl GD = GlobalDecl(cast<VarDecl>(D)); 4418 EmitGlobalDeclMetadata(CGM, GlobalMetadata, GD, GV); 4419 } 4420 } 4421 } 4422 4423 void CodeGenModule::EmitVersionIdentMetadata() { 4424 llvm::NamedMDNode *IdentMetadata = 4425 TheModule.getOrInsertNamedMetadata("llvm.ident"); 4426 std::string Version = getClangFullVersion(); 4427 llvm::LLVMContext &Ctx = TheModule.getContext(); 4428 4429 llvm::Metadata *IdentNode[] = {llvm::MDString::get(Ctx, Version)}; 4430 IdentMetadata->addOperand(llvm::MDNode::get(Ctx, IdentNode)); 4431 } 4432 4433 void CodeGenModule::EmitTargetMetadata() { 4434 // Warning, new MangledDeclNames may be appended within this loop. 4435 // We rely on MapVector insertions adding new elements to the end 4436 // of the container. 4437 // FIXME: Move this loop into the one target that needs it, and only 4438 // loop over those declarations for which we couldn't emit the target 4439 // metadata when we emitted the declaration. 4440 for (unsigned I = 0; I != MangledDeclNames.size(); ++I) { 4441 auto Val = *(MangledDeclNames.begin() + I); 4442 const Decl *D = Val.first.getDecl()->getMostRecentDecl(); 4443 llvm::GlobalValue *GV = GetGlobalValue(Val.second); 4444 getTargetCodeGenInfo().emitTargetMD(D, GV, *this); 4445 } 4446 } 4447 4448 void CodeGenModule::EmitCoverageFile() { 4449 if (getCodeGenOpts().CoverageDataFile.empty() && 4450 getCodeGenOpts().CoverageNotesFile.empty()) 4451 return; 4452 4453 llvm::NamedMDNode *CUNode = TheModule.getNamedMetadata("llvm.dbg.cu"); 4454 if (!CUNode) 4455 return; 4456 4457 llvm::NamedMDNode *GCov = TheModule.getOrInsertNamedMetadata("llvm.gcov"); 4458 llvm::LLVMContext &Ctx = TheModule.getContext(); 4459 auto *CoverageDataFile = 4460 llvm::MDString::get(Ctx, getCodeGenOpts().CoverageDataFile); 4461 auto *CoverageNotesFile = 4462 llvm::MDString::get(Ctx, getCodeGenOpts().CoverageNotesFile); 4463 for (int i = 0, e = CUNode->getNumOperands(); i != e; ++i) { 4464 llvm::MDNode *CU = CUNode->getOperand(i); 4465 llvm::Metadata *Elts[] = {CoverageNotesFile, CoverageDataFile, CU}; 4466 GCov->addOperand(llvm::MDNode::get(Ctx, Elts)); 4467 } 4468 } 4469 4470 llvm::Constant *CodeGenModule::EmitUuidofInitializer(StringRef Uuid) { 4471 // Sema has checked that all uuid strings are of the form 4472 // "12345678-1234-1234-1234-1234567890ab". 4473 assert(Uuid.size() == 36); 4474 for (unsigned i = 0; i < 36; ++i) { 4475 if (i == 8 || i == 13 || i == 18 || i == 23) assert(Uuid[i] == '-'); 4476 else assert(isHexDigit(Uuid[i])); 4477 } 4478 4479 // The starts of all bytes of Field3 in Uuid. Field 3 is "1234-1234567890ab". 4480 const unsigned Field3ValueOffsets[8] = { 19, 21, 24, 26, 28, 30, 32, 34 }; 4481 4482 llvm::Constant *Field3[8]; 4483 for (unsigned Idx = 0; Idx < 8; ++Idx) 4484 Field3[Idx] = llvm::ConstantInt::get( 4485 Int8Ty, Uuid.substr(Field3ValueOffsets[Idx], 2), 16); 4486 4487 llvm::Constant *Fields[4] = { 4488 llvm::ConstantInt::get(Int32Ty, Uuid.substr(0, 8), 16), 4489 llvm::ConstantInt::get(Int16Ty, Uuid.substr(9, 4), 16), 4490 llvm::ConstantInt::get(Int16Ty, Uuid.substr(14, 4), 16), 4491 llvm::ConstantArray::get(llvm::ArrayType::get(Int8Ty, 8), Field3) 4492 }; 4493 4494 return llvm::ConstantStruct::getAnon(Fields); 4495 } 4496 4497 llvm::Constant *CodeGenModule::GetAddrOfRTTIDescriptor(QualType Ty, 4498 bool ForEH) { 4499 // Return a bogus pointer if RTTI is disabled, unless it's for EH. 4500 // FIXME: should we even be calling this method if RTTI is disabled 4501 // and it's not for EH? 4502 if (!ForEH && !getLangOpts().RTTI) 4503 return llvm::Constant::getNullValue(Int8PtrTy); 4504 4505 if (ForEH && Ty->isObjCObjectPointerType() && 4506 LangOpts.ObjCRuntime.isGNUFamily()) 4507 return ObjCRuntime->GetEHType(Ty); 4508 4509 return getCXXABI().getAddrOfRTTIDescriptor(Ty); 4510 } 4511 4512 void CodeGenModule::EmitOMPThreadPrivateDecl(const OMPThreadPrivateDecl *D) { 4513 for (auto RefExpr : D->varlists()) { 4514 auto *VD = cast<VarDecl>(cast<DeclRefExpr>(RefExpr)->getDecl()); 4515 bool PerformInit = 4516 VD->getAnyInitializer() && 4517 !VD->getAnyInitializer()->isConstantInitializer(getContext(), 4518 /*ForRef=*/false); 4519 4520 Address Addr(GetAddrOfGlobalVar(VD), getContext().getDeclAlign(VD)); 4521 if (auto InitFunction = getOpenMPRuntime().emitThreadPrivateVarDefinition( 4522 VD, Addr, RefExpr->getLocStart(), PerformInit)) 4523 CXXGlobalInits.push_back(InitFunction); 4524 } 4525 } 4526 4527 llvm::Metadata *CodeGenModule::CreateMetadataIdentifierForType(QualType T) { 4528 llvm::Metadata *&InternalId = MetadataIdMap[T.getCanonicalType()]; 4529 if (InternalId) 4530 return InternalId; 4531 4532 if (isExternallyVisible(T->getLinkage())) { 4533 std::string OutName; 4534 llvm::raw_string_ostream Out(OutName); 4535 getCXXABI().getMangleContext().mangleTypeName(T, Out); 4536 4537 InternalId = llvm::MDString::get(getLLVMContext(), Out.str()); 4538 } else { 4539 InternalId = llvm::MDNode::getDistinct(getLLVMContext(), 4540 llvm::ArrayRef<llvm::Metadata *>()); 4541 } 4542 4543 return InternalId; 4544 } 4545 4546 /// Returns whether this module needs the "all-vtables" type identifier. 4547 bool CodeGenModule::NeedAllVtablesTypeId() const { 4548 // Returns true if at least one of vtable-based CFI checkers is enabled and 4549 // is not in the trapping mode. 4550 return ((LangOpts.Sanitize.has(SanitizerKind::CFIVCall) && 4551 !CodeGenOpts.SanitizeTrap.has(SanitizerKind::CFIVCall)) || 4552 (LangOpts.Sanitize.has(SanitizerKind::CFINVCall) && 4553 !CodeGenOpts.SanitizeTrap.has(SanitizerKind::CFINVCall)) || 4554 (LangOpts.Sanitize.has(SanitizerKind::CFIDerivedCast) && 4555 !CodeGenOpts.SanitizeTrap.has(SanitizerKind::CFIDerivedCast)) || 4556 (LangOpts.Sanitize.has(SanitizerKind::CFIUnrelatedCast) && 4557 !CodeGenOpts.SanitizeTrap.has(SanitizerKind::CFIUnrelatedCast))); 4558 } 4559 4560 void CodeGenModule::AddVTableTypeMetadata(llvm::GlobalVariable *VTable, 4561 CharUnits Offset, 4562 const CXXRecordDecl *RD) { 4563 llvm::Metadata *MD = 4564 CreateMetadataIdentifierForType(QualType(RD->getTypeForDecl(), 0)); 4565 VTable->addTypeMetadata(Offset.getQuantity(), MD); 4566 4567 if (CodeGenOpts.SanitizeCfiCrossDso) 4568 if (auto CrossDsoTypeId = CreateCrossDsoCfiTypeId(MD)) 4569 VTable->addTypeMetadata(Offset.getQuantity(), 4570 llvm::ConstantAsMetadata::get(CrossDsoTypeId)); 4571 4572 if (NeedAllVtablesTypeId()) { 4573 llvm::Metadata *MD = llvm::MDString::get(getLLVMContext(), "all-vtables"); 4574 VTable->addTypeMetadata(Offset.getQuantity(), MD); 4575 } 4576 } 4577 4578 // Fills in the supplied string map with the set of target features for the 4579 // passed in function. 4580 void CodeGenModule::getFunctionFeatureMap(llvm::StringMap<bool> &FeatureMap, 4581 const FunctionDecl *FD) { 4582 StringRef TargetCPU = Target.getTargetOpts().CPU; 4583 if (const auto *TD = FD->getAttr<TargetAttr>()) { 4584 // If we have a TargetAttr build up the feature map based on that. 4585 TargetAttr::ParsedTargetAttr ParsedAttr = TD->parse(); 4586 4587 // Make a copy of the features as passed on the command line into the 4588 // beginning of the additional features from the function to override. 4589 ParsedAttr.Features.insert(ParsedAttr.Features.begin(), 4590 Target.getTargetOpts().FeaturesAsWritten.begin(), 4591 Target.getTargetOpts().FeaturesAsWritten.end()); 4592 4593 if (ParsedAttr.Architecture != "") 4594 TargetCPU = ParsedAttr.Architecture ; 4595 4596 // Now populate the feature map, first with the TargetCPU which is either 4597 // the default or a new one from the target attribute string. Then we'll use 4598 // the passed in features (FeaturesAsWritten) along with the new ones from 4599 // the attribute. 4600 Target.initFeatureMap(FeatureMap, getDiags(), TargetCPU, 4601 ParsedAttr.Features); 4602 } else { 4603 Target.initFeatureMap(FeatureMap, getDiags(), TargetCPU, 4604 Target.getTargetOpts().Features); 4605 } 4606 } 4607 4608 llvm::SanitizerStatReport &CodeGenModule::getSanStats() { 4609 if (!SanStats) 4610 SanStats = llvm::make_unique<llvm::SanitizerStatReport>(&getModule()); 4611 4612 return *SanStats; 4613 } 4614 llvm::Value * 4615 CodeGenModule::createOpenCLIntToSamplerConversion(const Expr *E, 4616 CodeGenFunction &CGF) { 4617 llvm::Constant *C = ConstantEmitter(CGF).emitAbstract(E, E->getType()); 4618 auto SamplerT = getOpenCLRuntime().getSamplerType(E->getType().getTypePtr()); 4619 auto FTy = llvm::FunctionType::get(SamplerT, {C->getType()}, false); 4620 return CGF.Builder.CreateCall(CreateRuntimeFunction(FTy, 4621 "__translate_sampler_initializer"), 4622 {C}); 4623 } 4624