33
33
#include " gc/g1/g1ConcurrentMark.hpp"
34
34
#include " gc/g1/g1GCPhaseTimes.hpp"
35
35
#include " gc/g1/g1YoungGCEvacFailureInjector.hpp"
36
- #include " gc/g1/g1EvacuationInfo .hpp"
36
+ #include " gc/g1/g1EvacInfo .hpp"
37
37
#include " gc/g1/g1HRPrinter.hpp"
38
38
#include " gc/g1/g1HotCardCache.hpp"
39
39
#include " gc/g1/g1MonitoringSupport.hpp"
@@ -146,13 +146,13 @@ class G1YoungGCNotifyPauseMark : public StackObj {
146
146
};
147
147
148
148
class G1YoungGCJFRTracerMark : public G1JFRTracerMark {
149
- G1EvacuationInfo _evacuation_info;
149
+ G1EvacInfo _evacuation_info;
150
150
151
151
G1NewTracer* tracer () const { return (G1NewTracer*)_tracer; }
152
152
153
153
public:
154
154
155
- G1EvacuationInfo * evacuation_info () { return &_evacuation_info; }
155
+ G1EvacInfo * evacuation_info () { return &_evacuation_info; }
156
156
157
157
G1YoungGCJFRTracerMark (STWGCTimer* gc_timer_stw, G1NewTracer* gc_tracer_stw, GCCause::Cause cause) :
158
158
G1JFRTracerMark (gc_timer_stw, gc_tracer_stw), _evacuation_info() { }
@@ -288,7 +288,7 @@ class G1PrintCollectionSetClosure : public HeapRegionClosure {
288
288
}
289
289
};
290
290
291
- void G1YoungCollector::calculate_collection_set (G1EvacuationInfo * evacuation_info, double target_pause_time_ms) {
291
+ void G1YoungCollector::calculate_collection_set (G1EvacInfo * evacuation_info, double target_pause_time_ms) {
292
292
// Forget the current allocation region (we might even choose it to be part
293
293
// of the collection set!) before finalizing the collection set.
294
294
allocator ()->release_mutator_alloc_regions ();
@@ -492,7 +492,7 @@ void G1YoungCollector::set_young_collection_default_active_worker_threads(){
492
492
log_info (gc,task)(" Using %u workers of %u for evacuation" , active_workers, workers ()->total_workers ());
493
493
}
494
494
495
- void G1YoungCollector::pre_evacuate_collection_set (G1EvacuationInfo * evacuation_info, G1ParScanThreadStateSet* per_thread_states) {
495
+ void G1YoungCollector::pre_evacuate_collection_set (G1EvacInfo * evacuation_info, G1ParScanThreadStateSet* per_thread_states) {
496
496
// Please see comment in g1CollectedHeap.hpp and
497
497
// G1CollectedHeap::ref_processing_init() to see how
498
498
// reference processing currently works in G1.
@@ -962,7 +962,7 @@ void G1YoungCollector::post_evacuate_cleanup_1(G1ParScanThreadStateSet* per_thre
962
962
}
963
963
964
964
void G1YoungCollector::post_evacuate_cleanup_2 (G1ParScanThreadStateSet* per_thread_states,
965
- G1EvacuationInfo * evacuation_info) {
965
+ G1EvacInfo * evacuation_info) {
966
966
Ticks start = Ticks::now ();
967
967
{
968
968
G1PostEvacuateCollectionSetCleanupTask2 cl (per_thread_states, evacuation_info, _evac_failure_regions);
@@ -971,7 +971,7 @@ void G1YoungCollector::post_evacuate_cleanup_2(G1ParScanThreadStateSet* per_thre
971
971
phase_times ()->record_post_evacuate_cleanup_task_2_time ((Ticks::now () - start).seconds () * 1000.0 );
972
972
}
973
973
974
- void G1YoungCollector::post_evacuate_collection_set (G1EvacuationInfo * evacuation_info,
974
+ void G1YoungCollector::post_evacuate_collection_set (G1EvacInfo * evacuation_info,
975
975
G1ParScanThreadStateSet* per_thread_states) {
976
976
G1GCPhaseTimes* p = phase_times ();
977
977
0 commit comments