• Home
  • Raw
  • Download

Lines Matching refs:propagateCounts

460   Counter propagateCounts(Counter TopCount, const Stmt *S) {  in propagateCounts()  function
623 propagateCounts(getRegionCounter(Body), Body); in VisitDecl()
673 Counter BackedgeCount = propagateCounts(BodyCount, S->getBody()); in VisitWhileStmt()
679 propagateCounts(CondCount, S->getCond()); in VisitWhileStmt()
697 propagateCounts(addCounters(ParentCount, BodyCount), S->getBody()); in VisitDoStmt()
701 propagateCounts(CondCount, S->getCond()); in VisitDoStmt()
720 Counter BackedgeCount = propagateCounts(BodyCount, S->getBody()); in VisitForStmt()
726 propagateCounts(addCounters(BackedgeCount, BC.ContinueCount), Inc); in VisitForStmt()
732 propagateCounts(CondCount, Cond); in VisitForStmt()
752 Counter BackedgeCount = propagateCounts(BodyCount, S->getBody()); in VisitCXXForRangeStmt()
772 Counter BackedgeCount = propagateCounts(BodyCount, S->getBody()); in VisitObjCForCollectionStmt()
805 propagateCounts(Counter::getZero(), Body); in VisitSwitchStmt()
850 propagateCounts(ParentCount, S->getCond()); in VisitIfStmt()
853 Counter OutCount = propagateCounts(ThenCount, S->getThen()); in VisitIfStmt()
858 OutCount = addCounters(OutCount, propagateCounts(ElseCount, Else)); in VisitIfStmt()
872 propagateCounts(ParentCount, S->getTryBlock()); in VisitCXXTryStmt()
882 propagateCounts(getRegionCounter(S), S->getHandlerBlock()); in VisitCXXCatchStmt()
895 propagateCounts(TrueCount, E->getTrueExpr()); in VisitAbstractConditionalOperator()
898 propagateCounts(subtractCounters(ParentCount, TrueCount), in VisitAbstractConditionalOperator()
907 propagateCounts(getRegionCounter(E), E->getRHS()); in VisitBinLAnd()
915 propagateCounts(getRegionCounter(E), E->getRHS()); in VisitBinLOr()