author | mgronlun |
Sat, 14 Sep 2019 13:03:44 +0200 | |
branch | JEP-349-branch |
changeset 58154 | 060d9d139109 |
parent 53244 | 9807daeb47c4 |
permissions | -rw-r--r-- |
23472 | 1 |
/* |
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
50574
diff
changeset
|
2 |
* Copyright (c) 2018, 2019, 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 |
||
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
50574
diff
changeset
|
25 |
#ifndef SHARE_GC_G1_G1STRINGDEDUPSTAT_HPP |
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
50574
diff
changeset
|
26 |
#define SHARE_GC_G1_G1STRINGDEDUPSTAT_HPP |
23472 | 27 |
|
50574 | 28 |
#include "gc/shared/stringdedup/stringDedupStat.hpp" |
23472 | 29 |
|
50574 | 30 |
// G1 extension for gathering/reporting generational statistics |
31 |
class G1StringDedupStat : public StringDedupStat { |
|
23472 | 32 |
private: |
33 |
uintx _deduped_young; |
|
34 |
uintx _deduped_young_bytes; |
|
35 |
uintx _deduped_old; |
|
36 |
uintx _deduped_old_bytes; |
|
37 |
||
50574 | 38 |
G1CollectedHeap* const _heap; |
23472 | 39 |
|
40 |
public: |
|
41 |
G1StringDedupStat(); |
|
42 |
||
50574 | 43 |
void deduped(oop obj, uintx bytes); |
23472 | 44 |
|
50574 | 45 |
void add(const StringDedupStat* const stat); |
23472 | 46 |
|
50574 | 47 |
void print_statistics(bool total) const; |
23472 | 48 |
|
50574 | 49 |
void reset(); |
23472 | 50 |
}; |
51 |
||
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
50574
diff
changeset
|
52 |
#endif // SHARE_GC_G1_G1STRINGDEDUPSTAT_HPP |