HomeSort by: relevance | last modified time | path
    Searched refs:PredicateWithEdge (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
PredicateInfo.h 128 class PredicateWithEdge : public PredicateBase {
132 PredicateWithEdge() = delete;
138 PredicateWithEdge(PredicateType PType, Value *Op, BasicBlock *From,
144 class PredicateBranch : public PredicateWithEdge {
150 : PredicateWithEdge(PT_Branch, Op, BranchBB, SplitBB, Condition),
158 class PredicateSwitch : public PredicateWithEdge {
165 : PredicateWithEdge(PT_Switch, Op, SwitchBB, TargetBB,
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
PredicateInfo.cpp 62 assert(isa<PredicateWithEdge>(PB) &&
65 return cast<PredicateWithEdge>(PB)->From;
71 assert(isa<PredicateWithEdge>(PB) &&
73 return cast<PredicateWithEdge>(PB)->From->getTerminator();
79 assert(isa<PredicateWithEdge>(PB) &&
81 const auto *PEdge = cast<PredicateWithEdge>(PB);
569 if (isa<PredicateWithEdge>(ValInfo)) {
640 } else if (isa<PredicateWithEdge>(PossibleCopy)) {

Completed in 17 milliseconds