src/share/vm/oops/method.hpp

Thu, 07 Feb 2013 16:05:48 -0500

author
bpittore
date
Thu, 07 Feb 2013 16:05:48 -0500
changeset 4544
3c9bc17b9403
parent 4510
1eae78177059
child 4541
d05ff4bf41b3
child 4562
8d9fc28831cc
permissions
-rw-r--r--

Merge

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

mercurial