|
40 | 40 | #include "oops/objArrayKlass.inline.hpp"
|
41 | 41 | #include "oops/oop.inline.hpp"
|
42 | 42 |
|
43 |
| -PSOldGen* ParCompactionManager::_old_gen = NULL; |
| 43 | +PSOldGen* ParCompactionManager::_old_gen = NULL; |
44 | 44 | ParCompactionManager** ParCompactionManager::_manager_array = NULL;
|
45 | 45 |
|
46 |
| -OopTaskQueueSet* ParCompactionManager::_stack_array = NULL; |
47 |
| -ParCompactionManager::ObjArrayTaskQueueSet* |
48 |
| - ParCompactionManager::_objarray_queues = NULL; |
| 46 | +ParCompactionManager::OopTaskQueueSet* ParCompactionManager::_oop_task_queues = NULL; |
| 47 | +ParCompactionManager::ObjArrayTaskQueueSet* ParCompactionManager::_objarray_task_queues = NULL; |
| 48 | +ParCompactionManager::RegionTaskQueueSet* ParCompactionManager::_region_task_queues = NULL; |
| 49 | + |
49 | 50 | ObjectStartArray* ParCompactionManager::_start_array = NULL;
|
50 | 51 | ParMarkBitMap* ParCompactionManager::_mark_bitmap = NULL;
|
51 |
| -RegionTaskQueueSet* ParCompactionManager::_region_array = NULL; |
52 | 52 | GrowableArray<size_t >* ParCompactionManager::_shadow_region_array = NULL;
|
53 | 53 | Monitor* ParCompactionManager::_shadow_region_monitor = NULL;
|
54 | 54 |
|
@@ -77,20 +77,20 @@ void ParCompactionManager::initialize(ParMarkBitMap* mbm) {
|
77 | 77 | assert(_manager_array == NULL, "Attempt to initialize twice");
|
78 | 78 | _manager_array = NEW_C_HEAP_ARRAY(ParCompactionManager*, parallel_gc_threads+1, mtGC);
|
79 | 79 |
|
80 |
| - _stack_array = new OopTaskQueueSet(parallel_gc_threads); |
81 |
| - guarantee(_stack_array != NULL, "Could not allocate stack_array"); |
82 |
| - _objarray_queues = new ObjArrayTaskQueueSet(parallel_gc_threads); |
83 |
| - guarantee(_objarray_queues != NULL, "Could not allocate objarray_queues"); |
84 |
| - _region_array = new RegionTaskQueueSet(parallel_gc_threads); |
85 |
| - guarantee(_region_array != NULL, "Could not allocate region_array"); |
| 80 | + _oop_task_queues = new OopTaskQueueSet(parallel_gc_threads); |
| 81 | + guarantee(_oop_task_queues != NULL, "Could not allocate oop task queues"); |
| 82 | + _objarray_task_queues = new ObjArrayTaskQueueSet(parallel_gc_threads); |
| 83 | + guarantee(_objarray_task_queues != NULL, "Could not allocate objarray task queues"); |
| 84 | + _region_task_queues = new RegionTaskQueueSet(parallel_gc_threads); |
| 85 | + guarantee(_region_task_queues != NULL, "Could not allocate region task queues"); |
86 | 86 |
|
87 | 87 | // Create and register the ParCompactionManager(s) for the worker threads.
|
88 | 88 | for(uint i=0; i<parallel_gc_threads; i++) {
|
89 | 89 | _manager_array[i] = new ParCompactionManager();
|
90 | 90 | guarantee(_manager_array[i] != NULL, "Could not create ParCompactionManager");
|
91 |
| - stack_array()->register_queue(i, _manager_array[i]->marking_stack()); |
92 |
| - _objarray_queues->register_queue(i, &_manager_array[i]->_objarray_stack); |
93 |
| - region_array()->register_queue(i, _manager_array[i]->region_stack()); |
| 91 | + oop_task_queues()->register_queue(i, _manager_array[i]->marking_stack()); |
| 92 | + _objarray_task_queues->register_queue(i, &_manager_array[i]->_objarray_stack); |
| 93 | + region_task_queues()->register_queue(i, _manager_array[i]->region_stack()); |
94 | 94 | }
|
95 | 95 |
|
96 | 96 | // The VMThread gets its own ParCompactionManager, which is not available
|
|
0 commit comments