1 //===- Module.cpp - Implement the Module class ----------------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This file implements the Module class for the IR library. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #include "llvm/IR/Module.h" 14 #include "SymbolTableListTraitsImpl.h" 15 #include "llvm/ADT/SmallString.h" 16 #include "llvm/ADT/SmallVector.h" 17 #include "llvm/ADT/StringMap.h" 18 #include "llvm/ADT/StringRef.h" 19 #include "llvm/ADT/Twine.h" 20 #include "llvm/IR/Attributes.h" 21 #include "llvm/IR/Comdat.h" 22 #include "llvm/IR/Constants.h" 23 #include "llvm/IR/DataLayout.h" 24 #include "llvm/IR/DebugInfoMetadata.h" 25 #include "llvm/IR/DerivedTypes.h" 26 #include "llvm/IR/Function.h" 27 #include "llvm/IR/GVMaterializer.h" 28 #include "llvm/IR/GlobalAlias.h" 29 #include "llvm/IR/GlobalIFunc.h" 30 #include "llvm/IR/GlobalValue.h" 31 #include "llvm/IR/GlobalVariable.h" 32 #include "llvm/IR/LLVMContext.h" 33 #include "llvm/IR/Metadata.h" 34 #include "llvm/IR/ModuleSummaryIndex.h" 35 #include "llvm/IR/SymbolTableListTraits.h" 36 #include "llvm/IR/Type.h" 37 #include "llvm/IR/TypeFinder.h" 38 #include "llvm/IR/Value.h" 39 #include "llvm/IR/ValueSymbolTable.h" 40 #include "llvm/Support/Casting.h" 41 #include "llvm/Support/CodeGen.h" 42 #include "llvm/Support/Error.h" 43 #include "llvm/Support/MemoryBuffer.h" 44 #include "llvm/Support/Path.h" 45 #include "llvm/Support/RandomNumberGenerator.h" 46 #include "llvm/Support/VersionTuple.h" 47 #include <algorithm> 48 #include <cassert> 49 #include <cstdint> 50 #include <memory> 51 #include <optional> 52 #include <utility> 53 #include <vector> 54 55 using namespace llvm; 56 57 extern cl::opt<bool> UseNewDbgInfoFormat; 58 59 //===----------------------------------------------------------------------===// 60 // Methods to implement the globals and functions lists. 61 // 62 63 // Explicit instantiations of SymbolTableListTraits since some of the methods 64 // are not in the public header file. 65 template class llvm::SymbolTableListTraits<Function>; 66 template class llvm::SymbolTableListTraits<GlobalVariable>; 67 template class llvm::SymbolTableListTraits<GlobalAlias>; 68 template class llvm::SymbolTableListTraits<GlobalIFunc>; 69 70 //===----------------------------------------------------------------------===// 71 // Primitive Module methods. 72 // 73 74 Module::Module(StringRef MID, LLVMContext &C) 75 : Context(C), ValSymTab(std::make_unique<ValueSymbolTable>(-1)), 76 ModuleID(std::string(MID)), SourceFileName(std::string(MID)), DL(""), 77 IsNewDbgInfoFormat(UseNewDbgInfoFormat) { 78 Context.addModule(this); 79 } 80 81 Module::~Module() { 82 Context.removeModule(this); 83 dropAllReferences(); 84 GlobalList.clear(); 85 FunctionList.clear(); 86 AliasList.clear(); 87 IFuncList.clear(); 88 } 89 90 void Module::removeDebugIntrinsicDeclarations() { 91 auto *DeclareIntrinsicFn = 92 Intrinsic::getDeclaration(this, Intrinsic::dbg_declare); 93 assert((!isMaterialized() || DeclareIntrinsicFn->hasZeroLiveUses()) && 94 "Debug declare intrinsic should have had uses removed."); 95 DeclareIntrinsicFn->eraseFromParent(); 96 auto *ValueIntrinsicFn = 97 Intrinsic::getDeclaration(this, Intrinsic::dbg_value); 98 assert((!isMaterialized() || ValueIntrinsicFn->hasZeroLiveUses()) && 99 "Debug value intrinsic should have had uses removed."); 100 ValueIntrinsicFn->eraseFromParent(); 101 auto *AssignIntrinsicFn = 102 Intrinsic::getDeclaration(this, Intrinsic::dbg_assign); 103 assert((!isMaterialized() || AssignIntrinsicFn->hasZeroLiveUses()) && 104 "Debug assign intrinsic should have had uses removed."); 105 AssignIntrinsicFn->eraseFromParent(); 106 auto *LabelntrinsicFn = Intrinsic::getDeclaration(this, Intrinsic::dbg_label); 107 assert((!isMaterialized() || LabelntrinsicFn->hasZeroLiveUses()) && 108 "Debug label intrinsic should have had uses removed."); 109 LabelntrinsicFn->eraseFromParent(); 110 } 111 112 std::unique_ptr<RandomNumberGenerator> 113 Module::createRNG(const StringRef Name) const { 114 SmallString<32> Salt(Name); 115 116 // This RNG is guaranteed to produce the same random stream only 117 // when the Module ID and thus the input filename is the same. This 118 // might be problematic if the input filename extension changes 119 // (e.g. from .c to .bc or .ll). 120 // 121 // We could store this salt in NamedMetadata, but this would make 122 // the parameter non-const. This would unfortunately make this 123 // interface unusable by any Machine passes, since they only have a 124 // const reference to their IR Module. Alternatively we can always 125 // store salt metadata from the Module constructor. 126 Salt += sys::path::filename(getModuleIdentifier()); 127 128 return std::unique_ptr<RandomNumberGenerator>( 129 new RandomNumberGenerator(Salt)); 130 } 131 132 /// getNamedValue - Return the first global value in the module with 133 /// the specified name, of arbitrary type. This method returns null 134 /// if a global with the specified name is not found. 135 GlobalValue *Module::getNamedValue(StringRef Name) const { 136 return cast_or_null<GlobalValue>(getValueSymbolTable().lookup(Name)); 137 } 138 139 unsigned Module::getNumNamedValues() const { 140 return getValueSymbolTable().size(); 141 } 142 143 /// getMDKindID - Return a unique non-zero ID for the specified metadata kind. 144 /// This ID is uniqued across modules in the current LLVMContext. 145 unsigned Module::getMDKindID(StringRef Name) const { 146 return Context.getMDKindID(Name); 147 } 148 149 /// getMDKindNames - Populate client supplied SmallVector with the name for 150 /// custom metadata IDs registered in this LLVMContext. ID #0 is not used, 151 /// so it is filled in as an empty string. 152 void Module::getMDKindNames(SmallVectorImpl<StringRef> &Result) const { 153 return Context.getMDKindNames(Result); 154 } 155 156 void Module::getOperandBundleTags(SmallVectorImpl<StringRef> &Result) const { 157 return Context.getOperandBundleTags(Result); 158 } 159 160 //===----------------------------------------------------------------------===// 161 // Methods for easy access to the functions in the module. 162 // 163 164 // getOrInsertFunction - Look up the specified function in the module symbol 165 // table. If it does not exist, add a prototype for the function and return 166 // it. This is nice because it allows most passes to get away with not handling 167 // the symbol table directly for this common task. 168 // 169 FunctionCallee Module::getOrInsertFunction(StringRef Name, FunctionType *Ty, 170 AttributeList AttributeList) { 171 // See if we have a definition for the specified function already. 172 GlobalValue *F = getNamedValue(Name); 173 if (!F) { 174 // Nope, add it 175 Function *New = Function::Create(Ty, GlobalVariable::ExternalLinkage, 176 DL.getProgramAddressSpace(), Name, this); 177 if (!New->isIntrinsic()) // Intrinsics get attrs set on construction 178 New->setAttributes(AttributeList); 179 return {Ty, New}; // Return the new prototype. 180 } 181 182 // Otherwise, we just found the existing function or a prototype. 183 return {Ty, F}; 184 } 185 186 FunctionCallee Module::getOrInsertFunction(StringRef Name, FunctionType *Ty) { 187 return getOrInsertFunction(Name, Ty, AttributeList()); 188 } 189 190 // getFunction - Look up the specified function in the module symbol table. 191 // If it does not exist, return null. 192 // 193 Function *Module::getFunction(StringRef Name) const { 194 return dyn_cast_or_null<Function>(getNamedValue(Name)); 195 } 196 197 //===----------------------------------------------------------------------===// 198 // Methods for easy access to the global variables in the module. 199 // 200 201 /// getGlobalVariable - Look up the specified global variable in the module 202 /// symbol table. If it does not exist, return null. The type argument 203 /// should be the underlying type of the global, i.e., it should not have 204 /// the top-level PointerType, which represents the address of the global. 205 /// If AllowLocal is set to true, this function will return types that 206 /// have an local. By default, these types are not returned. 207 /// 208 GlobalVariable *Module::getGlobalVariable(StringRef Name, 209 bool AllowLocal) const { 210 if (GlobalVariable *Result = 211 dyn_cast_or_null<GlobalVariable>(getNamedValue(Name))) 212 if (AllowLocal || !Result->hasLocalLinkage()) 213 return Result; 214 return nullptr; 215 } 216 217 /// getOrInsertGlobal - Look up the specified global in the module symbol table. 218 /// 1. If it does not exist, add a declaration of the global and return it. 219 /// 2. Else, the global exists but has the wrong type: return the function 220 /// with a constantexpr cast to the right type. 221 /// 3. Finally, if the existing global is the correct declaration, return the 222 /// existing global. 223 Constant *Module::getOrInsertGlobal( 224 StringRef Name, Type *Ty, 225 function_ref<GlobalVariable *()> CreateGlobalCallback) { 226 // See if we have a definition for the specified global already. 227 GlobalVariable *GV = dyn_cast_or_null<GlobalVariable>(getNamedValue(Name)); 228 if (!GV) 229 GV = CreateGlobalCallback(); 230 assert(GV && "The CreateGlobalCallback is expected to create a global"); 231 232 // Otherwise, we just found the existing function or a prototype. 233 return GV; 234 } 235 236 // Overload to construct a global variable using its constructor's defaults. 237 Constant *Module::getOrInsertGlobal(StringRef Name, Type *Ty) { 238 return getOrInsertGlobal(Name, Ty, [&] { 239 return new GlobalVariable(*this, Ty, false, GlobalVariable::ExternalLinkage, 240 nullptr, Name); 241 }); 242 } 243 244 //===----------------------------------------------------------------------===// 245 // Methods for easy access to the global variables in the module. 246 // 247 248 // getNamedAlias - Look up the specified global in the module symbol table. 249 // If it does not exist, return null. 250 // 251 GlobalAlias *Module::getNamedAlias(StringRef Name) const { 252 return dyn_cast_or_null<GlobalAlias>(getNamedValue(Name)); 253 } 254 255 GlobalIFunc *Module::getNamedIFunc(StringRef Name) const { 256 return dyn_cast_or_null<GlobalIFunc>(getNamedValue(Name)); 257 } 258 259 /// getNamedMetadata - Return the first NamedMDNode in the module with the 260 /// specified name. This method returns null if a NamedMDNode with the 261 /// specified name is not found. 262 NamedMDNode *Module::getNamedMetadata(const Twine &Name) const { 263 SmallString<256> NameData; 264 StringRef NameRef = Name.toStringRef(NameData); 265 return NamedMDSymTab.lookup(NameRef); 266 } 267 268 /// getOrInsertNamedMetadata - Return the first named MDNode in the module 269 /// with the specified name. This method returns a new NamedMDNode if a 270 /// NamedMDNode with the specified name is not found. 271 NamedMDNode *Module::getOrInsertNamedMetadata(StringRef Name) { 272 NamedMDNode *&NMD = NamedMDSymTab[Name]; 273 if (!NMD) { 274 NMD = new NamedMDNode(Name); 275 NMD->setParent(this); 276 insertNamedMDNode(NMD); 277 } 278 return NMD; 279 } 280 281 /// eraseNamedMetadata - Remove the given NamedMDNode from this module and 282 /// delete it. 283 void Module::eraseNamedMetadata(NamedMDNode *NMD) { 284 NamedMDSymTab.erase(NMD->getName()); 285 eraseNamedMDNode(NMD); 286 } 287 288 bool Module::isValidModFlagBehavior(Metadata *MD, ModFlagBehavior &MFB) { 289 if (ConstantInt *Behavior = mdconst::dyn_extract_or_null<ConstantInt>(MD)) { 290 uint64_t Val = Behavior->getLimitedValue(); 291 if (Val >= ModFlagBehaviorFirstVal && Val <= ModFlagBehaviorLastVal) { 292 MFB = static_cast<ModFlagBehavior>(Val); 293 return true; 294 } 295 } 296 return false; 297 } 298 299 bool Module::isValidModuleFlag(const MDNode &ModFlag, ModFlagBehavior &MFB, 300 MDString *&Key, Metadata *&Val) { 301 if (ModFlag.getNumOperands() < 3) 302 return false; 303 if (!isValidModFlagBehavior(ModFlag.getOperand(0), MFB)) 304 return false; 305 MDString *K = dyn_cast_or_null<MDString>(ModFlag.getOperand(1)); 306 if (!K) 307 return false; 308 Key = K; 309 Val = ModFlag.getOperand(2); 310 return true; 311 } 312 313 /// getModuleFlagsMetadata - Returns the module flags in the provided vector. 314 void Module:: 315 getModuleFlagsMetadata(SmallVectorImpl<ModuleFlagEntry> &Flags) const { 316 const NamedMDNode *ModFlags = getModuleFlagsMetadata(); 317 if (!ModFlags) return; 318 319 for (const MDNode *Flag : ModFlags->operands()) { 320 ModFlagBehavior MFB; 321 MDString *Key = nullptr; 322 Metadata *Val = nullptr; 323 if (isValidModuleFlag(*Flag, MFB, Key, Val)) { 324 // Check the operands of the MDNode before accessing the operands. 325 // The verifier will actually catch these failures. 326 Flags.push_back(ModuleFlagEntry(MFB, Key, Val)); 327 } 328 } 329 } 330 331 /// Return the corresponding value if Key appears in module flags, otherwise 332 /// return null. 333 Metadata *Module::getModuleFlag(StringRef Key) const { 334 SmallVector<Module::ModuleFlagEntry, 8> ModuleFlags; 335 getModuleFlagsMetadata(ModuleFlags); 336 for (const ModuleFlagEntry &MFE : ModuleFlags) { 337 if (Key == MFE.Key->getString()) 338 return MFE.Val; 339 } 340 return nullptr; 341 } 342 343 /// getModuleFlagsMetadata - Returns the NamedMDNode in the module that 344 /// represents module-level flags. This method returns null if there are no 345 /// module-level flags. 346 NamedMDNode *Module::getModuleFlagsMetadata() const { 347 return getNamedMetadata("llvm.module.flags"); 348 } 349 350 /// getOrInsertModuleFlagsMetadata - Returns the NamedMDNode in the module that 351 /// represents module-level flags. If module-level flags aren't found, it 352 /// creates the named metadata that contains them. 353 NamedMDNode *Module::getOrInsertModuleFlagsMetadata() { 354 return getOrInsertNamedMetadata("llvm.module.flags"); 355 } 356 357 /// addModuleFlag - Add a module-level flag to the module-level flags 358 /// metadata. It will create the module-level flags named metadata if it doesn't 359 /// already exist. 360 void Module::addModuleFlag(ModFlagBehavior Behavior, StringRef Key, 361 Metadata *Val) { 362 Type *Int32Ty = Type::getInt32Ty(Context); 363 Metadata *Ops[3] = { 364 ConstantAsMetadata::get(ConstantInt::get(Int32Ty, Behavior)), 365 MDString::get(Context, Key), Val}; 366 getOrInsertModuleFlagsMetadata()->addOperand(MDNode::get(Context, Ops)); 367 } 368 void Module::addModuleFlag(ModFlagBehavior Behavior, StringRef Key, 369 Constant *Val) { 370 addModuleFlag(Behavior, Key, ConstantAsMetadata::get(Val)); 371 } 372 void Module::addModuleFlag(ModFlagBehavior Behavior, StringRef Key, 373 uint32_t Val) { 374 Type *Int32Ty = Type::getInt32Ty(Context); 375 addModuleFlag(Behavior, Key, ConstantInt::get(Int32Ty, Val)); 376 } 377 void Module::addModuleFlag(MDNode *Node) { 378 assert(Node->getNumOperands() == 3 && 379 "Invalid number of operands for module flag!"); 380 assert(mdconst::hasa<ConstantInt>(Node->getOperand(0)) && 381 isa<MDString>(Node->getOperand(1)) && 382 "Invalid operand types for module flag!"); 383 getOrInsertModuleFlagsMetadata()->addOperand(Node); 384 } 385 386 void Module::setModuleFlag(ModFlagBehavior Behavior, StringRef Key, 387 Metadata *Val) { 388 NamedMDNode *ModFlags = getOrInsertModuleFlagsMetadata(); 389 // Replace the flag if it already exists. 390 for (unsigned I = 0, E = ModFlags->getNumOperands(); I != E; ++I) { 391 MDNode *Flag = ModFlags->getOperand(I); 392 ModFlagBehavior MFB; 393 MDString *K = nullptr; 394 Metadata *V = nullptr; 395 if (isValidModuleFlag(*Flag, MFB, K, V) && K->getString() == Key) { 396 Flag->replaceOperandWith(2, Val); 397 return; 398 } 399 } 400 addModuleFlag(Behavior, Key, Val); 401 } 402 403 void Module::setDataLayout(StringRef Desc) { 404 DL.reset(Desc); 405 } 406 407 void Module::setDataLayout(const DataLayout &Other) { DL = Other; } 408 409 DICompileUnit *Module::debug_compile_units_iterator::operator*() const { 410 return cast<DICompileUnit>(CUs->getOperand(Idx)); 411 } 412 DICompileUnit *Module::debug_compile_units_iterator::operator->() const { 413 return cast<DICompileUnit>(CUs->getOperand(Idx)); 414 } 415 416 void Module::debug_compile_units_iterator::SkipNoDebugCUs() { 417 while (CUs && (Idx < CUs->getNumOperands()) && 418 ((*this)->getEmissionKind() == DICompileUnit::NoDebug)) 419 ++Idx; 420 } 421 422 iterator_range<Module::global_object_iterator> Module::global_objects() { 423 return concat<GlobalObject>(functions(), globals()); 424 } 425 iterator_range<Module::const_global_object_iterator> 426 Module::global_objects() const { 427 return concat<const GlobalObject>(functions(), globals()); 428 } 429 430 iterator_range<Module::global_value_iterator> Module::global_values() { 431 return concat<GlobalValue>(functions(), globals(), aliases(), ifuncs()); 432 } 433 iterator_range<Module::const_global_value_iterator> 434 Module::global_values() const { 435 return concat<const GlobalValue>(functions(), globals(), aliases(), ifuncs()); 436 } 437 438 //===----------------------------------------------------------------------===// 439 // Methods to control the materialization of GlobalValues in the Module. 440 // 441 void Module::setMaterializer(GVMaterializer *GVM) { 442 assert(!Materializer && 443 "Module already has a GVMaterializer. Call materializeAll" 444 " to clear it out before setting another one."); 445 Materializer.reset(GVM); 446 } 447 448 Error Module::materialize(GlobalValue *GV) { 449 if (!Materializer) 450 return Error::success(); 451 452 return Materializer->materialize(GV); 453 } 454 455 Error Module::materializeAll() { 456 if (!Materializer) 457 return Error::success(); 458 std::unique_ptr<GVMaterializer> M = std::move(Materializer); 459 return M->materializeModule(); 460 } 461 462 Error Module::materializeMetadata() { 463 if (!Materializer) 464 return Error::success(); 465 return Materializer->materializeMetadata(); 466 } 467 468 //===----------------------------------------------------------------------===// 469 // Other module related stuff. 470 // 471 472 std::vector<StructType *> Module::getIdentifiedStructTypes() const { 473 // If we have a materializer, it is possible that some unread function 474 // uses a type that is currently not visible to a TypeFinder, so ask 475 // the materializer which types it created. 476 if (Materializer) 477 return Materializer->getIdentifiedStructTypes(); 478 479 std::vector<StructType *> Ret; 480 TypeFinder SrcStructTypes; 481 SrcStructTypes.run(*this, true); 482 Ret.assign(SrcStructTypes.begin(), SrcStructTypes.end()); 483 return Ret; 484 } 485 486 std::string Module::getUniqueIntrinsicName(StringRef BaseName, Intrinsic::ID Id, 487 const FunctionType *Proto) { 488 auto Encode = [&BaseName](unsigned Suffix) { 489 return (Twine(BaseName) + "." + Twine(Suffix)).str(); 490 }; 491 492 { 493 // fast path - the prototype is already known 494 auto UinItInserted = UniquedIntrinsicNames.insert({{Id, Proto}, 0}); 495 if (!UinItInserted.second) 496 return Encode(UinItInserted.first->second); 497 } 498 499 // Not known yet. A new entry was created with index 0. Check if there already 500 // exists a matching declaration, or select a new entry. 501 502 // Start looking for names with the current known maximum count (or 0). 503 auto NiidItInserted = CurrentIntrinsicIds.insert({BaseName, 0}); 504 unsigned Count = NiidItInserted.first->second; 505 506 // This might be slow if a whole population of intrinsics already existed, but 507 // we cache the values for later usage. 508 std::string NewName; 509 while (true) { 510 NewName = Encode(Count); 511 GlobalValue *F = getNamedValue(NewName); 512 if (!F) { 513 // Reserve this entry for the new proto 514 UniquedIntrinsicNames[{Id, Proto}] = Count; 515 break; 516 } 517 518 // A declaration with this name already exists. Remember it. 519 FunctionType *FT = dyn_cast<FunctionType>(F->getValueType()); 520 auto UinItInserted = UniquedIntrinsicNames.insert({{Id, FT}, Count}); 521 if (FT == Proto) { 522 // It was a declaration for our prototype. This entry was allocated in the 523 // beginning. Update the count to match the existing declaration. 524 UinItInserted.first->second = Count; 525 break; 526 } 527 528 ++Count; 529 } 530 531 NiidItInserted.first->second = Count + 1; 532 533 return NewName; 534 } 535 536 // dropAllReferences() - This function causes all the subelements to "let go" 537 // of all references that they are maintaining. This allows one to 'delete' a 538 // whole module at a time, even though there may be circular references... first 539 // all references are dropped, and all use counts go to zero. Then everything 540 // is deleted for real. Note that no operations are valid on an object that 541 // has "dropped all references", except operator delete. 542 // 543 void Module::dropAllReferences() { 544 for (Function &F : *this) 545 F.dropAllReferences(); 546 547 for (GlobalVariable &GV : globals()) 548 GV.dropAllReferences(); 549 550 for (GlobalAlias &GA : aliases()) 551 GA.dropAllReferences(); 552 553 for (GlobalIFunc &GIF : ifuncs()) 554 GIF.dropAllReferences(); 555 } 556 557 unsigned Module::getNumberRegisterParameters() const { 558 auto *Val = 559 cast_or_null<ConstantAsMetadata>(getModuleFlag("NumRegisterParameters")); 560 if (!Val) 561 return 0; 562 return cast<ConstantInt>(Val->getValue())->getZExtValue(); 563 } 564 565 unsigned Module::getDwarfVersion() const { 566 auto *Val = cast_or_null<ConstantAsMetadata>(getModuleFlag("Dwarf Version")); 567 if (!Val) 568 return 0; 569 return cast<ConstantInt>(Val->getValue())->getZExtValue(); 570 } 571 572 bool Module::isDwarf64() const { 573 auto *Val = cast_or_null<ConstantAsMetadata>(getModuleFlag("DWARF64")); 574 return Val && cast<ConstantInt>(Val->getValue())->isOne(); 575 } 576 577 unsigned Module::getCodeViewFlag() const { 578 auto *Val = cast_or_null<ConstantAsMetadata>(getModuleFlag("CodeView")); 579 if (!Val) 580 return 0; 581 return cast<ConstantInt>(Val->getValue())->getZExtValue(); 582 } 583 584 unsigned Module::getInstructionCount() const { 585 unsigned NumInstrs = 0; 586 for (const Function &F : FunctionList) 587 NumInstrs += F.getInstructionCount(); 588 return NumInstrs; 589 } 590 591 Comdat *Module::getOrInsertComdat(StringRef Name) { 592 auto &Entry = *ComdatSymTab.insert(std::make_pair(Name, Comdat())).first; 593 Entry.second.Name = &Entry; 594 return &Entry.second; 595 } 596 597 PICLevel::Level Module::getPICLevel() const { 598 auto *Val = cast_or_null<ConstantAsMetadata>(getModuleFlag("PIC Level")); 599 600 if (!Val) 601 return PICLevel::NotPIC; 602 603 return static_cast<PICLevel::Level>( 604 cast<ConstantInt>(Val->getValue())->getZExtValue()); 605 } 606 607 void Module::setPICLevel(PICLevel::Level PL) { 608 // The merge result of a non-PIC object and a PIC object can only be reliably 609 // used as a non-PIC object, so use the Min merge behavior. 610 addModuleFlag(ModFlagBehavior::Min, "PIC Level", PL); 611 } 612 613 PIELevel::Level Module::getPIELevel() const { 614 auto *Val = cast_or_null<ConstantAsMetadata>(getModuleFlag("PIE Level")); 615 616 if (!Val) 617 return PIELevel::Default; 618 619 return static_cast<PIELevel::Level>( 620 cast<ConstantInt>(Val->getValue())->getZExtValue()); 621 } 622 623 void Module::setPIELevel(PIELevel::Level PL) { 624 addModuleFlag(ModFlagBehavior::Max, "PIE Level", PL); 625 } 626 627 std::optional<CodeModel::Model> Module::getCodeModel() const { 628 auto *Val = cast_or_null<ConstantAsMetadata>(getModuleFlag("Code Model")); 629 630 if (!Val) 631 return std::nullopt; 632 633 return static_cast<CodeModel::Model>( 634 cast<ConstantInt>(Val->getValue())->getZExtValue()); 635 } 636 637 void Module::setCodeModel(CodeModel::Model CL) { 638 // Linking object files with different code models is undefined behavior 639 // because the compiler would have to generate additional code (to span 640 // longer jumps) if a larger code model is used with a smaller one. 641 // Therefore we will treat attempts to mix code models as an error. 642 addModuleFlag(ModFlagBehavior::Error, "Code Model", CL); 643 } 644 645 std::optional<uint64_t> Module::getLargeDataThreshold() const { 646 auto *Val = 647 cast_or_null<ConstantAsMetadata>(getModuleFlag("Large Data Threshold")); 648 649 if (!Val) 650 return std::nullopt; 651 652 return cast<ConstantInt>(Val->getValue())->getZExtValue(); 653 } 654 655 void Module::setLargeDataThreshold(uint64_t Threshold) { 656 // Since the large data threshold goes along with the code model, the merge 657 // behavior is the same. 658 addModuleFlag(ModFlagBehavior::Error, "Large Data Threshold", 659 ConstantInt::get(Type::getInt64Ty(Context), Threshold)); 660 } 661 662 void Module::setProfileSummary(Metadata *M, ProfileSummary::Kind Kind) { 663 if (Kind == ProfileSummary::PSK_CSInstr) 664 setModuleFlag(ModFlagBehavior::Error, "CSProfileSummary", M); 665 else 666 setModuleFlag(ModFlagBehavior::Error, "ProfileSummary", M); 667 } 668 669 Metadata *Module::getProfileSummary(bool IsCS) const { 670 return (IsCS ? getModuleFlag("CSProfileSummary") 671 : getModuleFlag("ProfileSummary")); 672 } 673 674 bool Module::getSemanticInterposition() const { 675 Metadata *MF = getModuleFlag("SemanticInterposition"); 676 677 auto *Val = cast_or_null<ConstantAsMetadata>(MF); 678 if (!Val) 679 return false; 680 681 return cast<ConstantInt>(Val->getValue())->getZExtValue(); 682 } 683 684 void Module::setSemanticInterposition(bool SI) { 685 addModuleFlag(ModFlagBehavior::Error, "SemanticInterposition", SI); 686 } 687 688 void Module::setOwnedMemoryBuffer(std::unique_ptr<MemoryBuffer> MB) { 689 OwnedMemoryBuffer = std::move(MB); 690 } 691 692 bool Module::getRtLibUseGOT() const { 693 auto *Val = cast_or_null<ConstantAsMetadata>(getModuleFlag("RtLibUseGOT")); 694 return Val && (cast<ConstantInt>(Val->getValue())->getZExtValue() > 0); 695 } 696 697 void Module::setRtLibUseGOT() { 698 addModuleFlag(ModFlagBehavior::Max, "RtLibUseGOT", 1); 699 } 700 701 bool Module::getDirectAccessExternalData() const { 702 auto *Val = cast_or_null<ConstantAsMetadata>( 703 getModuleFlag("direct-access-external-data")); 704 if (Val) 705 return cast<ConstantInt>(Val->getValue())->getZExtValue() > 0; 706 return getPICLevel() == PICLevel::NotPIC; 707 } 708 709 void Module::setDirectAccessExternalData(bool Value) { 710 addModuleFlag(ModFlagBehavior::Max, "direct-access-external-data", Value); 711 } 712 713 UWTableKind Module::getUwtable() const { 714 if (auto *Val = cast_or_null<ConstantAsMetadata>(getModuleFlag("uwtable"))) 715 return UWTableKind(cast<ConstantInt>(Val->getValue())->getZExtValue()); 716 return UWTableKind::None; 717 } 718 719 void Module::setUwtable(UWTableKind Kind) { 720 addModuleFlag(ModFlagBehavior::Max, "uwtable", uint32_t(Kind)); 721 } 722 723 FramePointerKind Module::getFramePointer() const { 724 auto *Val = cast_or_null<ConstantAsMetadata>(getModuleFlag("frame-pointer")); 725 return static_cast<FramePointerKind>( 726 Val ? cast<ConstantInt>(Val->getValue())->getZExtValue() : 0); 727 } 728 729 void Module::setFramePointer(FramePointerKind Kind) { 730 addModuleFlag(ModFlagBehavior::Max, "frame-pointer", static_cast<int>(Kind)); 731 } 732 733 StringRef Module::getStackProtectorGuard() const { 734 Metadata *MD = getModuleFlag("stack-protector-guard"); 735 if (auto *MDS = dyn_cast_or_null<MDString>(MD)) 736 return MDS->getString(); 737 return {}; 738 } 739 740 void Module::setStackProtectorGuard(StringRef Kind) { 741 MDString *ID = MDString::get(getContext(), Kind); 742 addModuleFlag(ModFlagBehavior::Error, "stack-protector-guard", ID); 743 } 744 745 StringRef Module::getStackProtectorGuardReg() const { 746 Metadata *MD = getModuleFlag("stack-protector-guard-reg"); 747 if (auto *MDS = dyn_cast_or_null<MDString>(MD)) 748 return MDS->getString(); 749 return {}; 750 } 751 752 void Module::setStackProtectorGuardReg(StringRef Reg) { 753 MDString *ID = MDString::get(getContext(), Reg); 754 addModuleFlag(ModFlagBehavior::Error, "stack-protector-guard-reg", ID); 755 } 756 757 StringRef Module::getStackProtectorGuardSymbol() const { 758 Metadata *MD = getModuleFlag("stack-protector-guard-symbol"); 759 if (auto *MDS = dyn_cast_or_null<MDString>(MD)) 760 return MDS->getString(); 761 return {}; 762 } 763 764 void Module::setStackProtectorGuardSymbol(StringRef Symbol) { 765 MDString *ID = MDString::get(getContext(), Symbol); 766 addModuleFlag(ModFlagBehavior::Error, "stack-protector-guard-symbol", ID); 767 } 768 769 int Module::getStackProtectorGuardOffset() const { 770 Metadata *MD = getModuleFlag("stack-protector-guard-offset"); 771 if (auto *CI = mdconst::dyn_extract_or_null<ConstantInt>(MD)) 772 return CI->getSExtValue(); 773 return INT_MAX; 774 } 775 776 void Module::setStackProtectorGuardOffset(int Offset) { 777 addModuleFlag(ModFlagBehavior::Error, "stack-protector-guard-offset", Offset); 778 } 779 780 unsigned Module::getOverrideStackAlignment() const { 781 Metadata *MD = getModuleFlag("override-stack-alignment"); 782 if (auto *CI = mdconst::dyn_extract_or_null<ConstantInt>(MD)) 783 return CI->getZExtValue(); 784 return 0; 785 } 786 787 unsigned Module::getMaxTLSAlignment() const { 788 Metadata *MD = getModuleFlag("MaxTLSAlign"); 789 if (auto *CI = mdconst::dyn_extract_or_null<ConstantInt>(MD)) 790 return CI->getZExtValue(); 791 return 0; 792 } 793 794 void Module::setOverrideStackAlignment(unsigned Align) { 795 addModuleFlag(ModFlagBehavior::Error, "override-stack-alignment", Align); 796 } 797 798 static void addSDKVersionMD(const VersionTuple &V, Module &M, StringRef Name) { 799 SmallVector<unsigned, 3> Entries; 800 Entries.push_back(V.getMajor()); 801 if (auto Minor = V.getMinor()) { 802 Entries.push_back(*Minor); 803 if (auto Subminor = V.getSubminor()) 804 Entries.push_back(*Subminor); 805 // Ignore the 'build' component as it can't be represented in the object 806 // file. 807 } 808 M.addModuleFlag(Module::ModFlagBehavior::Warning, Name, 809 ConstantDataArray::get(M.getContext(), Entries)); 810 } 811 812 void Module::setSDKVersion(const VersionTuple &V) { 813 addSDKVersionMD(V, *this, "SDK Version"); 814 } 815 816 static VersionTuple getSDKVersionMD(Metadata *MD) { 817 auto *CM = dyn_cast_or_null<ConstantAsMetadata>(MD); 818 if (!CM) 819 return {}; 820 auto *Arr = dyn_cast_or_null<ConstantDataArray>(CM->getValue()); 821 if (!Arr) 822 return {}; 823 auto getVersionComponent = [&](unsigned Index) -> std::optional<unsigned> { 824 if (Index >= Arr->getNumElements()) 825 return std::nullopt; 826 return (unsigned)Arr->getElementAsInteger(Index); 827 }; 828 auto Major = getVersionComponent(0); 829 if (!Major) 830 return {}; 831 VersionTuple Result = VersionTuple(*Major); 832 if (auto Minor = getVersionComponent(1)) { 833 Result = VersionTuple(*Major, *Minor); 834 if (auto Subminor = getVersionComponent(2)) { 835 Result = VersionTuple(*Major, *Minor, *Subminor); 836 } 837 } 838 return Result; 839 } 840 841 VersionTuple Module::getSDKVersion() const { 842 return getSDKVersionMD(getModuleFlag("SDK Version")); 843 } 844 845 GlobalVariable *llvm::collectUsedGlobalVariables( 846 const Module &M, SmallVectorImpl<GlobalValue *> &Vec, bool CompilerUsed) { 847 const char *Name = CompilerUsed ? "llvm.compiler.used" : "llvm.used"; 848 GlobalVariable *GV = M.getGlobalVariable(Name); 849 if (!GV || !GV->hasInitializer()) 850 return GV; 851 852 const ConstantArray *Init = cast<ConstantArray>(GV->getInitializer()); 853 for (Value *Op : Init->operands()) { 854 GlobalValue *G = cast<GlobalValue>(Op->stripPointerCasts()); 855 Vec.push_back(G); 856 } 857 return GV; 858 } 859 860 void Module::setPartialSampleProfileRatio(const ModuleSummaryIndex &Index) { 861 if (auto *SummaryMD = getProfileSummary(/*IsCS*/ false)) { 862 std::unique_ptr<ProfileSummary> ProfileSummary( 863 ProfileSummary::getFromMD(SummaryMD)); 864 if (ProfileSummary) { 865 if (ProfileSummary->getKind() != ProfileSummary::PSK_Sample || 866 !ProfileSummary->isPartialProfile()) 867 return; 868 uint64_t BlockCount = Index.getBlockCount(); 869 uint32_t NumCounts = ProfileSummary->getNumCounts(); 870 if (!NumCounts) 871 return; 872 double Ratio = (double)BlockCount / NumCounts; 873 ProfileSummary->setPartialProfileRatio(Ratio); 874 setProfileSummary(ProfileSummary->getMD(getContext()), 875 ProfileSummary::PSK_Sample); 876 } 877 } 878 } 879 880 StringRef Module::getDarwinTargetVariantTriple() const { 881 if (const auto *MD = getModuleFlag("darwin.target_variant.triple")) 882 return cast<MDString>(MD)->getString(); 883 return ""; 884 } 885 886 void Module::setDarwinTargetVariantTriple(StringRef T) { 887 addModuleFlag(ModFlagBehavior::Warning, "darwin.target_variant.triple", 888 MDString::get(getContext(), T)); 889 } 890 891 VersionTuple Module::getDarwinTargetVariantSDKVersion() const { 892 return getSDKVersionMD(getModuleFlag("darwin.target_variant.SDK Version")); 893 } 894 895 void Module::setDarwinTargetVariantSDKVersion(VersionTuple Version) { 896 addSDKVersionMD(Version, *this, "darwin.target_variant.SDK Version"); 897 } 898