comparison src/share/vm/runtime/advancedThresholdPolicy.cpp @ 14309:63a4eb8bcd23

8025856: Fix typos in the GC code Summary: Fix about 440 typos in comments in the VM code Reviewed-by: mgerdin, tschatzl, coleenp, kmo, jcoomes
author jwilhelm
date Thu, 23 Jan 2014 14:47:23 +0100
parents 91eba9f82325
children 4ca6dc0799b6
comparison
equal deleted inserted replaced
14308:870aedf4ba4f 14309:63a4eb8bcd23
304 * a. 0 -> 3 -> 4. 304 * a. 0 -> 3 -> 4.
305 * The most common path. But note that even in this straightforward case 305 * The most common path. But note that even in this straightforward case
306 * profiling can start at level 0 and finish at level 3. 306 * profiling can start at level 0 and finish at level 3.
307 * 307 *
308 * b. 0 -> 2 -> 3 -> 4. 308 * b. 0 -> 2 -> 3 -> 4.
309 * This case occures when the load on C2 is deemed too high. So, instead of transitioning 309 * This case occurs when the load on C2 is deemed too high. So, instead of transitioning
310 * into state 3 directly and over-profiling while a method is in the C2 queue we transition to 310 * into state 3 directly and over-profiling while a method is in the C2 queue we transition to
311 * level 2 and wait until the load on C2 decreases. This path is disabled for OSRs. 311 * level 2 and wait until the load on C2 decreases. This path is disabled for OSRs.
312 * 312 *
313 * c. 0 -> (3->2) -> 4. 313 * c. 0 -> (3->2) -> 4.
314 * In this case we enqueue a method for compilation at level 3, but the C1 queue is long enough 314 * In this case we enqueue a method for compilation at level 3, but the C1 queue is long enough