Home
last modified time | relevance | path

Searched refs:hasOneLiveUse (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DConstant.h210 bool hasOneLiveUse() const;
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DCodeMetrics.cpp150 ((F->hasInternalLinkage() && F->hasOneLiveUse()) || in analyzeBasicBlock()
H A DInlineCost.cpp1149 return Callee.hasLocalLinkage() && Callee.hasOneLiveUse() && in isSoleCallToLocalFunction()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DConstants.cpp750 bool Constant::hasOneLiveUse() const { return hasNLiveUses(1); } in hasOneLiveUse() function in Constant