LLVM 22.0.0git
CallSiteSplitting.cpp File Reference

Go to the source code of this file.

Macros

#define DEBUG_TYPE   "callsite-splitting"

Typedefs

using ConditionTy = std::pair<ICmpInst *, unsigned>
using ConditionsTy = SmallVector<ConditionTy, 2>
using PredsWithCondsTy = SmallVector<std::pair<BasicBlock *, ConditionsTy>, 2>

Functions

 STATISTIC (NumCallSiteSplit, "Number of call-site split")
static void addNonNullAttribute (CallBase &CB, Value *Op)
static void setConstantInArgument (CallBase &CB, Value *Op, Constant *ConstValue)
static bool isCondRelevantToAnyCallArgument (ICmpInst *Cmp, CallBase &CB)
static void recordCondition (CallBase &CB, BasicBlock *From, BasicBlock *To, ConditionsTy &Conditions)
 If From has a conditional jump to To, add the condition to Conditions, if it is relevant to any argument at CB.
static void recordConditions (CallBase &CB, BasicBlock *Pred, ConditionsTy &Conditions, BasicBlock *StopAt)
 Record ICmp conditions relevant to any argument in CB following Pred's single predecessors.
static void addConditions (CallBase &CB, const ConditionsTy &Conditions)
static SmallVector< BasicBlock *, 2 > getTwoPredecessors (BasicBlock *BB)
static bool canSplitCallSite (CallBase &CB, TargetTransformInfo &TTI)
static InstructioncloneInstForMustTail (Instruction *I, BasicBlock::iterator Before, Value *V)
static void copyMustTailReturn (BasicBlock *SplitBB, Instruction *CI, Instruction *NewCI)
 Copy mandatory musttail return sequence that follows original CI, and link it up to NewCI value instead:
static void splitCallSite (CallBase &CB, ArrayRef< std::pair< BasicBlock *, ConditionsTy > > Preds, DomTreeUpdater &DTU)
 For each (predecessor, conditions from predecessors) pair, it will split the basic block containing the call site, hook it up to the predecessor and replace the call instruction with new call instructions, which contain constraints based on the conditions from their predecessors.
static bool isPredicatedOnPHI (CallBase &CB)
static PredsWithCondsTy shouldSplitOnPHIPredicatedArgument (CallBase &CB)
static PredsWithCondsTy shouldSplitOnPredicatedArgument (CallBase &CB, DomTreeUpdater &DTU)
static bool tryToSplitCallSite (CallBase &CB, TargetTransformInfo &TTI, DomTreeUpdater &DTU)
static bool doCallSiteSplitting (Function &F, TargetLibraryInfo &TLI, TargetTransformInfo &TTI, DominatorTree &DT)

Variables

static cl::opt< unsignedDuplicationThreshold ("callsite-splitting-duplication-threshold", cl::Hidden, cl::desc("Only allow instructions before a call, if " "their cost is below DuplicationThreshold"), cl::init(5))
 Only allow instructions before a call, if their CodeSize cost is below DuplicationThreshold.

Macro Definition Documentation

◆ DEBUG_TYPE

#define DEBUG_TYPE   "callsite-splitting"

Definition at line 73 of file CallSiteSplitting.cpp.

Typedef Documentation

◆ ConditionsTy

Definition at line 125 of file CallSiteSplitting.cpp.

◆ ConditionTy

using ConditionTy = std::pair<ICmpInst *, unsigned>

Definition at line 124 of file CallSiteSplitting.cpp.

◆ PredsWithCondsTy

Definition at line 440 of file CallSiteSplitting.cpp.

Function Documentation

◆ addConditions()

◆ addNonNullAttribute()

void addNonNullAttribute ( CallBase & CB,
Value * Op )
static

Definition at line 86 of file CallSiteSplitting.cpp.

References llvm::CallBase::addParamAttr(), llvm::CallBase::args(), and I.

Referenced by addConditions().

◆ canSplitCallSite()

◆ cloneInstForMustTail()

Instruction * cloneInstForMustTail ( Instruction * I,
BasicBlock::iterator Before,
Value * V )
static

Definition at line 222 of file CallSiteSplitting.cpp.

References I.

Referenced by copyMustTailReturn().

◆ copyMustTailReturn()

void copyMustTailReturn ( BasicBlock * SplitBB,
Instruction * CI,
Instruction * NewCI )
static

Copy mandatory musttail return sequence that follows original CI, and link it up to NewCI value instead:

  • (optional) bitcast NewCI to ...
  • ret bitcast or NewCI

Insert this sequence right before SplitBB's terminator, which will be cleaned up later in splitCallSite below.

Definition at line 239 of file CallSiteSplitting.cpp.

References assert(), cloneInstForMustTail(), llvm::dyn_cast(), llvm::ilist_node_impl< OptionsT >::getIterator(), llvm::BasicBlock::getParent(), llvm::Function::getReturnType(), llvm::BasicBlock::getTerminator(), II, and llvm::Type::isVoidTy().

Referenced by splitCallSite().

◆ doCallSiteSplitting()

◆ getTwoPredecessors()

◆ isCondRelevantToAnyCallArgument()

