author | tschatzl |
Wed, 16 Apr 2014 16:46:58 +0200 | |
changeset 24104 | febf9363fb68 |
parent 23855 | c4574075402c |
child 26160 | aba6b01cb988 |
permissions | -rw-r--r-- |
1374 | 1 |
/* |
17327
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
13963
diff
changeset
|
2 |
* Copyright (c) 2001, 2013, 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:
5033
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5033
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:
5033
diff
changeset
|
21 |
* questions. |
1374 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_GC_IMPLEMENTATION_G1_CONCURRENTG1REFINE_HPP |
26 |
#define SHARE_VM_GC_IMPLEMENTATION_G1_CONCURRENTG1REFINE_HPP |
|
27 |
||
17327
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
13963
diff
changeset
|
28 |
#include "gc_implementation/g1/g1HotCardCache.hpp" |
7397 | 29 |
#include "memory/allocation.hpp" |
30 |
#include "runtime/thread.hpp" |
|
31 |
#include "utilities/globalDefinitions.hpp" |
|
32 |
||
1374 | 33 |
// Forward decl |
34 |
class ConcurrentG1RefineThread; |
|
17327
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
13963
diff
changeset
|
35 |
class G1CollectedHeap; |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
13963
diff
changeset
|
36 |
class G1HotCardCache; |
1374 | 37 |
class G1RemSet; |
17854
d65bc1546091
8013895: G1: G1SummarizeRSetStats output on Linux needs improvemen
tschatzl
parents:
17327
diff
changeset
|
38 |
class DirtyCardQueue; |
1374 | 39 |
|
13195 | 40 |
class ConcurrentG1Refine: public CHeapObj<mtGC> { |
2881 | 41 |
ConcurrentG1RefineThread** _threads; |
23855
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
17854
diff
changeset
|
42 |
uint _n_threads; |
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
17854
diff
changeset
|
43 |
uint _n_worker_threads; |
4481 | 44 |
/* |
45 |
* The value of the update buffer queue length falls into one of 3 zones: |
|
46 |
* green, yellow, red. If the value is in [0, green) nothing is |
|
47 |
* done, the buffers are left unprocessed to enable the caching effect of the |
|
48 |
* dirtied cards. In the yellow zone [green, yellow) the concurrent refinement |
|
49 |
* threads are gradually activated. In [yellow, red) all threads are |
|
50 |
* running. If the length becomes red (max queue length) the mutators start |
|
51 |
* processing the buffers. |
|
52 |
* |
|
5033 | 53 |
* There are some interesting cases (when G1UseAdaptiveConcRefinement |
54 |
* is turned off): |
|
4481 | 55 |
* 1) green = yellow = red = 0. In this case the mutator will process all |
56 |
* buffers. Except for those that are created by the deferred updates |
|
57 |
* machinery during a collection. |
|
58 |
* 2) green = 0. Means no caching. Can be a good way to minimize the |
|
59 |
* amount of time spent updating rsets during a collection. |
|
60 |
*/ |
|
61 |
int _green_zone; |
|
62 |
int _yellow_zone; |
|
63 |
int _red_zone; |
|
64 |
||
65 |
int _thread_threshold_step; |
|
66 |
||
17327
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
13963
diff
changeset
|
67 |
// We delay the refinement of 'hot' cards using the hot card cache. |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
13963
diff
changeset
|
68 |
G1HotCardCache _hot_card_cache; |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
13963
diff
changeset
|
69 |
|
4481 | 70 |
// Reset the threshold step value based of the current zone boundaries. |
71 |
void reset_threshold_step(); |
|
3590
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3589
diff
changeset
|
72 |
|
1374 | 73 |
public: |
24104
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
74 |
ConcurrentG1Refine(G1CollectedHeap* g1h, CardTableEntryClosure* refine_closure); |
1374 | 75 |
~ConcurrentG1Refine(); |
76 |
||
77 |
void init(); // Accomplish some initialization that has to wait. |
|
2881 | 78 |
void stop(); |
1374 | 79 |
|
4481 | 80 |
void reinitialize_threads(); |
81 |
||
17854
d65bc1546091
8013895: G1: G1SummarizeRSetStats output on Linux needs improvemen
tschatzl
parents:
17327
diff
changeset
|
82 |
// Iterate over all concurrent refinement threads |
2881 | 83 |
void threads_do(ThreadClosure *tc); |
1374 | 84 |
|
17854
d65bc1546091
8013895: G1: G1SummarizeRSetStats output on Linux needs improvemen
tschatzl
parents:
17327
diff
changeset
|
85 |
// Iterate over all worker refinement threads |
d65bc1546091
8013895: G1: G1SummarizeRSetStats output on Linux needs improvemen
tschatzl
parents:
17327
diff
changeset
|
86 |
void worker_threads_do(ThreadClosure * tc); |
d65bc1546091
8013895: G1: G1SummarizeRSetStats output on Linux needs improvemen
tschatzl
parents:
17327
diff
changeset
|
87 |
|
d65bc1546091
8013895: G1: G1SummarizeRSetStats output on Linux needs improvemen
tschatzl
parents:
17327
diff
changeset
|
88 |
// The RS sampling thread |
d65bc1546091
8013895: G1: G1SummarizeRSetStats output on Linux needs improvemen
tschatzl
parents:
17327
diff
changeset
|
89 |
ConcurrentG1RefineThread * sampling_thread() const; |
d65bc1546091
8013895: G1: G1SummarizeRSetStats output on Linux needs improvemen
tschatzl
parents:
17327
diff
changeset
|
90 |
|
23855
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
17854
diff
changeset
|
91 |
static uint thread_num(); |
4022 | 92 |
|
93 |
void print_worker_threads_on(outputStream* st) const; |
|
4481 | 94 |
|
95 |
void set_green_zone(int x) { _green_zone = x; } |
|
96 |
void set_yellow_zone(int x) { _yellow_zone = x; } |
|
97 |
void set_red_zone(int x) { _red_zone = x; } |
|
98 |
||
99 |
int green_zone() const { return _green_zone; } |
|
100 |
int yellow_zone() const { return _yellow_zone; } |
|
101 |
int red_zone() const { return _red_zone; } |
|
102 |
||
23855
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
17854
diff
changeset
|
103 |
uint total_thread_num() const { return _n_threads; } |
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
17854
diff
changeset
|
104 |
uint worker_thread_num() const { return _n_worker_threads; } |
4481 | 105 |
|
106 |
int thread_threshold_step() const { return _thread_threshold_step; } |
|
17327
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
13963
diff
changeset
|
107 |
|
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
13963
diff
changeset
|
108 |
G1HotCardCache* hot_card_cache() { return &_hot_card_cache; } |
1374 | 109 |
}; |
7397 | 110 |
|
111 |
#endif // SHARE_VM_GC_IMPLEMENTATION_G1_CONCURRENTG1REFINE_HPP |