src/share/vm/gc_implementation/g1/g1CollectorPolicy.cpp

changeset 2975
5f6f2615433a
parent 2963
c3f1170908be
child 3021
14a2fd14c0db
     1.1 --- a/src/share/vm/gc_implementation/g1/g1CollectorPolicy.cpp	Tue Jun 21 15:23:07 2011 -0400
     1.2 +++ b/src/share/vm/gc_implementation/g1/g1CollectorPolicy.cpp	Fri Jun 24 12:38:49 2011 -0400
     1.3 @@ -2638,11 +2638,6 @@
     1.4    assert(_inc_cset_build_state == Active, "Precondition");
     1.5    assert(!hr->is_young(), "non-incremental add of young region");
     1.6  
     1.7 -  if (G1PrintHeapRegions) {
     1.8 -    gclog_or_tty->print_cr("added region to cset "HR_FORMAT,
     1.9 -                           HR_FORMAT_PARAMS(hr));
    1.10 -  }
    1.11 -
    1.12    if (_g1->mark_in_progress())
    1.13      _g1->concurrent_mark()->registerCSetRegion(hr);
    1.14  
    1.15 @@ -2808,11 +2803,6 @@
    1.16      _inc_cset_tail->set_next_in_collection_set(hr);
    1.17    }
    1.18    _inc_cset_tail = hr;
    1.19 -
    1.20 -  if (G1PrintHeapRegions) {
    1.21 -    gclog_or_tty->print_cr(" added region to incremental cset (RHS) "HR_FORMAT,
    1.22 -                           HR_FORMAT_PARAMS(hr));
    1.23 -  }
    1.24  }
    1.25  
    1.26  // Add the region to the LHS of the incremental cset
    1.27 @@ -2830,11 +2820,6 @@
    1.28      _inc_cset_tail = hr;
    1.29    }
    1.30    _inc_cset_head = hr;
    1.31 -
    1.32 -  if (G1PrintHeapRegions) {
    1.33 -    gclog_or_tty->print_cr(" added region to incremental cset (LHS) "HR_FORMAT,
    1.34 -                           HR_FORMAT_PARAMS(hr));
    1.35 -  }
    1.36  }
    1.37  
    1.38  #ifndef PRODUCT

mercurial