Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Counter

114   /// The next counter value to assign.
251 // Counter tracks entry to the function body.
263 // Counter tracks entry to the capture body.
270 // Counter tracks entry to the method body.
277 // Counter tracks entry to the block body.
307 // Counter tracks the block following the label.
447 // Counter tracks the body of the loop.
469 // Counter tracks the exit block of the switch.
476 // Counter for this particular case. This counts only jumps from the
493 // Counter tracks the "then" part of an if statement. The count for
494 // the "else" part, if it exists, will be calculated from this counter.
517 // Counter tracks the continuation block of the try statement.
524 // Counter tracks the catch statement's handler block.
535 // Counter tracks the "true" part of a conditional operator. The
536 // count in the "false" part will be calculated from this counter.
555 // Counter tracks the right hand side of a logical and operator.
567 // Counter tracks the right hand side of a logical or operator.
657 assert(Walker.NextCounter > 0 && "no entry counter mapped for decl");
742 unsigned Counter = (*RegionCounterMap)[S];
748 Builder.getInt32(Counter)});