bool isCondRelevantToAnyCallArgument ( ICmpInst * Cmp,
CallBase & CB )
static

◆ isPredicatedOnPHI()

◆ recordCondition()

◆ recordConditions()

void recordConditions ( CallBase & CB,
BasicBlock * Pred,
ConditionsTy & Conditions,
BasicBlock * StopAt )
static

Record ICmp conditions relevant to any argument in CB following Pred's single predecessors.

If there are conflicting conditions along a path, like x == 1 and x == 0, the first condition will be used. We stop once we reach an edge to StopAt.

Definition at line 152 of file CallSiteSplitting.cpp.

References llvm::SmallPtrSetImpl< PtrType >::count(), llvm::BasicBlock::getSinglePredecessor(), llvm::SmallPtrSetImpl< PtrType >::insert(), recordCondition(), and llvm::StopAt.

Referenced by shouldSplitOnPredicatedArgument().

◆ setConstantInArgument()

void setConstantInArgument ( CallBase & CB,
Value * Op,
Constant * ConstValue )
static

◆ shouldSplitOnPHIPredicatedArgument()

PredsWithCondsTy shouldSplitOnPHIPredicatedArgument ( CallBase & CB)
static

◆ shouldSplitOnPredicatedArgument()

◆ splitCallSite()

void splitCallSite ( CallBase & CB,
ArrayRef< std::pair< BasicBlock *, ConditionsTy > > Preds,
DomTreeUpdater & DTU )
static

For each (predecessor, conditions from predecessors) pair, it will split the basic block containing the call site, hook it up to the predecessor and replace the call instruction with new call instructions, which contain constraints based on the conditions from their predecessors.

For example, in the IR below with an OR condition, the call-site can be split. In this case, Preds for Tail is [(Header, a == null), (TBB, a != null, b == null)]. Tail is replaced by 2 split blocks, containing CallInst1, which has constraints based on the conditions from Head and CallInst2, which has constraints based on the conditions coming from TBB.

From :

Header: c = icmp eq i32* a, null br i1 c Tail, TBB TBB: c2 = icmp eq i32* b, null br i1 c Tail, End Tail: ca = call i1 @callee (i32* a, i32* b)

to :

Header: // PredBB1 is Header c = icmp eq i32* a, null br i1 c Tail-split1, TBB TBB: // PredBB2 is TBB c2 = icmp eq i32* b, null br i1 c Tail-split2, End Tail-split1: ca1 = call @callee (i32* null, i32* b) // CallInst1 br Tail Tail-split2: ca2 = call @callee (i32* nonnull a, i32* null) // CallInst2 br Tail Tail: p = phi i1 [ca1, Tail-split1],[ca2, Tail-split2]

Note that in case any arguments at the call-site are constrained by its predecessors, new call-sites with more constrained arguments will be created in createCallSitesOnPredicatedArgument().

Definition at line 302 of file CallSiteSplitting.cpp.

References addConditions(), llvm::PHINode::addIncoming(), llvm::GenericDomTreeUpdater< DerivedT, DomTreeT, PostDomTreeT >::applyUpdatesPermissive(), llvm::CallBase::args(), assert(), llvm::BasicBlock::begin(), llvm::cast(), copyMustTailReturn(), llvm::PHINode::Create(), llvm::dbgs(), llvm::DominatorTreeBase< BasicBlock, false >::Delete, llvm::DomTreeUpdater::deleteBB(), llvm::Instruction::dropDbgRecords(), llvm::DuplicateInstructionsInSplitBetween(), llvm::Instruction::eraseFromParent(), llvm::Instruction::getDebugLoc(), llvm::ilist_node_impl< OptionsT >::getIterator(), getParent(), llvm::ilist_detail::node_parent_access< NodeTy, ParentTy >::getParent(), llvm::ilist_node_impl< OptionsT >::getReverseIterator(), llvm::Value::getType(), I, llvm::Instruction::insertBefore(), llvm::isa(), llvm::CallBase::isMustTailCall(), LLVM_DEBUG, llvm::BasicBlock::phis(), llvm::predecessors(), llvm::BasicBlock::rend(), llvm::Value::replaceAllUsesWith(), llvm::Instruction::setDebugLoc(), llvm::SmallVectorTemplateCommon< T, typename >::size(), llvm::SplitBlock(), and llvm::Value::use_empty().

Referenced by tryToSplitCallSite().

◆ STATISTIC()

STATISTIC ( NumCallSiteSplit ,
"Number of call-site split"  )

◆ tryToSplitCallSite()

Variable Documentation

◆ DuplicationThreshold

cl::opt< unsigned > DuplicationThreshold("callsite-splitting-duplication-threshold", cl::Hidden, cl::desc("Only allow instructions before a call, if " "their cost is below DuplicationThreshold"), cl::init(5)) ( "callsite-splitting-duplication-threshold" ,
cl::Hidden ,
cl::desc("Only allow instructions before a call, if " "their cost is below DuplicationThreshold") ,
cl::init(5)  )
static

Only allow instructions before a call, if their CodeSize cost is below DuplicationThreshold.

Those instructions need to be duplicated in all split blocks.

Referenced by canSplitCallSite().