< prev index next >

src/hotspot/share/gc/shenandoah/heuristics/shenandoahStaticHeuristics.cpp

Print this page

49   size_t soft_tail = max_capacity - capacity;
50   available = (available > soft_tail) ? (available - soft_tail) : 0;
51 
52   size_t threshold_available = capacity / 100 * ShenandoahMinFreeThreshold;
53 
54   if (available < threshold_available) {
55     log_info(gc)("Trigger: Free (" SIZE_FORMAT "%s) is below minimum threshold (" SIZE_FORMAT "%s)",
56                  byte_size_in_proper_unit(available),           proper_unit_for_byte_size(available),
57                  byte_size_in_proper_unit(threshold_available), proper_unit_for_byte_size(threshold_available));
58     return true;
59   }
60   return ShenandoahHeuristics::should_start_gc();
61 }
62 
63 void ShenandoahStaticHeuristics::choose_collection_set_from_regiondata(ShenandoahCollectionSet* cset,
64                                                                        RegionData* data, size_t size,
65                                                                        size_t free) {
66   size_t threshold = ShenandoahHeapRegion::region_size_bytes() * ShenandoahGarbageThreshold / 100;
67 
68   for (size_t idx = 0; idx < size; idx++) {
69     ShenandoahHeapRegion* r = data[idx]._region;
70     if (r->garbage() > threshold) {
71       cset->add_region(r);
72     }
73   }
74 }

49   size_t soft_tail = max_capacity - capacity;
50   available = (available > soft_tail) ? (available - soft_tail) : 0;
51 
52   size_t threshold_available = capacity / 100 * ShenandoahMinFreeThreshold;
53 
54   if (available < threshold_available) {
55     log_info(gc)("Trigger: Free (" SIZE_FORMAT "%s) is below minimum threshold (" SIZE_FORMAT "%s)",
56                  byte_size_in_proper_unit(available),           proper_unit_for_byte_size(available),
57                  byte_size_in_proper_unit(threshold_available), proper_unit_for_byte_size(threshold_available));
58     return true;
59   }
60   return ShenandoahHeuristics::should_start_gc();
61 }
62 
63 void ShenandoahStaticHeuristics::choose_collection_set_from_regiondata(ShenandoahCollectionSet* cset,
64                                                                        RegionData* data, size_t size,
65                                                                        size_t free) {
66   size_t threshold = ShenandoahHeapRegion::region_size_bytes() * ShenandoahGarbageThreshold / 100;
67 
68   for (size_t idx = 0; idx < size; idx++) {
69     ShenandoahHeapRegion* r = data[idx].get_region();
70     if (r->garbage() > threshold) {
71       cset->add_region(r);
72     }
73   }
74 }
< prev index next >