src/share/vm/oops/method.hpp

Sat, 07 Nov 2020 10:30:02 +0800

author
aoqi
date
Sat, 07 Nov 2020 10:30:02 +0800
changeset 10026
8c95980d0b66
parent 9931
fd44df5e3bc3
permissions
-rw-r--r--

Added tag mips-jdk8u275-b01 for changeset d3b4d62f391f

duke@435 1 /*
dbuck@8997 2 * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #ifndef SHARE_VM_OOPS_METHODOOP_HPP
stefank@2314 26 #define SHARE_VM_OOPS_METHODOOP_HPP
stefank@2314 27
stefank@2314 28 #include "classfile/vmSymbols.hpp"
stefank@2314 29 #include "code/compressedStream.hpp"
stefank@2314 30 #include "compiler/oopMap.hpp"
stefank@2314 31 #include "interpreter/invocationCounter.hpp"
coleenp@4037 32 #include "oops/annotations.hpp"
coleenp@4037 33 #include "oops/constantPool.hpp"
jiangli@4936 34 #include "oops/methodCounters.hpp"
stefank@2314 35 #include "oops/instanceKlass.hpp"
stefank@2314 36 #include "oops/oop.hpp"
stefank@2314 37 #include "oops/typeArrayOop.hpp"
stefank@2314 38 #include "utilities/accessFlags.hpp"
stefank@2314 39 #include "utilities/growableArray.hpp"
apetushkov@9858 40 #include "utilities/macros.hpp"
apetushkov@9858 41 #if INCLUDE_JFR
apetushkov@9858 42 #include "jfr/support/jfrTraceIdExtension.hpp"
apetushkov@9858 43 #endif
stefank@2314 44
coleenp@4037 45 // A Method* represents a Java method.
duke@435 46 //
duke@435 47 // Memory layout (each line represents a word). Note that most applications load thousands of methods,
duke@435 48 // so keeping the size of this structure small has a big impact on footprint.
duke@435 49 //
duke@435 50 // We put all oops and method_size first for better gc cache locality.
duke@435 51 //
coleenp@4037 52 // The actual bytecodes are inlined after the end of the Method struct.
duke@435 53 //
duke@435 54 // There are bits in the access_flags telling whether inlined tables are present.
duke@435 55 // Note that accessing the line number and local variable tables is not performance critical at all.
duke@435 56 // Accessing the checked exceptions table is used by reflection, so we put that last to make access
duke@435 57 // to it fast.
duke@435 58 //
duke@435 59 // The line number table is compressed and inlined following the byte codes. It is found as the first
duke@435 60 // byte following the byte codes. The checked exceptions table and the local variable table are inlined
duke@435 61 // after the line number table, and indexed from the end of the method. We do not compress the checked
duke@435 62 // exceptions table since the average length is less than 2, and do not bother to compress the local
duke@435 63 // variable table either since it is mostly absent.
duke@435 64 //
duke@435 65 // Note that native_function and signature_handler has to be at fixed offsets (required by the interpreter)
duke@435 66 //
duke@435 67 // |------------------------------------------------------|
duke@435 68 // | header |
duke@435 69 // | klass |
duke@435 70 // |------------------------------------------------------|
coleenp@4037 71 // | ConstMethod* (oop) |
duke@435 72 // |------------------------------------------------------|
duke@435 73 // | methodData (oop) |
jiangli@5065 74 // | methodCounters |
duke@435 75 // |------------------------------------------------------|
duke@435 76 // | access_flags |
duke@435 77 // | vtable_index |
duke@435 78 // |------------------------------------------------------|
duke@435 79 // | result_index (C++ interpreter only) |
duke@435 80 // |------------------------------------------------------|
jiangli@4338 81 // | method_size | intrinsic_id| flags |
duke@435 82 // |------------------------------------------------------|
duke@435 83 // | code (pointer) |
duke@435 84 // | i2i (pointer) |
duke@435 85 // | adapter (pointer) |
duke@435 86 // | from_compiled_entry (pointer) |
duke@435 87 // | from_interpreted_entry (pointer) |
duke@435 88 // |------------------------------------------------------|
duke@435 89 // | native_function (present only if native) |
duke@435 90 // | signature_handler (present only if native) |
duke@435 91 // |------------------------------------------------------|
duke@435 92
duke@435 93
duke@435 94 class CheckedExceptionElement;
duke@435 95 class LocalVariableTableElement;
duke@435 96 class AdapterHandlerEntry;
coleenp@4037 97 class MethodData;
jiangli@4936 98 class MethodCounters;
kamg@4245 99 class ConstMethod;
coleenp@4572 100 class InlineTableSizes;
acorn@4497 101 class KlassSizeStats;
duke@435 102
coleenp@4037 103 class Method : public Metadata {
duke@435 104 friend class VMStructs;
duke@435 105 private:
coleenp@4037 106 ConstMethod* _constMethod; // Method read-only data.
coleenp@4037 107 MethodData* _method_data;
jiangli@4936 108 MethodCounters* _method_counters;
duke@435 109 AccessFlags _access_flags; // Access flags
duke@435 110 int _vtable_index; // vtable index of this method (see VtableIndexFlag)
duke@435 111 // note: can have vtables with >2**16 elements (because of inheritance)
duke@435 112 u2 _method_size; // size of this object
jrose@1291 113 u1 _intrinsic_id; // vmSymbols::intrinsic_id (0 == _none)
vlivanov@7890 114 u1 _jfr_towrite : 1, // Flags
vlivanov@7890 115 _caller_sensitive : 1,
vlivanov@7890 116 _force_inline : 1,
vlivanov@7890 117 _hidden : 1,
kevinw@9184 118 _running_emcp : 1,
vlivanov@7890 119 _dont_inline : 1,
vlivanov@7890 120 _has_injected_profile : 1,
vlivanov@7890 121 : 2;
iveresov@2630 122
apetushkov@9858 123 JFR_ONLY(DEFINE_TRACE_FLAG;)
apetushkov@9858 124
duke@435 125 #ifndef PRODUCT
duke@435 126 int _compiled_invocation_count; // Number of nmethod invocations so far (for perf. debugging)
duke@435 127 #endif
duke@435 128 // Entry point for calling both from and to the interpreter.
duke@435 129 address _i2i_entry; // All-args-on-stack calling convention
coleenp@4037 130 // Adapter blob (i2c/c2i) for this Method*. Set once when method is linked.
duke@435 131 AdapterHandlerEntry* _adapter;
duke@435 132 // Entry point for calling from compiled code, to compiled code if it exists
duke@435 133 // or else the interpreter.
duke@435 134 volatile address _from_compiled_entry; // Cache of: _code ? _code->entry_point() : _adapter->c2i_entry()
duke@435 135 // The entry point for calling both from and to compiled code is
duke@435 136 // "_code->entry_point()". Because of tiered compilation and de-opt, this
duke@435 137 // field can come and go. It can transition from NULL to not-null at any
duke@435 138 // time (whenever a compile completes). It can transition from not-null to
duke@435 139 // NULL only at safepoints (because of a de-opt).
duke@435 140 nmethod* volatile _code; // Points to the corresponding piece of native code
duke@435 141 volatile address _from_interpreted_entry; // Cache of _code ? _adapter->i2c_entry() : _i2i_entry
duke@435 142
coleenp@4037 143 // Constructor
coleenp@4037 144 Method(ConstMethod* xconst, AccessFlags access_flags, int size);
duke@435 145 public:
kamg@4245 146
coleenp@4037 147 static Method* allocate(ClassLoaderData* loader_data,
kamg@4245 148 int byte_code_size,
kamg@4245 149 AccessFlags access_flags,
coleenp@4572 150 InlineTableSizes* sizes,
kamg@4245 151 ConstMethod::MethodType method_type,
kamg@4245 152 TRAPS);
coleenp@4037 153
coleenp@4295 154 // CDS and vtbl checking can create an empty Method to get vtbl pointer.
coleenp@4295 155 Method(){}
coleenp@4045 156
coleenp@4045 157 // The Method vtable is restored by this call when the Method is in the
coleenp@4045 158 // shared archive. See patch_klass_vtables() in metaspaceShared.cpp for
coleenp@4045 159 // all the gory details. SA, dtrace and pstack helpers distinguish metadata
coleenp@4045 160 // by their vtable.
coleenp@4045 161 void restore_vtable() { guarantee(is_method(), "vtable restored by this call"); }
coleenp@4037 162 bool is_method() const volatile { return true; }
jmasa@953 163
coleenp@6626 164 void restore_unshareable_info(TRAPS);
coleenp@6626 165
duke@435 166 // accessors for instance variables
coleenp@4045 167
coleenp@4037 168 ConstMethod* constMethod() const { return _constMethod; }
coleenp@4037 169 void set_constMethod(ConstMethod* xconst) { _constMethod = xconst; }
duke@435 170
duke@435 171
duke@435 172 static address make_adapters(methodHandle mh, TRAPS);
duke@435 173 volatile address from_compiled_entry() const { return (address)OrderAccess::load_ptr_acquire(&_from_compiled_entry); }
duke@435 174 volatile address from_interpreted_entry() const{ return (address)OrderAccess::load_ptr_acquire(&_from_interpreted_entry); }
duke@435 175
duke@435 176 // access flag
duke@435 177 AccessFlags access_flags() const { return _access_flags; }
duke@435 178 void set_access_flags(AccessFlags flags) { _access_flags = flags; }
duke@435 179
duke@435 180 // name
jiangli@3826 181 Symbol* name() const { return constants()->symbol_at(name_index()); }
duke@435 182 int name_index() const { return constMethod()->name_index(); }
duke@435 183 void set_name_index(int index) { constMethod()->set_name_index(index); }
duke@435 184
duke@435 185 // signature
jiangli@3826 186 Symbol* signature() const { return constants()->symbol_at(signature_index()); }
duke@435 187 int signature_index() const { return constMethod()->signature_index(); }
duke@435 188 void set_signature_index(int index) { constMethod()->set_signature_index(index); }
duke@435 189
duke@435 190 // generics support
jiangli@3826 191 Symbol* generic_signature() const { int idx = generic_signature_index(); return ((idx != 0) ? constants()->symbol_at(idx) : (Symbol*)NULL); }
duke@435 192 int generic_signature_index() const { return constMethod()->generic_signature_index(); }
duke@435 193 void set_generic_signature_index(int index) { constMethod()->set_generic_signature_index(index); }
duke@435 194
duke@435 195 // annotations support
coleenp@4037 196 AnnotationArray* annotations() const {
coleenp@4572 197 return constMethod()->method_annotations();
coleenp@4037 198 }
coleenp@4037 199 AnnotationArray* parameter_annotations() const {
coleenp@4572 200 return constMethod()->parameter_annotations();
coleenp@4037 201 }
coleenp@4037 202 AnnotationArray* annotation_default() const {
coleenp@4572 203 return constMethod()->default_annotations();
coleenp@4037 204 }
coleenp@4572 205 AnnotationArray* type_annotations() const {
coleenp@4572 206 return constMethod()->type_annotations();
coleenp@4572 207 }
duke@435 208
duke@435 209 // Helper routine: get klass name + "." + method name + signature as
duke@435 210 // C string, for the purpose of providing more useful NoSuchMethodErrors
duke@435 211 // and fatal error handling. The string is allocated in resource
duke@435 212 // area if a buffer is not provided by the caller.
twisti@3848 213 char* name_and_sig_as_C_string() const;
twisti@3848 214 char* name_and_sig_as_C_string(char* buf, int size) const;
duke@435 215
coleenp@4037 216 // Static routine in the situations we don't have a Method*
coleenp@2497 217 static char* name_and_sig_as_C_string(Klass* klass, Symbol* method_name, Symbol* signature);
coleenp@2497 218 static char* name_and_sig_as_C_string(Klass* klass, Symbol* method_name, Symbol* signature, char* buf, int size);
duke@435 219
never@2462 220 Bytecodes::Code java_code_at(int bci) const {
never@2462 221 return Bytecodes::java_code_at(this, bcp_from(bci));
never@2462 222 }
never@2462 223 Bytecodes::Code code_at(int bci) const {
never@2462 224 return Bytecodes::code_at(this, bcp_from(bci));
never@2462 225 }
never@2462 226
duke@435 227 // JVMTI breakpoints
never@2462 228 Bytecodes::Code orig_bytecode_at(int bci) const;
duke@435 229 void set_orig_bytecode_at(int bci, Bytecodes::Code code);
duke@435 230 void set_breakpoint(int bci);
duke@435 231 void clear_breakpoint(int bci);
duke@435 232 void clear_all_breakpoints();
duke@435 233 // Tracking number of breakpoints, for fullspeed debugging.
duke@435 234 // Only mutated by VM thread.
jiangli@4936 235 u2 number_of_breakpoints() const {
vlivanov@7179 236 MethodCounters* mcs = method_counters();
vlivanov@7179 237 if (mcs == NULL) {
jiangli@4936 238 return 0;
jiangli@4936 239 } else {
vlivanov@7179 240 return mcs->number_of_breakpoints();
jiangli@4936 241 }
jiangli@4936 242 }
jiangli@4936 243 void incr_number_of_breakpoints(TRAPS) {
jiangli@4936 244 MethodCounters* mcs = get_method_counters(CHECK);
jiangli@4936 245 if (mcs != NULL) {
jiangli@4936 246 mcs->incr_number_of_breakpoints();
jiangli@4936 247 }
jiangli@4936 248 }
jiangli@4936 249 void decr_number_of_breakpoints(TRAPS) {
jiangli@4936 250 MethodCounters* mcs = get_method_counters(CHECK);
jiangli@4936 251 if (mcs != NULL) {
jiangli@4936 252 mcs->decr_number_of_breakpoints();
jiangli@4936 253 }
jiangli@4936 254 }
duke@435 255 // Initialization only
jiangli@4936 256 void clear_number_of_breakpoints() {
vlivanov@7179 257 MethodCounters* mcs = method_counters();
vlivanov@7179 258 if (mcs != NULL) {
vlivanov@7179 259 mcs->clear_number_of_breakpoints();
jiangli@4936 260 }
jiangli@4936 261 }
duke@435 262
coleenp@4037 263 // index into InstanceKlass methods() array
phh@3427 264 // note: also used by jfr
duke@435 265 u2 method_idnum() const { return constMethod()->method_idnum(); }
duke@435 266 void set_method_idnum(u2 idnum) { constMethod()->set_method_idnum(idnum); }
duke@435 267
sspitsyn@7636 268 u2 orig_method_idnum() const { return constMethod()->orig_method_idnum(); }
sspitsyn@7636 269 void set_orig_method_idnum(u2 idnum) { constMethod()->set_orig_method_idnum(idnum); }
sspitsyn@7636 270
duke@435 271 // code size
duke@435 272 int code_size() const { return constMethod()->code_size(); }
duke@435 273
duke@435 274 // method size
duke@435 275 int method_size() const { return _method_size; }
duke@435 276 void set_method_size(int size) {
duke@435 277 assert(0 <= size && size < (1 << 16), "invalid method size");
duke@435 278 _method_size = size;
duke@435 279 }
duke@435 280
coleenp@4037 281 // constant pool for Klass* holding this method
coleenp@4037 282 ConstantPool* constants() const { return constMethod()->constants(); }
coleenp@4037 283 void set_constants(ConstantPool* c) { constMethod()->set_constants(c); }
duke@435 284
duke@435 285 // max stack
twisti@3974 286 // return original max stack size for method verification
jiangli@4302 287 int verifier_max_stack() const { return constMethod()->max_stack(); }
jiangli@4302 288 int max_stack() const { return constMethod()->max_stack() + extra_stack_entries(); }
jiangli@4302 289 void set_max_stack(int size) { constMethod()->set_max_stack(size); }
duke@435 290
duke@435 291 // max locals
jiangli@4338 292 int max_locals() const { return constMethod()->max_locals(); }
jiangli@4338 293 void set_max_locals(int size) { constMethod()->set_max_locals(size); }
iveresov@2138 294
iveresov@2138 295 int highest_comp_level() const;
iveresov@2138 296 void set_highest_comp_level(int level);
iveresov@2138 297 int highest_osr_comp_level() const;
iveresov@2138 298 void set_highest_osr_comp_level(int level);
duke@435 299
duke@435 300 // Count of times method was exited via exception while interpreting
jiangli@4936 301 void interpreter_throwout_increment(TRAPS) {
jiangli@4936 302 MethodCounters* mcs = get_method_counters(CHECK);
jiangli@4936 303 if (mcs != NULL) {
jiangli@4936 304 mcs->interpreter_throwout_increment();
duke@435 305 }
duke@435 306 }
duke@435 307
jiangli@4936 308 int interpreter_throwout_count() const {
vlivanov@7179 309 MethodCounters* mcs = method_counters();
vlivanov@7179 310 if (mcs == NULL) {
jiangli@4936 311 return 0;
jiangli@4936 312 } else {
vlivanov@7179 313 return mcs->interpreter_throwout_count();
jiangli@4936 314 }
jiangli@4936 315 }
duke@435 316
duke@435 317 // size of parameters
jiangli@4338 318 int size_of_parameters() const { return constMethod()->size_of_parameters(); }
jiangli@4338 319 void set_size_of_parameters(int size) { constMethod()->set_size_of_parameters(size); }
duke@435 320
duke@435 321 bool has_stackmap_table() const {
duke@435 322 return constMethod()->has_stackmap_table();
duke@435 323 }
duke@435 324
coleenp@4037 325 Array<u1>* stackmap_data() const {
duke@435 326 return constMethod()->stackmap_data();
duke@435 327 }
duke@435 328
coleenp@4037 329 void set_stackmap_data(Array<u1>* sd) {
kamg@2232 330 constMethod()->set_stackmap_data(sd);
kamg@2232 331 }
kamg@2232 332
duke@435 333 // exception handler table
duke@435 334 bool has_exception_handler() const
duke@435 335 { return constMethod()->has_exception_handler(); }
jiangli@3917 336 int exception_table_length() const
jiangli@3917 337 { return constMethod()->exception_table_length(); }
jiangli@3917 338 ExceptionTableElement* exception_table_start() const
jiangli@3917 339 { return constMethod()->exception_table_start(); }
duke@435 340
duke@435 341 // Finds the first entry point bci of an exception handler for an
duke@435 342 // exception of klass ex_klass thrown at throw_bci. A value of NULL
duke@435 343 // for ex_klass indicates that the exception klass is not known; in
duke@435 344 // this case it matches any constraint class. Returns -1 if the
duke@435 345 // exception cannot be handled in this method. The handler
duke@435 346 // constraint classes are loaded if necessary. Note that this may
duke@435 347 // throw an exception if loading of the constraint classes causes
duke@435 348 // an IllegalAccessError (bugid 4307310) or an OutOfMemoryError.
duke@435 349 // If an exception is thrown, returns the bci of the
duke@435 350 // exception handler which caused the exception to be thrown, which
duke@435 351 // is needed for proper retries. See, for example,
duke@435 352 // InterpreterRuntime::exception_handler_for_exception.
jiangli@4405 353 static int fast_exception_handler_bci_for(methodHandle mh, KlassHandle ex_klass, int throw_bci, TRAPS);
duke@435 354
duke@435 355 // method data access
coleenp@4037 356 MethodData* method_data() const {
duke@435 357 return _method_data;
duke@435 358 }
jiangli@4936 359
coleenp@4037 360 void set_method_data(MethodData* data) {
goetz@6493 361 // The store into method must be released. On platforms without
goetz@6493 362 // total store order (TSO) the reference may become visible before
goetz@6493 363 // the initialization of data otherwise.
goetz@6493 364 OrderAccess::release_store_ptr((volatile void *)&_method_data, data);
duke@435 365 }
duke@435 366
jiangli@4936 367 MethodCounters* method_counters() const {
jiangli@4936 368 return _method_counters;
jiangli@4936 369 }
jiangli@4936 370
iveresov@7203 371 void clear_method_counters() {
iveresov@7203 372 _method_counters = NULL;
iveresov@7203 373 }
iveresov@7203 374
iveresov@7203 375 bool init_method_counters(MethodCounters* counters) {
iveresov@7203 376 // Try to install a pointer to MethodCounters, return true on success.
iveresov@7203 377 return Atomic::cmpxchg_ptr(counters, (volatile void*)&_method_counters, NULL) == NULL;
jiangli@4936 378 }
iveresov@2138 379
iveresov@2630 380 #ifdef TIERED
iveresov@2630 381 // We are reusing interpreter_invocation_count as a holder for the previous event count!
iveresov@2630 382 // We can do that since interpreter_invocation_count is not used in tiered.
jiangli@4936 383 int prev_event_count() const {
jiangli@4936 384 if (method_counters() == NULL) {
jiangli@4936 385 return 0;
jiangli@4936 386 } else {
jiangli@4936 387 return method_counters()->interpreter_invocation_count();
jiangli@4936 388 }
jiangli@4936 389 }
vlivanov@7179 390 void set_prev_event_count(int count) {
vlivanov@7179 391 MethodCounters* mcs = method_counters();
jiangli@4936 392 if (mcs != NULL) {
jiangli@4936 393 mcs->set_interpreter_invocation_count(count);
jiangli@4936 394 }
jiangli@4936 395 }
jiangli@4936 396 jlong prev_time() const {
vlivanov@7179 397 MethodCounters* mcs = method_counters();
vlivanov@7179 398 return mcs == NULL ? 0 : mcs->prev_time();
jiangli@4936 399 }
vlivanov@7179 400 void set_prev_time(jlong time) {
vlivanov@7179 401 MethodCounters* mcs = method_counters();
jiangli@4936 402 if (mcs != NULL) {
jiangli@4936 403 mcs->set_prev_time(time);
jiangli@4936 404 }
jiangli@4936 405 }
jiangli@4936 406 float rate() const {
vlivanov@7179 407 MethodCounters* mcs = method_counters();
vlivanov@7179 408 return mcs == NULL ? 0 : mcs->rate();
jiangli@4936 409 }
vlivanov@7179 410 void set_rate(float rate) {
vlivanov@7179 411 MethodCounters* mcs = method_counters();
jiangli@4936 412 if (mcs != NULL) {
jiangli@4936 413 mcs->set_rate(rate);
jiangli@4936 414 }
jiangli@4936 415 }
iveresov@2630 416 #endif
iveresov@2630 417
iveresov@2138 418 int invocation_count();
iveresov@2138 419 int backedge_count();
iveresov@2138 420
iveresov@2138 421 bool was_executed_more_than(int n);
iveresov@2138 422 bool was_never_executed() { return !was_executed_more_than(0); }
duke@435 423
duke@435 424 static void build_interpreter_method_data(methodHandle method, TRAPS);
duke@435 425
jiangli@4936 426 static MethodCounters* build_method_counters(Method* m, TRAPS);
jiangli@4936 427
iveresov@2138 428 int interpreter_invocation_count() {
vlivanov@7179 429 if (TieredCompilation) {
vlivanov@7179 430 return invocation_count();
vlivanov@7179 431 } else {
vlivanov@7179 432 MethodCounters* mcs = method_counters();
vlivanov@7179 433 return (mcs == NULL) ? 0 : mcs->interpreter_invocation_count();
vlivanov@7179 434 }
iveresov@2138 435 }
jiangli@4936 436 int increment_interpreter_invocation_count(TRAPS) {
iveresov@2138 437 if (TieredCompilation) ShouldNotReachHere();
jiangli@4936 438 MethodCounters* mcs = get_method_counters(CHECK_0);
jiangli@4936 439 return (mcs == NULL) ? 0 : mcs->increment_interpreter_invocation_count();
iveresov@2138 440 }
duke@435 441
duke@435 442 #ifndef PRODUCT
iveresov@2138 443 int compiled_invocation_count() const { return _compiled_invocation_count; }
duke@435 444 void set_compiled_invocation_count(int count) { _compiled_invocation_count = count; }
duke@435 445 #endif // not PRODUCT
duke@435 446
twisti@1040 447 // Clear (non-shared space) pointers which could not be relevant
duke@435 448 // if this (shared) method were mapped into another JVM.
duke@435 449 void remove_unshareable_info();
duke@435 450
duke@435 451 // nmethod/verified compiler entry
duke@435 452 address verified_code_entry();
duke@435 453 bool check_code() const; // Not inline to avoid circular ref
duke@435 454 nmethod* volatile code() const { assert( check_code(), "" ); return (nmethod *)OrderAccess::load_ptr_acquire(&_code); }
vkempik@8717 455 void clear_code(bool acquire_lock = true); // Clear out any compiled code
kvn@1637 456 static void set_code(methodHandle mh, nmethod* code);
duke@435 457 void set_adapter_entry(AdapterHandlerEntry* adapter) { _adapter = adapter; }
duke@435 458 address get_i2c_entry();
duke@435 459 address get_c2i_entry();
duke@435 460 address get_c2i_unverified_entry();
duke@435 461 AdapterHandlerEntry* adapter() { return _adapter; }
duke@435 462 // setup entry points
duke@435 463 void link_method(methodHandle method, TRAPS);
duke@435 464 // clear entry points. Used by sharing code
duke@435 465 void unlink_method();
duke@435 466
duke@435 467 // vtable index
duke@435 468 enum VtableIndexFlag {
duke@435 469 // Valid vtable indexes are non-negative (>= 0).
duke@435 470 // These few negative values are used as sentinels.
drchase@5732 471 itable_index_max = -10, // first itable index, growing downward
drchase@5732 472 pending_itable_index = -9, // itable index will be assigned
duke@435 473 invalid_vtable_index = -4, // distinct from any valid vtable index
duke@435 474 garbage_vtable_index = -3, // not yet linked; no vtable layout yet
duke@435 475 nonvirtual_vtable_index = -2 // there is no need for vtable dispatch
duke@435 476 // 6330203 Note: Do not use -1, which was overloaded with many meanings.
duke@435 477 };
duke@435 478 DEBUG_ONLY(bool valid_vtable_index() const { return _vtable_index >= nonvirtual_vtable_index; })
drchase@5732 479 bool has_vtable_index() const { return _vtable_index >= 0; }
drchase@5732 480 int vtable_index() const { return _vtable_index; }
jiangli@8509 481 void set_vtable_index(int index);
drchase@5732 482 DEBUG_ONLY(bool valid_itable_index() const { return _vtable_index <= pending_itable_index; })
drchase@5732 483 bool has_itable_index() const { return _vtable_index <= itable_index_max; }
drchase@5732 484 int itable_index() const { assert(valid_itable_index(), "");
drchase@5732 485 return itable_index_max - _vtable_index; }
jiangli@8509 486 void set_itable_index(int index);
duke@435 487
duke@435 488 // interpreter entry
duke@435 489 address interpreter_entry() const { return _i2i_entry; }
duke@435 490 // Only used when first initialize so we can set _i2i_entry and _from_interpreted_entry
duke@435 491 void set_interpreter_entry(address entry) { _i2i_entry = entry; _from_interpreted_entry = entry; }
duke@435 492
duke@435 493 // native function (used for native methods only)
duke@435 494 enum {
duke@435 495 native_bind_event_is_interesting = true
duke@435 496 };
duke@435 497 address native_function() const { return *(native_function_addr()); }
never@3500 498 address critical_native_function();
never@3500 499
duke@435 500 // Must specify a real function (not NULL).
duke@435 501 // Use clear_native_function() to unregister.
duke@435 502 void set_native_function(address function, bool post_event_flag);
duke@435 503 bool has_native_function() const;
duke@435 504 void clear_native_function();
duke@435 505
duke@435 506 // signature handler (used for native methods only)
duke@435 507 address signature_handler() const { return *(signature_handler_addr()); }
duke@435 508 void set_signature_handler(address handler);
duke@435 509
duke@435 510 // Interpreter oopmap support
duke@435 511 void mask_for(int bci, InterpreterOopMap* mask);
duke@435 512
duke@435 513 #ifndef PRODUCT
duke@435 514 // operations on invocation counter
iveresov@2138 515 void print_invocation_count();
duke@435 516 #endif
duke@435 517
duke@435 518 // byte codes
twisti@1573 519 void set_code(address code) { return constMethod()->set_code(code); }
duke@435 520 address code_base() const { return constMethod()->code_base(); }
duke@435 521 bool contains(address bcp) const { return constMethod()->contains(bcp); }
duke@435 522
duke@435 523 // prints byte codes
duke@435 524 void print_codes() const { print_codes_on(tty); }
duke@435 525 void print_codes_on(outputStream* st) const PRODUCT_RETURN;
duke@435 526 void print_codes_on(int from, int to, outputStream* st) const PRODUCT_RETURN;
duke@435 527
coleenp@4398 528 // method parameters
emc@4609 529 bool has_method_parameters() const
emc@4609 530 { return constMethod()->has_method_parameters(); }
coleenp@4398 531 int method_parameters_length() const
coleenp@4398 532 { return constMethod()->method_parameters_length(); }
coleenp@4398 533 MethodParametersElement* method_parameters_start() const
coleenp@4398 534 { return constMethod()->method_parameters_start(); }
coleenp@4398 535
duke@435 536 // checked exceptions
duke@435 537 int checked_exceptions_length() const
duke@435 538 { return constMethod()->checked_exceptions_length(); }
duke@435 539 CheckedExceptionElement* checked_exceptions_start() const
duke@435 540 { return constMethod()->checked_exceptions_start(); }
duke@435 541
duke@435 542 // localvariable table
duke@435 543 bool has_localvariable_table() const
duke@435 544 { return constMethod()->has_localvariable_table(); }
duke@435 545 int localvariable_table_length() const
duke@435 546 { return constMethod()->localvariable_table_length(); }
duke@435 547 LocalVariableTableElement* localvariable_table_start() const
duke@435 548 { return constMethod()->localvariable_table_start(); }
duke@435 549
duke@435 550 bool has_linenumber_table() const
duke@435 551 { return constMethod()->has_linenumber_table(); }
duke@435 552 u_char* compressed_linenumber_table() const
duke@435 553 { return constMethod()->compressed_linenumber_table(); }
duke@435 554
coleenp@4037 555 // method holder (the Klass* holding this method)
coleenp@4251 556 InstanceKlass* method_holder() const { return constants()->pool_holder(); }
duke@435 557
duke@435 558 void compute_size_of_parameters(Thread *thread); // word size of parameters (receiver if any + arguments)
coleenp@2497 559 Symbol* klass_name() const; // returns the name of the method holder
duke@435 560 BasicType result_type() const; // type of the method result
duke@435 561 bool is_returning_oop() const { BasicType r = result_type(); return (r == T_OBJECT || r == T_ARRAY); }
duke@435 562 bool is_returning_fp() const { BasicType r = result_type(); return (r == T_FLOAT || r == T_DOUBLE); }
duke@435 563
duke@435 564 // Checked exceptions thrown by this method (resolved to mirrors)
duke@435 565 objArrayHandle resolved_checked_exceptions(TRAPS) { return resolved_checked_exceptions_impl(this, THREAD); }
duke@435 566
duke@435 567 // Access flags
duke@435 568 bool is_public() const { return access_flags().is_public(); }
duke@435 569 bool is_private() const { return access_flags().is_private(); }
duke@435 570 bool is_protected() const { return access_flags().is_protected(); }
duke@435 571 bool is_package_private() const { return !is_public() && !is_private() && !is_protected(); }
duke@435 572 bool is_static() const { return access_flags().is_static(); }
duke@435 573 bool is_final() const { return access_flags().is_final(); }
duke@435 574 bool is_synchronized() const { return access_flags().is_synchronized();}
duke@435 575 bool is_native() const { return access_flags().is_native(); }
duke@435 576 bool is_abstract() const { return access_flags().is_abstract(); }
duke@435 577 bool is_strict() const { return access_flags().is_strict(); }
duke@435 578 bool is_synthetic() const { return access_flags().is_synthetic(); }
duke@435 579
duke@435 580 // returns true if contains only return operation
duke@435 581 bool is_empty_method() const;
duke@435 582
duke@435 583 // returns true if this is a vanilla constructor
duke@435 584 bool is_vanilla_constructor() const;
duke@435 585
duke@435 586 // checks method and its method holder
duke@435 587 bool is_final_method() const;
drchase@5732 588 bool is_final_method(AccessFlags class_access_flags) const;
acorn@5848 589 bool is_default_method() const;
duke@435 590
duke@435 591 // true if method needs no dynamic dispatch (final and/or no vtable entry)
duke@435 592 bool can_be_statically_bound() const;
drchase@5732 593 bool can_be_statically_bound(AccessFlags class_access_flags) const;
duke@435 594
duke@435 595 // returns true if the method has any backward branches.
duke@435 596 bool has_loops() {
duke@435 597 return access_flags().loops_flag_init() ? access_flags().has_loops() : compute_has_loops_flag();
duke@435 598 };
duke@435 599
duke@435 600 bool compute_has_loops_flag();
duke@435 601
duke@435 602 bool has_jsrs() {
duke@435 603 return access_flags().has_jsrs();
duke@435 604 };
duke@435 605 void set_has_jsrs() {
duke@435 606 _access_flags.set_has_jsrs();
duke@435 607 }
duke@435 608
duke@435 609 // returns true if the method has any monitors.
duke@435 610 bool has_monitors() const { return is_synchronized() || access_flags().has_monitor_bytecodes(); }
duke@435 611 bool has_monitor_bytecodes() const { return access_flags().has_monitor_bytecodes(); }
duke@435 612
duke@435 613 void set_has_monitor_bytecodes() { _access_flags.set_has_monitor_bytecodes(); }
duke@435 614
duke@435 615 // monitor matching. This returns a conservative estimate of whether the monitorenter/monitorexit bytecodes
duke@435 616 // propererly nest in the method. It might return false, even though they actually nest properly, since the info.
duke@435 617 // has not been computed yet.
duke@435 618 bool guaranteed_monitor_matching() const { return access_flags().is_monitor_matching(); }
duke@435 619 void set_guaranteed_monitor_matching() { _access_flags.set_monitor_matching(); }
duke@435 620
duke@435 621 // returns true if the method is an accessor function (setter/getter).
duke@435 622 bool is_accessor() const;
duke@435 623
thartmann@7365 624 // returns true if the method does nothing but return a constant of primitive type
thartmann@7365 625 bool is_constant_getter() const;
thartmann@7365 626
duke@435 627 // returns true if the method is an initializer (<init> or <clinit>).
duke@435 628 bool is_initializer() const;
duke@435 629
kamg@2616 630 // returns true if the method is static OR if the classfile version < 51
kamg@2616 631 bool has_valid_initializer_flags() const;
kamg@2616 632
kamg@2616 633 // returns true if the method name is <clinit> and the method has
kamg@2616 634 // valid static initializer flags.
kamg@2616 635 bool is_static_initializer() const;
kamg@2616 636
zmajo@8664 637 // returns true if the method name is <init>
zmajo@8664 638 bool is_object_initializer() const;
zmajo@8664 639
duke@435 640 // compiled code support
duke@435 641 // NOTE: code() is inherently racy as deopt can be clearing code
duke@435 642 // simultaneously. Use with caution.
duke@435 643 bool has_compiled_code() const { return code() != NULL; }
duke@435 644
duke@435 645 // sizing
coleenp@4037 646 static int header_size() { return sizeof(Method)/HeapWordSize; }
coleenp@4037 647 static int size(bool is_native);
coleenp@4037 648 int size() const { return method_size(); }
acorn@4497 649 #if INCLUDE_SERVICES
acorn@4497 650 void collect_statistics(KlassSizeStats *sz) const;
acorn@4497 651 #endif
duke@435 652
duke@435 653 // interpreter support
coleenp@4037 654 static ByteSize const_offset() { return byte_offset_of(Method, _constMethod ); }
coleenp@4037 655 static ByteSize access_flags_offset() { return byte_offset_of(Method, _access_flags ); }
coleenp@4037 656 static ByteSize from_compiled_offset() { return byte_offset_of(Method, _from_compiled_entry); }
coleenp@4037 657 static ByteSize code_offset() { return byte_offset_of(Method, _code); }
duke@435 658 static ByteSize method_data_offset() {
coleenp@4037 659 return byte_offset_of(Method, _method_data);
duke@435 660 }
jiangli@4936 661 static ByteSize method_counters_offset() {
jiangli@4936 662 return byte_offset_of(Method, _method_counters);
jiangli@4936 663 }
duke@435 664 #ifndef PRODUCT
coleenp@4037 665 static ByteSize compiled_invocation_counter_offset() { return byte_offset_of(Method, _compiled_invocation_count); }
duke@435 666 #endif // not PRODUCT
coleenp@4037 667 static ByteSize native_function_offset() { return in_ByteSize(sizeof(Method)); }
coleenp@4037 668 static ByteSize from_interpreted_offset() { return byte_offset_of(Method, _from_interpreted_entry ); }
coleenp@4037 669 static ByteSize interpreter_entry_offset() { return byte_offset_of(Method, _i2i_entry ); }
coleenp@4037 670 static ByteSize signature_handler_offset() { return in_ByteSize(sizeof(Method) + wordSize); }
dbuck@8997 671 static ByteSize itable_index_offset() { return byte_offset_of(Method, _vtable_index ); }
duke@435 672
duke@435 673 // for code generation
coleenp@4037 674 static int method_data_offset_in_bytes() { return offset_of(Method, _method_data); }
coleenp@4037 675 static int intrinsic_id_offset_in_bytes() { return offset_of(Method, _intrinsic_id); }
jrose@2148 676 static int intrinsic_id_size_in_bytes() { return sizeof(u1); }
duke@435 677
duke@435 678 // Static methods that are used to implement member methods where an exposed this pointer
duke@435 679 // is needed due to possible GCs
coleenp@4037 680 static objArrayHandle resolved_checked_exceptions_impl(Method* this_oop, TRAPS);
duke@435 681
duke@435 682 // Returns the byte code index from the byte code pointer
duke@435 683 int bci_from(address bcp) const;
duke@435 684 address bcp_from(int bci) const;
duke@435 685 int validate_bci_from_bcx(intptr_t bcx) const;
duke@435 686
duke@435 687 // Returns the line number for a bci if debugging information for the method is prowided,
duke@435 688 // -1 is returned otherwise.
duke@435 689 int line_number_from_bci(int bci) const;
duke@435 690
duke@435 691 // Reflection support
coleenp@4037 692 bool is_overridden_in(Klass* k) const;
duke@435 693
twisti@4866 694 // Stack walking support
twisti@4866 695 bool is_ignored_by_security_stack_walk() const;
twisti@4866 696
jrose@1145 697 // JSR 292 support
twisti@3969 698 bool is_method_handle_intrinsic() const; // MethodHandles::is_signature_polymorphic_intrinsic(intrinsic_id)
twisti@3969 699 bool is_compiled_lambda_form() const; // intrinsic_id() == vmIntrinsics::_compiledLambdaForm
twisti@3969 700 bool has_member_arg() const; // intrinsic_id() == vmIntrinsics::_linkToSpecial, etc.
twisti@3969 701 static methodHandle make_method_handle_intrinsic(vmIntrinsics::ID iid, // _invokeBasic, _linkToVirtual
twisti@3969 702 Symbol* signature, //anything at all
twisti@3969 703 TRAPS);
coleenp@4037 704 static Klass* check_non_bcp_klass(Klass* klass);
roland@5225 705
roland@5225 706 // How many extra stack entries for invokedynamic when it's enabled
roland@5225 707 static const int extra_stack_entries_for_jsr292 = 1;
roland@5225 708
roland@5225 709 // this operates only on invoke methods:
jrose@1145 710 // presize interpreter frames for extra interpreter stack entries, if needed
roland@5225 711 // Account for the extra appendix argument for invokehandle/invokedynamic
roland@5225 712 static int extra_stack_entries() { return EnableInvokeDynamic ? extra_stack_entries_for_jsr292 : 0; }
roland@5225 713 static int extra_stack_words(); // = extra_stack_entries() * Interpreter::stackElementSize
twisti@1587 714
duke@435 715 // RedefineClasses() support:
duke@435 716 bool is_old() const { return access_flags().is_old(); }
duke@435 717 void set_is_old() { _access_flags.set_is_old(); }
duke@435 718 bool is_obsolete() const { return access_flags().is_obsolete(); }
duke@435 719 void set_is_obsolete() { _access_flags.set_is_obsolete(); }
sspitsyn@7635 720 bool is_deleted() const { return access_flags().is_deleted(); }
sspitsyn@7635 721 void set_is_deleted() { _access_flags.set_is_deleted(); }
kevinw@9184 722
kevinw@9184 723 bool is_running_emcp() const {
kevinw@9184 724 // EMCP methods are old but not obsolete or deleted. Equivalent
kevinw@9184 725 // Modulo Constant Pool means the method is equivalent except
kevinw@9184 726 // the constant pool and instructions that access the constant
kevinw@9184 727 // pool might be different.
kevinw@9184 728 // If a breakpoint is set in a redefined method, its EMCP methods that are
kevinw@9184 729 // still running must have a breakpoint also.
kevinw@9184 730 return _running_emcp;
kevinw@9184 731 }
kevinw@9184 732
kevinw@9184 733 void set_running_emcp(bool x) {
kevinw@9184 734 _running_emcp = x;
kevinw@9184 735 }
kevinw@9184 736
coleenp@4037 737 bool on_stack() const { return access_flags().on_stack(); }
coleenp@4037 738 void set_on_stack(const bool value);
coleenp@4037 739
coleenp@4037 740 // see the definition in Method*.cpp for the gory details
dcubed@483 741 bool should_not_be_cached() const;
duke@435 742
duke@435 743 // JVMTI Native method prefixing support:
duke@435 744 bool is_prefixed_native() const { return access_flags().is_prefixed_native(); }
duke@435 745 void set_is_prefixed_native() { _access_flags.set_is_prefixed_native(); }
duke@435 746
duke@435 747 // Rewriting support
duke@435 748 static methodHandle clone_with_new_data(methodHandle m, u_char* new_code, int new_code_length,
duke@435 749 u_char* new_compressed_linenumber_table, int new_compressed_linenumber_size, TRAPS);
duke@435 750
coleenp@4037 751 // jmethodID handling
coleenp@4037 752 // Because the useful life-span of a jmethodID cannot be determined,
coleenp@4037 753 // once created they are never reclaimed. The methods to which they refer,
coleenp@4037 754 // however, can be GC'ed away if the class is unloaded or if the method is
coleenp@4037 755 // made obsolete or deleted -- in these cases, the jmethodID
coleenp@4037 756 // refers to NULL (as is the case for any weak reference).
coleenp@4037 757 static jmethodID make_jmethod_id(ClassLoaderData* loader_data, Method* mh);
coleenp@4037 758 static void destroy_jmethod_id(ClassLoaderData* loader_data, jmethodID mid);
coleenp@4037 759
coleenp@4037 760 // Use resolve_jmethod_id() in situations where the caller is expected
coleenp@4037 761 // to provide a valid jmethodID; the only sanity checks are in asserts;
coleenp@4037 762 // result guaranteed not to be NULL.
coleenp@4037 763 inline static Method* resolve_jmethod_id(jmethodID mid) {
coleenp@4037 764 assert(mid != NULL, "JNI method id should not be null");
coleenp@4037 765 return *((Method**)mid);
coleenp@4037 766 }
coleenp@4037 767
coleenp@4037 768 // Use checked_resolve_jmethod_id() in situations where the caller
coleenp@4037 769 // should provide a valid jmethodID, but might not. NULL is returned
coleenp@4037 770 // when the jmethodID does not refer to a valid method.
coleenp@4037 771 static Method* checked_resolve_jmethod_id(jmethodID mid);
coleenp@4037 772
coleenp@4037 773 static void change_method_associated_with_jmethod_id(jmethodID old_jmid_ptr, Method* new_method);
coleenp@4037 774 static bool is_method_id(jmethodID mid);
coleenp@4037 775
coleenp@4037 776 // Clear methods
coleenp@4037 777 static void clear_jmethod_ids(ClassLoaderData* loader_data);
coleenp@4037 778 static void print_jmethod_ids(ClassLoaderData* loader_data, outputStream* out) PRODUCT_RETURN;
coleenp@4037 779
duke@435 780 // Get this method's jmethodID -- allocate if it doesn't exist
duke@435 781 jmethodID jmethod_id() { methodHandle this_h(this);
coleenp@4251 782 return InstanceKlass::get_jmethod_id(method_holder(), this_h); }
duke@435 783
duke@435 784 // Lookup the jmethodID for this method. Return NULL if not found.
duke@435 785 // NOTE that this function can be called from a signal handler
duke@435 786 // (see AsyncGetCallTrace support for Forte Analyzer) and this
duke@435 787 // needs to be async-safe. No allocation should be done and
duke@435 788 // so handles are not used to avoid deadlock.
coleenp@4251 789 jmethodID find_jmethod_id_or_null() { return method_holder()->jmethod_id_or_null(this); }
duke@435 790
duke@435 791 // Support for inlining of intrinsic methods
jrose@1291 792 vmIntrinsics::ID intrinsic_id() const { return (vmIntrinsics::ID) _intrinsic_id; }
jrose@1291 793 void set_intrinsic_id(vmIntrinsics::ID id) { _intrinsic_id = (u1) id; }
jrose@1291 794
jrose@1291 795 // Helper routines for intrinsic_id() and vmIntrinsics::method().
jrose@1291 796 void init_intrinsic_id(); // updates from _none if a match
shshahma@8583 797 void clear_jmethod_id(ClassLoaderData* loader_data);
shshahma@8583 798
coleenp@4037 799 static vmSymbols::SID klass_id_for_intrinsics(Klass* holder);
duke@435 800
vlivanov@7890 801 bool jfr_towrite() { return _jfr_towrite; }
vlivanov@7890 802 void set_jfr_towrite(bool x) { _jfr_towrite = x; }
vlivanov@7890 803 bool caller_sensitive() { return _caller_sensitive; }
vlivanov@7890 804 void set_caller_sensitive(bool x) { _caller_sensitive = x; }
vlivanov@7890 805 bool force_inline() { return _force_inline; }
vlivanov@7890 806 void set_force_inline(bool x) { _force_inline = x; }
vlivanov@7890 807 bool dont_inline() { return _dont_inline; }
vlivanov@7890 808 void set_dont_inline(bool x) { _dont_inline = x; }
vlivanov@7890 809 bool is_hidden() { return _hidden; }
vlivanov@7890 810 void set_hidden(bool x) { _hidden = x; }
vlivanov@7890 811 bool has_injected_profile() { return _has_injected_profile; }
vlivanov@7890 812 void set_has_injected_profile(bool x) { _has_injected_profile = x; }
vlivanov@7890 813
apetushkov@9858 814 JFR_ONLY(DEFINE_TRACE_FLAG_ACCESSOR;)
apetushkov@9858 815
kamg@4245 816 ConstMethod::MethodType method_type() const {
kamg@4245 817 return _constMethod->method_type();
kamg@4245 818 }
kamg@4245 819 bool is_overpass() const { return method_type() == ConstMethod::OVERPASS; }
jrose@3926 820
duke@435 821 // On-stack replacement support
iveresov@2138 822 bool has_osr_nmethod(int level, bool match_level) {
coleenp@4251 823 return method_holder()->lookup_osr_nmethod(this, InvocationEntryBci, level, match_level) != NULL;
iveresov@2138 824 }
iveresov@2138 825
thartmann@7325 826 int mark_osr_nmethods() {
thartmann@7325 827 return method_holder()->mark_osr_nmethods(this);
thartmann@7325 828 }
thartmann@7325 829
iveresov@2138 830 nmethod* lookup_osr_nmethod_for(int bci, int level, bool match_level) {
coleenp@4251 831 return method_holder()->lookup_osr_nmethod(this, bci, level, match_level);
iveresov@2138 832 }
duke@435 833
duke@435 834 // Inline cache support
duke@435 835 void cleanup_inline_caches();
duke@435 836
duke@435 837 // Find if klass for method is loaded
duke@435 838 bool is_klass_loaded_by_klass_index(int klass_index) const;
duke@435 839 bool is_klass_loaded(int refinfo_index, bool must_be_resolved = false) const;
duke@435 840
duke@435 841 // Indicates whether compilation failed earlier for this method, or
duke@435 842 // whether it is not compilable for another reason like having a
duke@435 843 // breakpoint set in it.
twisti@4111 844 bool is_not_compilable(int comp_level = CompLevel_any) const;
vlivanov@4539 845 void set_not_compilable(int comp_level = CompLevel_all, bool report = true, const char* reason = NULL);
iveresov@2138 846 void set_not_compilable_quietly(int comp_level = CompLevel_all) {
kvn@1643 847 set_not_compilable(comp_level, false);
kvn@1643 848 }
twisti@4111 849 bool is_not_osr_compilable(int comp_level = CompLevel_any) const;
vlivanov@4539 850 void set_not_osr_compilable(int comp_level = CompLevel_all, bool report = true, const char* reason = NULL);
twisti@4111 851 void set_not_osr_compilable_quietly(int comp_level = CompLevel_all) {
twisti@4111 852 set_not_osr_compilable(comp_level, false);
iveresov@2138 853 }
vlivanov@5638 854 bool is_always_compilable() const;
twisti@4111 855
twisti@4111 856 private:
vlivanov@4539 857 void print_made_not_compilable(int comp_level, bool is_osr, bool report, const char* reason);
twisti@4111 858
twisti@5907 859 public:
jiangli@4936 860 MethodCounters* get_method_counters(TRAPS) {
jiangli@4936 861 if (_method_counters == NULL) {
jiangli@4936 862 build_method_counters(this, CHECK_AND_CLEAR_NULL);
jiangli@4936 863 }
jiangli@4936 864 return _method_counters;
jiangli@4936 865 }
jiangli@4936 866
iignatyev@4908 867 bool is_not_c1_compilable() const { return access_flags().is_not_c1_compilable(); }
iignatyev@4908 868 void set_not_c1_compilable() { _access_flags.set_not_c1_compilable(); }
iignatyev@4908 869 void clear_not_c1_compilable() { _access_flags.clear_not_c1_compilable(); }
iignatyev@4908 870 bool is_not_c2_compilable() const { return access_flags().is_not_c2_compilable(); }
iignatyev@4908 871 void set_not_c2_compilable() { _access_flags.set_not_c2_compilable(); }
iignatyev@4908 872 void clear_not_c2_compilable() { _access_flags.clear_not_c2_compilable(); }
twisti@4111 873
iignatyev@4908 874 bool is_not_c1_osr_compilable() const { return is_not_c1_compilable(); } // don't waste an accessFlags bit
iignatyev@4908 875 void set_not_c1_osr_compilable() { set_not_c1_compilable(); } // don't waste an accessFlags bit
iignatyev@4908 876 void clear_not_c1_osr_compilable() { clear_not_c1_compilable(); } // don't waste an accessFlags bit
iignatyev@4908 877 bool is_not_c2_osr_compilable() const { return access_flags().is_not_c2_osr_compilable(); }
iignatyev@4908 878 void set_not_c2_osr_compilable() { _access_flags.set_not_c2_osr_compilable(); }
iignatyev@4908 879 void clear_not_c2_osr_compilable() { _access_flags.clear_not_c2_osr_compilable(); }
duke@435 880
duke@435 881 // Background compilation support
iveresov@2138 882 bool queued_for_compilation() const { return access_flags().queued_for_compilation(); }
iveresov@2138 883 void set_queued_for_compilation() { _access_flags.set_queued_for_compilation(); }
iveresov@2138 884 void clear_queued_for_compilation() { _access_flags.clear_queued_for_compilation(); }
duke@435 885
duke@435 886 // Resolve all classes in signature, return 'true' if successful
duke@435 887 static bool load_signature_classes(methodHandle m, TRAPS);
duke@435 888
duke@435 889 // Return if true if not all classes references in signature, including return type, has been loaded
duke@435 890 static bool has_unloaded_classes_in_signature(methodHandle m, TRAPS);
duke@435 891
duke@435 892 // Printing
dcubed@4562 893 void print_short_name(outputStream* st = tty); // prints as klassname::methodname; Exposed so field engineers can debug VM
dcubed@4562 894 #if INCLUDE_JVMTI
dcubed@4562 895 void print_name(outputStream* st = tty); // prints as "virtual void foo(int)"; exposed for TraceRedefineClasses
dcubed@4562 896 #else
twisti@3969 897 void print_name(outputStream* st = tty) PRODUCT_RETURN; // prints as "virtual void foo(int)"
dcubed@4562 898 #endif
duke@435 899
duke@435 900 // Helper routine used for method sorting
acorn@5848 901 static void sort_methods(Array<Method*>* methods, bool idempotent = false, bool set_idnums = true);
duke@435 902
coleenp@4037 903 // Deallocation function for redefine classes or if an error occurs
coleenp@4037 904 void deallocate_contents(ClassLoaderData* loader_data);
coleenp@4037 905
coleenp@4037 906 // Printing
coleenp@4037 907 #ifndef PRODUCT
coleenp@4037 908 void print_on(outputStream* st) const;
coleenp@4037 909 #endif
coleenp@4037 910 void print_value_on(outputStream* st) const;
coleenp@4037 911
coleenp@4037 912 const char* internal_name() const { return "{method}"; }
coleenp@4037 913
coleenp@4295 914 // Check for valid method pointer
coleenp@6678 915 static bool has_method_vptr(const void* ptr);
coleenp@4295 916 bool is_valid_method() const;
coleenp@4295 917
coleenp@4037 918 // Verify
coleenp@4037 919 void verify() { verify_on(tty); }
coleenp@4037 920 void verify_on(outputStream* st);
coleenp@4037 921
duke@435 922 private:
duke@435 923
duke@435 924 // Inlined elements
duke@435 925 address* native_function_addr() const { assert(is_native(), "must be native"); return (address*) (this+1); }
duke@435 926 address* signature_handler_addr() const { return native_function_addr() + 1; }
duke@435 927 };
duke@435 928
duke@435 929
duke@435 930 // Utility class for compressing line number tables
duke@435 931
duke@435 932 class CompressedLineNumberWriteStream: public CompressedWriteStream {
duke@435 933 private:
duke@435 934 int _bci;
duke@435 935 int _line;
duke@435 936 public:
duke@435 937 // Constructor
duke@435 938 CompressedLineNumberWriteStream(int initial_size) : CompressedWriteStream(initial_size), _bci(0), _line(0) {}
duke@435 939 CompressedLineNumberWriteStream(u_char* buffer, int initial_size) : CompressedWriteStream(buffer, initial_size), _bci(0), _line(0) {}
duke@435 940
duke@435 941 // Write (bci, line number) pair to stream
duke@435 942 void write_pair_regular(int bci_delta, int line_delta);
duke@435 943
duke@435 944 inline void write_pair_inline(int bci, int line) {
duke@435 945 int bci_delta = bci - _bci;
duke@435 946 int line_delta = line - _line;
duke@435 947 _bci = bci;
duke@435 948 _line = line;
duke@435 949 // Skip (0,0) deltas - they do not add information and conflict with terminator.
duke@435 950 if (bci_delta == 0 && line_delta == 0) return;
duke@435 951 // Check if bci is 5-bit and line number 3-bit unsigned.
duke@435 952 if (((bci_delta & ~0x1F) == 0) && ((line_delta & ~0x7) == 0)) {
duke@435 953 // Compress into single byte.
duke@435 954 jubyte value = ((jubyte) bci_delta << 3) | (jubyte) line_delta;
duke@435 955 // Check that value doesn't match escape character.
duke@435 956 if (value != 0xFF) {
duke@435 957 write_byte(value);
duke@435 958 return;
duke@435 959 }
duke@435 960 }
duke@435 961 write_pair_regular(bci_delta, line_delta);
duke@435 962 }
duke@435 963
duke@435 964 // Windows AMD64 + Apr 2005 PSDK with /O2 generates bad code for write_pair.
duke@435 965 // Disabling optimization doesn't work for methods in header files
duke@435 966 // so we force it to call through the non-optimized version in the .cpp.
duke@435 967 // It's gross, but it's the only way we can ensure that all callers are
sla@2540 968 // fixed. _MSC_VER is defined by the windows compiler
sla@2540 969 #if defined(_M_AMD64) && _MSC_VER >= 1400
duke@435 970 void write_pair(int bci, int line);
duke@435 971 #else
duke@435 972 void write_pair(int bci, int line) { write_pair_inline(bci, line); }
duke@435 973 #endif
duke@435 974
duke@435 975 // Write end-of-stream marker
duke@435 976 void write_terminator() { write_byte(0); }
duke@435 977 };
duke@435 978
duke@435 979
duke@435 980 // Utility class for decompressing line number tables
duke@435 981
duke@435 982 class CompressedLineNumberReadStream: public CompressedReadStream {
duke@435 983 private:
duke@435 984 int _bci;
duke@435 985 int _line;
duke@435 986 public:
duke@435 987 // Constructor
duke@435 988 CompressedLineNumberReadStream(u_char* buffer);
duke@435 989 // Read (bci, line number) pair from stream. Returns false at end-of-stream.
duke@435 990 bool read_pair();
duke@435 991 // Accessing bci and line number (after calling read_pair)
duke@435 992 int bci() const { return _bci; }
duke@435 993 int line() const { return _line; }
duke@435 994 };
duke@435 995
duke@435 996
duke@435 997 /// Fast Breakpoints.
duke@435 998
duke@435 999 // If this structure gets more complicated (because bpts get numerous),
duke@435 1000 // move it into its own header.
duke@435 1001
duke@435 1002 // There is presently no provision for concurrent access
duke@435 1003 // to breakpoint lists, which is only OK for JVMTI because
duke@435 1004 // breakpoints are written only at safepoints, and are read
duke@435 1005 // concurrently only outside of safepoints.
duke@435 1006
zgu@3900 1007 class BreakpointInfo : public CHeapObj<mtClass> {
duke@435 1008 friend class VMStructs;
duke@435 1009 private:
duke@435 1010 Bytecodes::Code _orig_bytecode;
duke@435 1011 int _bci;
duke@435 1012 u2 _name_index; // of method
duke@435 1013 u2 _signature_index; // of method
duke@435 1014 BreakpointInfo* _next; // simple storage allocation
duke@435 1015
duke@435 1016 public:
coleenp@4037 1017 BreakpointInfo(Method* m, int bci);
duke@435 1018
duke@435 1019 // accessors
duke@435 1020 Bytecodes::Code orig_bytecode() { return _orig_bytecode; }
duke@435 1021 void set_orig_bytecode(Bytecodes::Code code) { _orig_bytecode = code; }
duke@435 1022 int bci() { return _bci; }
duke@435 1023
duke@435 1024 BreakpointInfo* next() const { return _next; }
duke@435 1025 void set_next(BreakpointInfo* n) { _next = n; }
duke@435 1026
duke@435 1027 // helps for searchers
coleenp@4037 1028 bool match(const Method* m, int bci) {
duke@435 1029 return bci == _bci && match(m);
duke@435 1030 }
duke@435 1031
coleenp@4037 1032 bool match(const Method* m) {
duke@435 1033 return _name_index == m->name_index() &&
duke@435 1034 _signature_index == m->signature_index();
duke@435 1035 }
duke@435 1036
coleenp@4037 1037 void set(Method* method);
coleenp@4037 1038 void clear(Method* method);
duke@435 1039 };
stefank@2314 1040
jiangli@3917 1041 // Utility class for access exception handlers
jiangli@3917 1042 class ExceptionTable : public StackObj {
jiangli@3917 1043 private:
jiangli@3917 1044 ExceptionTableElement* _table;
jiangli@3917 1045 u2 _length;
jiangli@3917 1046
jiangli@3917 1047 public:
minqi@5097 1048 ExceptionTable(const Method* m) {
jiangli@3917 1049 if (m->has_exception_handler()) {
jiangli@3917 1050 _table = m->exception_table_start();
jiangli@3917 1051 _length = m->exception_table_length();
jiangli@3917 1052 } else {
jiangli@3917 1053 _table = NULL;
jiangli@3917 1054 _length = 0;
jiangli@3917 1055 }
jiangli@3917 1056 }
jiangli@3917 1057
jiangli@3917 1058 int length() const {
jiangli@3917 1059 return _length;
jiangli@3917 1060 }
jiangli@3917 1061
jiangli@3917 1062 u2 start_pc(int idx) const {
jiangli@3917 1063 assert(idx < _length, "out of bounds");
jiangli@3917 1064 return _table[idx].start_pc;
jiangli@3917 1065 }
jiangli@3917 1066
jiangli@3917 1067 void set_start_pc(int idx, u2 value) {
jiangli@3917 1068 assert(idx < _length, "out of bounds");
jiangli@3917 1069 _table[idx].start_pc = value;
jiangli@3917 1070 }
jiangli@3917 1071
jiangli@3917 1072 u2 end_pc(int idx) const {
jiangli@3917 1073 assert(idx < _length, "out of bounds");
jiangli@3917 1074 return _table[idx].end_pc;
jiangli@3917 1075 }
jiangli@3917 1076
jiangli@3917 1077 void set_end_pc(int idx, u2 value) {
jiangli@3917 1078 assert(idx < _length, "out of bounds");
jiangli@3917 1079 _table[idx].end_pc = value;
jiangli@3917 1080 }
jiangli@3917 1081
jiangli@3917 1082 u2 handler_pc(int idx) const {
jiangli@3917 1083 assert(idx < _length, "out of bounds");
jiangli@3917 1084 return _table[idx].handler_pc;
jiangli@3917 1085 }
jiangli@3917 1086
jiangli@3917 1087 void set_handler_pc(int idx, u2 value) {
jiangli@3917 1088 assert(idx < _length, "out of bounds");
jiangli@3917 1089 _table[idx].handler_pc = value;
jiangli@3917 1090 }
jiangli@3917 1091
jiangli@3917 1092 u2 catch_type_index(int idx) const {
jiangli@3917 1093 assert(idx < _length, "out of bounds");
jiangli@3917 1094 return _table[idx].catch_type_index;
jiangli@3917 1095 }
jiangli@3917 1096
jiangli@3917 1097 void set_catch_type_index(int idx, u2 value) {
jiangli@3917 1098 assert(idx < _length, "out of bounds");
jiangli@3917 1099 _table[idx].catch_type_index = value;
jiangli@3917 1100 }
jiangli@3917 1101 };
jiangli@3917 1102
stefank@2314 1103 #endif // SHARE_VM_OOPS_METHODOOP_HPP

mercurial