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;
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_precompiled() && 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 if (mdo == nullptr || directives->IgnoreRecordedProfileOption) {
1076 if (directives->IgnoreRecordedProfileOption) {
1077 ResourceMark rm;
1078 log_debug(precompile)("Ignore recorded profile for %s", h_m->name_and_sig_as_C_string());
1079 } else {
1080 ResourceMark rm;
1081 log_debug(precompile)("No profile for %s", h_m->name_and_sig_as_C_string());
1082 }
1083 _method_data_recorded = CURRENT_ENV->get_empty_methodData();
1084 } else {
1085 #if INCLUDE_CDS
1086 if (mdo->extra_data_lock() == nullptr) {
1087 assert(!HAS_PENDING_EXCEPTION, "");
1088 mdo->restore_unshareable_info(thread);
1089 assert(!HAS_PENDING_EXCEPTION, "");
1090 }
1091 #endif
1092 _method_data_recorded = CURRENT_ENV->get_method_data(mdo);
1093 _method_data_recorded->load_data();
1094 {
1095 ResourceMark rm;
1096 log_debug(precompile)("Recorded profile " PTR_FORMAT " for %s", p2i(mdo), h_m->name_and_sig_as_C_string());
1097 }
1098 }
1099 }
1100 assert(_method_data_recorded != nullptr, "");
1101 return _method_data_recorded;
1102 } else {
1103 if (_method_data != nullptr) {
1104 return _method_data;
1105 }
1106 VM_ENTRY_MARK;
1107 methodHandle h_m(thread, get_Method());
1108 MethodData* mdo = h_m()->method_data();
1109 if (mdo != nullptr) {
1110 _method_data = CURRENT_ENV->get_method_data(mdo);
1111 _method_data->load_data();
1112 } else {
1113 _method_data = CURRENT_ENV->get_empty_methodData();
1114 }
1115 return _method_data;
1116 }
1117 }
1118
1119 // ------------------------------------------------------------------
1120 // ciMethod::method_data_or_null
1121 // Returns a pointer to ciMethodData if MDO exists on the VM side,
1122 // null otherwise.
1123 ciMethodData* ciMethod::method_data_or_null() {
1124 ciMethodData *md = method_data();
1125 if (md->is_empty()) {
1126 return nullptr;
1127 }
1128 return md;
1129 }
1130
1131 // ------------------------------------------------------------------
1132 // ciMethod::ensure_method_counters
1133 //
1134 MethodCounters* ciMethod::ensure_method_counters() {
1135 check_is_loaded();
1136 VM_ENTRY_MARK;
1151
1152 // ------------------------------------------------------------------
1153 // ciMethod::has_option_value
1154 //
1155 bool ciMethod::has_option_value(CompileCommandEnum option, double& value) {
1156 check_is_loaded();
1157 VM_ENTRY_MARK;
1158 methodHandle mh(THREAD, get_Method());
1159 return CompilerOracle::has_option_value(mh, option, value);
1160 }
1161 // ------------------------------------------------------------------
1162 // ciMethod::can_be_compiled
1163 //
1164 // Have previous compilations of this method succeeded?
1165 bool ciMethod::can_be_compiled() {
1166 check_is_loaded();
1167 ciEnv* env = CURRENT_ENV;
1168 if (is_c1_compile(env->comp_level())) {
1169 return _is_c1_compilable;
1170 }
1171
1172 #if INCLUDE_JVMCI
1173 if (EnableJVMCI && UseJVMCICompiler &&
1174 env->comp_level() == CompLevel_full_optimization && !AOTLinkedClassBulkLoader::class_preloading_finished()) {
1175 return false;
1176 }
1177 #endif
1178 return _is_c2_compilable;
1179 }
1180
1181 // ------------------------------------------------------------------
1182 // ciMethod::has_compiled_code
1183 bool ciMethod::has_compiled_code() {
1184 return inline_instructions_size() > 0;
1185 }
1186
1187 int ciMethod::highest_osr_comp_level() {
1188 check_is_loaded();
1189 VM_ENTRY_MARK;
1190 return get_Method()->highest_osr_comp_level();
1191 }
1192
1193 // ------------------------------------------------------------------
1194 // ciMethod::code_size_for_inlining
1195 //
1196 // Code size for inlining decisions. This method returns a code
1197 // size of 1 for methods which has the ForceInline annotation.
1222 MethodTrainingData* mtd = MethodTrainingData::find(top_level_mh);
1223 if (mtd != nullptr) {
1224 CompileTrainingData* ctd = mtd->last_toplevel_compile(level);
1225 if (ctd != nullptr) {
1226 methodHandle mh(Thread::current(), get_Method());
1227 MethodTrainingData* this_mtd = MethodTrainingData::find(mh);
1228 if (this_mtd != nullptr) {
1229 auto r = ctd->ci_records().ciMethod__inline_instructions_size.find(this_mtd);
1230 if (r.is_valid()) {
1231 _inline_instructions_size = r.result();
1232 }
1233 }
1234 }
1235 }
1236 );
1237 }
1238 }
1239 if (_inline_instructions_size == -1) {
1240 GUARDED_VM_ENTRY(
1241 nmethod* code = get_Method()->code();
1242 if (code != nullptr && !code->is_aot() && (code->comp_level() == CompLevel_full_optimization)) {
1243 int isize = code->insts_end() - code->verified_entry_point() - code->skipped_instructions_size();
1244 _inline_instructions_size = isize > 0 ? isize : 0;
1245 } else {
1246 _inline_instructions_size = 0;
1247 }
1248 if (TrainingData::need_data()) {
1249 CompileTrainingData* ctd = CURRENT_ENV->task()->training_data();
1250 if (ctd != nullptr) {
1251 methodHandle mh(Thread::current(), get_Method());
1252 MethodTrainingData* this_mtd = MethodTrainingData::make(mh);
1253 ctd->ci_records().ciMethod__inline_instructions_size.append_if_missing(_inline_instructions_size, this_mtd);
1254 }
1255 }
1256 );
1257 }
1258 return _inline_instructions_size;
1259 }
1260
1261 // ------------------------------------------------------------------
1262 // ciMethod::log_nmethod_identity
1264 GUARDED_VM_ENTRY(
1265 nmethod* code = get_Method()->code();
1266 if (code != nullptr) {
1267 code->log_identity(log);
1268 }
1269 )
1270 }
1271
1272 // ------------------------------------------------------------------
1273 // ciMethod::is_not_reached
1274 bool ciMethod::is_not_reached(int bci) {
1275 check_is_loaded();
1276 VM_ENTRY_MARK;
1277 return Interpreter::is_not_reached(
1278 methodHandle(THREAD, get_Method()), bci);
1279 }
1280
1281 // ------------------------------------------------------------------
1282 // ciMethod::was_never_executed
1283 bool ciMethod::was_executed_more_than(int times) {
1284 // Invocation counter is reset when the Method* is compiled.
1285 // If the method has compiled code we therefore assume it has
1286 // be executed more than n times.
1287 if (is_accessor() || is_empty() || has_compiled_code()) {
1288 // interpreter doesn't bump invocation counter of trivial methods
1289 // compiler does not bump invocation counter of compiled methods
1290 return true;
1291 }
1292 if (!method_data()->is_empty()) {
1293 return (method_data()->invocation_count() > times);
1294 }
1295 VM_ENTRY_MARK;
1296 return get_Method()->was_executed_more_than(times);
1297 }
1298
1299 // ------------------------------------------------------------------
1300 // ciMethod::has_unloaded_classes_in_signature
1301 bool ciMethod::has_unloaded_classes_in_signature() {
1302 // ciSignature is resolved against some accessing class and
1303 // signature classes aren't required to be local. As a benefit,
1304 // it makes signature classes visible through loader constraints.
1305 // So, encountering an unloaded class signals it is absent both in
1306 // the callee (local) and caller contexts.
1307 return signature()->has_unloaded_classes();
1308 }
1309
1310 // ------------------------------------------------------------------
1311 // ciMethod::is_klass_loaded
1312 bool ciMethod::is_klass_loaded(int refinfo_index, Bytecodes::Code bc, bool must_be_resolved) const {
1313 VM_ENTRY_MARK;
1314 return get_Method()->is_klass_loaded(refinfo_index, bc, must_be_resolved);
|