Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/hotspot/src/share/vm/oops/methodCounters.hpp
32285 views
1
/*
2
* Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
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
#ifndef SHARE_VM_OOPS_METHODCOUNTERS_HPP
26
#define SHARE_VM_OOPS_METHODCOUNTERS_HPP
27
28
#include "oops/metadata.hpp"
29
#include "interpreter/invocationCounter.hpp"
30
31
class MethodCounters: public MetaspaceObj {
32
friend class VMStructs;
33
private:
34
int _interpreter_invocation_count; // Count of times invoked (reused as prev_event_count in tiered)
35
u2 _interpreter_throwout_count; // Count of times method was exited via exception while interpreting
36
u2 _number_of_breakpoints; // fullspeed debugging support
37
InvocationCounter _invocation_counter; // Incremented before each activation of the method - used to trigger frequency-based optimizations
38
InvocationCounter _backedge_counter; // Incremented before each backedge taken - used to trigger frequencey-based optimizations
39
40
#ifdef TIERED
41
float _rate; // Events (invocation and backedge counter increments) per millisecond
42
u1 _highest_comp_level; // Highest compile level this method has ever seen.
43
u1 _highest_osr_comp_level; // Same for OSR level
44
jlong _prev_time; // Previous time the rate was acquired
45
#endif
46
47
MethodCounters() : _interpreter_invocation_count(0),
48
_interpreter_throwout_count(0),
49
_number_of_breakpoints(0)
50
#ifdef TIERED
51
, _rate(0),
52
_highest_comp_level(0),
53
_highest_osr_comp_level(0),
54
_prev_time(0)
55
#endif
56
{
57
invocation_counter()->init();
58
backedge_counter()->init();
59
}
60
61
public:
62
static MethodCounters* allocate(ClassLoaderData* loader_data, TRAPS);
63
64
void deallocate_contents(ClassLoaderData* loader_data) {}
65
DEBUG_ONLY(bool on_stack() { return false; }) // for template
66
67
static int size() { return sizeof(MethodCounters) / wordSize; }
68
69
bool is_klass() const { return false; }
70
71
void clear_counters();
72
73
int interpreter_invocation_count() {
74
return _interpreter_invocation_count;
75
}
76
void set_interpreter_invocation_count(int count) {
77
_interpreter_invocation_count = count;
78
}
79
int increment_interpreter_invocation_count() {
80
return ++_interpreter_invocation_count;
81
}
82
83
void interpreter_throwout_increment() {
84
if (_interpreter_throwout_count < 65534) {
85
_interpreter_throwout_count++;
86
}
87
}
88
int interpreter_throwout_count() const {
89
return _interpreter_throwout_count;
90
}
91
void set_interpreter_throwout_count(int count) {
92
_interpreter_throwout_count = count;
93
}
94
95
u2 number_of_breakpoints() const { return _number_of_breakpoints; }
96
void incr_number_of_breakpoints() { ++_number_of_breakpoints; }
97
void decr_number_of_breakpoints() { --_number_of_breakpoints; }
98
void clear_number_of_breakpoints() { _number_of_breakpoints = 0; }
99
100
#ifdef TIERED
101
jlong prev_time() const { return _prev_time; }
102
void set_prev_time(jlong time) { _prev_time = time; }
103
float rate() const { return _rate; }
104
void set_rate(float rate) { _rate = rate; }
105
#endif
106
107
int highest_comp_level() const;
108
void set_highest_comp_level(int level);
109
int highest_osr_comp_level() const;
110
void set_highest_osr_comp_level(int level);
111
112
// invocation counter
113
InvocationCounter* invocation_counter() { return &_invocation_counter; }
114
InvocationCounter* backedge_counter() { return &_backedge_counter; }
115
116
static ByteSize interpreter_invocation_counter_offset() {
117
return byte_offset_of(MethodCounters, _interpreter_invocation_count);
118
}
119
120
static ByteSize invocation_counter_offset() {
121
return byte_offset_of(MethodCounters, _invocation_counter);
122
}
123
124
static ByteSize backedge_counter_offset() {
125
return byte_offset_of(MethodCounters, _backedge_counter);
126
}
127
128
static int interpreter_invocation_counter_offset_in_bytes() {
129
return offset_of(MethodCounters, _interpreter_invocation_count);
130
}
131
132
};
133
#endif //SHARE_VM_OOPS_METHODCOUNTERS_HPP
134
135