Searched defs:rs_lengths (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectorPolicy.hpp322 void record_max_rs_lengths(size_t rs_lengths) { argument
323 _max_rs_lengths = rs_lengths;
420 void set_recorded_rs_lengths(size_t rs_lengths);
589 // prediction model. If no rs_lengths parameter is passed, predict
591 // given rs_lengths as the prediction.
592 void update_young_list_target_length(size_t rs_lengths = (size_t) -1);
605 // can fit into the pause time goal. The parameters are: rs_lengths
610 uint calculate_young_list_target_length(size_t rs_lengths,
H A Dg1CollectorPolicy.cpp487 void G1CollectorPolicy::update_young_list_target_length(size_t rs_lengths) { argument
488 if (rs_lengths == (size_t) -1) {
491 rs_lengths = (size_t) get_new_prediction(_rs_lengths_seq);
523 calculate_young_list_target_length(rs_lengths,
527 _rs_lengths_prediction = rs_lengths;
558 G1CollectorPolicy::calculate_young_list_target_length(size_t rs_lengths, argument
583 size_t adj_rs_lengths = rs_lengths + predict_rs_length_diff();
674 size_t rs_lengths = _g1->young_list()->sampled_rs_lengths(); local
675 if (rs_lengths > _rs_lengths_prediction) {
677 size_t rs_lengths_prediction = rs_lengths * 110
1313 set_recorded_rs_lengths(size_t rs_lengths) argument
[all...]
H A Dg1CollectedHeap.cpp6043 size_t rs_lengths = 0; local
6067 rs_lengths += cur->rem_set()->occupied();
6116 policy->record_max_rs_lengths(rs_lengths);

Completed in 57 milliseconds