Skip to content

Commit c160403

Browse files
author
Thomas Schatzl
committedFeb 11, 2020
8238160: Uniformize Parallel GC task queue variable names
Reviewed-by: kbarrett, sangheki
1 parent 1d42f08 commit c160403

7 files changed

+37
-38
lines changed
 

‎src/hotspot/share/gc/parallel/psCompactionManager.cpp

+14-14
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@
4040
#include "oops/objArrayKlass.inline.hpp"
4141
#include "oops/oop.inline.hpp"
4242

43-
PSOldGen* ParCompactionManager::_old_gen = NULL;
43+
PSOldGen* ParCompactionManager::_old_gen = NULL;
4444
ParCompactionManager** ParCompactionManager::_manager_array = NULL;
4545

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+
4950
ObjectStartArray* ParCompactionManager::_start_array = NULL;
5051
ParMarkBitMap* ParCompactionManager::_mark_bitmap = NULL;
51-
RegionTaskQueueSet* ParCompactionManager::_region_array = NULL;
5252
GrowableArray<size_t >* ParCompactionManager::_shadow_region_array = NULL;
5353
Monitor* ParCompactionManager::_shadow_region_monitor = NULL;
5454

@@ -77,20 +77,20 @@ void ParCompactionManager::initialize(ParMarkBitMap* mbm) {
7777
assert(_manager_array == NULL, "Attempt to initialize twice");
7878
_manager_array = NEW_C_HEAP_ARRAY(ParCompactionManager*, parallel_gc_threads+1, mtGC);
7979

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");
8686

8787
// Create and register the ParCompactionManager(s) for the worker threads.
8888
for(uint i=0; i<parallel_gc_threads; i++) {
8989
_manager_array[i] = new ParCompactionManager();
9090
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());
9494
}
9595

9696
// The VMThread gets its own ParCompactionManager, which is not available

‎src/hotspot/share/gc/parallel/psCompactionManager.hpp

