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 "ci/ciCallProfile.hpp"
26 #include "ci/ciExceptionHandler.hpp"
27 #include "ci/ciInstanceKlass.hpp"
28 #include "ci/ciMethod.hpp"
29 #include "ci/ciMethodBlocks.hpp"
30 #include "ci/ciMethodData.hpp"
31 #include "ci/ciReplay.hpp"
32 #include "ci/ciStreams.hpp"
33 #include "ci/ciSymbol.hpp"
34 #include "ci/ciSymbols.hpp"
35 #include "ci/ciUtilities.inline.hpp"
36 #include "compiler/abstractCompiler.hpp"
37 #include "compiler/compilerDefinitions.inline.hpp"
38 #include "compiler/compilerOracle.hpp"
39 #include "compiler/compileTask.hpp"
40 #include "compiler/methodLiveness.hpp"
41 #include "interpreter/interpreter.hpp"
42 #include "interpreter/linkResolver.hpp"
43 #include "interpreter/oopMapCache.hpp"
44 #include "logging/log.hpp"
127 } else {
128 // Have to use a conservative value in this case.
129 _can_be_statically_bound = false;
130 _can_omit_stack_trace = true;
131 }
132
133 // Adjust the definition of this condition to be more useful:
134 // %%% take these conditions into account in vtable generation
135 if (!_can_be_statically_bound && h_m->is_private())
136 _can_be_statically_bound = true;
137 if (_can_be_statically_bound && h_m->is_abstract())
138 _can_be_statically_bound = false;
139
140 // generating _signature may allow GC and therefore move m.
141 // These fields are always filled in.
142 _name = env->get_symbol(h_m->name());
143 ciSymbol* sig_symbol = env->get_symbol(h_m->signature());
144 constantPoolHandle cpool(Thread::current(), h_m->constants());
145 _signature = new (env->arena()) ciSignature(_holder, cpool, sig_symbol);
146 _method_data = nullptr;
147 // Take a snapshot of these values, so they will be commensurate with the MDO.
148 if (ProfileInterpreter || CompilerConfig::is_c1_profiling()) {
149 int invcnt = h_m->interpreter_invocation_count();
150 // if the value overflowed report it as max int
151 _interpreter_invocation_count = invcnt < 0 ? max_jint : invcnt ;
152 _interpreter_throwout_count = h_m->interpreter_throwout_count();
153 } else {
154 _interpreter_invocation_count = 0;
155 _interpreter_throwout_count = 0;
156 }
157 if (_interpreter_invocation_count == 0)
158 _interpreter_invocation_count = 1;
159 _inline_instructions_size = -1;
160 if (ReplayCompiles) {
161 ciReplay::initialize(this);
162 }
163 }
164
165
166 // ------------------------------------------------------------------
167 // ciMethod::ciMethod
168 //
169 // Unloaded method.
170 ciMethod::ciMethod(ciInstanceKlass* holder,
171 ciSymbol* name,
172 ciSymbol* signature,
173 ciInstanceKlass* accessor) :
174 ciMetadata((Metadata*)nullptr),
175 _name( name),
176 _holder( holder),
177 _method_data( nullptr),
178 _method_blocks( nullptr),
179 _intrinsic_id( vmIntrinsics::_none),
180 _inline_instructions_size(-1),
181 _can_be_statically_bound(false),
182 _can_omit_stack_trace(true),
183 _liveness( nullptr)
184 #if defined(COMPILER2)
185 ,
186 _flow( nullptr),
187 _bcea( nullptr)
188 #endif // COMPILER2
189 {
190 // Usually holder and accessor are the same type but in some cases
191 // the holder has the wrong class loader (e.g. invokedynamic call
192 // sites) so we pass the accessor.
193 _signature = new (CURRENT_ENV->arena()) ciSignature(accessor, constantPoolHandle(), signature);
194 }
195
196
197 // ------------------------------------------------------------------
198 // ciMethod::load_code
199 //
200 // Load the bytecodes and exception handler table for this method.
201 void ciMethod::load_code() {
202 VM_ENTRY_MARK;
987 bool ciMethod::is_scoped() const {
988 return get_Method()->is_scoped();
989 }
990
991 // ------------------------------------------------------------------
992 // ciMethod::has_member_arg
993 //
994 // Return true if the method is a linker intrinsic like _linkToVirtual.
995 // These are built by the JVM.
996 bool ciMethod::has_member_arg() const {
997 vmIntrinsics::ID iid = _intrinsic_id; // do not check if loaded
998 return (MethodHandles::is_signature_polymorphic(iid) &&
999 MethodHandles::has_member_arg(iid));
1000 }
1001
1002 // ------------------------------------------------------------------
1003 // ciMethod::ensure_method_data
1004 //
1005 // Generate new MethodData* objects at compile time.
1006 // Return true if allocation was successful or no MDO is required.
1007 bool ciMethod::ensure_method_data(const methodHandle& h_m) {
1008 EXCEPTION_CONTEXT;
1009 if (is_native() || is_abstract() || h_m()->is_accessor()) {
1010 return true;
1011 }
1012 if (h_m()->method_data() == nullptr) {
1013 Method::build_profiling_method_data(h_m, THREAD);
1014 if (HAS_PENDING_EXCEPTION) {
1015 CLEAR_PENDING_EXCEPTION;
1016 }
1017 }
1018 if (h_m()->method_data() != nullptr) {
1019 _method_data = CURRENT_ENV->get_method_data(h_m()->method_data());
1020 return _method_data->load_data();
1021 } else {
1022 _method_data = CURRENT_ENV->get_empty_methodData();
1023 return false;
1024 }
1025 }
1026
1027 // public, retroactive version
1028 bool ciMethod::ensure_method_data() {
1029 bool result = true;
1030 if (_method_data == nullptr || _method_data->is_empty()) {
1031 GUARDED_VM_ENTRY({
1032 methodHandle mh(Thread::current(), get_Method());
1033 result = ensure_method_data(mh);
1034 });
1035 }
1036 return result;
1037 }
1038
1039
1040 // ------------------------------------------------------------------
1041 // ciMethod::method_data
1042 //
1043 ciMethodData* ciMethod::method_data() {
1044 if (_method_data != nullptr) {
1045 return _method_data;
1046 }
1047 VM_ENTRY_MARK;
1048 ciEnv* env = CURRENT_ENV;
1049 Thread* my_thread = JavaThread::current();
1050 methodHandle h_m(my_thread, get_Method());
1051
1052 if (h_m()->method_data() != nullptr) {
1053 _method_data = CURRENT_ENV->get_method_data(h_m()->method_data());
1054 _method_data->load_data();
1055 } else {
1056 _method_data = CURRENT_ENV->get_empty_methodData();
1057 }
1058 return _method_data;
1059
1060 }
1061
1062 // ------------------------------------------------------------------
1063 // ciMethod::method_data_or_null
1064 // Returns a pointer to ciMethodData if MDO exists on the VM side,
1065 // null otherwise.
1066 ciMethodData* ciMethod::method_data_or_null() {
1067 ciMethodData *md = method_data();
1068 if (md->is_empty()) {
1069 return nullptr;
1070 }
1071 return md;
1072 }
1073
1074 // ------------------------------------------------------------------
1075 // ciMethod::ensure_method_counters
1076 //
1077 MethodCounters* ciMethod::ensure_method_counters() {
1078 check_is_loaded();
1079 VM_ENTRY_MARK;
1080 methodHandle mh(THREAD, get_Method());
1081 MethodCounters* method_counters = mh->get_method_counters(CHECK_NULL);
1082 return method_counters;
1083 }
1084
1085 // ------------------------------------------------------------------
1086 // ciMethod::has_option
1087 //
1088 bool ciMethod::has_option(CompileCommandEnum option) {
1089 check_is_loaded();
1090 VM_ENTRY_MARK;
1091 methodHandle mh(THREAD, get_Method());
1092 return CompilerOracle::has_option(mh, option);
1093 }
1094
1095 // ------------------------------------------------------------------
1096 // ciMethod::has_option_value
1097 //
1098 bool ciMethod::has_option_value(CompileCommandEnum option, double& value) {
1099 check_is_loaded();
1100 VM_ENTRY_MARK;
1101 methodHandle mh(THREAD, get_Method());
1102 return CompilerOracle::has_option_value(mh, option, value);
1103 }
1104 // ------------------------------------------------------------------
1105 // ciMethod::can_be_compiled
1106 //
1107 // Have previous compilations of this method succeeded?
1108 bool ciMethod::can_be_compiled() {
1109 check_is_loaded();
1110 ciEnv* env = CURRENT_ENV;
1111 if (is_c1_compile(env->comp_level())) {
1112 return _is_c1_compilable;
1113 }
1114 return _is_c2_compilable;
1115 }
1116
1117 // ------------------------------------------------------------------
1118 // ciMethod::has_compiled_code
1119 bool ciMethod::has_compiled_code() {
1120 return inline_instructions_size() > 0;
1121 }
1122
1123 int ciMethod::highest_osr_comp_level() {
1124 check_is_loaded();
1125 VM_ENTRY_MARK;
1126 return get_Method()->highest_osr_comp_level();
1127 }
1128
1129 // ------------------------------------------------------------------
1130 // ciMethod::code_size_for_inlining
1131 //
1132 // Code size for inlining decisions. This method returns a code
1133 // size of 1 for methods which has the ForceInline annotation.
1158 MethodTrainingData* mtd = MethodTrainingData::find(top_level_mh);
1159 if (mtd != nullptr) {
1160 CompileTrainingData* ctd = mtd->last_toplevel_compile(level);
1161 if (ctd != nullptr) {
1162 methodHandle mh(Thread::current(), get_Method());
1163 MethodTrainingData* this_mtd = MethodTrainingData::find(mh);
1164 if (this_mtd != nullptr) {
1165 auto r = ctd->ci_records().ciMethod__inline_instructions_size.find(this_mtd);
1166 if (r.is_valid()) {
1167 _inline_instructions_size = r.result();
1168 }
1169 }
1170 }
1171 }
1172 );
1173 }
1174 }
1175 if (_inline_instructions_size == -1) {
1176 GUARDED_VM_ENTRY(
1177 nmethod* code = get_Method()->code();
1178 if (code != nullptr && (code->comp_level() == CompLevel_full_optimization)) {
1179 int isize = code->insts_end() - code->verified_entry_point() - code->skipped_instructions_size();
1180 _inline_instructions_size = isize > 0 ? isize : 0;
1181 } else {
1182 _inline_instructions_size = 0;
1183 }
1184 if (TrainingData::need_data()) {
1185 CompileTrainingData* ctd = CURRENT_ENV->task()->training_data();
1186 if (ctd != nullptr) {
1187 methodHandle mh(Thread::current(), get_Method());
1188 MethodTrainingData* this_mtd = MethodTrainingData::make(mh);
1189 ctd->ci_records().ciMethod__inline_instructions_size.append_if_missing(_inline_instructions_size, this_mtd);
1190 }
1191 }
1192 );
1193 }
1194 return _inline_instructions_size;
1195 }
1196
1197 // ------------------------------------------------------------------
1198 // ciMethod::log_nmethod_identity
1200 GUARDED_VM_ENTRY(
1201 nmethod* code = get_Method()->code();
1202 if (code != nullptr) {
1203 code->log_identity(log);
1204 }
1205 )
1206 }
1207
1208 // ------------------------------------------------------------------
1209 // ciMethod::is_not_reached
1210 bool ciMethod::is_not_reached(int bci) {
1211 check_is_loaded();
1212 VM_ENTRY_MARK;
1213 return Interpreter::is_not_reached(
1214 methodHandle(THREAD, get_Method()), bci);
1215 }
1216
1217 // ------------------------------------------------------------------
1218 // ciMethod::was_never_executed
1219 bool ciMethod::was_executed_more_than(int times) {
1220 VM_ENTRY_MARK;
1221 return get_Method()->was_executed_more_than(times);
1222 }
1223
1224 // ------------------------------------------------------------------
1225 // ciMethod::has_unloaded_classes_in_signature
1226 bool ciMethod::has_unloaded_classes_in_signature() {
1227 // ciSignature is resolved against some accessing class and
1228 // signature classes aren't required to be local. As a benefit,
1229 // it makes signature classes visible through loader constraints.
1230 // So, encountering an unloaded class signals it is absent both in
1231 // the callee (local) and caller contexts.
1232 return signature()->has_unloaded_classes();
1233 }
1234
1235 // ------------------------------------------------------------------
1236 // ciMethod::is_klass_loaded
1237 bool ciMethod::is_klass_loaded(int refinfo_index, Bytecodes::Code bc, bool must_be_resolved) const {
1238 VM_ENTRY_MARK;
1239 return get_Method()->is_klass_loaded(refinfo_index, bc, must_be_resolved);
|
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 "cds/aotLinkedClassBulkLoader.hpp"
26 #include "ci/ciCallProfile.hpp"
27 #include "ci/ciExceptionHandler.hpp"
28 #include "ci/ciInstanceKlass.hpp"
29 #include "ci/ciMethod.hpp"
30 #include "ci/ciMethodBlocks.hpp"
31 #include "ci/ciMethodData.hpp"
32 #include "ci/ciReplay.hpp"
33 #include "ci/ciStreams.hpp"
34 #include "ci/ciSymbol.hpp"
35 #include "ci/ciSymbols.hpp"
36 #include "ci/ciUtilities.inline.hpp"
37 #include "compiler/abstractCompiler.hpp"
38 #include "compiler/compilerDefinitions.inline.hpp"
39 #include "compiler/compilerOracle.hpp"
40 #include "compiler/compileTask.hpp"
41 #include "compiler/methodLiveness.hpp"
42 #include "interpreter/interpreter.hpp"
43 #include "interpreter/linkResolver.hpp"
44 #include "interpreter/oopMapCache.hpp"
45 #include "logging/log.hpp"
128 } else {
129 // Have to use a conservative value in this case.
130 _can_be_statically_bound = false;
131 _can_omit_stack_trace = true;
132 }
133
134 // Adjust the definition of this condition to be more useful:
135 // %%% take these conditions into account in vtable generation
136 if (!_can_be_statically_bound && h_m->is_private())
137 _can_be_statically_bound = true;
138 if (_can_be_statically_bound && h_m->is_abstract())
139 _can_be_statically_bound = false;
140
141 // generating _signature may allow GC and therefore move m.
142 // These fields are always filled in.
143 _name = env->get_symbol(h_m->name());
144 ciSymbol* sig_symbol = env->get_symbol(h_m->signature());
145 constantPoolHandle cpool(Thread::current(), h_m->constants());
146 _signature = new (env->arena()) ciSignature(_holder, cpool, sig_symbol);
147 _method_data = nullptr;
148 _method_data_recorded = nullptr;
149 // Take a snapshot of these values, so they will be commensurate with the MDO.
150 if (ProfileInterpreter || CompilerConfig::is_c1_profiling()) {
151 int invcnt = h_m->interpreter_invocation_count();
152 // if the value overflowed report it as max int
153 _interpreter_invocation_count = invcnt < 0 ? max_jint : invcnt ;
154 _interpreter_throwout_count = h_m->interpreter_throwout_count();
155 } else {
156 _interpreter_invocation_count = 0;
157 _interpreter_throwout_count = 0;
158 }
159 if (_interpreter_invocation_count == 0)
160 _interpreter_invocation_count = 1;
161 _inline_instructions_size = -1;
162 if (ReplayCompiles) {
163 ciReplay::initialize(this);
164 }
165 DirectiveSet* directives = DirectivesStack::getMatchingDirective(h_m, CURRENT_ENV->task()->compiler());
166 ccstrlist bci_list = directives->TooManyTrapsAtBCIOption;
167 int len = (int)strlen(bci_list);
168 Arena* arena = CURRENT_ENV->arena();
169 _has_trap_at_bci = new (arena) GrowableArray<int>(arena, 2, 0, 0);
170 for (int i = 0; i < len; i++) {
171 int v = -1;
172 int read;
173 if (sscanf(bci_list + i, "%i%n", &v, &read) != 1) {
174 warning("wrong format for TooManyTrapsAtBCI option: \"%s\"", bci_list);
175 break;
176 }
177 assert(v >= 0 && v < (1<<16), "%i", v);
178 _has_trap_at_bci->append_if_missing(v);
179 i += read;
180 }
181 }
182
183
184 // ------------------------------------------------------------------
185 // ciMethod::ciMethod
186 //
187 // Unloaded method.
188 ciMethod::ciMethod(ciInstanceKlass* holder,
189 ciSymbol* name,
190 ciSymbol* signature,
191 ciInstanceKlass* accessor) :
192 ciMetadata((Metadata*)nullptr),
193 _name( name),
194 _holder( holder),
195 _method_data( nullptr),
196 _method_data_recorded( nullptr),
197 _method_blocks( nullptr),
198 _intrinsic_id( vmIntrinsics::_none),
199 _inline_instructions_size(-1),
200 _can_be_statically_bound(false),
201 _can_omit_stack_trace(true),
202 _has_trap_at_bci( nullptr),
203 _liveness( nullptr)
204 #if defined(COMPILER2)
205 ,
206 _flow( nullptr),
207 _bcea( nullptr)
208 #endif // COMPILER2
209 {
210 // Usually holder and accessor are the same type but in some cases
211 // the holder has the wrong class loader (e.g. invokedynamic call
212 // sites) so we pass the accessor.
213 _signature = new (CURRENT_ENV->arena()) ciSignature(accessor, constantPoolHandle(), signature);
214 }
215
216
217 // ------------------------------------------------------------------
218 // ciMethod::load_code
219 //
220 // Load the bytecodes and exception handler table for this method.
221 void ciMethod::load_code() {
222 VM_ENTRY_MARK;
1007 bool ciMethod::is_scoped() const {
1008 return get_Method()->is_scoped();
1009 }
1010
1011 // ------------------------------------------------------------------
1012 // ciMethod::has_member_arg
1013 //
1014 // Return true if the method is a linker intrinsic like _linkToVirtual.
1015 // These are built by the JVM.
1016 bool ciMethod::has_member_arg() const {
1017 vmIntrinsics::ID iid = _intrinsic_id; // do not check if loaded
1018 return (MethodHandles::is_signature_polymorphic(iid) &&
1019 MethodHandles::has_member_arg(iid));
1020 }
1021
1022 // ------------------------------------------------------------------
1023 // ciMethod::ensure_method_data
1024 //
1025 // Generate new MethodData* objects at compile time.
1026 // Return true if allocation was successful or no MDO is required.
1027 bool ciMethod::ensure_method_data(const methodHandle& h_m, bool training_data_only) {
1028 EXCEPTION_CONTEXT;
1029 if (is_native() || is_abstract() || h_m()->is_accessor()) {
1030 return true;
1031 }
1032 if (h_m()->method_data() == nullptr) {
1033 if (training_data_only) {
1034 Method::install_training_method_data(h_m);
1035 } else {
1036 Method::build_profiling_method_data(h_m, THREAD);
1037 if (HAS_PENDING_EXCEPTION) {
1038 CLEAR_PENDING_EXCEPTION;
1039 }
1040 }
1041 }
1042 if (h_m()->method_data() != nullptr) {
1043 _method_data = CURRENT_ENV->get_method_data(h_m()->method_data());
1044 return _method_data->load_data();
1045 } else {
1046 _method_data = CURRENT_ENV->get_empty_methodData();
1047 return false;
1048 }
1049 }
1050
1051 // public, retroactive version
1052 bool ciMethod::ensure_method_data(bool training_data_only) {
1053 bool result = true;
1054 if (_method_data == nullptr || _method_data->is_empty()) {
1055 GUARDED_VM_ENTRY({
1056 methodHandle mh(Thread::current(), get_Method());
1057 result = ensure_method_data(mh, training_data_only);
1058 });
1059 }
1060 return result;
1061 }
1062
1063
1064 // ------------------------------------------------------------------
1065 // ciMethod::method_data
1066 //
1067 ciMethodData* ciMethod::method_data() {
1068 if (CURRENT_ENV->task()->is_precompile() && CURRENT_ENV->task()->comp_level() == CompLevel_full_optimization) {
1069 if (_method_data_recorded == nullptr) {
1070 VM_ENTRY_MARK;
1071 methodHandle h_m(thread, get_Method());
1072 MethodTrainingData* mtd = MethodTrainingData::find(h_m);
1073 MethodData* mdo = (mtd != nullptr ? mtd->final_profile() : nullptr);
1074 DirectiveSet* directives = DirectivesStack::getMatchingDirective(h_m, CURRENT_ENV->task()->compiler());
1075 int comp_id = CURRENT_ENV->task()->compile_id();
1076 if (mdo == nullptr || directives->IgnoreRecordedProfileOption) {
1077 if (directives->IgnoreRecordedProfileOption) {
1078 ResourceMark rm;
1079 log_debug(precompile)("%d: Ignore recorded profile for %s", comp_id, h_m->name_and_sig_as_C_string());
1080 } else {
1081 ResourceMark rm;
1082 log_debug(precompile)("%d: No profile for %s", comp_id, h_m->name_and_sig_as_C_string());
1083 }
1084 _method_data_recorded = CURRENT_ENV->get_empty_methodData();
1085 } else {
1086 #if INCLUDE_CDS
1087 if (mdo->extra_data_lock() == nullptr) {
1088 assert(!HAS_PENDING_EXCEPTION, "");
1089 mdo->restore_unshareable_info(thread);
1090 assert(!HAS_PENDING_EXCEPTION, "");
1091 }
1092 #endif
1093 _method_data_recorded = CURRENT_ENV->get_method_data(mdo);
1094 _method_data_recorded->load_data();
1095 {
1096 ResourceMark rm;
1097 log_debug(precompile)("%d: Recorded profile " PTR_FORMAT " for %s", comp_id, p2i(mdo), h_m->name_and_sig_as_C_string());
1098 }
1099 }
1100 }
1101 assert(_method_data_recorded != nullptr, "");
1102 return _method_data_recorded;
1103 } else {
1104 if (_method_data != nullptr) {
1105 return _method_data;
1106 }
1107 VM_ENTRY_MARK;
1108 methodHandle h_m(thread, get_Method());
1109 MethodData* mdo = h_m()->method_data();
1110 if (mdo != nullptr) {
1111 _method_data = CURRENT_ENV->get_method_data(mdo);
1112 _method_data->load_data();
1113 } else {
1114 _method_data = CURRENT_ENV->get_empty_methodData();
1115 }
1116 return _method_data;
1117 }
1118 }
1119
1120 // ------------------------------------------------------------------
1121 // ciMethod::method_data_or_null
1122 // Returns a pointer to ciMethodData if MDO exists on the VM side,
1123 // null otherwise.
1124 ciMethodData* ciMethod::method_data_or_null() {
1125 ciMethodData *md = method_data();
1126 if (md->is_empty()) {
1127 return nullptr;
1128 }
1129 return md;
1130 }
1131
1132 // ------------------------------------------------------------------
1133 // ciMethod::ensure_method_counters
1134 //
1135 ciMetadata* ciMethod::ensure_method_counters() {
1136 check_is_loaded();
1137 VM_ENTRY_MARK;
1138 methodHandle mh(THREAD, get_Method());
1139 MethodCounters* method_counters = mh->get_method_counters(THREAD);
1140 if (method_counters != nullptr) {
1141 return CURRENT_ENV->get_method_counters(method_counters);
1142 }
1143 return nullptr;
1144 }
1145
1146 // ------------------------------------------------------------------
1147 // ciMethod::has_option
1148 //
1149 bool ciMethod::has_option(CompileCommandEnum option) {
1150 check_is_loaded();
1151 VM_ENTRY_MARK;
1152 methodHandle mh(THREAD, get_Method());
1153 return CompilerOracle::has_option(mh, option);
1154 }
1155
1156 // ------------------------------------------------------------------
1157 // ciMethod::has_option_value
1158 //
1159 bool ciMethod::has_option_value(CompileCommandEnum option, double& value) {
1160 check_is_loaded();
1161 VM_ENTRY_MARK;
1162 methodHandle mh(THREAD, get_Method());
1163 return CompilerOracle::has_option_value(mh, option, value);
1164 }
1165 // ------------------------------------------------------------------
1166 // ciMethod::can_be_compiled
1167 //
1168 // Have previous compilations of this method succeeded?
1169 bool ciMethod::can_be_compiled() {
1170 check_is_loaded();
1171 ciEnv* env = CURRENT_ENV;
1172 if (is_c1_compile(env->comp_level())) {
1173 return _is_c1_compilable;
1174 }
1175
1176 return _is_c2_compilable;
1177 }
1178
1179 // ------------------------------------------------------------------
1180 // ciMethod::has_compiled_code
1181 bool ciMethod::has_compiled_code() {
1182 return inline_instructions_size() > 0;
1183 }
1184
1185 int ciMethod::highest_osr_comp_level() {
1186 check_is_loaded();
1187 VM_ENTRY_MARK;
1188 return get_Method()->highest_osr_comp_level();
1189 }
1190
1191 // ------------------------------------------------------------------
1192 // ciMethod::code_size_for_inlining
1193 //
1194 // Code size for inlining decisions. This method returns a code
1195 // size of 1 for methods which has the ForceInline annotation.
1220 MethodTrainingData* mtd = MethodTrainingData::find(top_level_mh);
1221 if (mtd != nullptr) {
1222 CompileTrainingData* ctd = mtd->last_toplevel_compile(level);
1223 if (ctd != nullptr) {
1224 methodHandle mh(Thread::current(), get_Method());
1225 MethodTrainingData* this_mtd = MethodTrainingData::find(mh);
1226 if (this_mtd != nullptr) {
1227 auto r = ctd->ci_records().ciMethod__inline_instructions_size.find(this_mtd);
1228 if (r.is_valid()) {
1229 _inline_instructions_size = r.result();
1230 }
1231 }
1232 }
1233 }
1234 );
1235 }
1236 }
1237 if (_inline_instructions_size == -1) {
1238 GUARDED_VM_ENTRY(
1239 nmethod* code = get_Method()->code();
1240 if (code != nullptr && !code->is_aot() && (code->comp_level() == CompLevel_full_optimization)) {
1241 int isize = code->insts_end() - code->verified_entry_point() - code->skipped_instructions_size();
1242 _inline_instructions_size = isize > 0 ? isize : 0;
1243 } else {
1244 _inline_instructions_size = 0;
1245 }
1246 if (TrainingData::need_data()) {
1247 CompileTrainingData* ctd = CURRENT_ENV->task()->training_data();
1248 if (ctd != nullptr) {
1249 methodHandle mh(Thread::current(), get_Method());
1250 MethodTrainingData* this_mtd = MethodTrainingData::make(mh);
1251 ctd->ci_records().ciMethod__inline_instructions_size.append_if_missing(_inline_instructions_size, this_mtd);
1252 }
1253 }
1254 );
1255 }
1256 return _inline_instructions_size;
1257 }
1258
1259 // ------------------------------------------------------------------
1260 // ciMethod::log_nmethod_identity
1262 GUARDED_VM_ENTRY(
1263 nmethod* code = get_Method()->code();
1264 if (code != nullptr) {
1265 code->log_identity(log);
1266 }
1267 )
1268 }
1269
1270 // ------------------------------------------------------------------
1271 // ciMethod::is_not_reached
1272 bool ciMethod::is_not_reached(int bci) {
1273 check_is_loaded();
1274 VM_ENTRY_MARK;
1275 return Interpreter::is_not_reached(
1276 methodHandle(THREAD, get_Method()), bci);
1277 }
1278
1279 // ------------------------------------------------------------------
1280 // ciMethod::was_never_executed
1281 bool ciMethod::was_executed_more_than(int times) {
1282 // Invocation counter is reset when the Method* is compiled.
1283 // If the method has compiled code we therefore assume it has
1284 // be executed more than n times.
1285 if (is_accessor() || is_empty() || has_compiled_code()) {
1286 // interpreter doesn't bump invocation counter of trivial methods
1287 // compiler does not bump invocation counter of compiled methods
1288 return true;
1289 }
1290 if (!method_data()->is_empty()) {
1291 return (method_data()->invocation_count() > times);
1292 }
1293 VM_ENTRY_MARK;
1294 return get_Method()->was_executed_more_than(times);
1295 }
1296
1297 // ------------------------------------------------------------------
1298 // ciMethod::has_unloaded_classes_in_signature
1299 bool ciMethod::has_unloaded_classes_in_signature() {
1300 // ciSignature is resolved against some accessing class and
1301 // signature classes aren't required to be local. As a benefit,
1302 // it makes signature classes visible through loader constraints.
1303 // So, encountering an unloaded class signals it is absent both in
1304 // the callee (local) and caller contexts.
1305 return signature()->has_unloaded_classes();
1306 }
1307
1308 // ------------------------------------------------------------------
1309 // ciMethod::is_klass_loaded
1310 bool ciMethod::is_klass_loaded(int refinfo_index, Bytecodes::Code bc, bool must_be_resolved) const {
1311 VM_ENTRY_MARK;
1312 return get_Method()->is_klass_loaded(refinfo_index, bc, must_be_resolved);
|