Home
last modified time | relevance | path

Searched refs:PredicateWithEdge (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
H A DPredicateInfo.h128 class PredicateWithEdge : public PredicateBase {
132 PredicateWithEdge() = delete;
138 PredicateWithEdge(PredicateType PType, Value *Op, BasicBlock *From, in PredicateWithEdge() function
144 class PredicateBranch : public PredicateWithEdge {
150 : PredicateWithEdge(PT_Branch, Op, BranchBB, SplitBB, Condition), in PredicateBranch()
158 class PredicateSwitch : public PredicateWithEdge {
165 : PredicateWithEdge(PT_Switch, Op, SwitchBB, TargetBB, in PredicateSwitch()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DPredicateInfo.cpp62 assert(isa<PredicateWithEdge>(PB) && in getBranchBlock()
65 return cast<PredicateWithEdge>(PB)->From; in getBranchBlock()
71 assert(isa<PredicateWithEdge>(PB) && in getBranchTerminator()
73 return cast<PredicateWithEdge>(PB)->From->getTerminator(); in getBranchTerminator()
79 assert(isa<PredicateWithEdge>(PB) && in getBlockEdge()
81 const auto *PEdge = cast<PredicateWithEdge>(PB); in getBlockEdge()
569 if (isa<PredicateWithEdge>(ValInfo)) { in materializeStack()
640 } else if (isa<PredicateWithEdge>(PossibleCopy)) { in renameUses()