1 /*
 2  * Copyright (c) 2013, 2025, 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 #include "compiler/compiler_globals.hpp"
26 #include "compiler/compilerOracle.hpp"
27 #include "oops/method.hpp"
28 #include "oops/methodCounters.hpp"
29 #include "runtime/handles.inline.hpp"
30 
31 MethodCounters::MethodCounters(const methodHandle& mh) :
32   _prev_time(0),
33   _rate(0),
34   _highest_comp_level(0),
35   _highest_osr_comp_level(0)
36 {
37   set_interpreter_throwout_count(0);
38   JVMTI_ONLY(clear_number_of_breakpoints());
39   invocation_counter()->init();
40   backedge_counter()->init();
41 
42   // Set per-method thresholds.
43   double scale = 1.0;
44   CompilerOracle::has_option_value(mh, CompileCommandEnum::CompileThresholdScaling, scale);
45 
46   _invoke_mask = right_n_bits(CompilerConfig::scaled_freq_log(Tier0InvokeNotifyFreqLog, scale)) << InvocationCounter::count_shift;
47   _backedge_mask = right_n_bits(CompilerConfig::scaled_freq_log(Tier0BackedgeNotifyFreqLog, scale)) << InvocationCounter::count_shift;
48 }
49 
50 MethodCounters* MethodCounters::allocate_no_exception(const methodHandle& mh) {
51   ClassLoaderData* loader_data = mh->method_holder()->class_loader_data();
52   return new(loader_data, size(), MetaspaceObj::MethodCountersType) MethodCounters(mh);
53 }
54 
55 MethodCounters* MethodCounters::allocate_with_exception(const methodHandle& mh, TRAPS) {
56   ClassLoaderData* loader_data = mh->method_holder()->class_loader_data();
57   return new(loader_data, size(), MetaspaceObj::MethodCountersType, THREAD) MethodCounters(mh);
58 }
59 
60 void MethodCounters::clear_counters() {
61   invocation_counter()->reset();
62   backedge_counter()->reset();
63   set_interpreter_throwout_count(0);
64   set_prev_time(0);
65   set_prev_event_count(0);
66   set_rate(0);
67   set_highest_comp_level(0);
68   set_highest_osr_comp_level(0);
69 }
70 
71 void MethodCounters::print_value_on(outputStream* st) const {
72   st->print("method counters");
73   print_address_on(st);
74 }
75 
76