147#define DEBUG_TYPE "mergefunc"
149STATISTIC(NumFunctionsMerged,
"Number of functions merged");
150STATISTIC(NumThunksWritten,
"Number of thunks generated");
151STATISTIC(NumAliasesWritten,
"Number of aliases generated");
152STATISTIC(NumDoubleWeak,
"Number of new functions created");
156 cl::desc(
"How many functions in a module could be used for "
157 "MergeFunctions to pass a basic correctness check. "
158 "'0' disables this check. Works only with '-debug' key."),
178 cl::desc(
"Preserve debug info in thunk when mergefunc "
179 "transformations are made."));
184 cl::desc(
"Allow mergefunc to create aliases"));
196 Function *getFunc()
const {
return F; }
210class MergeFunctions {
213 : FnTree(FunctionNodeCmp(&GlobalNumbers)), FAM(FAM) {}
215 template <
typename FuncContainer>
bool run(FuncContainer &Functions);
218 SmallPtrSet<GlobalValue *, 4> &getUsed();
223 class FunctionNodeCmp {
224 GlobalNumberState* GlobalNumbers;
227 FunctionNodeCmp(GlobalNumberState* GN) : GlobalNumbers(GN) {}
229 bool operator()(
const FunctionNode &
LHS,
const FunctionNode &
RHS)
const {
231 if (
LHS.getHash() !=
RHS.getHash())
232 return LHS.getHash() <
RHS.getHash();
233 FunctionComparator FCmp(
LHS.getFunc(),
RHS.getFunc(), GlobalNumbers);
234 return FCmp.compare() < 0;
237 using FnTreeType = std::set<FunctionNode, FunctionNodeCmp>;
239 GlobalNumberState GlobalNumbers;
243 std::vector<WeakTrackingVH> Deferred;
246 SmallPtrSet<GlobalValue *, 4> Used;
251 bool doFunctionalCheck(std::vector<WeakTrackingVH> &Worklist);
264 void removeUsers(
Value *V);
281 filterInstsUnrelatedToPDI(BasicBlock *GEntryBlock,
282 std::vector<Instruction *> &PDIUnrelatedWL,
283 std::vector<DbgVariableRecord *> &PDVRUnrelatedWL);
293 eraseInstsUnrelatedToPDI(std::vector<Instruction *> &PDIUnrelatedWL,
294 std::vector<DbgVariableRecord *> &PDVRUnrelatedWL);
312 void replaceFunctionInTree(
const FunctionNode &FN,
Function *
G);
323 DenseMap<AssertingVH<Function>, FnTreeType::iterator> FNodesInTree;
326 DenseMap<Function *, Function *> DelToNewMap;
343 MergeFunctions MF(
FAM);
347 MF.getUsed().insert_range(UsedV);
359 MergeFunctions MF(
FAM);
360 return MF.runOnFunctions(Funcs);
364bool MergeFunctions::doFunctionalCheck(std::vector<WeakTrackingVH> &Worklist) {
366 unsigned TripleNumber = 0;
369 dbgs() <<
"MERGEFUNC-VERIFY: Started for first " << Max <<
" functions.\n";
372 for (std::vector<WeakTrackingVH>::iterator
I = Worklist.begin(),
374 I != E && i < Max; ++
I, ++i) {
376 for (std::vector<WeakTrackingVH>::iterator J =
I; J != E && j < Max;
385 dbgs() <<
"MERGEFUNC-VERIFY: Non-symmetric; triple: " << TripleNumber
387 dbgs() << *F1 <<
'\n' << *F2 <<
'\n';
395 for (std::vector<WeakTrackingVH>::iterator K = J; K !=
E && k < Max;
396 ++k, ++K, ++TripleNumber) {
404 bool Transitive =
true;
406 if (Res1 != 0 && Res1 == Res4) {
408 Transitive = Res3 == Res1;
409 }
else if (Res3 != 0 && Res3 == -Res4) {
411 Transitive = Res3 == Res1;
412 }
else if (Res4 != 0 && -Res3 == Res4) {
414 Transitive = Res4 == -Res1;
418 dbgs() <<
"MERGEFUNC-VERIFY: Non-transitive; triple: "
419 << TripleNumber <<
"\n";
420 dbgs() <<
"Res1, Res3, Res4: " << Res1 <<
", " << Res3 <<
", "
422 dbgs() << *F1 <<
'\n' << *F2 <<
'\n' << *F3 <<
'\n';
429 dbgs() <<
"MERGEFUNC-VERIFY: " << (
Valid ?
"Passed." :
"Failed.") <<
"\n";
460 return !
F.isDeclaration() && !
F.hasAvailableExternallyLinkage() &&
461 !
F.hasFnAttribute(Attribute::NoIPA) &&
468template <
typename FuncContainer>
bool MergeFunctions::run(FuncContainer &M) {
473 std::vector<std::pair<stable_hash, Function *>> HashedFuncs;
474 for (
auto &Func : M) {
483 auto S = HashedFuncs.begin();
484 for (
auto I = HashedFuncs.begin(), IE = HashedFuncs.end();
I != IE; ++
I) {
487 if ((
I != S && std::prev(
I)->first ==
I->first) ||
488 (std::next(
I) != IE && std::next(
I)->first ==
I->first)) {
494 std::vector<WeakTrackingVH> Worklist;
495 Deferred.swap(Worklist);
500 LLVM_DEBUG(
dbgs() <<
"size of worklist: " << Worklist.size() <<
'\n');
507 if (!
F->isDeclaration() && !
F->hasAvailableExternallyLinkage() &&
508 !
F->hasFnAttribute(Attribute::NoIPA)) {
512 LLVM_DEBUG(
dbgs() <<
"size of FnTree: " << FnTree.size() <<
'\n');
513 }
while (!Deferred.empty());
516 FNodesInTree.clear();
517 GlobalNumbers.
clear();
525 [[maybe_unused]]
bool MergeResult = this->
run(Funcs);
526 assert(MergeResult == !DelToNewMap.empty());
527 return this->DelToNewMap;
547void MergeFunctions::eraseInstsUnrelatedToPDI(
548 std::vector<Instruction *> &PDIUnrelatedWL,
549 std::vector<DbgVariableRecord *> &PDVRUnrelatedWL) {
551 dbgs() <<
" Erasing instructions (in reverse order of appearance in "
552 "entry block) unrelated to parameter debug info from entry "
554 while (!PDIUnrelatedWL.empty()) {
559 I->eraseFromParent();
560 PDIUnrelatedWL.pop_back();
563 while (!PDVRUnrelatedWL.empty()) {
569 PDVRUnrelatedWL.pop_back();
572 LLVM_DEBUG(
dbgs() <<
" } // Done erasing instructions unrelated to parameter "
573 "debug info from entry block. \n");
577void MergeFunctions::eraseTail(
Function *
G) {
578 std::vector<BasicBlock *> WorklistBB;
580 BB.dropAllReferences();
581 WorklistBB.push_back(&BB);
583 while (!WorklistBB.empty()) {
586 WorklistBB.pop_back();
599void MergeFunctions::filterInstsUnrelatedToPDI(
600 BasicBlock *GEntryBlock, std::vector<Instruction *> &PDIUnrelatedWL,
601 std::vector<DbgVariableRecord *> &PDVRUnrelatedWL) {
602 std::set<Instruction *> PDIRelated;
603 std::set<DbgVariableRecord *> PDVRRelated;
616 PDVRRelated.insert(DbgVal);
624 auto ExamineDbgDeclare = [&PDIRelated,
639 if (
Value *Arg =
SI->getValueOperand()) {
644 PDIRelated.insert(AI);
648 PDIRelated.insert(
SI);
652 PDVRRelated.insert(DbgDecl);
683 ExamineDbgValue(&DVR);
686 ExamineDbgDeclare(&DVR);
690 if (BI->isTerminator() && &*BI == GEntryBlock->
getTerminator()) {
694 PDIRelated.insert(&*BI);
703 <<
" Report parameter debug info related/related instructions: {\n");
705 auto IsPDIRelated = [](
auto *Rec,
auto &Container,
auto &UnrelatedCont) {
706 if (Container.find(Rec) == Container.end()) {
710 UnrelatedCont.push_back(Rec);
721 IsPDIRelated(&DVR, PDVRRelated, PDVRUnrelatedWL);
722 IsPDIRelated(&
I, PDIRelated, PDIUnrelatedWL);
732 if (
F->hasKernelCallingConv())
737 if (
F->size() == 1) {
738 if (
F->front().size() < 2) {
740 <<
" is too small to bother creating a thunk for\n");
765 std::optional<uint64_t> GEntryCount =
G->getEntryCount();
767 std::vector<Instruction *> PDIUnrelatedWL;
768 std::vector<DbgVariableRecord *> PDVRUnrelatedWL;
772 LLVM_DEBUG(
dbgs() <<
"writeThunk: (MergeFunctionsPDI) Do not create a new "
773 "function as thunk; retain original: "
774 <<
G->getName() <<
"()\n");
775 GEntryBlock = &
G->getEntryBlock();
777 dbgs() <<
"writeThunk: (MergeFunctionsPDI) filter parameter related "
779 <<
G->getName() <<
"() {\n");
780 filterInstsUnrelatedToPDI(GEntryBlock, PDIUnrelatedWL, PDVRUnrelatedWL);
785 G->getAddressSpace(),
"",
G->getParent());
796 Args.push_back(Builder.CreateAggregateCast(&AI, FFTy->getParamType(i)));
800 CallInst *CI = Builder.CreateCall(
F, Args);
808 if (
H->getReturnType()->isVoidTy()) {
809 RI = Builder.CreateRetVoid();
811 RI = Builder.CreateRet(Builder.CreateAggregateCast(CI,
H->getReturnType()));
825 dbgs() <<
"writeThunk: (MergeFunctionsPDI) No DISubprogram for "
826 <<
G->getName() <<
"()\n");
829 eraseInstsUnrelatedToPDI(PDIUnrelatedWL, PDVRUnrelatedWL);
831 dbgs() <<
"} // End of parameter related debug info filtering for: "
832 <<
G->getName() <<
"()\n");
843 G->replaceAllUsesWith(NewG);
844 G->eraseFromParent();
857 assert(
F->hasLocalLinkage() ||
F->hasExternalLinkage()
858 ||
F->hasWeakLinkage() ||
F->hasLinkOnceLinkage());
867 G->getLinkage(),
"",
F,
G->getParent());
871 if (FAlign || GAlign)
874 F->setAlignment(std::nullopt);
876 GA->setVisibility(
G->getVisibility());
880 G->replaceAllUsesWith(GA);
881 G->eraseFromParent();
896 std::optional<uint64_t> FEntryCount =
F.getEntryCount();
897 std::optional<uint64_t> GEntryCount =
G.getEntryCount();
899 if (!FEntryCount && !GEntryCount && AllImports.
empty())
906 if (FEntryCount || GEntryCount)
908 GEntryCount ? *GEntryCount :
uint64_t{0});
909 F.setEntryCount(Sum, AllImports.
empty() ?
nullptr : &AllImports);
923 if (!ShouldErase && !ShouldAlias && !ShouldThunk)
927 mergeInstrProfMetadataInto(
F,
G);
932 G->eraseFromParent();
950 return F->hasWeakODRLinkage() ||
F->hasLinkOnceODRLinkage();
965 if (Weight == 0 || TotalWeight == 0 || BlockCount == 0)
967 APInt Num(128, BlockCount);
968 Num *=
APInt(128, Weight);
969 APInt Den(128, TotalWeight);
970 Num = (Num + Den.
lshr(1)).
udiv(Den);
972 "scaleToBlockCount: result exceeds uint64_t; Weight > TotalWeight?");
984 if (!HasDst && !HasSrc)
990 uint64_t DstTotal = 0, SrcTotal = 0;
996 assert((!HasDst || !HasSrc || DstWeights.
size() == SrcWeights.
size()) &&
997 "equivalent branch/select instructions must have matching weight "
999 size_t NumWeights = HasDst ? DstWeights.
size() : SrcWeights.
size();
1001 MergedWeights.
reserve(NumWeights);
1002 for (
size_t I = 0;
I < NumWeights; ++
I) {
1003 uint64_t DstW = HasDst ? DstWeights[
I] : 0;
1004 uint64_t SrcW = HasSrc ? SrcWeights[
I] : 0;
1024 for (
const InstrProfValueData &VD : VDs)
1025 Merged[VD.Value] =
SaturatingAdd(Merged[VD.Value], VD.Count);
1035 if (!HasDst && !HasSrc)
1044 if (HasDst && HasSrc && DstKind && SrcKind &&
1045 DstKind->getZExtValue() != SrcKind->getZExtValue()) {
1050 const ConstantInt *KindCI = DstKind ? DstKind : SrcKind;
1075 llvm::sort(VDs, [](
const InstrProfValueData &
A,
const InstrProfValueData &
B) {
1076 return A.Count >
B.Count;
1086void MergeFunctions::mergeInstrProfMetadataInto(
Function *Dst,
Function *Src) {
1099 MDNode *DstProf = DstI.getMetadata(LLVMContext::MD_prof);
1100 MDNode *SrcProf = SrcI.getMetadata(LLVMContext::MD_prof);
1111 const Instruction *SrcTerm = SrcBB->getTerminator();
1124 std::optional<uint64_t> FEntryCount =
F->getEntryCount();
1131 "if G is ODR, F must also be ODR due to ordering");
1143 F->getAddressSpace(),
"",
F->getParent());
1147 F->setComdat(
nullptr);
1153 F->replaceAllUsesWith(NewF);
1158 replaceDirectCallers(
G,
F);
1160 replaceDirectCallers(NewF,
F);
1168 writeThunkOrAliasIfNeeded(
F,
G,
true);
1173 writeThunkOrAliasIfNeeded(
F, NewF,
false);
1175 if (NewFAlign || GAlign)
1178 F->setAlignment(std::nullopt);
1181 ++NumFunctionsMerged;
1189 if (
G->hasGlobalUnnamedAddr() && !
Used.contains(
G)) {
1195 G->replaceAllUsesWith(
F);
1199 replaceDirectCallers(
G,
F);
1207 mergeInstrProfMetadataInto(
F,
G);
1209 G->eraseFromParent();
1210 ++NumFunctionsMerged;
1214 if (writeThunkOrAliasIfNeeded(
F,
G,
true))
1215 ++NumFunctionsMerged;
1220void MergeFunctions::replaceFunctionInTree(
const FunctionNode &FN,
1224 "The two functions must be equal");
1226 auto I = FNodesInTree.find(
F);
1227 assert(
I != FNodesInTree.end() &&
"F should be in FNodesInTree");
1228 assert(FNodesInTree.count(
G) == 0 &&
"FNodesInTree should not contain G");
1230 FnTreeType::iterator IterToFNInFnTree =
I->second;
1231 assert(&(*IterToFNInFnTree) == &FN &&
"F should map to FN in FNodesInTree.");
1233 FNodesInTree.erase(
I);
1234 FNodesInTree.insert({
G, IterToFNInFnTree});
1247 if (
F->isInterposable() !=
G->isInterposable()) {
1250 return !
F->isInterposable();
1253 if (
F->hasLocalLinkage() !=
G->hasLocalLinkage()) {
1256 return !
F->hasLocalLinkage();
1262 return F->getName() <=
G->getName();
1267bool MergeFunctions::insert(
Function *NewFunction) {
1268 std::pair<FnTreeType::iterator, bool>
Result =
1269 FnTree.insert(FunctionNode(NewFunction));
1272 assert(FNodesInTree.count(NewFunction) == 0);
1273 FNodesInTree.insert({NewFunction,
Result.first});
1279 const FunctionNode &OldF = *
Result.first;
1284 replaceFunctionInTree(*
Result.first, NewFunction);
1286 assert(OldF.getFunc() !=
F &&
"Must have swapped the functions.");
1291 Function *OldFunc = OldF.getFunc();
1294 <<
" == " << NewFunction->
getName() <<
'\n');
1297 mergeTwoFunctions(OldFunc, DeleteF);
1298 this->DelToNewMap.insert({DeleteF, OldFunc});
1304void MergeFunctions::remove(
Function *
F) {
1305 auto I = FNodesInTree.find(
F);
1306 if (
I != FNodesInTree.end()) {
1308 FnTree.erase(
I->second);
1311 FNodesInTree.erase(
I);
1312 Deferred.emplace_back(
F);
1318void MergeFunctions::removeUsers(
Value *V) {
1319 for (
User *U :
V->users())
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
This file implements a class to represent arbitrary precision integral constant values and operations...
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
This file defines the DenseMap class.
This file defines the DenseSet and SmallDenseSet classes.
Module.h This file contains the declarations for the Module class.
This header defines various interfaces for pass management in LLVM.
This defines the Use class.
static void mergeEntryCountsAndImportsInto(Function &F, Function &G)
static uint64_t getBlockCountForMerging(const BlockFrequencyInfo &BFI, const BasicBlock *BB)
static void mergeValueProfileOnInstructions(Instruction *DstI, const Instruction *SrcI)
static bool canCreateAliasFor(Function *F)
static bool isEligibleForMerging(Function &F)
Check whether F is eligible for function merging.
static bool isODR(const Function *F)
Returns true if F is either weak_odr or linkonce_odr.
static cl::opt< unsigned > NumFunctionsForVerificationCheck("mergefunc-verify", cl::desc("How many functions in a module could be used for " "MergeFunctions to pass a basic correctness check. " "'0' disables this check. Works only with '-debug' key."), cl::init(0), cl::Hidden)
static DenseSet< GlobalValue::GUID > unionImportGUIDs(const Function &F, const Function &G)
static bool canCreateThunkFor(Function *F)
Whether this function may be replaced by a forwarding thunk.
static cl::opt< bool > MergeFunctionsPDI("mergefunc-preserve-debug-info", cl::Hidden, cl::init(false), cl::desc("Preserve debug info in thunk when mergefunc " "transformations are made."))
static uint64_t scaleToBlockCount(uint64_t Weight, uint64_t TotalWeight, uint64_t BlockCount)
static bool hasDistinctMetadataIntrinsic(const Function &F)
Check whether F has an intrinsic which references distinct metadata as an operand.
Function * asPtr(Function *Fn)
static void addValueProfile(const Instruction &I, InstrProfValueKind Kind, DenseMap< uint64_t, uint64_t > &Merged)
static void copyMetadataIfPresent(Function *From, Function *To, StringRef Kind)
Copy all metadata of a specific kind from one function to another.
static cl::opt< bool > MergeFunctionsAliases("mergefunc-use-aliases", cl::Hidden, cl::init(false), cl::desc("Allow mergefunc to create aliases"))
static void mergeBranchWeightsOnInstructions(Instruction *DstI, const Instruction *SrcI, const BlockFrequencyInfo &DstBFI, const BlockFrequencyInfo &SrcBFI)
static bool isFuncOrderCorrect(const Function *F, const Function *G)
FunctionAnalysisManager FAM
This file builds on the ADT/GraphTraits.h file to build a generic graph post order iterator.
This file contains the declarations for profiling metadata utility functions.
This file defines the SmallVector class.
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
Class for arbitrary precision integers.
LLVM_ABI APInt udiv(const APInt &RHS) const
Unsigned division operation.
unsigned getActiveBits() const
Compute the number of active bits in the value.
uint64_t getLimitedValue(uint64_t Limit=UINT64_MAX) const
If this value is smaller than the specified limit, return it, otherwise return the limit value.
APInt lshr(unsigned shiftAmt) const
Logical right-shift function.
an instruction to allocate memory on the stack
void invalidate(IRUnitT &IR, const PreservedAnalyses &PA)
Invalidate cached analyses for an IR unit.
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
This class represents an incoming formal argument to a Function.
Represent a constant reference to an array (0 or more elements consecutively in memory),...
const T & front() const
Get the first element.
bool empty() const
Check if the array is empty.
Value handle that asserts if the Value is deleted.
LLVM Basic Block Representation.
iterator begin()
Instruction iterator methods.
static BasicBlock * Create(LLVMContext &Context, const Twine &Name="", Function *Parent=nullptr, BasicBlock *InsertBefore=nullptr)
Creates a new BasicBlock.
LLVM_ABI SymbolTableList< BasicBlock >::iterator eraseFromParent()
Unlink 'this' from the containing function and delete it.
InstListType::iterator iterator
Instruction iterators...
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction; assumes that the block is well-formed.
Analysis pass which computes BlockFrequencyInfo.
BlockFrequencyInfo pass uses BlockFrequencyInfoImpl implementation to estimate IR basic block frequen...
LLVM_ABI std::optional< uint64_t > getBlockProfileCount(const BasicBlock *BB, bool AllowSynthetic=false) const
Returns the estimated profile count of BB.
Analysis pass which computes BranchProbabilityInfo.
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
void setCallingConv(CallingConv::ID CC)
bool isCallee(Value::const_user_iterator UI) const
Determine whether the passed iterator points to the callee operand's Use.
void setAttributes(AttributeList A)
Set the attributes for this call.
This class represents a function call, abstracting a target machine's calling convention.
void setTailCallKind(TailCallKind TCK)
This is the shared class of boolean and integer constants.
uint64_t getZExtValue() const
Return the constant as a 64-bit unsigned integer value after it has been zero extended as appropriate...
LLVM_ABI DISubprogram * getSubprogram() const
Get the subprogram for this scope.
Subprogram description. Uses SubclassData1.
LLVM_ABI void eraseFromParent()
Record of a variable value-assignment, aka a non instruction representation of the dbg....
LLVM_ABI void print(raw_ostream &O, bool IsForDebug=false) const
bool isDbgDeclare() const
Implements a dense probed hash-table based set.
FunctionComparator - Compares two functions to determine whether or not they will generate machine co...
LLVM_ABI int compare()
Test whether the two functions have equivalent behaviour.
Class to represent function types.
static Function * Create(FunctionType *Ty, LinkageTypes Linkage, unsigned AddrSpace, const Twine &N="", Module *M=nullptr)
MaybeAlign getAlign() const
Returns the alignment of the given function.
void setEntryCount(uint64_t Count, const DenseSet< GlobalValue::GUID > *Imports=nullptr)
Set the entry count for this function.
void copyAttributesFrom(const Function *Src)
copyAttributesFrom - copy all additional attributes (those not needed to create a Function) from the ...
static LLVM_ABI GlobalAlias * create(Type *Ty, unsigned AddressSpace, LinkageTypes Linkage, const Twine &Name, Constant *Aliasee, Module *Parent)
If a parent module is specified, the alias is automatically inserted into the end of the specified mo...
void erase(GlobalValue *Global)
LLVM_ABI void setComdat(Comdat *C)
LLVM_ABI void addMetadata(unsigned KindID, MDNode &MD)
Add a metadata attachment.
MDNode * getMetadata(unsigned KindID) const
Get the metadata of given kind attached to this GlobalObject.
Module * getParent()
Get the module that this global value is contained inside of...
@ PrivateLinkage
Like Internal, but omit from symbol table.
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
LLVM_ABI InstListType::iterator eraseFromParent()
This method unlinks 'this' from the containing basic block and deletes it.
LLVM_ABI const Function * getFunction() const
Return the function this instruction belongs to.
MDNode * getMetadata(unsigned KindID) const
Get the metadata of given kind attached to this Instruction.
LLVM_ABI void setMetadata(unsigned KindID, MDNode *Node)
Set the metadata of the specified kind to the specified node.
void setDebugLoc(DebugLoc Loc)
Set the debug location information for this instruction.
const MDOperand & getOperand(unsigned I) const
static MDTuple * get(LLVMContext &Context, ArrayRef< Metadata * > MDs)
LLVMContext & getContext() const
static LLVM_ABI bool runOnModule(Module &M, ModuleAnalysisManager &AM)
LLVM_ABI PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM)
static LLVM_ABI DenseMap< Function *, Function * > runOnFunctions(ArrayRef< Function * > Funcs, ModuleAnalysisManager &AM)
A Module instance is used to store all the information related to an LLVM module.
Class to represent pointers.
A set of analyses that are preserved following a run of a transformation pass.
static PreservedAnalyses none()
Convenience factory function for the empty preserved set.
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
PreservedAnalyses & abandon()
Mark an analysis as abandoned.
Return a value (possibly void), from a function.
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
void reserve(size_type N)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
An instruction for storing to memory.
Represent a constant reference to a string, i.e.
A Use represents the edge between a Value definition and its users.
LLVM Value Representation.
LLVM_ABI void print(raw_ostream &O, bool IsForDebug=false) const
Implement operator<< on Value.
iterator_range< user_iterator > users()
iterator_range< use_iterator > uses()
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
LLVM_ABI void takeName(Value *V)
Transfer the name from V to this value.
Value handle that is nullable, but tries to track the Value.
std::pair< iterator, bool > insert(const ValueT &V)
const ParentTy * getParent() const
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
constexpr char Args[]
Key for Kernel::Metadata::mArgs.
@ SwiftTail
This follows the Swift calling convention in how arguments are passed but guarantees tail calls will ...
int compare(DigitsT LDigits, int16_t LScale, DigitsT RDigits, int16_t RScale)
Compare two scaled numbers.
@ Valid
The data is already valid.
initializer< Ty > init(const Ty &Val)
DXILDebugInfoMap run(Module &M)
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > dyn_extract(Y &&MD)
Extract a Value from Metadata, if any.
LLVM_ABI std::error_code remove(const Twine &path, bool IgnoreNonExisting=true)
Remove path.
This is an optimization pass for GlobalISel generic memory operations.
auto drop_begin(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the first N elements excluded.
void stable_sort(R &&Range)
LLVM_ABI bool extractProfTotalWeight(const MDNode *ProfileData, uint64_t &TotalWeights)
Retrieve the total of all weights from MD_prof data.
detail::zippy< detail::zip_first, T, U, Args... > zip_equal(T &&t, U &&u, Args &&...args)
zip iterator that assumes that all iteratees have the same length.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
iterator_range< early_inc_iterator_impl< detail::IterOfRange< RangeT > > > make_early_inc_range(RangeT &&Range)
Make a range that does early increment to allow mutation of the underlying range without disrupting i...
uint64_t stable_hash
An opaque object representing a stable hash code.
InnerAnalysisManagerProxy< FunctionAnalysisManager, Module > FunctionAnalysisManagerModuleProxy
Provide the FunctionAnalysisManager to Module proxy.
LLVM_ABI bool hasBranchWeightOrigin(const Instruction &I)
Check if Branch Weight Metadata has an "expected" field from an llvm.expect* intrinsic.
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Value
auto dyn_cast_or_null(const Y &Val)
LLVM_ABI void annotateValueSite(Module &M, Instruction &Inst, const InstrProfRecord &InstrProfR, InstrProfValueKind ValueKind, uint32_t SiteIndx, uint32_t MaxMDCount=3)
Get the value profile data for value site SiteIdx from InstrProfR and annotate the instruction Inst w...
void sort(IteratorTy Start, IteratorTy End)
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
LLVM_ABI SmallVector< InstrProfValueData, 4 > getValueProfDataFromInst(const Instruction &Inst, InstrProfValueKind ValueKind, uint32_t MaxNumValueData, uint64_t &TotalC, bool GetNoICPValue=false)
Extract the value profile data from Inst and returns them if Inst is annotated with value profile dat...
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
LLVM_ABI bool isValueProfileMD(const MDNode *ProfileData)
Checks if an MDNode contains value profiling Metadata.
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Count
DWARFExpression::Operation Op
ArrayRef(const T &OneElt) -> ArrayRef< T >
LLVM_ABI bool extractBranchWeights(const MDNode *ProfileData, SmallVectorImpl< uint32_t > &Weights)
Extract branch weights from MD_prof metadata.
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
AnalysisManager< Function > FunctionAnalysisManager
Convenience typedef for the Function analysis manager.
LLVM_ABI void setFittedBranchWeights(Instruction &I, ArrayRef< uint64_t > Weights, bool IsExpected, bool ElideAllZero=false)
Variant of setBranchWeights where the Weights will be fit first to uint32_t by shifting right.
std::enable_if_t< std::is_unsigned_v< T >, T > SaturatingAdd(T X, T Y, bool *ResultOverflowed=nullptr)
Add two unsigned integers, X and Y, of type T.
static auto filterDbgVars(iterator_range< simple_ilist< DbgRecord >::iterator > R)
Filter the DbgRecord range to DbgVariableRecord types only and downcast.
LLVM_ABI stable_hash StructuralHash(const Function &F, bool DetailedHash=false)
Returns a hash of the function F.
AnalysisManager< Module > ModuleAnalysisManager
Convenience typedef for the Module analysis manager.
LLVM_ABI GlobalVariable * collectUsedGlobalVariables(const Module &M, SmallVectorImpl< GlobalValue * > &Vec, bool CompilerUsed)
Given "llvm.used" or "llvm.compiler.used" as a global name, collect the initializer elements of that ...
This struct is a compact representation of a valid (power of two) or undefined (0) alignment.
Align valueOrOne() const
For convenience, returns a valid alignment or 1 if undefined.
Function object to check whether the first component of a container supported by std::get (like std::...