author | tschatzl |
Wed, 25 Nov 2015 14:43:29 +0100 | |
changeset 34300 | 6075c1e0e913 |
parent 31345 | 1bba15125d8d |
child 35061 | be6025ebffea |
permissions | -rw-r--r-- |
23472 | 1 |
/* |
29464
02c245ad3ec9
8073545: Use shorter and more descriptive names for GC worker threads
david
parents:
25351
diff
changeset
|
2 |
* Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved. |
23472 | 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 |
* |
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
25 |
#include "precompiled.hpp" |
|
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30770
diff
changeset
|
26 |
#include "classfile/stringTable.hpp" |
30764 | 27 |
#include "gc/g1/g1Log.hpp" |
28 |
#include "gc/g1/g1StringDedup.hpp" |
|
29 |
#include "gc/g1/g1StringDedupQueue.hpp" |
|
30 |
#include "gc/g1/g1StringDedupTable.hpp" |
|
31 |
#include "gc/g1/g1StringDedupThread.hpp" |
|
30770
5ba2d9f2084d
8080585: concurrentGCThread.hpp should not include suspendibleThreadSet.hpp
pliden
parents:
30764
diff
changeset
|
32 |
#include "gc/g1/suspendibleThreadSet.hpp" |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30770
diff
changeset
|
33 |
#include "oops/oop.inline.hpp" |
25351
7c198a690050
8044775: Improve usage of umbrella header atomic.inline.hpp.
goetz
parents:
24331
diff
changeset
|
34 |
#include "runtime/atomic.inline.hpp" |
23472 | 35 |
|
36 |
G1StringDedupThread* G1StringDedupThread::_thread = NULL; |
|
37 |
||
38 |
G1StringDedupThread::G1StringDedupThread() : |
|
39 |
ConcurrentGCThread() { |
|
29464
02c245ad3ec9
8073545: Use shorter and more descriptive names for GC worker threads
david
parents:
25351
diff
changeset
|
40 |
set_name("G1 StrDedup"); |
23472 | 41 |
create_and_start(); |
42 |
} |
|
43 |
||
44 |
G1StringDedupThread::~G1StringDedupThread() { |
|
45 |
ShouldNotReachHere(); |
|
46 |
} |
|
47 |
||
48 |
void G1StringDedupThread::create() { |
|
49 |
assert(G1StringDedup::is_enabled(), "String deduplication not enabled"); |
|
50 |
assert(_thread == NULL, "One string deduplication thread allowed"); |
|
51 |
_thread = new G1StringDedupThread(); |
|
52 |
} |
|
53 |
||
54 |
G1StringDedupThread* G1StringDedupThread::thread() { |
|
55 |
assert(G1StringDedup::is_enabled(), "String deduplication not enabled"); |
|
56 |
assert(_thread != NULL, "String deduplication thread not created"); |
|
57 |
return _thread; |
|
58 |
} |
|
59 |
||
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30770
diff
changeset
|
60 |
class G1StringDedupSharedClosure: public OopClosure { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30770
diff
changeset
|
61 |
private: |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30770
diff
changeset
|
62 |
G1StringDedupStat& _stat; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30770
diff
changeset
|
63 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30770
diff
changeset
|
64 |
public: |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30770
diff
changeset
|
65 |
G1StringDedupSharedClosure(G1StringDedupStat& stat) : _stat(stat) {} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30770
diff
changeset
|
66 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30770
diff
changeset
|
67 |
virtual void do_oop(oop* p) { ShouldNotReachHere(); } |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30770
diff
changeset
|
68 |
virtual void do_oop(narrowOop* p) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30770
diff
changeset
|
69 |
oop java_string = oopDesc::load_decode_heap_oop(p); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30770
diff
changeset
|
70 |
G1StringDedupTable::deduplicate(java_string, _stat); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30770
diff
changeset
|
71 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30770
diff
changeset
|
72 |
}; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30770
diff
changeset
|
73 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30770
diff
changeset
|
74 |
// The CDS archive does not include the string dedupication table. Only the string |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30770
diff
changeset
|
75 |
// table is saved in the archive. The shared strings from CDS archive need to be |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30770
diff
changeset
|
76 |
// added to the string dedupication table before deduplication occurs. That is |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30770
diff
changeset
|
77 |
// done in the begining of the G1StringDedupThread (see G1StringDedupThread::run() |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30770
diff
changeset
|
78 |
// below). |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30770
diff
changeset
|
79 |
void G1StringDedupThread::deduplicate_shared_strings(G1StringDedupStat& stat) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30770
diff
changeset
|
80 |
G1StringDedupSharedClosure sharedStringDedup(stat); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30770
diff
changeset
|
81 |
StringTable::shared_oops_do(&sharedStringDedup); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30770
diff
changeset
|
82 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30770
diff
changeset
|
83 |
|
23472 | 84 |
void G1StringDedupThread::run() { |
85 |
G1StringDedupStat total_stat; |
|
86 |
||
87 |
initialize_in_thread(); |
|
88 |
wait_for_universe_init(); |
|
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30770
diff
changeset
|
89 |
deduplicate_shared_strings(total_stat); |
23472 | 90 |
|
91 |
// Main loop |
|
92 |
for (;;) { |
|
93 |
G1StringDedupStat stat; |
|
94 |
||
95 |
stat.mark_idle(); |
|
96 |
||
97 |
// Wait for the queue to become non-empty |
|
98 |
G1StringDedupQueue::wait(); |
|
24093
095cc0a63ed9
8037112: gc/g1/TestHumongousAllocInitialMark.java caused SIGSEGV
pliden
parents:
23472
diff
changeset
|
99 |
if (_should_terminate) { |
095cc0a63ed9
8037112: gc/g1/TestHumongousAllocInitialMark.java caused SIGSEGV
pliden
parents:
23472
diff
changeset
|
100 |
break; |
095cc0a63ed9
8037112: gc/g1/TestHumongousAllocInitialMark.java caused SIGSEGV
pliden
parents:
23472
diff
changeset
|
101 |
} |
23472 | 102 |
|
24094 | 103 |
{ |
104 |
// Include thread in safepoints |
|
30613
a7815bb05ae2
8079579: Add SuspendibleThreadSetLeaver and make SuspendibleThreadSet::joint()/leave() private
pliden
parents:
29464
diff
changeset
|
105 |
SuspendibleThreadSetJoiner sts_join; |
23472 | 106 |
|
24094 | 107 |
stat.mark_exec(); |
23472 | 108 |
|
24094 | 109 |
// Process the queue |
110 |
for (;;) { |
|
111 |
oop java_string = G1StringDedupQueue::pop(); |
|
112 |
if (java_string == NULL) { |
|
113 |
break; |
|
114 |
} |
|
115 |
||
116 |
G1StringDedupTable::deduplicate(java_string, stat); |
|
117 |
||
118 |
// Safepoint this thread if needed |
|
30613
a7815bb05ae2
8079579: Add SuspendibleThreadSetLeaver and make SuspendibleThreadSet::joint()/leave() private
pliden
parents:
29464
diff
changeset
|
119 |
if (sts_join.should_yield()) { |
24094 | 120 |
stat.mark_block(); |
30613
a7815bb05ae2
8079579: Add SuspendibleThreadSetLeaver and make SuspendibleThreadSet::joint()/leave() private
pliden
parents:
29464
diff
changeset
|
121 |
sts_join.yield(); |
24094 | 122 |
stat.mark_unblock(); |
123 |
} |
|
23472 | 124 |
} |
125 |
||
24094 | 126 |
G1StringDedupTable::trim_entry_cache(); |
23472 | 127 |
|
24094 | 128 |
stat.mark_done(); |
23472 | 129 |
|
24094 | 130 |
// Print statistics |
131 |
total_stat.add(stat); |
|
132 |
print(gclog_or_tty, stat, total_stat); |
|
133 |
} |
|
23472 | 134 |
} |
135 |
||
24093
095cc0a63ed9
8037112: gc/g1/TestHumongousAllocInitialMark.java caused SIGSEGV
pliden
parents:
23472
diff
changeset
|
136 |
terminate(); |
095cc0a63ed9
8037112: gc/g1/TestHumongousAllocInitialMark.java caused SIGSEGV
pliden
parents:
23472
diff
changeset
|
137 |
} |
095cc0a63ed9
8037112: gc/g1/TestHumongousAllocInitialMark.java caused SIGSEGV
pliden
parents:
23472
diff
changeset
|
138 |
|
095cc0a63ed9
8037112: gc/g1/TestHumongousAllocInitialMark.java caused SIGSEGV
pliden
parents:
23472
diff
changeset
|
139 |
void G1StringDedupThread::stop() { |
095cc0a63ed9
8037112: gc/g1/TestHumongousAllocInitialMark.java caused SIGSEGV
pliden
parents:
23472
diff
changeset
|
140 |
{ |
095cc0a63ed9
8037112: gc/g1/TestHumongousAllocInitialMark.java caused SIGSEGV
pliden
parents:
23472
diff
changeset
|
141 |
MonitorLockerEx ml(Terminator_lock); |
095cc0a63ed9
8037112: gc/g1/TestHumongousAllocInitialMark.java caused SIGSEGV
pliden
parents:
23472
diff
changeset
|
142 |
_thread->_should_terminate = true; |
095cc0a63ed9
8037112: gc/g1/TestHumongousAllocInitialMark.java caused SIGSEGV
pliden
parents:
23472
diff
changeset
|
143 |
} |
095cc0a63ed9
8037112: gc/g1/TestHumongousAllocInitialMark.java caused SIGSEGV
pliden
parents:
23472
diff
changeset
|
144 |
|
095cc0a63ed9
8037112: gc/g1/TestHumongousAllocInitialMark.java caused SIGSEGV
pliden
parents:
23472
diff
changeset
|
145 |
G1StringDedupQueue::cancel_wait(); |
095cc0a63ed9
8037112: gc/g1/TestHumongousAllocInitialMark.java caused SIGSEGV
pliden
parents:
23472
diff
changeset
|
146 |
|
095cc0a63ed9
8037112: gc/g1/TestHumongousAllocInitialMark.java caused SIGSEGV
pliden
parents:
23472
diff
changeset
|
147 |
{ |
095cc0a63ed9
8037112: gc/g1/TestHumongousAllocInitialMark.java caused SIGSEGV
pliden
parents:
23472
diff
changeset
|
148 |
MonitorLockerEx ml(Terminator_lock); |
095cc0a63ed9
8037112: gc/g1/TestHumongousAllocInitialMark.java caused SIGSEGV
pliden
parents:
23472
diff
changeset
|
149 |
while (!_thread->_has_terminated) { |
095cc0a63ed9
8037112: gc/g1/TestHumongousAllocInitialMark.java caused SIGSEGV
pliden
parents:
23472
diff
changeset
|
150 |
ml.wait(); |
095cc0a63ed9
8037112: gc/g1/TestHumongousAllocInitialMark.java caused SIGSEGV
pliden
parents:
23472
diff
changeset
|
151 |
} |
095cc0a63ed9
8037112: gc/g1/TestHumongousAllocInitialMark.java caused SIGSEGV
pliden
parents:
23472
diff
changeset
|
152 |
} |
23472 | 153 |
} |
154 |
||
155 |
void G1StringDedupThread::print(outputStream* st, const G1StringDedupStat& last_stat, const G1StringDedupStat& total_stat) { |
|
156 |
if (G1Log::fine() || PrintStringDeduplicationStatistics) { |
|
157 |
G1StringDedupStat::print_summary(st, last_stat, total_stat); |
|
158 |
if (PrintStringDeduplicationStatistics) { |
|
159 |
G1StringDedupStat::print_statistics(st, last_stat, false); |
|
160 |
G1StringDedupStat::print_statistics(st, total_stat, true); |
|
161 |
G1StringDedupTable::print_statistics(st); |
|
162 |
G1StringDedupQueue::print_statistics(st); |
|
163 |
} |
|
164 |
} |
|
165 |
} |