Lines Matching refs:BodyCount
1087 Counter BodyCount = getRegionCounter(S); in VisitWhileStmt() local
1092 Counter BackedgeCount = propagateCounts(BodyCount, S->getBody()); in VisitWhileStmt()
1107 fillGapAreaWithCount(Gap->getBegin(), Gap->getEnd(), BodyCount); in VisitWhileStmt()
1110 addCounters(BC.BreakCount, subtractCounters(CondCount, BodyCount)); in VisitWhileStmt()
1119 createBranchRegion(S->getCond(), BodyCount, in VisitWhileStmt()
1120 subtractCounters(CondCount, BodyCount)); in VisitWhileStmt()
1127 Counter BodyCount = getRegionCounter(S); in VisitDoStmt() local
1132 propagateCounts(addCounters(ParentCount, BodyCount), S->getBody()); in VisitDoStmt()
1142 addCounters(BC.BreakCount, subtractCounters(CondCount, BodyCount)); in VisitDoStmt()
1149 createBranchRegion(S->getCond(), BodyCount, in VisitDoStmt()
1150 subtractCounters(CondCount, BodyCount)); in VisitDoStmt()
1162 Counter BodyCount = getRegionCounter(S); in VisitForStmt() local
1171 Counter BackedgeCount = propagateCounts(BodyCount, S->getBody()); in VisitForStmt()
1197 fillGapAreaWithCount(Gap->getBegin(), Gap->getEnd(), BodyCount); in VisitForStmt()
1200 subtractCounters(CondCount, BodyCount)); in VisitForStmt()
1209 createBranchRegion(S->getCond(), BodyCount, in VisitForStmt()
1210 subtractCounters(CondCount, BodyCount)); in VisitForStmt()
1221 Counter BodyCount = getRegionCounter(S); in VisitCXXForRangeStmt() local
1225 Counter BackedgeCount = propagateCounts(BodyCount, S->getBody()); in VisitCXXForRangeStmt()
1234 fillGapAreaWithCount(Gap->getBegin(), Gap->getEnd(), BodyCount); in VisitCXXForRangeStmt()
1239 addCounters(BC.BreakCount, subtractCounters(LoopCount, BodyCount)); in VisitCXXForRangeStmt()
1248 createBranchRegion(S->getCond(), BodyCount, in VisitCXXForRangeStmt()
1249 subtractCounters(LoopCount, BodyCount)); in VisitCXXForRangeStmt()
1257 Counter BodyCount = getRegionCounter(S); in VisitObjCForCollectionStmt() local
1261 Counter BackedgeCount = propagateCounts(BodyCount, S->getBody()); in VisitObjCForCollectionStmt()
1267 fillGapAreaWithCount(Gap->getBegin(), Gap->getEnd(), BodyCount); in VisitObjCForCollectionStmt()
1272 addCounters(BC.BreakCount, subtractCounters(LoopCount, BodyCount)); in VisitObjCForCollectionStmt()