本文整理汇总了C++中ApplyInst::getCalleeFunction方法的典型用法代码示例。如果您正苦于以下问题:C++ ApplyInst::getCalleeFunction方法的具体用法?C++ ApplyInst::getCalleeFunction怎么用?C++ ApplyInst::getCalleeFunction使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ApplyInst
的用法示例。
在下文中一共展示了ApplyInst::getCalleeFunction方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: isAvailabilityCheck
/// Returns true if the block \p BB is terminated with a cond_br based on an
/// availability check.
static bool isAvailabilityCheck(SILBasicBlock *BB) {
CondBranchInst *CBR = dyn_cast<CondBranchInst>(BB->getTerminator());
if (!CBR)
return false;
ApplyInst *AI = dyn_cast<ApplyInst>(CBR->getCondition());
if (!AI)
return false;
SILFunction *F = AI->getCalleeFunction();
if (!F || !F->hasSemanticsAttrs())
return false;
return F->hasSemanticsAttrsThatStartsWith("availability");
}