8198948: Remove unused parameter evacuation_info from G1CollectedHeap::evacuate_collection_set
Reviewed-by: sjohanss, eosterlund
This commit is contained in:
parent
f4bb0fe332
commit
a25238147d
@ -3006,7 +3006,7 @@ G1CollectedHeap::do_collection_pause_at_safepoint(double target_pause_time_ms) {
|
||||
pre_evacuate_collection_set();
|
||||
|
||||
// Actually do the work...
|
||||
evacuate_collection_set(evacuation_info, &per_thread_states);
|
||||
evacuate_collection_set(&per_thread_states);
|
||||
|
||||
post_evacuate_collection_set(evacuation_info, &per_thread_states);
|
||||
|
||||
@ -4253,7 +4253,7 @@ void G1CollectedHeap::pre_evacuate_collection_set() {
|
||||
}
|
||||
}
|
||||
|
||||
void G1CollectedHeap::evacuate_collection_set(EvacuationInfo& evacuation_info, G1ParScanThreadStateSet* per_thread_states) {
|
||||
void G1CollectedHeap::evacuate_collection_set(G1ParScanThreadStateSet* per_thread_states) {
|
||||
// Should G1EvacuationFailureALot be in effect for this GC?
|
||||
NOT_PRODUCT(set_evacuation_failure_alot_for_current_gc();)
|
||||
|
||||
|
@ -758,7 +758,7 @@ protected:
|
||||
bool do_collection_pause_at_safepoint(double target_pause_time_ms);
|
||||
|
||||
// Actually do the work of evacuating the collection set.
|
||||
virtual void evacuate_collection_set(EvacuationInfo& evacuation_info, G1ParScanThreadStateSet* per_thread_states);
|
||||
virtual void evacuate_collection_set(G1ParScanThreadStateSet* per_thread_states);
|
||||
|
||||
void pre_evacuate_collection_set();
|
||||
void post_evacuate_collection_set(EvacuationInfo& evacuation_info, G1ParScanThreadStateSet* pss);
|
||||
|
Loading…
Reference in New Issue
Block a user