src/share/vm/gc_implementation/parallelScavenge/generationSizer.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/gc_implementation/parallelScavenge/generationSizer.cpp

src/share/vm/gc_implementation/parallelScavenge/generationSizer.cpp

Print this page
rev 6362 : 8042298: Remove the names gen0 and gen1 from the GC code
Summary: Renamed gen0 and gen1 to young and old throughout the GC code.
Reviewed-by:

*** 30,41 **** if (TracePageSizes) { tty->print_cr("%s: " SIZE_FORMAT "," SIZE_FORMAT " " SIZE_FORMAT "," SIZE_FORMAT " " SIZE_FORMAT, str, ! _min_gen1_size / K, _max_gen1_size / K, ! _min_gen0_size / K, _max_gen0_size / K, _max_heap_byte_size / K); } } void GenerationSizer::initialize_alignments() { --- 30,41 ---- if (TracePageSizes) { tty->print_cr("%s: " SIZE_FORMAT "," SIZE_FORMAT " " SIZE_FORMAT "," SIZE_FORMAT " " SIZE_FORMAT, str, ! _min_old_size / K, _max_old_size / K, ! _min_young_size / K, _max_young_size / K, _max_heap_byte_size / K); } } void GenerationSizer::initialize_alignments() {
src/share/vm/gc_implementation/parallelScavenge/generationSizer.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File