8198948: Remove unused parameter evacuation_info from G1CollectedHeap::evacuate_collection_set

Reviewed-by: sjohanss, eosterlund
This commit is contained in:
Erik Helin 2018-03-02 14:47:52 +01:00
parent f4bb0fe332
commit a25238147d
2 changed files with 3 additions and 3 deletions

View File

@ -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();)

View File

@ -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);