comparison src/share/vm/gc_implementation/g1/collectionSetChooser.cpp @ 7449:37f7535e5f18

8001424: G1: Rename certain G1-specific flags Summary: Rename G1DefaultMinNewGenPercent, G1DefaultMaxNewGenPercent, and G1OldCSetRegionLiveThresholdPercent to G1NewSizePercent, G1MaxNewSizePercent, and G1MixedGCLiveThresholdPercent respectively. The previous names are no longer accepted. Reviewed-by: brutisso, ysr
author johnc
date Fri, 21 Dec 2012 11:45:34 -0800
parents f7a8920427a6
children 27714220e50e
comparison
equal deleted inserted replaced
7448:b735136e0d82 7449:37f7535e5f18
83 ResourceObj::C_HEAP), 83 ResourceObj::C_HEAP),
84 100), true /* C_Heap */), 84 100), true /* C_Heap */),
85 _curr_index(0), _length(0), _first_par_unreserved_idx(0), 85 _curr_index(0), _length(0), _first_par_unreserved_idx(0),
86 _region_live_threshold_bytes(0), _remaining_reclaimable_bytes(0) { 86 _region_live_threshold_bytes(0), _remaining_reclaimable_bytes(0) {
87 _region_live_threshold_bytes = 87 _region_live_threshold_bytes =
88 HeapRegion::GrainBytes * (size_t) G1OldCSetRegionLiveThresholdPercent / 100; 88 HeapRegion::GrainBytes * (size_t) G1MixedGCLiveThresholdPercent / 100;
89 } 89 }
90 90
91 #ifndef PRODUCT 91 #ifndef PRODUCT
92 void CollectionSetChooser::verify() { 92 void CollectionSetChooser::verify() {
93 guarantee(_length <= regions_length(), 93 guarantee(_length <= regions_length(),