Home | History | Annotate | Download | only in Instrumentation

Lines Matching full:increment

14 // Edges are instrumented to increment the path number register, such that the
128 // increment. Notice this is incrementing the path counter
130 // increment is determined by getIncrement().
134 // Get/set the path number increment that this edge will be instrumented
135 // with. This is distinct from the path counter increment and the
136 // weight. The counter increment counts the number of executions of
140 void setIncrement(long increment);
150 // The increment that the code will be instrumented with.
159 // Whether this edge is a path counter increment.
202 // increment and initialization.
206 // number increment.
283 // Creates an increment constant representing incr.
286 // Creates an increment constant representing the value in
311 // Creates a counter increment in the given node. The Value* in node is
317 bool increment = true);
325 // path number increment.
444 // increment. Notice this is incrementing the path counter
446 // increment is determined by getIncrement().
452 // increment.
457 // Gets the path number increment that this edge will be instrumented
458 // with. This is distinct from the path counter increment and the
459 // weight. The counter increment is counts the number of executions of
467 // increment.
468 void BLInstrumentationEdge::setIncrement(long increment) {
469 _increment = increment;
537 // Calculates the increment for the chords, thereby removing
631 // increment and initialization.
640 // number increment.
894 // Creates an increment constant representing incr.
900 // Creates an increment constant representing the value in
1018 // Creates a counter increment in the given node. The Value* in node is
1024 bool increment) {
1025 // Counter increment for array
1044 // Select increment for the path counter based on overflow
1046 SelectInst::Create( isMax, createIncrementConstant(increment?1:-1,32),
1057 } else { // Counter increment for hash
1064 increment ? llvmIncrementHashFunction : llvmDecrementHashFunction,
1072 // path number increment.
1134 " did not contain a path counter increment.");
1180 } else if( edge->getIncrement() ) {// increment path number
1229 // Iterate through each call edge and apply the appropriate hash increment