annotate src/share/vm/oops/methodCounters.hpp @ 10408:836a62f43af9

Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
author Doug Simon <doug.simon@oracle.com>
date Wed, 19 Jun 2013 10:45:56 +0200
parents aeaca88565e6
children 88672775a26c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10105
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
1 /*
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
2 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
4 *
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
7 * published by the Free Software Foundation.
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
8 *
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
13 * accompanied this code).
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
14 *
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
18 *
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
21 * questions.
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
22 *
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
23 */
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
24
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
25 #ifndef SHARE_VM_OOPS_METHODCOUNTERS_HPP
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
26 #define SHARE_VM_OOPS_METHODCOUNTERS_HPP
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
27
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
28 #include "oops/metadata.hpp"
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
29 #include "interpreter/invocationCounter.hpp"
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
30
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
31 class MethodCounters: public MetaspaceObj {
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
32 friend class VMStructs;
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
33 private:
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
34 int _interpreter_invocation_count; // Count of times invoked (reused as prev_event_count in tiered)
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
35 u2 _interpreter_throwout_count; // Count of times method was exited via exception while interpreting
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
36 u2 _number_of_breakpoints; // fullspeed debugging support
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
37 InvocationCounter _invocation_counter; // Incremented before each activation of the method - used to trigger frequency-based optimizations
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
38 InvocationCounter _backedge_counter; // Incremented before each backedge taken - used to trigger frequencey-based optimizations
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
39
10408
836a62f43af9 Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
Doug Simon <doug.simon@oracle.com>
parents: 10105
diff changeset
40 #ifdef GRAAL
836a62f43af9 Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
Doug Simon <doug.simon@oracle.com>
parents: 10105
diff changeset
41 jlong _graal_invocation_time;
836a62f43af9 Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
Doug Simon <doug.simon@oracle.com>
parents: 10105
diff changeset
42 int _graal_priority;
836a62f43af9 Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
Doug Simon <doug.simon@oracle.com>
parents: 10105
diff changeset
43 #endif
10105
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
44 #ifdef TIERED
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
45 float _rate; // Events (invocation and backedge counter increments) per millisecond
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
46 jlong _prev_time; // Previous time the rate was acquired
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
47 #endif
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
48
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
49 MethodCounters() : _interpreter_invocation_count(0),
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
50 _interpreter_throwout_count(0),
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
51 _number_of_breakpoints(0)
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
52 #ifdef TIERED
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
53 , _rate(0),
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
54 _prev_time(0)
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
55 #endif
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
56 {
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
57 invocation_counter()->init();
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
58 backedge_counter()->init();
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
59 }
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
60
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
61 public:
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
62 static MethodCounters* allocate(ClassLoaderData* loader_data, TRAPS);
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
63
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
64 void deallocate_contents(ClassLoaderData* loader_data) {}
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
65 DEBUG_ONLY(bool on_stack() { return false; }) // for template
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
66
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
67 static int size() { return sizeof(MethodCounters) / wordSize; }
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
68
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
69 bool is_klass() const { return false; }
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
70
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
71 void clear_counters();
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
72
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
73 int interpreter_invocation_count() {
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
74 return _interpreter_invocation_count;
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
75 }
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
76 void set_interpreter_invocation_count(int count) {
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
77 _interpreter_invocation_count = count;
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
78 }
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
79 int increment_interpreter_invocation_count() {
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
80 return ++_interpreter_invocation_count;
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
81 }
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
82
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
83 void interpreter_throwout_increment() {
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
84 if (_interpreter_throwout_count < 65534) {
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
85 _interpreter_throwout_count++;
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
86 }
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
87 }
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
88 int interpreter_throwout_count() const {
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
89 return _interpreter_throwout_count;
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
90 }
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
91 void set_interpreter_throwout_count(int count) {
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
92 _interpreter_throwout_count = count;
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
93 }
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
94
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
95 u2 number_of_breakpoints() const { return _number_of_breakpoints; }
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
96 void incr_number_of_breakpoints() { ++_number_of_breakpoints; }
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
97 void decr_number_of_breakpoints() { --_number_of_breakpoints; }
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
98 void clear_number_of_breakpoints() { _number_of_breakpoints = 0; }
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
99
10408
836a62f43af9 Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
Doug Simon <doug.simon@oracle.com>
parents: 10105
diff changeset
100 #ifdef GRAAL
836a62f43af9 Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
Doug Simon <doug.simon@oracle.com>
parents: 10105
diff changeset
101 void set_graal_invocation_time(jlong time) { _graal_invocation_time = time; }
836a62f43af9 Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
Doug Simon <doug.simon@oracle.com>
parents: 10105
diff changeset
102 jlong graal_invocation_time() { return _graal_invocation_time; }
836a62f43af9 Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
Doug Simon <doug.simon@oracle.com>
parents: 10105
diff changeset
103
836a62f43af9 Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
Doug Simon <doug.simon@oracle.com>
parents: 10105
diff changeset
104 void set_graal_priority(int prio) { _graal_priority = prio; }
836a62f43af9 Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
Doug Simon <doug.simon@oracle.com>
parents: 10105
diff changeset
105 int graal_priority() { return _graal_priority; }
836a62f43af9 Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
Doug Simon <doug.simon@oracle.com>
parents: 10105
diff changeset
106 #endif // GRAAL
836a62f43af9 Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
Doug Simon <doug.simon@oracle.com>
parents: 10105
diff changeset
107
836a62f43af9 Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
Doug Simon <doug.simon@oracle.com>
parents: 10105
diff changeset
108
10105
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
109 #ifdef TIERED
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
110 jlong prev_time() const { return _prev_time; }
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
111 void set_prev_time(jlong time) { _prev_time = time; }
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
112 float rate() const { return _rate; }
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
113 void set_rate(float rate) { _rate = rate; }
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
114 #endif
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
115
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
116 // invocation counter
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
117 InvocationCounter* invocation_counter() { return &_invocation_counter; }
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
118 InvocationCounter* backedge_counter() { return &_backedge_counter; }
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
119
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
120 static ByteSize interpreter_invocation_counter_offset() {
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
121 return byte_offset_of(MethodCounters, _interpreter_invocation_count);
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
122 }
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
123
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
124 static ByteSize invocation_counter_offset() {
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
125 return byte_offset_of(MethodCounters, _invocation_counter);
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
126 }
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
127
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
128 static ByteSize backedge_counter_offset() {
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
129 return byte_offset_of(MethodCounters, _backedge_counter);
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
130 }
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
131
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
132 static int interpreter_invocation_counter_offset_in_bytes() {
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
133 return offset_of(MethodCounters, _interpreter_invocation_count);
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
134 }
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
135
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
136 };
aeaca88565e6 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
diff changeset
137 #endif //SHARE_VM_OOPS_METHODCOUNTERS_HPP