Searched defs:loop_count (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/prims/
H A Dforte.cpp110 int loop_count = 0; local
116 loop_count++;
121 if (loop_count > loop_max || !_frame.safe_for_sender(_thread)) {
279 int loop_count; local
283 for (loop_count = 0; loop_count < loop_max; loop_count++) {
293 int loop_count; local
297 for (loop_count = 0; loop_count < loop_ma
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DparallelScavengeHeap.cpp411 uint loop_count = 0; local
516 loop_count++;
518 (loop_count % QueuedAllocationWarningCount == 0)) {
520 " size=%d", loop_count, size);
625 uint loop_count = 0; local
728 loop_count++;
730 (loop_count % QueuedAllocationWarningCount == 0)) {
732 " size=%d", loop_count, size);
/openjdk7/hotspot/src/share/vm/opto/
H A DphaseX.cpp680 NOT_PRODUCT( uint loop_count = 0; )
686 assert(loop_count++ < K, "infinite loop in PhaseGVN::transform");
688 NOT_PRODUCT( if( loop_count != 0 ) { set_progress(); } )
875 uint loop_count = 0; local
885 if (++loop_count >= K * C->unique()) {
1028 debug_only(uint loop_count = 0;);
1065 debug_only( if( loop_count >= K ) i->dump(4); )
1066 assert(loop_count < K, "infinite loop in PhaseIterGVN::transform");
1067 debug_only( loop_count++; )

Completed in 40 milliseconds