annotate src/share/vm/gc_implementation/g1/g1StringDedupThread.hpp @ 20218:828056cf311f

8040792: G1: Memory usage calculation uses sizeof(this) instead of sizeof(classname) Summary: A few locations in the code use sizeof(this) which returns the size of the pointer instead of sizeof(classname) which returns the size of the sum of its members. This change fixes these errors and adds a few tests. Reviewed-by: mgerdin, brutisso
author tschatzl
date Mon, 21 Jul 2014 09:40:19 +0200
parents 1772223a25a2
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
17764
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
1 /*
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
2 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
4 *
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
7 * published by the Free Software Foundation.
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
8 *
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
13 * accompanied this code).
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
14 *
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
18 *
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
21 * questions.
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
22 *
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
23 */
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
24
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
25 #ifndef SHARE_VM_GC_IMPLEMENTATION_G1_G1STRINGDEDUPTHREAD_HPP
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
26 #define SHARE_VM_GC_IMPLEMENTATION_G1_G1STRINGDEDUPTHREAD_HPP
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
27
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
28 #include "gc_implementation/g1/g1StringDedupStat.hpp"
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
29 #include "gc_implementation/shared/concurrentGCThread.hpp"
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
30
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
31 //
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
32 // The deduplication thread is where the actual deduplication occurs. It waits for
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
33 // deduplication candidates to appear on the deduplication queue, removes them from
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
34 // the queue and tries to deduplicate them. It uses the deduplication hashtable to
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
35 // find identical, already existing, character arrays on the heap. The thread runs
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
36 // concurrently with the Java application but participates in safepoints to allow
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
37 // the GC to adjust and unlink oops from the deduplication queue and table.
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
38 //
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
39 class G1StringDedupThread: public ConcurrentGCThread {
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
40 private:
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
41 static G1StringDedupThread* _thread;
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
42
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
43 G1StringDedupThread();
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
44 ~G1StringDedupThread();
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
45
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
46 void print(outputStream* st, const G1StringDedupStat& last_stat, const G1StringDedupStat& total_stat);
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
47
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
48 public:
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
49 static void create();
17947
1772223a25a2 8037112: gc/g1/TestHumongousAllocInitialMark.java caused SIGSEGV
pliden
parents: 17764
diff changeset
50 static void stop();
1772223a25a2 8037112: gc/g1/TestHumongousAllocInitialMark.java caused SIGSEGV
pliden
parents: 17764
diff changeset
51
17764
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
52 static G1StringDedupThread* thread();
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
53
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
54 virtual void run();
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
55 virtual void print_on(outputStream* st) const;
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
56 };
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
57
595c0f60d50d 8029075: String deduplication in G1
pliden
parents:
diff changeset
58 #endif // SHARE_VM_GC_IMPLEMENTATION_G1_G1STRINGDEDUPTHREAD_HPP