author | tschatzl |
Wed, 18 Apr 2018 11:36:48 +0200 | |
changeset 49806 | 2d62570a615c |
parent 48103 | 26dbe08d1c17 |
child 51332 | c25572739e7c |
permissions | -rw-r--r-- |
1374 | 1 |
/* |
47789
a77a7d3bc4f6
8149127: Rename g1/concurrentMarkThread.* to g1/g1ConcurrentMarkThread.*
tschatzl
parents:
47216
diff
changeset
|
2 |
* Copyright (c) 2001, 2017, Oracle and/or its affiliates. All rights reserved. |
1374 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4481
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4481
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4481
diff
changeset
|
21 |
* questions. |
1374 | 22 |
* |
23 |
*/ |
|
24 |
||
47789
a77a7d3bc4f6
8149127: Rename g1/concurrentMarkThread.* to g1/g1ConcurrentMarkThread.*
tschatzl
parents:
47216
diff
changeset
|
25 |
#ifndef SHARE_VM_GC_G1_G1CONCURRENTREFINETHREAD_HPP |
a77a7d3bc4f6
8149127: Rename g1/concurrentMarkThread.* to g1/g1ConcurrentMarkThread.*
tschatzl
parents:
47216
diff
changeset
|
26 |
#define SHARE_VM_GC_G1_G1CONCURRENTREFINETHREAD_HPP |
7397 | 27 |
|
46653 | 28 |
#include "gc/g1/dirtyCardQueue.hpp" |
30764 | 29 |
#include "gc/shared/concurrentGCThread.hpp" |
7397 | 30 |
|
1374 | 31 |
// Forward Decl. |
24104
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
24094
diff
changeset
|
32 |
class CardTableEntryClosure; |
47789
a77a7d3bc4f6
8149127: Rename g1/concurrentMarkThread.* to g1/g1ConcurrentMarkThread.*
tschatzl
parents:
47216
diff
changeset
|
33 |
class G1ConcurrentRefine; |
1374 | 34 |
|
33608
7afc768e4d62
8138920: Refactor the sampling thread from ConcurrentG1RefineThread
drwhite
parents:
30764
diff
changeset
|
35 |
// One or more G1 Concurrent Refinement Threads may be active if concurrent |
7afc768e4d62
8138920: Refactor the sampling thread from ConcurrentG1RefineThread
drwhite
parents:
30764
diff
changeset
|
36 |
// refinement is in progress. |
47789
a77a7d3bc4f6
8149127: Rename g1/concurrentMarkThread.* to g1/g1ConcurrentMarkThread.*
tschatzl
parents:
47216
diff
changeset
|
37 |
class G1ConcurrentRefineThread: public ConcurrentGCThread { |
1374 | 38 |
friend class VMStructs; |
39 |
friend class G1CollectedHeap; |
|
40 |
||
41 |
double _vtime_start; // Initial virtual time. |
|
33608
7afc768e4d62
8138920: Refactor the sampling thread from ConcurrentG1RefineThread
drwhite
parents:
30764
diff
changeset
|
42 |
double _vtime_accum; // Accumulated virtual time. |
23855
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
7397
diff
changeset
|
43 |
uint _worker_id; |
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
7397
diff
changeset
|
44 |
uint _worker_id_offset; |
1374 | 45 |
|
2881 | 46 |
bool _active; |
4481 | 47 |
Monitor* _monitor; |
47789
a77a7d3bc4f6
8149127: Rename g1/concurrentMarkThread.* to g1/g1ConcurrentMarkThread.*
tschatzl
parents:
47216
diff
changeset
|
48 |
G1ConcurrentRefine* _cr; |
1374 | 49 |
|
4481 | 50 |
void wait_for_completed_buffers(); |
51 |
||
52 |
void set_active(bool x) { _active = x; } |
|
48103
26dbe08d1c17
8190426: Lazily initialize refinement threads with UseDynamicNumberOfGCThreads
tschatzl
parents:
47789
diff
changeset
|
53 |
// Deactivate this thread. |
4481 | 54 |
void deactivate(); |
1374 | 55 |
|
33608
7afc768e4d62
8138920: Refactor the sampling thread from ConcurrentG1RefineThread
drwhite
parents:
30764
diff
changeset
|
56 |
bool is_primary() { return (_worker_id == 0); } |
7afc768e4d62
8138920: Refactor the sampling thread from ConcurrentG1RefineThread
drwhite
parents:
30764
diff
changeset
|
57 |
|
7afc768e4d62
8138920: Refactor the sampling thread from ConcurrentG1RefineThread
drwhite
parents:
30764
diff
changeset
|
58 |
void run_service(); |
7afc768e4d62
8138920: Refactor the sampling thread from ConcurrentG1RefineThread
drwhite
parents:
30764
diff
changeset
|
59 |
void stop_service(); |
48103
26dbe08d1c17
8190426: Lazily initialize refinement threads with UseDynamicNumberOfGCThreads
tschatzl
parents:
47789
diff
changeset
|
60 |
public: |
26dbe08d1c17
8190426: Lazily initialize refinement threads with UseDynamicNumberOfGCThreads
tschatzl
parents:
47789
diff
changeset
|
61 |
G1ConcurrentRefineThread(G1ConcurrentRefine* cg1r, uint worker_id); |
33608
7afc768e4d62
8138920: Refactor the sampling thread from ConcurrentG1RefineThread
drwhite
parents:
30764
diff
changeset
|
62 |
|
48103
26dbe08d1c17
8190426: Lazily initialize refinement threads with UseDynamicNumberOfGCThreads
tschatzl
parents:
47789
diff
changeset
|
63 |
bool is_active(); |
26dbe08d1c17
8190426: Lazily initialize refinement threads with UseDynamicNumberOfGCThreads
tschatzl
parents:
47789
diff
changeset
|
64 |
// Activate this thread. |
26dbe08d1c17
8190426: Lazily initialize refinement threads with UseDynamicNumberOfGCThreads
tschatzl
parents:
47789
diff
changeset
|
65 |
void activate(); |
4481 | 66 |
|
1374 | 67 |
// Total virtual time so far. |
68 |
double vtime_accum() { return _vtime_accum; } |
|
69 |
}; |
|
7397 | 70 |
|
47789
a77a7d3bc4f6
8149127: Rename g1/concurrentMarkThread.* to g1/g1ConcurrentMarkThread.*
tschatzl
parents:
47216
diff
changeset
|
71 |
#endif // SHARE_VM_GC_G1_G1CONCURRENTREFINETHREAD_HPP |