< prev index next >

src/hotspot/share/gc/parallel/psParallelCompact.hpp

Print this page
rev 60420 : imported patch 8248401-Refactor-unify-RMI-gc-support-functionality

*** 1007,1017 **** static STWGCTimer _gc_timer; static ParallelOldTracer _gc_tracer; static elapsedTimer _accumulated_time; static unsigned int _total_invocations; static unsigned int _maximum_compaction_gc_num; - static jlong _time_of_last_gc; // ms static CollectorCounters* _counters; static ParMarkBitMap _mark_bitmap; static ParallelCompactData _summary_data; static IsAliveClosure _is_alive_closure; static SpaceInfo _space_info[last_space_id]; --- 1007,1016 ----
*** 1121,1133 **** // Add dense prefix update tasks to the task queue. static void enqueue_dense_prefix_tasks(TaskQueue& task_queue, uint parallel_gc_threads); - // Reset time since last full gc - static void reset_millis_since_last_gc(); - #ifndef PRODUCT // Print generic summary data static void print_generic_summary_data(ParallelCompactData& summary_data, HeapWord* const beg_addr, HeapWord* const end_addr); --- 1120,1129 ----
*** 1247,1259 **** static STWGCTimer* gc_timer() { return &_gc_timer; } // Return the SpaceId for the given address. static SpaceId space_id(HeapWord* addr); - // Time since last full gc (in milliseconds). - static jlong millis_since_last_gc(); - static void print_on_error(outputStream* st); #ifndef PRODUCT // Debugging support. static const char* space_names[last_space_id]; --- 1243,1252 ----
< prev index next >