author | stefank |
Fri, 24 Nov 2017 15:48:01 +0100 | |
changeset 48116 | 8a5e8cd321d9 |
parent 47765 | b7c7428eaab9 |
child 54678 | 93f09ca4a7f8 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
46560
388aa8d67c80
8181449: Fix debug.hpp / globalDefinitions.hpp dependency inversion
kbarrett
parents:
40914
diff
changeset
|
2 |
* Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved. |
1 | 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:
2105
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
2105
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:
2105
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
47765
b7c7428eaab9
8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents:
47216
diff
changeset
|
26 |
#include "jvm.h" |
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
35492
diff
changeset
|
27 |
#include "gc/shared/ageTable.inline.hpp" |
36097
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
35862
diff
changeset
|
28 |
#include "gc/shared/ageTableTracer.hpp" |
30764 | 29 |
#include "gc/shared/collectedHeap.hpp" |
30 |
#include "gc/shared/collectorPolicy.hpp" |
|
7397 | 31 |
#include "memory/resourceArea.hpp" |
35061 | 32 |
#include "logging/log.hpp" |
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
35492
diff
changeset
|
33 |
#include "oops/oop.inline.hpp" |
7397 | 34 |
#include "utilities/copy.hpp" |
35 |
||
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
35492
diff
changeset
|
36 |
/* Copyright (c) 1992, 2016, Oracle and/or its affiliates, and Stanford University. |
1 | 37 |
See the LICENSE file for license information. */ |
38 |
||
35492
c8c0273e6b91
8146690: Make all classes in GC follow the naming convention.
david
parents:
35061
diff
changeset
|
39 |
AgeTable::AgeTable(bool global) { |
1 | 40 |
|
41 |
clear(); |
|
42 |
||
43 |
if (UsePerfData && global) { |
|
44 |
||
45 |
ResourceMark rm; |
|
46 |
EXCEPTION_MARK; |
|
47 |
||
48 |
const char* agetable_ns = "generation.0.agetable"; |
|
49 |
const char* bytes_ns = PerfDataManager::name_space(agetable_ns, "bytes"); |
|
50 |
||
51 |
for(int age = 0; age < table_size; age ++) { |
|
52 |
char age_name[10]; |
|
53 |
jio_snprintf(age_name, sizeof(age_name), "%2.2d", age); |
|
54 |
const char* cname = PerfDataManager::counter_name(bytes_ns, age_name); |
|
55 |
_perf_sizes[age] = PerfDataManager::create_variable(SUN_GC, cname, |
|
56 |
PerfData::U_Bytes, |
|
57 |
CHECK); |
|
58 |
} |
|
59 |
||
60 |
const char* cname = PerfDataManager::counter_name(agetable_ns, "size"); |
|
61 |
PerfDataManager::create_constant(SUN_GC, cname, PerfData::U_None, |
|
62 |
table_size, CHECK); |
|
63 |
} |
|
64 |
} |
|
65 |
||
35492
c8c0273e6b91
8146690: Make all classes in GC follow the naming convention.
david
parents:
35061
diff
changeset
|
66 |
void AgeTable::clear() { |
1 | 67 |
for (size_t* p = sizes; p < sizes + table_size; ++p) { |
68 |
*p = 0; |
|
69 |
} |
|
70 |
} |
|
71 |
||
35492
c8c0273e6b91
8146690: Make all classes in GC follow the naming convention.
david
parents:
35061
diff
changeset
|
72 |
void AgeTable::merge(AgeTable* subTable) { |
1 | 73 |
for (int i = 0; i < table_size; i++) { |
74 |
sizes[i]+= subTable->sizes[i]; |
|
75 |
} |
|
76 |
} |
|
77 |
||
40914
90c87069b39c
8164936: G1 age table printout contains contents from previous GC
tschatzl
parents:
36097
diff
changeset
|
78 |
uint AgeTable::compute_tenuring_threshold(size_t desired_survivor_size) { |
23506
9b98355e9060
6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents:
15228
diff
changeset
|
79 |
uint result; |
9b98355e9060
6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents:
15228
diff
changeset
|
80 |
|
9b98355e9060
6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents:
15228
diff
changeset
|
81 |
if (AlwaysTenure || NeverTenure) { |
9b98355e9060
6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents:
15228
diff
changeset
|
82 |
assert(MaxTenuringThreshold == 0 || MaxTenuringThreshold == markOopDesc::max_age + 1, |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32736
diff
changeset
|
83 |
"MaxTenuringThreshold should be 0 or markOopDesc::max_age + 1, but is " UINTX_FORMAT, MaxTenuringThreshold); |
23506
9b98355e9060
6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents:
15228
diff
changeset
|
84 |
result = MaxTenuringThreshold; |
9b98355e9060
6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents:
15228
diff
changeset
|
85 |
} else { |
9b98355e9060
6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents:
15228
diff
changeset
|
86 |
size_t total = 0; |
9b98355e9060
6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents:
15228
diff
changeset
|
87 |
uint age = 1; |
9b98355e9060
6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents:
15228
diff
changeset
|
88 |
assert(sizes[0] == 0, "no objects with age zero should be recorded"); |
9b98355e9060
6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents:
15228
diff
changeset
|
89 |
while (age < table_size) { |
9b98355e9060
6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents:
15228
diff
changeset
|
90 |
total += sizes[age]; |
9b98355e9060
6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents:
15228
diff
changeset
|
91 |
// check if including objects of age 'age' made us pass the desired |
9b98355e9060
6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents:
15228
diff
changeset
|
92 |
// size, if so 'age' is the new threshold |
9b98355e9060
6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents:
15228
diff
changeset
|
93 |
if (total > desired_survivor_size) break; |
9b98355e9060
6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents:
15228
diff
changeset
|
94 |
age++; |
9b98355e9060
6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents:
15228
diff
changeset
|
95 |
} |
9b98355e9060
6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents:
15228
diff
changeset
|
96 |
result = age < MaxTenuringThreshold ? age : MaxTenuringThreshold; |
1 | 97 |
} |
98 |
||
99 |
||
35061 | 100 |
log_debug(gc, age)("Desired survivor size " SIZE_FORMAT " bytes, new threshold " UINTX_FORMAT " (max threshold " UINTX_FORMAT ")", |
40914
90c87069b39c
8164936: G1 age table printout contains contents from previous GC
tschatzl
parents:
36097
diff
changeset
|
101 |
desired_survivor_size * oopSize, (uintx) result, MaxTenuringThreshold); |
90c87069b39c
8164936: G1 age table printout contains contents from previous GC
tschatzl
parents:
36097
diff
changeset
|
102 |
|
90c87069b39c
8164936: G1 age table printout contains contents from previous GC
tschatzl
parents:
36097
diff
changeset
|
103 |
return result; |
90c87069b39c
8164936: G1 age table printout contains contents from previous GC
tschatzl
parents:
36097
diff
changeset
|
104 |
} |
1 | 105 |
|
40914
90c87069b39c
8164936: G1 age table printout contains contents from previous GC
tschatzl
parents:
36097
diff
changeset
|
106 |
void AgeTable::print_age_table(uint tenuring_threshold) { |
36097
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
35862
diff
changeset
|
107 |
if (log_is_enabled(Trace, gc, age) || UsePerfData || AgeTableTracer::is_tenuring_distribution_event_enabled()) { |
40914
90c87069b39c
8164936: G1 age table printout contains contents from previous GC
tschatzl
parents:
36097
diff
changeset
|
108 |
log_trace(gc, age)("Age table with threshold %u (max threshold " UINTX_FORMAT ")", |
90c87069b39c
8164936: G1 age table printout contains contents from previous GC
tschatzl
parents:
36097
diff
changeset
|
109 |
tenuring_threshold, MaxTenuringThreshold); |
90c87069b39c
8164936: G1 age table printout contains contents from previous GC
tschatzl
parents:
36097
diff
changeset
|
110 |
|
23506
9b98355e9060
6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents:
15228
diff
changeset
|
111 |
size_t total = 0; |
9b98355e9060
6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents:
15228
diff
changeset
|
112 |
uint age = 1; |
1 | 113 |
while (age < table_size) { |
36097
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
35862
diff
changeset
|
114 |
size_t wordSize = sizes[age]; |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
35862
diff
changeset
|
115 |
total += wordSize; |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
35862
diff
changeset
|
116 |
if (wordSize > 0) { |
35061 | 117 |
log_trace(gc, age)("- age %3u: " SIZE_FORMAT_W(10) " bytes, " SIZE_FORMAT_W(10) " total", |
40914
90c87069b39c
8164936: G1 age table printout contains contents from previous GC
tschatzl
parents:
36097
diff
changeset
|
118 |
age, wordSize * oopSize, total * oopSize); |
1 | 119 |
} |
40914
90c87069b39c
8164936: G1 age table printout contains contents from previous GC
tschatzl
parents:
36097
diff
changeset
|
120 |
AgeTableTracer::send_tenuring_distribution_event(age, wordSize * oopSize); |
1 | 121 |
if (UsePerfData) { |
40914
90c87069b39c
8164936: G1 age table printout contains contents from previous GC
tschatzl
parents:
36097
diff
changeset
|
122 |
_perf_sizes[age]->set_value(wordSize * oopSize); |
1 | 123 |
} |
124 |
age++; |
|
125 |
} |
|
126 |
} |
|
40914
90c87069b39c
8164936: G1 age table printout contains contents from previous GC
tschatzl
parents:
36097
diff
changeset
|
127 |
} |
1 | 128 |