+10-5
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,22 @@ class ParCompactionManager : public CHeapObj<mtGC> {
5151

5252

5353
private:
54+
typedef GenericTaskQueue<oop, mtGC> OopTaskQueue;
55+
typedef GenericTaskQueueSet<OopTaskQueue, mtGC> OopTaskQueueSet;
56+
5457
// 32-bit: 4K * 8 = 32KiB; 64-bit: 8K * 16 = 128KiB
5558
#define QUEUE_SIZE (1 << NOT_LP64(12) LP64_ONLY(13))
5659
typedef OverflowTaskQueue<ObjArrayTask, mtGC, QUEUE_SIZE> ObjArrayTaskQueue;
5760
typedef GenericTaskQueueSet<ObjArrayTaskQueue, mtGC> ObjArrayTaskQueueSet;
5861
#undef QUEUE_SIZE
62+
typedef OverflowTaskQueue<size_t, mtGC> RegionTaskQueue;
63+
typedef GenericTaskQueueSet<RegionTaskQueue, mtGC> RegionTaskQueueSet;
5964

6065
static ParCompactionManager** _manager_array;
61-
static OopTaskQueueSet* _stack_array;
62-
static ObjArrayTaskQueueSet* _objarray_queues;
66+
static OopTaskQueueSet* _oop_task_queues;
67+
static ObjArrayTaskQueueSet* _objarray_task_queues;
6368
static ObjectStartArray* _start_array;
64-
static RegionTaskQueueSet* _region_array;
69+
static RegionTaskQueueSet* _region_task_queues;
6570
static PSOldGen* _old_gen;
6671

6772
private:
@@ -90,13 +95,13 @@ class ParCompactionManager : public CHeapObj<mtGC> {
9095

9196
static PSOldGen* old_gen() { return _old_gen; }
9297
static ObjectStartArray* start_array() { return _start_array; }
93-
static OopTaskQueueSet* stack_array() { return _stack_array; }
98+
static OopTaskQueueSet* oop_task_queues() { return _oop_task_queues; }
9499

95100
static void initialize(ParMarkBitMap* mbm);
96101

97102
protected:
98103
// Array of task queues. Needed by the task terminator.
99-
static RegionTaskQueueSet* region_array() { return _region_array; }
104+
static RegionTaskQueueSet* region_task_queues() { return _region_task_queues; }
100105
OverflowTaskQueue<oop, mtGC>* marking_stack() { return &_marking_stack; }
101106

102107
// Pushes onto the marking stack. If the marking stack is full,

‎src/hotspot/share/gc/parallel/psCompactionManager.inline.hpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2010, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2010, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -70,15 +70,15 @@ class PCIterateMarkAndPushClosure: public MetadataVisitingOopIterateClosure {
7070
};
7171

7272
inline bool ParCompactionManager::steal(int queue_num, oop& t) {
73-
return stack_array()->steal(queue_num, t);
73+
return oop_task_queues()->steal(queue_num, t);
7474
}
7575

7676
inline bool ParCompactionManager::steal_objarray(int queue_num, ObjArrayTask& t) {
77-
return _objarray_queues->steal(queue_num, t);
77+
return _objarray_task_queues->steal(queue_num, t);
7878
}
7979

8080
inline bool ParCompactionManager::steal(int queue_num, size_t& region) {
81-
return region_array()->steal(queue_num, region);
81+
return region_task_queues()->steal(queue_num, region);
8282
}
8383

8484
inline void ParCompactionManager::push(oop obj) {

‎src/hotspot/share/gc/parallel/psParallelCompact.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -2178,7 +2178,7 @@ class MarkFromRootsTask : public AbstractGangTask {
21782178
AbstractGangTask("MarkFromRootsTask"),
21792179
_strong_roots_scope(active_workers),
21802180
_subtasks(),
2181-
_terminator(active_workers, ParCompactionManager::stack_array()),
2181+
_terminator(active_workers, ParCompactionManager::oop_task_queues()),
21822182
_active_workers(active_workers) {
21832183
_subtasks.set_n_threads(active_workers);
21842184
_subtasks.set_n_tasks(ParallelRootType::sentinel);
@@ -2210,7 +2210,7 @@ class PCRefProcTask : public AbstractGangTask {
22102210
AbstractGangTask("PCRefProcTask"),
22112211
_task(task),
22122212
_ergo_workers(ergo_workers),
2213-
_terminator(_ergo_workers, ParCompactionManager::stack_array()) {
2213+
_terminator(_ergo_workers, ParCompactionManager::oop_task_queues()) {
22142214
}
22152215

22162216
virtual void work(uint worker_id) {
@@ -2626,7 +2626,7 @@ class UpdateDensePrefixAndCompactionTask: public AbstractGangTask {
26262626
UpdateDensePrefixAndCompactionTask(TaskQueue& tq, uint active_workers) :
26272627
AbstractGangTask("UpdateDensePrefixAndCompactionTask"),
26282628
_tq(tq),
2629-
_terminator(active_workers, ParCompactionManager::region_array()),
2629+
_terminator(active_workers, ParCompactionManager::region_task_queues()),
26302630
_active_workers(active_workers) {
26312631
}
26322632
virtual void work(uint worker_id) {

‎src/hotspot/share/gc/parallel/psPromotionManager.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
#include "oops/compressedOops.inline.hpp"
4444

4545
PaddedEnd<PSPromotionManager>* PSPromotionManager::_manager_array = NULL;
46-
OopStarTaskQueueSet* PSPromotionManager::_stack_array_depth = NULL;
46+
PSPromotionManager::OopStarTaskQueueSet* PSPromotionManager::_stack_array_depth = NULL;
4747
PreservedMarksSet* PSPromotionManager::_preserved_marks_set = NULL;
4848
PSOldGen* PSPromotionManager::_old_gen = NULL;
4949
MutableSpace* PSPromotionManager::_young_space = NULL;

‎src/hotspot/share/gc/parallel/psPromotionManager.hpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -56,6 +56,9 @@ class PSPromotionManager {
5656
friend class PSRefProcTask;
5757

5858
private:
59+
typedef OverflowTaskQueue<StarTask, mtGC> OopStarTaskQueue;
60+
typedef GenericTaskQueueSet<OopStarTaskQueue, mtGC> OopStarTaskQueueSet;
61+
5962
static PaddedEnd<PSPromotionManager>* _manager_array;
6063
static OopStarTaskQueueSet* _stack_array_depth;
6164
static PreservedMarksSet* _preserved_marks_set;

‎src/hotspot/share/gc/shared/taskqueue.hpp

+1-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2001, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -443,9 +443,6 @@ class TerminatorTerminator: public CHeapObj<mtInternal> {
443443
virtual bool should_exit_termination() = 0;
444444
};
445445

446-
typedef GenericTaskQueue<oop, mtGC> OopTaskQueue;
447-
typedef GenericTaskQueueSet<OopTaskQueue, mtGC> OopTaskQueueSet;
448-
449446
#ifdef _MSC_VER
450447
#pragma warning(push)
451448
// warning C4522: multiple assignment operators specified
@@ -524,10 +521,4 @@ class ObjArrayTask
524521
#pragma warning(pop)
525522
#endif
526523

527-
typedef OverflowTaskQueue<StarTask, mtGC> OopStarTaskQueue;
528-
typedef GenericTaskQueueSet<OopStarTaskQueue, mtGC> OopStarTaskQueueSet;
529-
530-
typedef OverflowTaskQueue<size_t, mtGC> RegionTaskQueue;
531-
typedef GenericTaskQueueSet<RegionTaskQueue, mtGC> RegionTaskQueueSet;
532-
533524
#endif // SHARE_GC_SHARED_TASKQUEUE_HPP

0 commit comments

Comments
 (0)
Please sign in to comment.