88#define DEBUG_TYPE "tailcallelim"
90STATISTIC(NumEliminated,
"Number of tail calls removed");
91STATISTIC(NumRetDuped,
"Number of return duplicated");
92STATISTIC(NumAccumAdded,
"Number of accumulators introduced");
94 "Number of tail calls/recursion eliminations prevented due to cold "
95 "calling convention or attribute");
99 cl::desc(
"Force disabling recomputing of function entry count, on "
100 "successful tail recursion elimination."));
104 cl::desc(
"Disable tail call elimination and optimization for cold calls or "
105 "in cold functions"));
117 if (Caller && (Caller->hasFnAttribute(Attribute::Cold) ||
153 return !AI || AI->isStaticAlloca();
158struct AllocaDerivedValueTracker {
162 void walk(
Value *Root) {
164 SmallPtrSet<Use *, 32> Visited;
166 auto AddUsesToWorklist = [&](
Value *
V) {
167 for (
auto &U :
V->uses()) {
168 if (!Visited.
insert(&U).second)
174 AddUsesToWorklist(Root);
176 while (!Worklist.
empty()) {
180 switch (
I->getOpcode()) {
181 case Instruction::Call:
182 case Instruction::Invoke: {
188 if (CB.isArgOperand(U) && CB.isByValArgument(CB.getArgOperandNo(U)))
191 CB.isDataOperand(U) && CB.doesNotCapture(CB.getDataOperandNo(U));
192 callUsesLocalStack(CB, IsNocapture);
200 case Instruction::Load: {
205 case Instruction::Store: {
206 if (
U->getOperandNo() == 0)
207 EscapePoints.insert(
I);
210 case Instruction::BitCast:
211 case Instruction::GetElementPtr:
212 case Instruction::PHI:
213 case Instruction::Select:
214 case Instruction::AddrSpaceCast:
217 EscapePoints.insert(
I);
221 AddUsesToWorklist(
I);
225 void callUsesLocalStack(CallBase &CB,
bool IsNocapture) {
227 AllocaUsers.insert(&CB);
235 EscapePoints.insert(&CB);
238 SmallPtrSet<Instruction *, 32> AllocaUsers;
239 SmallPtrSet<Instruction *, 32> EscapePoints;
245 if (
F.callsFunctionThatReturnsTwice())
249 AllocaDerivedValueTracker Tracker;
251 if (Arg.hasByValAttr())
287 VisitType Escaped = UNESCAPED;
289 for (
auto &
I : *BB) {
290 if (Tracker.EscapePoints.count(&
I))
303 if (
II->getIntrinsicID() == Intrinsic::stackrestore)
314 ++NumTREPreventedCold;
324 bool SafeToTail =
true;
325 for (
auto &Arg : CI->
args()) {
329 if (!
A->hasByValAttr())
338 <<
"marked as tail call candidate (readnone)";
346 if (!IsNoTail && Escaped == UNESCAPED && !Tracker.AllocaUsers.count(CI))
351 auto &State = Visited[SuccBB];
352 if (State < Escaped) {
354 if (State == ESCAPED)
361 if (!WorklistEscaped.
empty()) {
366 while (!WorklistUnescaped.
empty()) {
368 if (Visited[NextBB] == UNESCAPED) {
377 for (
CallInst *CI : DeferredTails) {
378 if (Visited[CI->getParent()] != ESCAPED) {
381 LLVM_DEBUG(
dbgs() <<
"Marked as tail call candidate: " << *CI <<
"\n");
396 if (
II->getIntrinsicID() == Intrinsic::lifetime_end)
401 if (
I->mayHaveSideEffects())
450class TailRecursionEliminator {
452 const TargetTransformInfo *TTI;
454 OptimizationRemarkEmitter *ORE;
456 BlockFrequencyInfo *
const BFI;
457 ProfileSummaryInfo *
const PSI;
458 const bool UpdateFunctionEntryCount;
469 PHINode *RetPN =
nullptr;
472 PHINode *RetKnownPN =
nullptr;
483 PHINode *AccPN =
nullptr;
488 Constant *AccumulatorInitialValue =
nullptr;
490 TailRecursionEliminator(
Function &F,
const TargetTransformInfo *TTI,
492 DomTreeUpdater &DTU, BlockFrequencyInfo *BFI,
493 ProfileSummaryInfo *PSI,
494 bool UpdateFunctionEntryCount)
495 : F(F), TTI(TTI), AA(AA), ORE(ORE), DTU(DTU), BFI(BFI), PSI(PSI),
496 UpdateFunctionEntryCount(UpdateFunctionEntryCount),
498 BFI ? BFI->getBlockFreq(&F.getEntryBlock()).getFrequency() : 0
U),
499 OrigEntryCount(F.getEntryCount() ? *F.getEntryCount() : 0) {
502 assert(OrigEntryBBFreq != 0 &&
503 "If a BFI was provided, the function should have an entry "
504 "basic block with a non-zero frequency.");
508 Constant *findBaseCaseRetConstant(Instruction *AccRecInstr);
510 Constant *canTransformAccumulatorRecursion(Instruction *
I, CallInst *CI);
512 CallInst *findTRECandidate(BasicBlock *BB);
514 void createTailRecurseLoopHeader(CallInst *CI);
516 void insertAccumulator(Instruction *AccRecInstr);
518 bool eliminateCall(CallInst *CI);
520 void cleanupAndFinalize();
522 bool processBlock(BasicBlock &BB);
524 void copyByValueOperandIntoLocalTemp(CallInst *CI,
int OpndIdx);
526 void copyLocalTempOfByValueOperandIntoArguments(CallInst *CI,
int OpndIdx);
529 static bool eliminate(
Function &F,
const TargetTransformInfo *TTI,
531 DomTreeUpdater &DTU, BlockFrequencyInfo *BFI,
532 ProfileSummaryInfo *PSI,
bool UpdateFunctionEntryCount);
558TailRecursionEliminator::findBaseCaseRetConstant(
Instruction *AccRecInstr) {
563 auto SetOrMatchBaseCase = [&](
Constant *
C) {
566 return BaseCaseVal ==
C;
569 for (BasicBlock &BB :
F) {
571 if (!RI || !RI->getReturnValue())
574 Value *RV = RI->getReturnValue();
578 if (RV == AccRecInstr)
586 if (!
C || !SetOrMatchBaseCase(
C))
590 for (SelectInst *SI : RetSelects) {
592 if (!
C || !SetOrMatchBaseCase(
C))
603TailRecursionEliminator::canTransformAccumulatorRecursion(Instruction *
I,
606 if ((!
I->isAssociative() || !
I->isCommutative()) &&
607 !IsUnaryAccumulatorRecurrence)
610 assert(
I->getNumOperands() >= 2 &&
611 "Associative/commutative operations should have at least 2 args!");
614 if (IsUnaryAccumulatorRecurrence) {
617 if (
I->getOperand(0) != CI)
622 AccInitVal = findBaseCaseRetConstant(
I);
631 if ((
I->getOperand(0) == CI &&
I->getOperand(1) == CI) ||
632 (
I->getOperand(0) != CI &&
I->getOperand(1) != CI))
643CallInst *TailRecursionEliminator::findTRECandidate(BasicBlock *BB) {
646 if (&BB->
front() == TI)
651 CallInst *CI =
nullptr;
658 if (BBI == BB->
begin())
664 "Incompatible call site attributes(Tail,NoTail)");
672 if (BB == &
F.getEntryBlock() && &BB->
front() == CI &&
679 for (;
I !=
E && FI != FE; ++
I, ++FI)
680 if (*
I != &*FI)
break;
681 if (
I ==
E && FI == FE)
688void TailRecursionEliminator::createTailRecurseLoopHeader(CallInst *CI) {
689 HeaderBB = &
F.getEntryBlock();
692 HeaderBB->
setName(
"tailrecurse");
701 NEBI = NewEntry->
begin();
705 AI->moveBefore(NEBI);
715 I->replaceAllUsesWith(PN);
717 ArgumentPHIs.push_back(PN);
724 Type *RetType =
F.getReturnType();
726 Type *BoolType = Type::getInt1Ty(
F.getContext());
742void TailRecursionEliminator::insertAccumulator(Instruction *AccRecInstr) {
743 assert(!AccPN &&
"Trying to insert multiple accumulators");
745 AccumulatorRecursionInstr = AccRecInstr;
761 if (
P == &
F.getEntryBlock()) {
773void TailRecursionEliminator::copyByValueOperandIntoLocalTemp(CallInst *CI,
777 const DataLayout &
DL =
F.getDataLayout();
784 Value *NewAlloca =
new AllocaInst(
785 AggTy,
DL.getAllocaAddrSpace(),
nullptr, Alignment,
789 Value *
Size = Builder.getInt64(
DL.getTypeAllocSize(AggTy));
792 Builder.CreateMemCpy(NewAlloca, Alignment,
800void TailRecursionEliminator::copyLocalTempOfByValueOperandIntoArguments(
801 CallInst *CI,
int OpndIdx) {
804 const DataLayout &
DL =
F.getDataLayout();
810 Value *
Size = Builder.getInt64(
DL.getTypeAllocSize(AggTy));
814 Builder.CreateMemCpy(
F.getArg(OpndIdx), Alignment,
819bool TailRecursionEliminator::eliminateCall(CallInst *CI) {
828 for (++BBI; &*BBI != Ret; ++BBI) {
837 Constant *AccInitVal = canTransformAccumulatorRecursion(&*BBI, CI);
839 if (AccPN || !AccInitVal)
848 AccumulatorInitialValue = AccInitVal;
855 return OptimizationRemark(
DEBUG_TYPE,
"tailcall-recursion", CI)
856 <<
"transforming tail recursion into loop";
862 createTailRecurseLoopHeader(CI);
867 copyByValueOperandIntoLocalTemp(CI,
I);
875 copyLocalTempOfByValueOperandIntoArguments(CI,
I);
881 F.removeParamAttr(
I, Attribute::ReadOnly);
882 ArgumentPHIs[
I]->addIncoming(
F.getArg(
I), BB);
888 insertAccumulator(AccRecInstr);
914 RetSelects.push_back(SI);
921 AccPN->
addIncoming(AccRecInstr ? AccRecInstr : AccPN, BB);
931 DTU.
applyUpdates({{DominatorTree::Insert, BB, HeaderBB}});
935 assert(
F.getEntryCount().has_value());
939 assert(&
F.getEntryBlock() != BB);
940 auto RelativeBBFreq =
941 static_cast<double>(BFI->
getBlockFreq(BB).getFrequency()) /
942 static_cast<double>(OrigEntryBBFreq);
944 static_cast<uint64_t>(std::round(RelativeBBFreq * OrigEntryCount));
945 auto OldEntryCount = *
F.getEntryCount();
946 if (OldEntryCount <= ToSubtract) {
948 errs() <<
"[TRE] The entrycount attributable to the recursive call, "
950 <<
", should be strictly lower than the function entry count, "
951 << OldEntryCount <<
"\n");
953 F.setEntryCount(OldEntryCount - ToSubtract);
959void TailRecursionEliminator::cleanupAndFinalize() {
965 for (PHINode *PN : ArgumentPHIs) {
974 Instruction *AccRecInstr = AccumulatorRecursionInstr;
975 auto MaterializeAccumulator = [&](
Value *OtherVal,
978 New->setName(
"accumulator.ret.tr");
979 New->setOperand(AccRecInstr->
getOperand(0) == AccPN, OtherVal);
980 New->insertBefore(InsertPt);
985 if (RetSelects.empty()) {
997 for (BasicBlock &BB :
F) {
1019 for (BasicBlock &BB :
F) {
1028 RetSelects.push_back(SI);
1035 for (SelectInst *SI : RetSelects) {
1037 SI->setFalseValue(AccPN);
1040 MaterializeAccumulator(
SI->getFalseValue(),
SI->getIterator()));
1048bool TailRecursionEliminator::processBlock(BasicBlock &BB) {
1058 CallInst *CI = findTRECandidate(&BB);
1064 <<
"INTO UNCOND BRANCH PRED: " << BB);
1081 CallInst *CI = findTRECandidate(&BB);
1084 return eliminateCall(CI);
1090bool TailRecursionEliminator::eliminate(
1092 OptimizationRemarkEmitter *ORE, DomTreeUpdater &DTU,
1093 BlockFrequencyInfo *BFI, ProfileSummaryInfo *PSI,
1094 bool UpdateFunctionEntryCount) {
1095 if (
F.getFnAttribute(
"disable-tail-calls").getValueAsBool())
1098 bool MadeChange =
false;
1103 if (
F.getFunctionType()->isVarArg())
1110 TailRecursionEliminator TRE(
F,
TTI, AA, ORE, DTU, BFI, PSI,
1111 UpdateFunctionEntryCount);
1113 for (BasicBlock &BB :
F)
1114 MadeChange |= TRE.processBlock(BB);
1116 TRE.cleanupAndFinalize();
1122struct TailCallElim :
public FunctionPass {
1124 TailCallElim() : FunctionPass(
ID) {
1128 void getAnalysisUsage(AnalysisUsage &AU)
const override {
1131 AU.
addRequired<OptimizationRemarkEmitterWrapperPass>();
1138 if (skipFunction(
F))
1141 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>();
1142 auto *DT = DTWP ? &DTWP->getDomTree() :
nullptr;
1143 auto *PDTWP = getAnalysisIfAvailable<PostDominatorTreeWrapperPass>();
1144 auto *PDT = PDTWP ? &PDTWP->getPostDomTree() :
nullptr;
1148 DomTreeUpdater DTU(DT, PDT, DomTreeUpdater::UpdateStrategy::Eager);
1150 return TailRecursionEliminator::eliminate(
1151 F, &getAnalysis<TargetTransformInfoWrapperPass>().getTTI(
F),
1152 &getAnalysis<AAResultsWrapperPass>().getAAResults(),
1153 &getAnalysis<OptimizationRemarkEmitterWrapperPass>().getORE(), DTU,
1154 nullptr,
nullptr,
false);
1159char TailCallElim::ID = 0;
1169 return new TailCallElim();
1180 auto *BFI =
F.getEntryCount().has_value()
1191 DomTreeUpdater DTU(DT, PDT, DomTreeUpdater::UpdateStrategy::Eager);
1192 bool Changed = TailRecursionEliminator::eliminate(
1193 F, &
TTI, &
AA, &ORE, DTU, BFI, PSI, UpdateFunctionEntryCount);
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
Expand Atomic instructions
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
This file contains the declarations for the subclasses of Constant, which represent the different fla...
static bool runOnFunction(Function &F, bool PostInlining)
This is the interface for a simple mod/ref and alias analysis over globals.
This file provides various utilities for inspecting and working with the control flow graph in LLVM I...
Module.h This file contains the declarations for the Module class.
uint64_t IntrinsicInst * II
PassBuilder PB(Machine, PassOpts->PTO, std::nullopt, &PIC)
#define INITIALIZE_PASS_DEPENDENCY(depName)
#define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis)
#define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis)
This file defines the SmallPtrSet class.
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
static bool canTRE(Function &F)
Scan the specified function for alloca instructions.
static bool isUnaryAccumulatorRecurrence(Instruction *I)
static cl::opt< bool > DisableTailCallElimForColdCalls("disable-tail-call-elim-for-cold-calls", cl::Hidden, cl::init(false), cl::desc("Disable tail call elimination and optimization for cold calls or " "in cold functions"))
static bool canMoveAboveCall(Instruction *I, CallInst *CI, AliasAnalysis *AA)
Return true if it is safe to move the specified instruction from after the call to before the call,...
static cl::opt< bool > DisableEntryCountRecompute("tre-disable-entrycount-recompute", cl::init(false), cl::Hidden, cl::desc("Force disabling recomputing of function entry count, on " "successful tail recursion elimination."))
static bool markTails(Function &F, OptimizationRemarkEmitter *ORE, ProfileSummaryInfo *PSI, BlockFrequencyInfo *BFI)
static bool shouldDisableTailCallsForCold(const CallBase *CB, const Function *Caller, const ProfileSummaryInfo *PSI, BlockFrequencyInfo *BFI)
A manager for alias analyses.
an instruction to allocate memory on the stack
PassT::Result * getCachedResult(IRUnitT &IR) const
Get the cached result of an analysis pass for a given IR unit.
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
AnalysisUsage & addRequired()
AnalysisUsage & addPreserved()
Add the specified Pass class to the set of analyses preserved by this pass.
This class represents an incoming formal argument to a Function.
LLVM Basic Block Representation.
iterator begin()
Instruction iterator methods.
const Function * getParent() const
Return the enclosing method, or null if none.
static BasicBlock * Create(LLVMContext &Context, const Twine &Name="", Function *Parent=nullptr, BasicBlock *InsertBefore=nullptr)
Creates a new BasicBlock.
LLVM_ABI InstListType::const_iterator getFirstNonPHIOrDbg(bool SkipPseudoOp=true) const
Returns a pointer to the first instruction in this block that is not a PHINode or a debug intrinsic,...
const Instruction & front() const
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 BlockFrequency getBlockFreq(const BasicBlock *BB) const
getblockFreq - Return block frequency.
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
Function * getCalledFunction() const
Returns the function called, or null if this is an indirect function invocation or the function signa...
bool doesNotAccessMemory(unsigned OpNo) const
bool hasFnAttr(Attribute::AttrKind Kind) const
Determine whether this call has the given attribute.
CallingConv::ID getCallingConv() const
User::op_iterator arg_begin()
Return the iterator pointing to the beginning of the argument list.
LLVM_ABI bool isMustTailCall() const
Tests if this call site must be tail call optimized.
bool isByValArgument(unsigned ArgNo) const
Determine whether this argument is passed by value.
MaybeAlign getParamAlign(unsigned ArgNo) const
Extract the alignment for a call or parameter (0=unknown).
bool onlyReadsMemory(unsigned OpNo) const
Type * getParamByValType(unsigned ArgNo) const
Extract the byval type for a call or parameter.
bool hasOperandBundlesOtherThan(ArrayRef< uint32_t > IDs) const
Return true if this operand bundle user contains operand bundles with tags other than those specified...
Value * getArgOperand(unsigned i) const
void setArgOperand(unsigned i, Value *v)
User::op_iterator arg_end()
Return the iterator pointing to the end of the argument list.
iterator_range< User::op_iterator > args()
Iteration adapter for range-for loops.
unsigned arg_size() const
This class represents a function call, abstracting a target machine's calling convention.
bool isNoTailCall() const
void setTailCall(bool IsTc=true)
static LLVM_ABI Constant * getIdentity(Instruction *I, Type *Ty, bool AllowRHSConstant=false, bool NSZ=false)
Return the identity constant for a binary or intrinsic Instruction.
static LLVM_ABI ConstantInt * getTrue(LLVMContext &Context)
static LLVM_ABI ConstantInt * getFalse(LLVMContext &Context)
This is an important base class in LLVM.
A parsed version of the target data layout string in and methods for querying it.
static DebugLoc getCompilerGenerated()
LLVM_ABI void deleteBB(BasicBlock *DelBB)
Delete DelBB.
Analysis pass which computes a DominatorTree.
FunctionPass class - This class is used to implement most global optimizations.
void applyUpdates(ArrayRef< UpdateT > Updates)
Submit updates to all available trees.
void recalculate(FuncT &F)
Notify DTU that the entry block was replaced.
LLVM_ABI Instruction * clone() const
Create a copy of 'this' instruction that is identical in all ways except the following:
const DebugLoc & getDebugLoc() const
Return the debug location for this node as a DebugLoc.
LLVM_ABI void insertBefore(InstListType::iterator InsertPos)
Insert an unlinked instruction into a basic block immediately before the specified position.
LLVM_ABI InstListType::iterator eraseFromParent()
This method unlinks 'this' from the containing basic block and deletes it.
LLVM_ABI bool mayHaveSideEffects() const LLVM_READONLY
Return true if the instruction may have side effects.
LLVM_ABI void dropPoisonGeneratingFlags()
Drops flags that may cause this instruction to evaluate to poison despite having non-poison inputs.
void setDebugLoc(DebugLoc Loc)
Set the debug location information for this instruction.
A wrapper class for inspecting calls to intrinsic functions.
@ OB_clang_arc_attachedcall
An instruction for reading from memory.
static LLVM_ABI MemoryLocation get(const LoadInst *LI)
Return a location with information about the memory reference by the given instruction.
void addIncoming(Value *V, BasicBlock *BB)
Add an incoming value to the end of the PHI list.
static PHINode * Create(Type *Ty, unsigned NumReservedValues, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
Constructors - NumReservedValues is a hint for the number of incoming edges that this phi node will h...
static LLVM_ABI PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
static LLVM_ABI PoisonValue * get(Type *T)
Static factory methods - Return an 'poison' object of the specified type.
Analysis pass which computes a PostDominatorTree.
A set of analyses that are preserved following a run of a transformation pass.
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
PreservedAnalyses & preserve()
Mark an analysis as preserved.
An analysis pass based on the new PM to deliver ProfileSummaryInfo.
Analysis providing profile information.
bool hasProfileSummary() const
Returns true if profile summary is available.
bool isColdBlock(const BBType *BB, BFIT *BFI) const
Returns true if BasicBlock BB is considered cold.
LLVM_ABI bool isColdCallSite(const CallBase &CB, BlockFrequencyInfo *BFI) const
Returns true if call site CB is considered cold.
LLVM_ABI bool isFunctionEntryCold(const Function *F) const
Returns true if F has cold function entry.
Value * getReturnValue() const
Convenience accessor. Returns null if there is no return value.
static SelectInst * Create(Value *C, Value *S1, Value *S2, const Twine &NameStr="", InsertPosition InsertBefore=nullptr, const Instruction *MDFrom=nullptr)
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
LLVM_ABI PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM)
Analysis pass providing the TargetTransformInfo.
bool isVoidTy() const
Return true if this is 'void'.
static UncondBrInst * Create(BasicBlock *Target, InsertPosition InsertBefore=nullptr)
void dropAllReferences()
Drop all references to operands.
void setOperand(unsigned i, Value *Val)
Value * getOperand(unsigned i) const
Type * getType() const
All values are typed, get the type of this value.
LLVM_ABI void setName(const Twine &Name)
Change the name of the value.
LLVM_ABI void replaceAllUsesWith(Value *V)
Change all uses of this to point to a new Value.
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.
const ParentTy * getParent() const
self_iterator getIterator()
Abstract Attribute helper functions.
constexpr char Align[]
Key for Kernel::Arg::Metadata::mAlign.
@ Cold
Attempts to make code in the caller as efficient as possible under the assumption that the call is no...
@ BasicBlock
Various leaf nodes.
initializer< Ty > init(const Ty &Val)
Add a small namespace to avoid name clashes with the classes used in the streaming interface.
NodeAddr< UseNode * > Use
friend class Instruction
Iterator for Instructions in a `BasicBlock.
This is an optimization pass for GlobalISel generic memory operations.
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI FunctionPass * createTailCallEliminationPass()
auto pred_end(const MachineBasicBlock *BB)
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
auto successors(const MachineBasicBlock *BB)
OuterAnalysisManagerProxy< ModuleAnalysisManager, Function > ModuleAnalysisManagerFunctionProxy
Provide the ModuleAnalysisManager to Function proxy.
LLVM_ABI ReturnInst * FoldReturnIntoUncondBranch(ReturnInst *RI, BasicBlock *BB, BasicBlock *Pred, DomTreeUpdater *DTU=nullptr)
This method duplicates the specified return instruction into a predecessor which ends in an unconditi...
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Value
LLVM_ABI Value * simplifyInstruction(Instruction *I, const SimplifyQuery &Q)
See if we can compute a simplified version of this instruction.
bool isModSet(const ModRefInfo MRI)
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
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 raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
IRBuilder(LLVMContext &, FolderTy, InserterTy, MDNode *, ArrayRef< OperandBundleDef >) -> IRBuilder< FolderTy, InserterTy >
PredIterator< BasicBlock, Value::user_iterator > pred_iterator
auto pred_begin(const MachineBasicBlock *BB)
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
LLVM_ABI bool isSafeToLoadUnconditionally(Value *V, Align Alignment, const APInt &Size, const SimplifyQuery &SQ)
Return true if we know that executing a load from this value cannot trap.
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
bool pred_empty(const BasicBlock *BB)
AnalysisManager< Function > FunctionAnalysisManager
Convenience typedef for the Function analysis manager.
LLVM_ABI void initializeTailCallElimPass(PassRegistry &)
AAResults AliasAnalysis
Temporary typedef for legacy code that uses a generic AliasAnalysis pointer or reference.
Align valueOrOne() const
For convenience, returns a valid alignment or 1 if undefined.