1 /* 2 * Copyright (c) 1997, 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 #ifndef SHARE_OOPS_METHOD_HPP 26 #define SHARE_OOPS_METHOD_HPP 27 28 #include "code/compressedStream.hpp" 29 #include "compiler/compilerDefinitions.hpp" 30 #include "oops/annotations.hpp" 31 #include "oops/constantPool.hpp" 32 #include "oops/methodFlags.hpp" 33 #include "oops/instanceKlass.hpp" 34 #include "oops/oop.hpp" 35 #include "utilities/accessFlags.hpp" 36 #include "utilities/align.hpp" 37 #include "utilities/growableArray.hpp" 38 #include "utilities/macros.hpp" 39 #include "utilities/vmEnums.hpp" 40 #if INCLUDE_JFR 41 #include "jfr/support/jfrTraceIdExtension.hpp" 42 #endif 43 44 45 // A Method represents a Java method. 46 // 47 // Note that most applications load thousands of methods, so keeping the size of this 48 // class small has a big impact on footprint. 49 // 50 // Note that native_function and signature_handler have to be at fixed offsets 51 // (required by the interpreter) 52 // 53 // Method embedded field layout (after declared fields): 54 // [EMBEDDED native_function (present only if native) ] 55 // [EMBEDDED signature_handler (present only if native) ] 56 57 class CheckedExceptionElement; 58 class LocalVariableTableElement; 59 class AdapterHandlerEntry; 60 class MethodData; 61 class MethodCounters; 62 class MethodTrainingData; 63 class ConstMethod; 64 class InlineTableSizes; 65 class nmethod; 66 class InterpreterOopMap; 67 class AOTCodeEntry; 68 69 class Method : public Metadata { 70 friend class VMStructs; 71 friend class JVMCIVMStructs; 72 friend class MethodTest; 73 private: 74 // If you add a new field that points to any metaspace object, you 75 // must add this field to Method::metaspace_pointers_do(). 76 ConstMethod* _constMethod; // Method read-only data. 77 MethodData* _method_data; 78 MethodCounters* _method_counters; 79 AdapterHandlerEntry* _adapter; 80 int _vtable_index; // vtable index of this method (see VtableIndexFlag) 81 AccessFlags _access_flags; // Access flags 82 MethodFlags _flags; 83 84 u2 _intrinsic_id; // vmSymbols::intrinsic_id (0 == _none) 85 86 JFR_ONLY(DEFINE_TRACE_FLAG;) 87 88 #ifndef PRODUCT 89 int64_t _compiled_invocation_count; 90 91 Symbol* _name; 92 #endif 93 // Entry point for calling both from and to the interpreter. 94 address _i2i_entry; // All-args-on-stack calling convention 95 // Entry point for calling from compiled code, to compiled code if it exists 96 // or else the interpreter. 97 volatile address _from_compiled_entry; // Cache of: _code ? _code->entry_point() : _adapter->c2i_entry() 98 // The entry point for calling both from and to compiled code is 99 // "_code->entry_point()". Because of tiered compilation and de-opt, this 100 // field can come and go. It can transition from null to not-null at any 101 // time (whenever a compile completes). It can transition from not-null to 102 // null only at safepoints (because of a de-opt). 103 nmethod* volatile _code; // Points to the corresponding piece of native code 104 volatile address _from_interpreted_entry; // Cache of _code ? _adapter->i2c_entry() : _i2i_entry 105 106 nmethod* _preload_code; // preloaded AOT code 107 AOTCodeEntry* _aot_code_entry; // AOT Code Cache entry for pre-loading code 108 109 // Constructor 110 Method(ConstMethod* xconst, AccessFlags access_flags, Symbol* name); 111 public: 112 113 static Method* allocate(ClassLoaderData* loader_data, 114 int byte_code_size, 115 AccessFlags access_flags, 116 InlineTableSizes* sizes, 117 ConstMethod::MethodType method_type, 118 Symbol* name, 119 TRAPS); 120 121 // CDS and vtbl checking can create an empty Method to get vtbl pointer. 122 Method(){} 123 124 virtual bool is_method() const { return true; } 125 126 #if INCLUDE_CDS 127 void remove_unshareable_info(); 128 void restore_unshareable_info(TRAPS); 129 static void restore_archived_method_handle_intrinsic(methodHandle m, TRAPS); 130 #endif 131 132 // accessors for instance variables 133 134 ConstMethod* constMethod() const { return _constMethod; } 135 void set_constMethod(ConstMethod* xconst) { _constMethod = xconst; } 136 137 138 static address make_adapters(const methodHandle& mh, TRAPS); 139 address from_compiled_entry() const; 140 address from_interpreted_entry() const; 141 142 // access flag 143 AccessFlags access_flags() const { return _access_flags; } 144 void set_access_flags(AccessFlags flags) { _access_flags = flags; } 145 146 // name 147 Symbol* name() const { return constants()->symbol_at(name_index()); } 148 u2 name_index() const { return constMethod()->name_index(); } 149 void set_name_index(int index) { constMethod()->set_name_index(index); } 150 151 // signature 152 Symbol* signature() const { return constants()->symbol_at(signature_index()); } 153 u2 signature_index() const { return constMethod()->signature_index(); } 154 void set_signature_index(int index) { constMethod()->set_signature_index(index); } 155 156 // generics support 157 Symbol* generic_signature() const { int idx = generic_signature_index(); return ((idx != 0) ? constants()->symbol_at(idx) : nullptr); } 158 u2 generic_signature_index() const { return constMethod()->generic_signature_index(); } 159 160 // annotations support 161 AnnotationArray* annotations() const { 162 return constMethod()->method_annotations(); 163 } 164 AnnotationArray* parameter_annotations() const { 165 return constMethod()->parameter_annotations(); 166 } 167 AnnotationArray* annotation_default() const { 168 return constMethod()->default_annotations(); 169 } 170 AnnotationArray* type_annotations() const { 171 return constMethod()->type_annotations(); 172 } 173 174 // Helper routine: get klass name + "." + method name + signature as 175 // C string, for the purpose of providing more useful 176 // fatal error handling. The string is allocated in resource 177 // area if a buffer is not provided by the caller. 178 char* name_and_sig_as_C_string() const; 179 char* name_and_sig_as_C_string(char* buf, int size) const; 180 181 // Static routine in the situations we don't have a Method* 182 static char* name_and_sig_as_C_string(Klass* klass, Symbol* method_name, Symbol* signature); 183 static char* name_and_sig_as_C_string(Klass* klass, Symbol* method_name, Symbol* signature, char* buf, int size); 184 185 // Get return type + klass name + "." + method name + ( parameters types ) 186 // as a C string or print it to an outputStream. 187 // This is to be used to assemble strings passed to Java, so that 188 // the text more resembles Java code. Used in exception messages. 189 // Memory is allocated in the resource area; the caller needs 190 // a ResourceMark. 191 const char* external_name() const; 192 void print_external_name(outputStream *os) const; 193 194 static const char* external_name( Klass* klass, Symbol* method_name, Symbol* signature); 195 static void print_external_name(outputStream *os, Klass* klass, Symbol* method_name, Symbol* signature); 196 197 Bytecodes::Code java_code_at(int bci) const { 198 return Bytecodes::java_code_at(this, bcp_from(bci)); 199 } 200 Bytecodes::Code code_at(int bci) const { 201 return Bytecodes::code_at(this, bcp_from(bci)); 202 } 203 204 // JVMTI breakpoints 205 #if !INCLUDE_JVMTI 206 Bytecodes::Code orig_bytecode_at(int bci) const { 207 ShouldNotReachHere(); 208 return Bytecodes::_shouldnotreachhere; 209 } 210 void set_orig_bytecode_at(int bci, Bytecodes::Code code) { 211 ShouldNotReachHere(); 212 }; 213 u2 number_of_breakpoints() const {return 0;} 214 #else // !INCLUDE_JVMTI 215 Bytecodes::Code orig_bytecode_at(int bci) const; 216 void set_orig_bytecode_at(int bci, Bytecodes::Code code); 217 void set_breakpoint(int bci); 218 void clear_breakpoint(int bci); 219 void clear_all_breakpoints(); 220 // Tracking number of breakpoints, for fullspeed debugging. 221 // Only mutated by VM thread. 222 inline u2 number_of_breakpoints() const; 223 inline void incr_number_of_breakpoints(Thread* current); 224 inline void decr_number_of_breakpoints(Thread* current); 225 // Initialization only 226 inline void clear_number_of_breakpoints(); 227 #endif // !INCLUDE_JVMTI 228 229 // index into InstanceKlass methods() array 230 // note: also used by jfr 231 u2 method_idnum() const { return constMethod()->method_idnum(); } 232 void set_method_idnum(u2 idnum) { constMethod()->set_method_idnum(idnum); } 233 234 u2 orig_method_idnum() const { return constMethod()->orig_method_idnum(); } 235 void set_orig_method_idnum(u2 idnum) { constMethod()->set_orig_method_idnum(idnum); } 236 237 // code size 238 u2 code_size() const { return constMethod()->code_size(); } 239 240 // method size in words 241 int method_size() const { return sizeof(Method)/wordSize + ( is_native() ? 2 : 0 ); } 242 243 // constant pool for Klass* holding this method 244 ConstantPool* constants() const { return constMethod()->constants(); } 245 void set_constants(ConstantPool* c) { constMethod()->set_constants(c); } 246 247 // max stack 248 // return original max stack size for method verification 249 u2 verifier_max_stack() const { return constMethod()->max_stack(); } 250 int max_stack() const { return constMethod()->max_stack() + extra_stack_entries(); } 251 void set_max_stack(int size) { constMethod()->set_max_stack(size); } 252 253 // max locals 254 u2 max_locals() const { return constMethod()->max_locals(); } 255 void set_max_locals(int size) { constMethod()->set_max_locals(size); } 256 257 void set_deprecated() { constMethod()->set_deprecated(); } 258 bool deprecated() const { return constMethod()->deprecated(); } 259 260 void set_deprecated_for_removal() { constMethod()->set_deprecated_for_removal(); } 261 bool deprecated_for_removal() const { return constMethod()->deprecated_for_removal(); } 262 263 inline int highest_comp_level() const; 264 void set_highest_comp_level(int level); 265 int highest_osr_comp_level() const; 266 void set_highest_osr_comp_level(int level); 267 268 #if COMPILER2_OR_JVMCI 269 // Count of times method was exited via exception while interpreting 270 inline void interpreter_throwout_increment(Thread* current); 271 #endif 272 273 inline int interpreter_throwout_count() const; 274 275 u2 size_of_parameters() const { return constMethod()->size_of_parameters(); } 276 277 bool has_stackmap_table() const { 278 return constMethod()->has_stackmap_table(); 279 } 280 281 Array<u1>* stackmap_data() const { 282 return constMethod()->stackmap_data(); 283 } 284 285 void set_stackmap_data(Array<u1>* sd) { 286 constMethod()->set_stackmap_data(sd); 287 } 288 289 // exception handler table 290 bool has_exception_handler() const 291 { return constMethod()->has_exception_table(); } 292 u2 exception_table_length() const 293 { return constMethod()->exception_table_length(); } 294 ExceptionTableElement* exception_table_start() const 295 { return constMethod()->exception_table_start(); } 296 297 // Finds the first entry point bci of an exception handler for an 298 // exception of klass ex_klass thrown at throw_bci. A value of null 299 // for ex_klass indicates that the exception klass is not known; in 300 // this case it matches any constraint class. Returns -1 if the 301 // exception cannot be handled in this method. The handler 302 // constraint classes are loaded if necessary. Note that this may 303 // throw an exception if loading of the constraint classes causes 304 // an IllegalAccessError (bugid 4307310) or an OutOfMemoryError. 305 // If an exception is thrown, returns the bci of the 306 // exception handler which caused the exception to be thrown, which 307 // is needed for proper retries. See, for example, 308 // InterpreterRuntime::exception_handler_for_exception. 309 static int fast_exception_handler_bci_for(const methodHandle& mh, Klass* ex_klass, int throw_bci, TRAPS); 310 311 static bool register_native(Klass* k, 312 Symbol* name, 313 Symbol* signature, 314 address entry, 315 TRAPS); 316 317 // method data access 318 MethodData* method_data() const { 319 return _method_data; 320 } 321 void set_method_data(MethodData* data); 322 323 MethodTrainingData* training_data_or_null() const; 324 bool init_training_data(MethodTrainingData* td); 325 326 // mark an exception handler as entered (used to prune dead catch blocks in C2) 327 void set_exception_handler_entered(int handler_bci); 328 329 MethodCounters* method_counters() const { 330 return _method_counters; 331 } 332 333 void clear_method_counters() { 334 _method_counters = nullptr; 335 } 336 337 bool init_method_counters(MethodCounters* counters); 338 339 inline int prev_event_count() const; 340 inline void set_prev_event_count(int count); 341 inline jlong prev_time() const; 342 inline void set_prev_time(jlong time); 343 inline float rate() const; 344 inline void set_rate(float rate); 345 346 inline int invocation_count() const; 347 inline int backedge_count() const; 348 349 bool was_executed_more_than(int n); 350 bool was_never_executed() { return !was_executed_more_than(0); } 351 352 static void build_profiling_method_data(const methodHandle& method, TRAPS); 353 static bool install_training_method_data(const methodHandle& method); 354 static MethodCounters* build_method_counters(Thread* current, Method* m); 355 356 inline int interpreter_invocation_count() const; 357 358 #ifndef PRODUCT 359 int64_t compiled_invocation_count() const { return _compiled_invocation_count;} 360 void set_compiled_invocation_count(int count) { _compiled_invocation_count = (int64_t)count; } 361 #else 362 // for PrintMethodData in a product build 363 int64_t compiled_invocation_count() const { return 0; } 364 #endif // not PRODUCT 365 366 // nmethod/verified compiler entry 367 address verified_code_entry(); 368 bool check_code() const; // Not inline to avoid circular ref 369 nmethod* code() const; 370 371 // Locks NMethodState_lock if not held. 372 void unlink_code(nmethod *compare); 373 // Locks NMethodState_lock if not held. 374 void unlink_code(); 375 376 private: 377 // Either called with NMethodState_lock held or from constructor. 378 void clear_code(); 379 380 void clear_method_data() { 381 _method_data = nullptr; 382 } 383 384 public: 385 static void set_code(const methodHandle& mh, nmethod* code); 386 void set_adapter_entry(AdapterHandlerEntry* adapter) { 387 _adapter = adapter; 388 } 389 void set_from_compiled_entry(address entry) { 390 _from_compiled_entry = entry; 391 } 392 393 void set_preload_code(nmethod* code) { 394 _preload_code = code; 395 } 396 nmethod* preload_code() const { 397 return _preload_code; 398 } 399 void set_aot_code_entry(AOTCodeEntry* entry) { 400 _aot_code_entry = entry; 401 } 402 AOTCodeEntry* aot_code_entry() const { 403 return _aot_code_entry; 404 } 405 406 address get_i2c_entry(); 407 address get_c2i_entry(); 408 address get_c2i_unverified_entry(); 409 address get_c2i_no_clinit_check_entry(); 410 AdapterHandlerEntry* adapter() const { 411 return _adapter; 412 } 413 // setup entry points 414 void link_method(const methodHandle& method, TRAPS); 415 // clear entry points. Used by sharing code during dump time 416 void unlink_method() NOT_CDS_RETURN; 417 void remove_unshareable_flags() NOT_CDS_RETURN; 418 419 virtual void metaspace_pointers_do(MetaspaceClosure* iter); 420 virtual MetaspaceObj::Type type() const { return MethodType; } 421 422 // vtable index 423 enum VtableIndexFlag { 424 // Valid vtable indexes are non-negative (>= 0). 425 // These few negative values are used as sentinels. 426 itable_index_max = -10, // first itable index, growing downward 427 pending_itable_index = -9, // itable index will be assigned 428 invalid_vtable_index = -4, // distinct from any valid vtable index 429 garbage_vtable_index = -3, // not yet linked; no vtable layout yet 430 nonvirtual_vtable_index = -2 // there is no need for vtable dispatch 431 // 6330203 Note: Do not use -1, which was overloaded with many meanings. 432 }; 433 DEBUG_ONLY(bool valid_vtable_index() const { return _vtable_index >= nonvirtual_vtable_index; }) 434 bool has_vtable_index() const { return _vtable_index >= 0; } 435 int vtable_index() const { return _vtable_index; } 436 void set_vtable_index(int index); 437 DEBUG_ONLY(bool valid_itable_index() const { return _vtable_index <= pending_itable_index; }) 438 bool has_itable_index() const { return _vtable_index <= itable_index_max; } 439 int itable_index() const { assert(valid_itable_index(), ""); 440 return itable_index_max - _vtable_index; } 441 void set_itable_index(int index); 442 443 // interpreter entry 444 address interpreter_entry() const { return _i2i_entry; } 445 // Only used when first initialize so we can set _i2i_entry and _from_interpreted_entry 446 void set_interpreter_entry(address entry) { 447 if (_i2i_entry != entry) { 448 _i2i_entry = entry; 449 } 450 if (_from_interpreted_entry != entry) { 451 _from_interpreted_entry = entry; 452 } 453 } 454 455 // native function (used for native methods only) 456 enum { 457 native_bind_event_is_interesting = true 458 }; 459 address native_function() const { return *(native_function_addr()); } 460 461 // Must specify a real function (not null). 462 // Use clear_native_function() to unregister. 463 void set_native_function(address function, bool post_event_flag); 464 bool has_native_function() const; 465 void clear_native_function(); 466 467 // signature handler (used for native methods only) 468 address signature_handler() const { return *(signature_handler_addr()); } 469 void set_signature_handler(address handler); 470 471 // Interpreter oopmap support. 472 // If handle is already available, call with it for better performance. 473 void mask_for(int bci, InterpreterOopMap* mask); 474 void mask_for(const methodHandle& this_mh, int bci, InterpreterOopMap* mask); 475 476 // operations on invocation counter 477 void print_invocation_count(outputStream* st); 478 479 // byte codes 480 void set_code(address code) { return constMethod()->set_code(code); } 481 address code_base() const { return constMethod()->code_base(); } 482 bool contains(address bcp) const { return constMethod()->contains(bcp); } 483 484 // prints byte codes 485 void print_codes(int flags = 0) const { print_codes_on(tty, flags); } 486 void print_codes_on(outputStream* st, int flags = 0) const; 487 void print_codes_on(int from, int to, outputStream* st, int flags = 0) const; 488 489 // method parameters 490 bool has_method_parameters() const 491 { return constMethod()->has_method_parameters(); } 492 int method_parameters_length() const 493 { return constMethod()->method_parameters_length(); } 494 MethodParametersElement* method_parameters_start() const 495 { return constMethod()->method_parameters_start(); } 496 497 // checked exceptions 498 u2 checked_exceptions_length() const 499 { return constMethod()->checked_exceptions_length(); } 500 CheckedExceptionElement* checked_exceptions_start() const 501 { return constMethod()->checked_exceptions_start(); } 502 503 // localvariable table 504 bool has_localvariable_table() const 505 { return constMethod()->has_localvariable_table(); } 506 u2 localvariable_table_length() const 507 { return constMethod()->localvariable_table_length(); } 508 LocalVariableTableElement* localvariable_table_start() const 509 { return constMethod()->localvariable_table_start(); } 510 511 bool has_linenumber_table() const 512 { return constMethod()->has_linenumber_table(); } 513 u_char* compressed_linenumber_table() const 514 { return constMethod()->compressed_linenumber_table(); } 515 516 // method holder (the Klass* holding this method) 517 InstanceKlass* method_holder() const { return constants()->pool_holder(); } 518 519 Symbol* klass_name() const; // returns the name of the method holder 520 BasicType result_type() const { return constMethod()->result_type(); } 521 bool is_returning_oop() const { BasicType r = result_type(); return is_reference_type(r); } 522 bool is_returning_fp() const { BasicType r = result_type(); return (r == T_FLOAT || r == T_DOUBLE); } 523 524 // Checked exceptions thrown by this method (resolved to mirrors) 525 objArrayHandle resolved_checked_exceptions(TRAPS) { return resolved_checked_exceptions_impl(this, THREAD); } 526 527 // Access flags 528 bool is_public() const { return access_flags().is_public(); } 529 bool is_private() const { return access_flags().is_private(); } 530 bool is_protected() const { return access_flags().is_protected(); } 531 bool is_package_private() const { return !is_public() && !is_private() && !is_protected(); } 532 bool is_static() const { return access_flags().is_static(); } 533 bool is_final() const { return access_flags().is_final(); } 534 bool is_synchronized() const { return access_flags().is_synchronized();} 535 bool is_native() const { return access_flags().is_native(); } 536 bool is_abstract() const { return access_flags().is_abstract(); } 537 bool is_synthetic() const { return access_flags().is_synthetic(); } 538 539 // returns true if contains only return operation 540 bool is_empty_method() const; 541 542 // returns true if this is a vanilla constructor 543 bool is_vanilla_constructor() const; 544 545 // checks method and its method holder 546 bool is_final_method() const; 547 bool is_final_method(AccessFlags class_access_flags) const; 548 // interface method declared with 'default' - excludes private interface methods 549 bool is_default_method() const; 550 551 // true if method needs no dynamic dispatch (final and/or no vtable entry) 552 bool can_be_statically_bound() const; 553 bool can_be_statically_bound(InstanceKlass* context) const; 554 bool can_be_statically_bound(AccessFlags class_access_flags) const; 555 556 // true if method can omit stack trace in throw in compiled code. 557 bool can_omit_stack_trace(); 558 559 // Flags getting and setting. 560 #define M_STATUS_GET_SET(name, ignore) \ 561 bool name() const { return _flags.name(); } \ 562 void set_##name(bool x) { _flags.set_##name(x); } \ 563 void set_##name() { _flags.set_##name(true); } 564 M_STATUS_DO(M_STATUS_GET_SET) 565 #undef M_STATUS_GET_SET 566 567 // returns true if the method has any backward branches. 568 bool has_loops() { 569 return has_loops_flag_init() ? has_loops_flag() : compute_has_loops_flag(); 570 }; 571 572 bool compute_has_loops_flag(); 573 bool set_has_loops() { 574 // set both the flags and that it's been initialized. 575 set_has_loops_flag(); 576 set_has_loops_flag_init(); 577 return true; 578 } 579 580 // returns true if the method has any monitors. 581 bool has_monitors() const { return is_synchronized() || has_monitor_bytecodes(); } 582 583 // monitor matching. This returns a conservative estimate of whether the monitorenter/monitorexit bytecodes 584 // properly nest in the method. It might return false, even though they actually nest properly, since the info. 585 // has not been computed yet. 586 bool guaranteed_monitor_matching() const { return monitor_matching(); } 587 void set_guaranteed_monitor_matching() { set_monitor_matching(); } 588 589 // returns true if the method is an accessor function (setter/getter). 590 bool is_accessor() const; 591 592 // returns true if the method is a getter 593 bool is_getter() const; 594 595 // returns true if the method is a setter 596 bool is_setter() const; 597 598 // returns true if the method does nothing but return a constant of primitive type 599 bool is_constant_getter() const; 600 601 // returns true if the method is static OR if the classfile version < 51 602 bool has_valid_initializer_flags() const; 603 604 // returns true if the method name is <clinit> and the method has 605 // valid static initializer flags. 606 bool is_static_initializer() const; 607 608 // returns true if the method name is <init> 609 bool is_object_initializer() const; 610 611 // returns true if the method name is wait0 612 bool is_object_wait0() const; 613 614 // compiled code support 615 // NOTE: code() is inherently racy as deopt can be clearing code 616 // simultaneously. Use with caution. 617 bool has_compiled_code() const; 618 619 bool needs_clinit_barrier() const; 620 bool code_has_clinit_barriers() const; 621 622 // sizing 623 static int header_size() { 624 return align_up((int)sizeof(Method), wordSize) / wordSize; 625 } 626 static int size(bool is_native); 627 int size() const { return method_size(); } 628 void log_touched(Thread* current); 629 static void print_touched_methods(outputStream* out); 630 631 // interpreter support 632 static ByteSize const_offset() { return byte_offset_of(Method, _constMethod ); } 633 static ByteSize access_flags_offset() { return byte_offset_of(Method, _access_flags ); } 634 static ByteSize from_compiled_offset() { return byte_offset_of(Method, _from_compiled_entry); } 635 static ByteSize code_offset() { return byte_offset_of(Method, _code); } 636 637 static ByteSize method_counters_offset() { 638 return byte_offset_of(Method, _method_counters); 639 } 640 #ifndef PRODUCT 641 static ByteSize compiled_invocation_counter_offset() { return byte_offset_of(Method, _compiled_invocation_count); } 642 #endif // not PRODUCT 643 static ByteSize native_function_offset() { return in_ByteSize(sizeof(Method)); } 644 static ByteSize from_interpreted_offset() { return byte_offset_of(Method, _from_interpreted_entry ); } 645 static ByteSize interpreter_entry_offset() { return byte_offset_of(Method, _i2i_entry ); } 646 static ByteSize signature_handler_offset() { return in_ByteSize(sizeof(Method) + wordSize); } 647 static ByteSize itable_index_offset() { return byte_offset_of(Method, _vtable_index ); } 648 649 // for code generation 650 static ByteSize method_data_offset() { return byte_offset_of(Method, _method_data); } 651 static ByteSize intrinsic_id_offset() { return byte_offset_of(Method, _intrinsic_id); } 652 static int intrinsic_id_size_in_bytes() { return sizeof(u2); } 653 654 // Static methods that are used to implement member methods where an exposed this pointer 655 // is needed due to possible GCs 656 static objArrayHandle resolved_checked_exceptions_impl(Method* method, TRAPS); 657 658 // Returns the byte code index from the byte code pointer 659 int bci_from(address bcp) const; 660 address bcp_from(int bci) const; 661 address bcp_from(address bcp) const; 662 int validate_bci_from_bcp(address bcp) const; 663 int validate_bci(int bci) const; 664 665 // Returns the line number for a bci if debugging information for the method is prowided, 666 // -1 is returned otherwise. 667 int line_number_from_bci(int bci) const; 668 669 // Reflection support 670 bool is_overridden_in(Klass* k) const; 671 672 // Stack walking support 673 bool is_ignored_by_security_stack_walk() const; 674 675 // JSR 292 support 676 bool is_method_handle_intrinsic() const; // MethodHandles::is_signature_polymorphic_intrinsic(intrinsic_id) 677 bool is_compiled_lambda_form() const; // intrinsic_id() == vmIntrinsics::_compiledLambdaForm 678 bool has_member_arg() const; // intrinsic_id() == vmIntrinsics::_linkToSpecial, etc. 679 static methodHandle make_method_handle_intrinsic(vmIntrinsicID iid, // _invokeBasic, _linkToVirtual 680 Symbol* signature, //anything at all 681 TRAPS); 682 // Some special methods don't need to be findable by nmethod iterators and are permanent. 683 bool can_be_allocated_in_NonNMethod_space() const { return is_method_handle_intrinsic(); } 684 685 // Continuation 686 inline bool is_continuation_enter_intrinsic() const; 687 inline bool is_continuation_yield_intrinsic() const; 688 inline bool is_continuation_native_intrinsic() const; 689 inline bool is_special_native_intrinsic() const; 690 691 static Klass* check_non_bcp_klass(Klass* klass); 692 693 enum { 694 // How many extra stack entries for invokedynamic 695 extra_stack_entries_for_jsr292 = 1 696 }; 697 698 // this operates only on invoke methods: 699 // presize interpreter frames for extra interpreter stack entries, if needed 700 // Account for the extra appendix argument for invokehandle/invokedynamic 701 static int extra_stack_entries() { return extra_stack_entries_for_jsr292; } 702 static int extra_stack_words(); // = extra_stack_entries() * Interpreter::stackElementSize 703 704 // RedefineClasses() support: 705 bool on_stack() const { return on_stack_flag(); } 706 void set_on_stack(const bool value); 707 708 void record_gc_epoch(); 709 710 // see the definition in Method*.cpp for the gory details 711 bool should_not_be_cached() const; 712 713 // Rewriting support 714 static methodHandle clone_with_new_data(const methodHandle& m, u_char* new_code, int new_code_length, 715 u_char* new_compressed_linenumber_table, int new_compressed_linenumber_size, TRAPS); 716 717 // jmethodID handling 718 // Because the useful life-span of a jmethodID cannot be determined, 719 // once created they are never reclaimed. The methods to which they refer, 720 // however, can be GC'ed away if the class is unloaded or if the method is 721 // made obsolete or deleted -- in these cases, the jmethodID 722 // refers to null (as is the case for any weak reference). 723 static jmethodID make_jmethod_id(ClassLoaderData* cld, Method* mh); 724 725 // Ensure there is enough capacity in the internal tracking data 726 // structures to hold the number of jmethodIDs you plan to generate. 727 // This saves substantial time doing allocations. 728 static void ensure_jmethod_ids(ClassLoaderData* cld, int capacity); 729 730 // Use resolve_jmethod_id() in situations where the caller is expected 731 // to provide a valid jmethodID; the only sanity checks are in asserts; 732 // result guaranteed not to be null. 733 inline static Method* resolve_jmethod_id(jmethodID mid) { 734 assert(mid != nullptr, "JNI method id should not be null"); 735 return *((Method**)mid); 736 } 737 738 // Use checked_resolve_jmethod_id() in situations where the caller 739 // should provide a valid jmethodID, but might not. Null is returned 740 // when the jmethodID does not refer to a valid method. 741 static Method* checked_resolve_jmethod_id(jmethodID mid); 742 743 static void change_method_associated_with_jmethod_id(jmethodID old_jmid_ptr, Method* new_method); 744 static bool is_method_id(jmethodID mid); 745 746 // Clear methods 747 static void clear_jmethod_ids(ClassLoaderData* loader_data); 748 void clear_jmethod_id(); 749 static void print_jmethod_ids_count(const ClassLoaderData* loader_data, outputStream* out) PRODUCT_RETURN; 750 751 // Get this method's jmethodID -- allocate if it doesn't exist 752 jmethodID jmethod_id(); 753 754 // Lookup the jmethodID for this method. Return null if not found. 755 // NOTE that this function can be called from a signal handler 756 // (see AsyncGetCallTrace support for Forte Analyzer) and this 757 // needs to be async-safe. No allocation should be done and 758 // so handles are not used to avoid deadlock. 759 jmethodID find_jmethod_id_or_null() { return method_holder()->jmethod_id_or_null(this); } 760 761 // Support for inlining of intrinsic methods 762 vmIntrinsicID intrinsic_id() const { return (vmIntrinsicID) _intrinsic_id; } 763 void set_intrinsic_id(vmIntrinsicID id) { _intrinsic_id = (u2) id; } 764 765 // Helper routines for intrinsic_id() and vmIntrinsics::method(). 766 void init_intrinsic_id(vmSymbolID klass_id); // updates from _none if a match 767 static vmSymbolID klass_id_for_intrinsics(const Klass* holder); 768 769 bool caller_sensitive() const { return constMethod()->caller_sensitive(); } 770 void set_caller_sensitive() { constMethod()->set_caller_sensitive(); } 771 772 bool changes_current_thread() const { return constMethod()->changes_current_thread(); } 773 void set_changes_current_thread() { constMethod()->set_changes_current_thread(); } 774 775 bool jvmti_hide_events() const { return constMethod()->jvmti_hide_events(); } 776 void set_jvmti_hide_events() { constMethod()->set_jvmti_hide_events(); } 777 778 bool jvmti_mount_transition() const { return constMethod()->jvmti_mount_transition(); } 779 void set_jvmti_mount_transition() { constMethod()->set_jvmti_mount_transition(); } 780 781 bool is_hidden() const { return constMethod()->is_hidden(); } 782 void set_is_hidden() { constMethod()->set_is_hidden(); } 783 784 bool is_scoped() const { return constMethod()->is_scoped(); } 785 void set_scoped() { constMethod()->set_is_scoped(); } 786 787 bool intrinsic_candidate() const { return constMethod()->intrinsic_candidate(); } 788 void set_intrinsic_candidate() { constMethod()->set_intrinsic_candidate(); } 789 790 bool has_injected_profile() const { return constMethod()->has_injected_profile(); } 791 void set_has_injected_profile() { constMethod()->set_has_injected_profile(); } 792 793 bool has_reserved_stack_access() const { return constMethod()->reserved_stack_access(); } 794 void set_has_reserved_stack_access() { constMethod()->set_reserved_stack_access(); } 795 796 JFR_ONLY(DEFINE_TRACE_FLAG_ACCESSOR;) 797 798 ConstMethod::MethodType method_type() const { 799 return _constMethod->method_type(); 800 } 801 bool is_overpass() const { return method_type() == ConstMethod::OVERPASS; } 802 803 // On-stack replacement support 804 bool has_osr_nmethod(int level, bool match_level) { 805 return method_holder()->lookup_osr_nmethod(this, InvocationEntryBci, level, match_level) != nullptr; 806 } 807 808 nmethod* lookup_osr_nmethod_for(int bci, int level, bool match_level) { 809 return method_holder()->lookup_osr_nmethod(this, bci, level, match_level); 810 } 811 812 // Find if klass for method is loaded 813 bool is_klass_loaded_by_klass_index(int klass_index) const; 814 bool is_klass_loaded(int refinfo_index, Bytecodes::Code bc, bool must_be_resolved = false) const; 815 816 // Indicates whether compilation failed earlier for this method, or 817 // whether it is not compilable for another reason like having a 818 // breakpoint set in it. 819 bool is_not_compilable(int comp_level = CompLevel_any) const; 820 void set_not_compilable(const char* reason, int comp_level = CompLevel_all, bool report = true); 821 void set_not_compilable_quietly(const char* reason, int comp_level = CompLevel_all) { 822 set_not_compilable(reason, comp_level, false); 823 } 824 bool is_not_osr_compilable(int comp_level = CompLevel_any) const; 825 void set_not_osr_compilable(const char* reason, int comp_level = CompLevel_all, bool report = true); 826 void set_not_osr_compilable_quietly(const char* reason, int comp_level = CompLevel_all) { 827 set_not_osr_compilable(reason, comp_level, false); 828 } 829 bool is_always_compilable() const; 830 831 private: 832 void print_made_not_compilable(int comp_level, bool is_osr, bool report, const char* reason); 833 834 public: 835 MethodCounters* get_method_counters(Thread* current) { 836 if (_method_counters == nullptr) { 837 build_method_counters(current, this); 838 } 839 return _method_counters; 840 } 841 842 void clear_is_not_c1_compilable() { set_is_not_c1_compilable(false); } 843 void clear_is_not_c2_compilable() { set_is_not_c2_compilable(false); } 844 void clear_is_not_c2_osr_compilable() { set_is_not_c2_osr_compilable(false); } 845 846 // not_c1_osr_compilable == not_c1_compilable 847 bool is_not_c1_osr_compilable() const { return is_not_c1_compilable(); } 848 void set_is_not_c1_osr_compilable() { set_is_not_c1_compilable(); } 849 void clear_is_not_c1_osr_compilable() { clear_is_not_c1_compilable(); } 850 851 // Background compilation support 852 void clear_queued_for_compilation() { set_queued_for_compilation(false); } 853 854 // Resolve all classes in signature, return 'true' if successful 855 static bool load_signature_classes(const methodHandle& m, TRAPS); 856 857 // Printing 858 void print_short_name(outputStream* st = tty) const; // prints as klassname::methodname; Exposed so field engineers can debug VM 859 #if INCLUDE_JVMTI 860 void print_name(outputStream* st = tty) const; // prints as "virtual void foo(int)"; exposed for -Xlog:redefine+class 861 #else 862 void print_name(outputStream* st = tty) const PRODUCT_RETURN; // prints as "virtual void foo(int)" 863 #endif 864 865 typedef int (*method_comparator_func)(Method* a, Method* b); 866 867 // Helper routine used for method sorting 868 static void sort_methods(Array<Method*>* methods, bool set_idnums = true, method_comparator_func func = nullptr); 869 870 // Deallocation function for redefine classes or if an error occurs 871 void deallocate_contents(ClassLoaderData* loader_data); 872 873 void release_C_heap_structures(); 874 875 Method* get_new_method() const { 876 InstanceKlass* holder = method_holder(); 877 Method* new_method = holder->method_with_idnum(orig_method_idnum()); 878 879 assert(new_method != nullptr, "method_with_idnum() should not be null"); 880 assert(this != new_method, "sanity check"); 881 return new_method; 882 } 883 884 // Printing 885 #ifndef PRODUCT 886 void print_on(outputStream* st) const; 887 #endif 888 void print_value_on(outputStream* st) const; 889 void print_linkage_flags(outputStream* st) PRODUCT_RETURN; 890 891 const char* internal_name() const { return "{method}"; } 892 893 // Check for valid method pointer 894 static bool has_method_vptr(const void* ptr); 895 static bool is_valid_method(const Method* m); 896 897 // Verify 898 void verify() { verify_on(tty); } 899 void verify_on(outputStream* st); 900 901 private: 902 903 // Inlined elements 904 address* native_function_addr() const { assert(is_native(), "must be native"); return (address*) (this+1); } 905 address* signature_handler_addr() const { return native_function_addr() + 1; } 906 }; 907 908 909 // Utility class for compressing line number tables 910 911 class CompressedLineNumberWriteStream: public CompressedWriteStream { 912 private: 913 int _bci; 914 int _line; 915 public: 916 // Constructor 917 CompressedLineNumberWriteStream(int initial_size) : CompressedWriteStream(initial_size), _bci(0), _line(0) {} 918 CompressedLineNumberWriteStream(u_char* buffer, int initial_size) : CompressedWriteStream(buffer, initial_size), _bci(0), _line(0) {} 919 920 // Write (bci, line number) pair to stream 921 void write_pair_regular(int bci_delta, int line_delta); 922 923 // If (bci delta, line delta) fits in (5-bit unsigned, 3-bit unsigned) 924 // we save it as one byte, otherwise we write a 0xFF escape character 925 // and use regular compression. 0x0 is used as end-of-stream terminator. 926 void write_pair_inline(int bci, int line); 927 928 void write_pair(int bci, int line); 929 930 // Write end-of-stream marker 931 void write_terminator() { write_byte(0); } 932 }; 933 934 935 // Utility class for decompressing line number tables 936 937 class CompressedLineNumberReadStream: public CompressedReadStream { 938 private: 939 int _bci; 940 int _line; 941 public: 942 // Constructor 943 CompressedLineNumberReadStream(u_char* buffer); 944 // Read (bci, line number) pair from stream. Returns false at end-of-stream. 945 bool read_pair(); 946 // Accessing bci and line number (after calling read_pair) 947 int bci() const { return _bci; } 948 int line() const { return _line; } 949 }; 950 951 952 #if INCLUDE_JVMTI 953 954 /// Fast Breakpoints. 955 956 // If this structure gets more complicated (because bpts get numerous), 957 // move it into its own header. 958 959 // There is presently no provision for concurrent access 960 // to breakpoint lists, which is only OK for JVMTI because 961 // breakpoints are written only at safepoints, and are read 962 // concurrently only outside of safepoints. 963 964 class BreakpointInfo : public CHeapObj<mtClass> { 965 friend class VMStructs; 966 private: 967 Bytecodes::Code _orig_bytecode; 968 int _bci; 969 u2 _name_index; // of method 970 u2 _signature_index; // of method 971 BreakpointInfo* _next; // simple storage allocation 972 973 public: 974 BreakpointInfo(Method* m, int bci); 975 976 // accessors 977 Bytecodes::Code orig_bytecode() { return _orig_bytecode; } 978 void set_orig_bytecode(Bytecodes::Code code) { _orig_bytecode = code; } 979 int bci() { return _bci; } 980 981 BreakpointInfo* next() const { return _next; } 982 void set_next(BreakpointInfo* n) { _next = n; } 983 984 // helps for searchers 985 bool match(const Method* m, int bci) { 986 return bci == _bci && match(m); 987 } 988 989 bool match(const Method* m) { 990 return _name_index == m->name_index() && 991 _signature_index == m->signature_index(); 992 } 993 994 void set(Method* method); 995 void clear(Method* method); 996 }; 997 998 #endif // INCLUDE_JVMTI 999 1000 // Utility class for access exception handlers 1001 class ExceptionTable : public StackObj { 1002 private: 1003 ExceptionTableElement* _table; 1004 u2 _length; 1005 1006 public: 1007 ExceptionTable(const Method* m) { 1008 if (m->has_exception_handler()) { 1009 _table = m->exception_table_start(); 1010 _length = m->exception_table_length(); 1011 } else { 1012 _table = nullptr; 1013 _length = 0; 1014 } 1015 } 1016 1017 u2 length() const { 1018 return _length; 1019 } 1020 1021 u2 start_pc(int idx) const { 1022 assert(idx < _length, "out of bounds"); 1023 return _table[idx].start_pc; 1024 } 1025 1026 void set_start_pc(int idx, u2 value) { 1027 assert(idx < _length, "out of bounds"); 1028 _table[idx].start_pc = value; 1029 } 1030 1031 u2 end_pc(int idx) const { 1032 assert(idx < _length, "out of bounds"); 1033 return _table[idx].end_pc; 1034 } 1035 1036 void set_end_pc(int idx, u2 value) { 1037 assert(idx < _length, "out of bounds"); 1038 _table[idx].end_pc = value; 1039 } 1040 1041 u2 handler_pc(int idx) const { 1042 assert(idx < _length, "out of bounds"); 1043 return _table[idx].handler_pc; 1044 } 1045 1046 void set_handler_pc(int idx, u2 value) { 1047 assert(idx < _length, "out of bounds"); 1048 _table[idx].handler_pc = value; 1049 } 1050 1051 u2 catch_type_index(int idx) const { 1052 assert(idx < _length, "out of bounds"); 1053 return _table[idx].catch_type_index; 1054 } 1055 1056 void set_catch_type_index(int idx, u2 value) { 1057 assert(idx < _length, "out of bounds"); 1058 _table[idx].catch_type_index = value; 1059 } 1060 }; 1061 1062 #endif // SHARE_OOPS_METHOD_HPP