comparison src/share/vm/gc_implementation/parNew/parCardTableModRefBS.cpp @ 8668:3c9db54c2660

8008081: Print outs do not have matching arguments Summary: Corrected formatted prints to have matching arguments, removed dead print_frame_layout function Reviewed-by: sla, dholmes
author mikael
date Tue, 26 Feb 2013 08:54:03 -0800
parents b9a9ed0f8eeb
children b9a918201d47 de6a9e811145
comparison
equal deleted inserted replaced
8106:ec2eddfed950 8668:3c9db54c2660
371 assert(last_block + last_block_size > used.end(), 371 assert(last_block + last_block_size > used.end(),
372 err_msg("Inconsistency detected: last_block [" PTR_FORMAT "," PTR_FORMAT "]" 372 err_msg("Inconsistency detected: last_block [" PTR_FORMAT "," PTR_FORMAT "]"
373 " does not exceed used.end() = " PTR_FORMAT "," 373 " does not exceed used.end() = " PTR_FORMAT ","
374 " yet last_chunk_index_to_check " INTPTR_FORMAT 374 " yet last_chunk_index_to_check " INTPTR_FORMAT
375 " exceeds last_chunk_index " INTPTR_FORMAT, 375 " exceeds last_chunk_index " INTPTR_FORMAT,
376 last_block, last_block + last_block_size,
377 used.end(),
376 last_chunk_index_to_check, last_chunk_index)); 378 last_chunk_index_to_check, last_chunk_index));
377 assert(sp->used_region().end() > used.end(), 379 assert(sp->used_region().end() > used.end(),
378 err_msg("Expansion did not happen: " 380 err_msg("Expansion did not happen: "
379 "[" PTR_FORMAT "," PTR_FORMAT ") -> [" PTR_FORMAT "," PTR_FORMAT ")", 381 "[" PTR_FORMAT "," PTR_FORMAT ") -> [" PTR_FORMAT "," PTR_FORMAT ")",
380 sp->used_region().start(), sp->used_region().end(), used.start(), used.end())); 382 sp->used_region().start(), sp->used_region().end(), used.start(), used.end()));