author | stefank |
Thu, 22 Feb 2018 18:36:07 +0100 | |
changeset 49047 | 8f004146e407 |
parent 47216 | 71c04702a3d5 |
child 50113 | caf115bb98ad |
permissions | -rw-r--r-- |
36097
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
1 |
/* |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
2 |
* Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved. |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
4 |
* |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
8 |
* |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
13 |
* accompanied this code). |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
14 |
* |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
18 |
* |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
21 |
* questions. |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
22 |
* |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
23 |
*/ |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
24 |
|
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
25 |
#include "precompiled.hpp" |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
26 |
#include "gc/shared/ageTableTracer.hpp" |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
27 |
#include "gc/shared/gcId.hpp" |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
28 |
#include "trace/tracing.hpp" |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
29 |
|
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
30 |
void AgeTableTracer::send_tenuring_distribution_event(uint age, size_t size) { |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
31 |
EventTenuringDistribution e; |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
32 |
if (e.should_commit()) { |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
33 |
e.set_gcId(GCId::current()); |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
34 |
e.set_age(age); |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
35 |
e.set_size(size); |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
36 |
e.commit(); |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
37 |
} |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
38 |
} |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
39 |
|
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
40 |
bool AgeTableTracer::is_tenuring_distribution_event_enabled() { |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
41 |
return EventTenuringDistribution::is_enabled(); |
c830c234e056
8009538: [Event Request] Want events for tenuring distribution
david
parents:
diff
changeset
|
42 |
} |