#include "llvm/IR/Module.h"
#include "SymbolTableListTraitsImpl.h"
#include "llvm/ADT/SmallString.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringMap.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/ADT/Twine.h"
#include "llvm/IR/Attributes.h"
#include "llvm/IR/Comdat.h"
#include "llvm/IR/Constants.h"
#include "llvm/IR/DataLayout.h"
#include "llvm/IR/DebugInfoMetadata.h"
#include "llvm/IR/DerivedTypes.h"
#include "llvm/IR/Function.h"
#include "llvm/IR/GVMaterializer.h"
#include "llvm/IR/GlobalAlias.h"
#include "llvm/IR/GlobalIFunc.h"
#include "llvm/IR/GlobalValue.h"
#include "llvm/IR/GlobalVariable.h"
#include "llvm/IR/LLVMContext.h"
#include "llvm/IR/Metadata.h"
#include "llvm/IR/ModuleSummaryIndex.h"
#include "llvm/IR/SymbolTableListTraits.h"
#include "llvm/IR/Type.h"
#include "llvm/IR/TypeFinder.h"
#include "llvm/IR/Value.h"
#include "llvm/IR/ValueSymbolTable.h"
#include "llvm/Support/Casting.h"
#include "llvm/Support/CodeGen.h"
#include "llvm/Support/Error.h"
#include "llvm/Support/MemoryBuffer.h"
#include "llvm/Support/Path.h"
#include "llvm/Support/RandomNumberGenerator.h"
#include "llvm/Support/VersionTuple.h"
#include <algorithm>
#include <cassert>
#include <cstdint>
#include <memory>
#include <optional>
#include <utility>
#include <vector>
usingnamespacellvm;
extern cl::opt<bool> UseNewDbgInfoFormat;
template class llvm::SymbolTableListTraits<Function>;
template class llvm::SymbolTableListTraits<GlobalVariable>;
template class llvm::SymbolTableListTraits<GlobalAlias>;
template class llvm::SymbolTableListTraits<GlobalIFunc>;
Module::Module(StringRef MID, LLVMContext &C)
: … { … }
Module::~Module() { … }
void Module::removeDebugIntrinsicDeclarations() { … }
std::unique_ptr<RandomNumberGenerator>
Module::createRNG(const StringRef Name) const { … }
GlobalValue *Module::getNamedValue(StringRef Name) const { … }
unsigned Module::getNumNamedValues() const { … }
unsigned Module::getMDKindID(StringRef Name) const { … }
void Module::getMDKindNames(SmallVectorImpl<StringRef> &Result) const { … }
void Module::getOperandBundleTags(SmallVectorImpl<StringRef> &Result) const { … }
FunctionCallee Module::getOrInsertFunction(StringRef Name, FunctionType *Ty,
AttributeList AttributeList) { … }
FunctionCallee Module::getOrInsertFunction(StringRef Name, FunctionType *Ty) { … }
Function *Module::getFunction(StringRef Name) const { … }
GlobalVariable *Module::getGlobalVariable(StringRef Name,
bool AllowLocal) const { … }
Constant *Module::getOrInsertGlobal(
StringRef Name, Type *Ty,
function_ref<GlobalVariable *()> CreateGlobalCallback) { … }
Constant *Module::getOrInsertGlobal(StringRef Name, Type *Ty) { … }
GlobalAlias *Module::getNamedAlias(StringRef Name) const { … }
GlobalIFunc *Module::getNamedIFunc(StringRef Name) const { … }
NamedMDNode *Module::getNamedMetadata(StringRef Name) const { … }
NamedMDNode *Module::getOrInsertNamedMetadata(StringRef Name) { … }
void Module::eraseNamedMetadata(NamedMDNode *NMD) { … }
bool Module::isValidModFlagBehavior(Metadata *MD, ModFlagBehavior &MFB) { … }
void Module::
getModuleFlagsMetadata(SmallVectorImpl<ModuleFlagEntry> &Flags) const { … }
Metadata *Module::getModuleFlag(StringRef Key) const { … }
NamedMDNode *Module::getOrInsertModuleFlagsMetadata() { … }
void Module::addModuleFlag(ModFlagBehavior Behavior, StringRef Key,
Metadata *Val) { … }
void Module::addModuleFlag(ModFlagBehavior Behavior, StringRef Key,
Constant *Val) { … }
void Module::addModuleFlag(ModFlagBehavior Behavior, StringRef Key,
uint32_t Val) { … }
void Module::addModuleFlag(MDNode *Node) { … }
void Module::setModuleFlag(ModFlagBehavior Behavior, StringRef Key,
Metadata *Val) { … }
void Module::setModuleFlag(ModFlagBehavior Behavior, StringRef Key,
Constant *Val) { … }
void Module::setModuleFlag(ModFlagBehavior Behavior, StringRef Key,
uint32_t Val) { … }
void Module::setDataLayout(StringRef Desc) { … }
void Module::setDataLayout(const DataLayout &Other) { … }
DICompileUnit *Module::debug_compile_units_iterator::operator*() const { … }
DICompileUnit *Module::debug_compile_units_iterator::operator->() const { … }
void Module::debug_compile_units_iterator::SkipNoDebugCUs() { … }
iterator_range<Module::global_object_iterator> Module::global_objects() { … }
iterator_range<Module::const_global_object_iterator>
Module::global_objects() const { … }
iterator_range<Module::global_value_iterator> Module::global_values() { … }
iterator_range<Module::const_global_value_iterator>
Module::global_values() const { … }
void Module::setMaterializer(GVMaterializer *GVM) { … }
Error Module::materialize(GlobalValue *GV) { … }
Error Module::materializeAll() { … }
Error Module::materializeMetadata() { … }
std::vector<StructType *> Module::getIdentifiedStructTypes() const { … }
std::string Module::getUniqueIntrinsicName(StringRef BaseName, Intrinsic::ID Id,
const FunctionType *Proto) { … }
void Module::dropAllReferences() { … }
unsigned Module::getNumberRegisterParameters() const { … }
unsigned Module::getDwarfVersion() const { … }
bool Module::isDwarf64() const { … }
unsigned Module::getCodeViewFlag() const { … }
unsigned Module::getInstructionCount() const { … }
Comdat *Module::getOrInsertComdat(StringRef Name) { … }
PICLevel::Level Module::getPICLevel() const { … }
void Module::setPICLevel(PICLevel::Level PL) { … }
PIELevel::Level Module::getPIELevel() const { … }
void Module::setPIELevel(PIELevel::Level PL) { … }
std::optional<CodeModel::Model> Module::getCodeModel() const { … }
void Module::setCodeModel(CodeModel::Model CL) { … }
std::optional<uint64_t> Module::getLargeDataThreshold() const { … }
void Module::setLargeDataThreshold(uint64_t Threshold) { … }
void Module::setProfileSummary(Metadata *M, ProfileSummary::Kind Kind) { … }
Metadata *Module::getProfileSummary(bool IsCS) const { … }
bool Module::getSemanticInterposition() const { … }
void Module::setSemanticInterposition(bool SI) { … }
void Module::setOwnedMemoryBuffer(std::unique_ptr<MemoryBuffer> MB) { … }
bool Module::getRtLibUseGOT() const { … }
void Module::setRtLibUseGOT() { … }
bool Module::getDirectAccessExternalData() const { … }
void Module::setDirectAccessExternalData(bool Value) { … }
UWTableKind Module::getUwtable() const { … }
void Module::setUwtable(UWTableKind Kind) { … }
FramePointerKind Module::getFramePointer() const { … }
void Module::setFramePointer(FramePointerKind Kind) { … }
StringRef Module::getStackProtectorGuard() const { … }
void Module::setStackProtectorGuard(StringRef Kind) { … }
StringRef Module::getStackProtectorGuardReg() const { … }
void Module::setStackProtectorGuardReg(StringRef Reg) { … }
StringRef Module::getStackProtectorGuardSymbol() const { … }
void Module::setStackProtectorGuardSymbol(StringRef Symbol) { … }
int Module::getStackProtectorGuardOffset() const { … }
void Module::setStackProtectorGuardOffset(int Offset) { … }
unsigned Module::getOverrideStackAlignment() const { … }
unsigned Module::getMaxTLSAlignment() const { … }
void Module::setOverrideStackAlignment(unsigned Align) { … }
static void addSDKVersionMD(const VersionTuple &V, Module &M, StringRef Name) { … }
void Module::setSDKVersion(const VersionTuple &V) { … }
static VersionTuple getSDKVersionMD(Metadata *MD) { … }
VersionTuple Module::getSDKVersion() const { … }
GlobalVariable *llvm::collectUsedGlobalVariables(
const Module &M, SmallVectorImpl<GlobalValue *> &Vec, bool CompilerUsed) { … }
void Module::setPartialSampleProfileRatio(const ModuleSummaryIndex &Index) { … }
StringRef Module::getDarwinTargetVariantTriple() const { … }
void Module::setDarwinTargetVariantTriple(StringRef T) { … }
VersionTuple Module::getDarwinTargetVariantSDKVersion() const { … }
void Module::setDarwinTargetVariantSDKVersion(VersionTuple Version) { … }