reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Analysis/BranchProbabilityInfo.cpp
  506   PHINode *CmpPHI = dyn_cast<PHINode>(CmpLHS);
  510   while (!CmpPHI && CmpLHS && isa<BinaryOperator>(CmpLHS) &&
  510   while (!CmpPHI && CmpLHS && isa<BinaryOperator>(CmpLHS) &&
  511          isa<Constant>(CmpLHS->getOperand(1))) {
  513     if (!L->contains(CmpLHS))
  515     InstChain.push_back(cast<BinaryOperator>(CmpLHS));
  516     CmpLHS = dyn_cast<Instruction>(CmpLHS->getOperand(0));
  516     CmpLHS = dyn_cast<Instruction>(CmpLHS->getOperand(0));
  517     if (CmpLHS)
  518       CmpPHI = dyn_cast<PHINode>(CmpLHS);