src/share/vm/oops/method.cpp

Mon, 19 Aug 2013 09:33:29 +0200

author
rbackman
date
Mon, 19 Aug 2013 09:33:29 +0200
changeset 5544
6725044c5725
parent 5508
85147f28faba
parent 5541
f99558245e5c
child 5638
8947af8a9cec
permissions
-rw-r--r--

Merge

duke@435 1 /*
coleenp@4490 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 #include "precompiled.hpp"
coleenp@4490 26 #include "classfile/metadataOnStackMark.hpp"
stefank@2314 27 #include "classfile/systemDictionary.hpp"
stefank@2314 28 #include "code/debugInfoRec.hpp"
stefank@2314 29 #include "gc_interface/collectedHeap.inline.hpp"
stefank@2314 30 #include "interpreter/bytecodeStream.hpp"
stefank@2314 31 #include "interpreter/bytecodeTracer.hpp"
stefank@2314 32 #include "interpreter/bytecodes.hpp"
stefank@2314 33 #include "interpreter/interpreter.hpp"
stefank@2314 34 #include "interpreter/oopMapCache.hpp"
stefank@2314 35 #include "memory/gcLocker.hpp"
stefank@2314 36 #include "memory/generation.hpp"
acorn@4497 37 #include "memory/heapInspection.hpp"
coleenp@4037 38 #include "memory/metadataFactory.hpp"
stefank@2314 39 #include "memory/oopFactory.hpp"
kamg@4245 40 #include "oops/constMethod.hpp"
coleenp@4037 41 #include "oops/methodData.hpp"
coleenp@4037 42 #include "oops/method.hpp"
stefank@2314 43 #include "oops/oop.inline.hpp"
coleenp@2497 44 #include "oops/symbol.hpp"
stefank@2314 45 #include "prims/jvmtiExport.hpp"
twisti@3969 46 #include "prims/methodHandles.hpp"
stefank@2314 47 #include "prims/nativeLookup.hpp"
stefank@2314 48 #include "runtime/arguments.hpp"
stefank@2314 49 #include "runtime/compilationPolicy.hpp"
stefank@2314 50 #include "runtime/frame.inline.hpp"
stefank@2314 51 #include "runtime/handles.inline.hpp"
stefank@2314 52 #include "runtime/relocator.hpp"
stefank@2314 53 #include "runtime/sharedRuntime.hpp"
stefank@2314 54 #include "runtime/signature.hpp"
brutisso@2976 55 #include "utilities/quickSort.hpp"
stefank@2314 56 #include "utilities/xmlstream.hpp"
duke@435 57
duke@435 58
coleenp@4037 59 // Implementation of Method
duke@435 60
coleenp@4037 61 Method* Method::allocate(ClassLoaderData* loader_data,
kamg@4245 62 int byte_code_size,
kamg@4245 63 AccessFlags access_flags,
coleenp@4572 64 InlineTableSizes* sizes,
kamg@4245 65 ConstMethod::MethodType method_type,
kamg@4245 66 TRAPS) {
coleenp@4037 67 assert(!access_flags.is_native() || byte_code_size == 0,
coleenp@4037 68 "native methods should not contain byte codes");
coleenp@4037 69 ConstMethod* cm = ConstMethod::allocate(loader_data,
kamg@4245 70 byte_code_size,
coleenp@4572 71 sizes,
kamg@4245 72 method_type,
kamg@4245 73 CHECK_NULL);
coleenp@4037 74
coleenp@4037 75 int size = Method::size(access_flags.is_native());
coleenp@4037 76
iklam@5208 77 return new (loader_data, size, false, MetaspaceObj::MethodType, THREAD) Method(cm, access_flags, size);
coleenp@4037 78 }
coleenp@4037 79
coleenp@4712 80 Method::Method(ConstMethod* xconst, AccessFlags access_flags, int size) {
coleenp@4037 81 No_Safepoint_Verifier no_safepoint;
coleenp@4037 82 set_constMethod(xconst);
coleenp@4037 83 set_access_flags(access_flags);
coleenp@4037 84 set_method_size(size);
coleenp@4037 85 #ifdef CC_INTERP
coleenp@4037 86 set_result_index(T_VOID);
coleenp@4037 87 #endif
coleenp@4037 88 set_intrinsic_id(vmIntrinsics::_none);
coleenp@4037 89 set_jfr_towrite(false);
coleenp@4715 90 set_force_inline(false);
coleenp@4715 91 set_hidden(false);
coleenp@4715 92 set_dont_inline(false);
coleenp@4037 93 set_method_data(NULL);
jiangli@4936 94 set_method_counters(NULL);
coleenp@4037 95 set_vtable_index(Method::garbage_vtable_index);
coleenp@4037 96
coleenp@4037 97 // Fix and bury in Method*
coleenp@4037 98 set_interpreter_entry(NULL); // sets i2i entry and from_int
coleenp@4037 99 set_adapter_entry(NULL);
coleenp@4037 100 clear_code(); // from_c/from_i get set to c2i/i2i
coleenp@4037 101
coleenp@4037 102 if (access_flags.is_native()) {
coleenp@4037 103 clear_native_function();
coleenp@4037 104 set_signature_handler(NULL);
coleenp@4037 105 }
coleenp@4037 106
coleenp@4037 107 NOT_PRODUCT(set_compiled_invocation_count(0);)
coleenp@4037 108 }
coleenp@4037 109
coleenp@4037 110 // Release Method*. The nmethod will be gone when we get here because
coleenp@4037 111 // we've walked the code cache.
coleenp@4037 112 void Method::deallocate_contents(ClassLoaderData* loader_data) {
coleenp@4037 113 MetadataFactory::free_metadata(loader_data, constMethod());
coleenp@4037 114 set_constMethod(NULL);
coleenp@4037 115 MetadataFactory::free_metadata(loader_data, method_data());
coleenp@4037 116 set_method_data(NULL);
jiangli@4936 117 MetadataFactory::free_metadata(loader_data, method_counters());
jiangli@4936 118 set_method_counters(NULL);
coleenp@4037 119 // The nmethod will be gone when we get here.
coleenp@4037 120 if (code() != NULL) _code = NULL;
coleenp@4037 121 }
coleenp@4037 122
coleenp@4037 123 address Method::get_i2c_entry() {
duke@435 124 assert(_adapter != NULL, "must have");
duke@435 125 return _adapter->get_i2c_entry();
duke@435 126 }
duke@435 127
coleenp@4037 128 address Method::get_c2i_entry() {
duke@435 129 assert(_adapter != NULL, "must have");
duke@435 130 return _adapter->get_c2i_entry();
duke@435 131 }
duke@435 132
coleenp@4037 133 address Method::get_c2i_unverified_entry() {
duke@435 134 assert(_adapter != NULL, "must have");
duke@435 135 return _adapter->get_c2i_unverified_entry();
duke@435 136 }
duke@435 137
coleenp@4037 138 char* Method::name_and_sig_as_C_string() const {
hseigel@4278 139 return name_and_sig_as_C_string(constants()->pool_holder(), name(), signature());
duke@435 140 }
duke@435 141
coleenp@4037 142 char* Method::name_and_sig_as_C_string(char* buf, int size) const {
hseigel@4278 143 return name_and_sig_as_C_string(constants()->pool_holder(), name(), signature(), buf, size);
duke@435 144 }
duke@435 145
coleenp@4037 146 char* Method::name_and_sig_as_C_string(Klass* klass, Symbol* method_name, Symbol* signature) {
duke@435 147 const char* klass_name = klass->external_name();
duke@435 148 int klass_name_len = (int)strlen(klass_name);
duke@435 149 int method_name_len = method_name->utf8_length();
duke@435 150 int len = klass_name_len + 1 + method_name_len + signature->utf8_length();
duke@435 151 char* dest = NEW_RESOURCE_ARRAY(char, len + 1);
duke@435 152 strcpy(dest, klass_name);
duke@435 153 dest[klass_name_len] = '.';
duke@435 154 strcpy(&dest[klass_name_len + 1], method_name->as_C_string());
duke@435 155 strcpy(&dest[klass_name_len + 1 + method_name_len], signature->as_C_string());
duke@435 156 dest[len] = 0;
duke@435 157 return dest;
duke@435 158 }
duke@435 159
coleenp@4037 160 char* Method::name_and_sig_as_C_string(Klass* klass, Symbol* method_name, Symbol* signature, char* buf, int size) {
coleenp@2497 161 Symbol* klass_name = klass->name();
duke@435 162 klass_name->as_klass_external_name(buf, size);
duke@435 163 int len = (int)strlen(buf);
duke@435 164
duke@435 165 if (len < size - 1) {
duke@435 166 buf[len++] = '.';
duke@435 167
duke@435 168 method_name->as_C_string(&(buf[len]), size - len);
duke@435 169 len = (int)strlen(buf);
duke@435 170
duke@435 171 signature->as_C_string(&(buf[len]), size - len);
duke@435 172 }
duke@435 173
duke@435 174 return buf;
duke@435 175 }
duke@435 176
jiangli@4405 177 int Method::fast_exception_handler_bci_for(methodHandle mh, KlassHandle ex_klass, int throw_bci, TRAPS) {
duke@435 178 // exception table holds quadruple entries of the form (beg_bci, end_bci, handler_bci, klass_index)
duke@435 179 // access exception table
jiangli@4405 180 ExceptionTable table(mh());
jiangli@3917 181 int length = table.length();
duke@435 182 // iterate through all entries sequentially
jiangli@4405 183 constantPoolHandle pool(THREAD, mh->constants());
jiangli@3917 184 for (int i = 0; i < length; i ++) {
jiangli@3917 185 //reacquire the table in case a GC happened
jiangli@4405 186 ExceptionTable table(mh());
jiangli@3917 187 int beg_bci = table.start_pc(i);
jiangli@3917 188 int end_bci = table.end_pc(i);
duke@435 189 assert(beg_bci <= end_bci, "inconsistent exception table");
duke@435 190 if (beg_bci <= throw_bci && throw_bci < end_bci) {
duke@435 191 // exception handler bci range covers throw_bci => investigate further
jiangli@3917 192 int handler_bci = table.handler_pc(i);
jiangli@3917 193 int klass_index = table.catch_type_index(i);
duke@435 194 if (klass_index == 0) {
duke@435 195 return handler_bci;
duke@435 196 } else if (ex_klass.is_null()) {
duke@435 197 return handler_bci;
duke@435 198 } else {
duke@435 199 // we know the exception class => get the constraint class
duke@435 200 // this may require loading of the constraint class; if verification
duke@435 201 // fails or some other exception occurs, return handler_bci
coleenp@4037 202 Klass* k = pool->klass_at(klass_index, CHECK_(handler_bci));
duke@435 203 KlassHandle klass = KlassHandle(THREAD, k);
duke@435 204 assert(klass.not_null(), "klass not loaded");
duke@435 205 if (ex_klass->is_subtype_of(klass())) {
duke@435 206 return handler_bci;
duke@435 207 }
duke@435 208 }
duke@435 209 }
duke@435 210 }
duke@435 211
duke@435 212 return -1;
duke@435 213 }
duke@435 214
coleenp@4037 215 void Method::mask_for(int bci, InterpreterOopMap* mask) {
duke@435 216
duke@435 217 Thread* myThread = Thread::current();
duke@435 218 methodHandle h_this(myThread, this);
duke@435 219 #ifdef ASSERT
duke@435 220 bool has_capability = myThread->is_VM_thread() ||
duke@435 221 myThread->is_ConcurrentGC_thread() ||
duke@435 222 myThread->is_GC_task_thread();
duke@435 223
duke@435 224 if (!has_capability) {
duke@435 225 if (!VerifyStack && !VerifyLastFrame) {
duke@435 226 // verify stack calls this outside VM thread
duke@435 227 warning("oopmap should only be accessed by the "
duke@435 228 "VM, GC task or CMS threads (or during debugging)");
duke@435 229 InterpreterOopMap local_mask;
coleenp@4251 230 method_holder()->mask_for(h_this, bci, &local_mask);
duke@435 231 local_mask.print();
duke@435 232 }
duke@435 233 }
duke@435 234 #endif
coleenp@4251 235 method_holder()->mask_for(h_this, bci, mask);
duke@435 236 return;
duke@435 237 }
duke@435 238
duke@435 239
coleenp@4037 240 int Method::bci_from(address bcp) const {
kvn@4102 241 #ifdef ASSERT
kvn@4102 242 { ResourceMark rm;
twisti@3848 243 assert(is_native() && bcp == code_base() || contains(bcp) || is_error_reported(),
twisti@3848 244 err_msg("bcp doesn't belong to this method: bcp: " INTPTR_FORMAT ", method: %s", bcp, name_and_sig_as_C_string()));
kvn@4102 245 }
kvn@4102 246 #endif
duke@435 247 return bcp - code_base();
duke@435 248 }
duke@435 249
duke@435 250
duke@435 251 // Return (int)bcx if it appears to be a valid BCI.
duke@435 252 // Return bci_from((address)bcx) if it appears to be a valid BCP.
duke@435 253 // Return -1 otherwise.
duke@435 254 // Used by profiling code, when invalid data is a possibility.
coleenp@4037 255 // The caller is responsible for validating the Method* itself.
coleenp@4037 256 int Method::validate_bci_from_bcx(intptr_t bcx) const {
duke@435 257 // keep bci as -1 if not a valid bci
duke@435 258 int bci = -1;
duke@435 259 if (bcx == 0 || (address)bcx == code_base()) {
duke@435 260 // code_size() may return 0 and we allow 0 here
duke@435 261 // the method may be native
duke@435 262 bci = 0;
duke@435 263 } else if (frame::is_bci(bcx)) {
duke@435 264 if (bcx < code_size()) {
duke@435 265 bci = (int)bcx;
duke@435 266 }
duke@435 267 } else if (contains((address)bcx)) {
duke@435 268 bci = (address)bcx - code_base();
duke@435 269 }
duke@435 270 // Assert that if we have dodged any asserts, bci is negative.
duke@435 271 assert(bci == -1 || bci == bci_from(bcp_from(bci)), "sane bci if >=0");
duke@435 272 return bci;
duke@435 273 }
duke@435 274
coleenp@4037 275 address Method::bcp_from(int bci) const {
duke@435 276 assert((is_native() && bci == 0) || (!is_native() && 0 <= bci && bci < code_size()), "illegal bci");
duke@435 277 address bcp = code_base() + bci;
duke@435 278 assert(is_native() && bcp == code_base() || contains(bcp), "bcp doesn't belong to this method");
duke@435 279 return bcp;
duke@435 280 }
duke@435 281
duke@435 282
coleenp@4037 283 int Method::size(bool is_native) {
duke@435 284 // If native, then include pointers for native_function and signature_handler
duke@435 285 int extra_bytes = (is_native) ? 2*sizeof(address*) : 0;
duke@435 286 int extra_words = align_size_up(extra_bytes, BytesPerWord) / BytesPerWord;
duke@435 287 return align_object_size(header_size() + extra_words);
duke@435 288 }
duke@435 289
duke@435 290
coleenp@4037 291 Symbol* Method::klass_name() const {
coleenp@4037 292 Klass* k = method_holder();
duke@435 293 assert(k->is_klass(), "must be klass");
coleenp@4037 294 InstanceKlass* ik = (InstanceKlass*) k;
duke@435 295 return ik->name();
duke@435 296 }
duke@435 297
duke@435 298
duke@435 299 // Attempt to return method oop to original state. Clear any pointers
duke@435 300 // (to objects outside the shared spaces). We won't be able to predict
duke@435 301 // where they should point in a new JVM. Further initialize some
duke@435 302 // entries now in order allow them to be write protected later.
duke@435 303
coleenp@4037 304 void Method::remove_unshareable_info() {
duke@435 305 unlink_method();
duke@435 306 }
duke@435 307
duke@435 308
coleenp@4037 309 bool Method::was_executed_more_than(int n) {
coleenp@4037 310 // Invocation counter is reset when the Method* is compiled.
duke@435 311 // If the method has compiled code we therefore assume it has
duke@435 312 // be excuted more than n times.
duke@435 313 if (is_accessor() || is_empty_method() || (code() != NULL)) {
duke@435 314 // interpreter doesn't bump invocation counter of trivial methods
duke@435 315 // compiler does not bump invocation counter of compiled methods
duke@435 316 return true;
iveresov@2138 317 }
jiangli@4936 318 else if ((method_counters() != NULL &&
jiangli@4936 319 method_counters()->invocation_counter()->carry()) ||
jiangli@4936 320 (method_data() != NULL &&
jiangli@4936 321 method_data()->invocation_counter()->carry())) {
duke@435 322 // The carry bit is set when the counter overflows and causes
duke@435 323 // a compilation to occur. We don't know how many times
duke@435 324 // the counter has been reset, so we simply assume it has
duke@435 325 // been executed more than n times.
duke@435 326 return true;
duke@435 327 } else {
duke@435 328 return invocation_count() > n;
duke@435 329 }
duke@435 330 }
duke@435 331
duke@435 332 #ifndef PRODUCT
coleenp@4037 333 void Method::print_invocation_count() {
duke@435 334 if (is_static()) tty->print("static ");
duke@435 335 if (is_final()) tty->print("final ");
duke@435 336 if (is_synchronized()) tty->print("synchronized ");
duke@435 337 if (is_native()) tty->print("native ");
coleenp@4037 338 method_holder()->name()->print_symbol_on(tty);
duke@435 339 tty->print(".");
duke@435 340 name()->print_symbol_on(tty);
duke@435 341 signature()->print_symbol_on(tty);
duke@435 342
duke@435 343 if (WizardMode) {
duke@435 344 // dump the size of the byte codes
duke@435 345 tty->print(" {%d}", code_size());
duke@435 346 }
duke@435 347 tty->cr();
duke@435 348
duke@435 349 tty->print_cr (" interpreter_invocation_count: %8d ", interpreter_invocation_count());
duke@435 350 tty->print_cr (" invocation_counter: %8d ", invocation_count());
duke@435 351 tty->print_cr (" backedge_counter: %8d ", backedge_count());
duke@435 352 if (CountCompiledCalls) {
duke@435 353 tty->print_cr (" compiled_invocation_count: %8d ", compiled_invocation_count());
duke@435 354 }
duke@435 355
duke@435 356 }
duke@435 357 #endif
duke@435 358
coleenp@4037 359 // Build a MethodData* object to hold information about this method
duke@435 360 // collected in the interpreter.
coleenp@4037 361 void Method::build_interpreter_method_data(methodHandle method, TRAPS) {
coleenp@2363 362 // Do not profile method if current thread holds the pending list lock,
coleenp@2363 363 // which avoids deadlock for acquiring the MethodData_lock.
coleenp@4047 364 if (InstanceRefKlass::owns_pending_list_lock((JavaThread*)THREAD)) {
coleenp@2363 365 return;
coleenp@2363 366 }
coleenp@2363 367
duke@435 368 // Grab a lock here to prevent multiple
coleenp@4037 369 // MethodData*s from being created.
duke@435 370 MutexLocker ml(MethodData_lock, THREAD);
duke@435 371 if (method->method_data() == NULL) {
coleenp@4037 372 ClassLoaderData* loader_data = method->method_holder()->class_loader_data();
coleenp@4037 373 MethodData* method_data = MethodData::allocate(loader_data, method, CHECK);
duke@435 374 method->set_method_data(method_data);
duke@435 375 if (PrintMethodData && (Verbose || WizardMode)) {
duke@435 376 ResourceMark rm(THREAD);
duke@435 377 tty->print("build_interpreter_method_data for ");
duke@435 378 method->print_name(tty);
duke@435 379 tty->cr();
duke@435 380 // At the end of the run, the MDO, full of data, will be dumped.
duke@435 381 }
duke@435 382 }
duke@435 383 }
duke@435 384
jiangli@4936 385 MethodCounters* Method::build_method_counters(Method* m, TRAPS) {
jiangli@4936 386 methodHandle mh(m);
jiangli@4936 387 ClassLoaderData* loader_data = mh->method_holder()->class_loader_data();
jiangli@4936 388 MethodCounters* counters = MethodCounters::allocate(loader_data, CHECK_NULL);
jiangli@4936 389 if (mh->method_counters() == NULL) {
jiangli@4936 390 mh->set_method_counters(counters);
jiangli@4936 391 } else {
jiangli@4936 392 MetadataFactory::free_metadata(loader_data, counters);
jiangli@4936 393 }
jiangli@4936 394 return mh->method_counters();
jiangli@4936 395 }
jiangli@4936 396
coleenp@4037 397 void Method::cleanup_inline_caches() {
duke@435 398 // The current system doesn't use inline caches in the interpreter
duke@435 399 // => nothing to do (keep this method around for future use)
duke@435 400 }
duke@435 401
duke@435 402
coleenp@4037 403 int Method::extra_stack_words() {
jrose@1145 404 // not an inline function, to avoid a header dependency on Interpreter
twisti@1861 405 return extra_stack_entries() * Interpreter::stackElementSize;
jrose@1145 406 }
jrose@1145 407
jrose@1145 408
coleenp@4037 409 void Method::compute_size_of_parameters(Thread *thread) {
coleenp@2497 410 ArgumentSizeComputer asc(signature());
duke@435 411 set_size_of_parameters(asc.size() + (is_static() ? 0 : 1));
duke@435 412 }
duke@435 413
duke@435 414 #ifdef CC_INTERP
coleenp@4037 415 void Method::set_result_index(BasicType type) {
duke@435 416 _result_index = Interpreter::BasicType_as_index(type);
duke@435 417 }
duke@435 418 #endif
duke@435 419
coleenp@4037 420 BasicType Method::result_type() const {
duke@435 421 ResultTypeFinder rtf(signature());
duke@435 422 return rtf.type();
duke@435 423 }
duke@435 424
duke@435 425
coleenp@4037 426 bool Method::is_empty_method() const {
duke@435 427 return code_size() == 1
duke@435 428 && *code_base() == Bytecodes::_return;
duke@435 429 }
duke@435 430
duke@435 431
coleenp@4037 432 bool Method::is_vanilla_constructor() const {
duke@435 433 // Returns true if this method is a vanilla constructor, i.e. an "<init>" "()V" method
duke@435 434 // which only calls the superclass vanilla constructor and possibly does stores of
duke@435 435 // zero constants to local fields:
duke@435 436 //
duke@435 437 // aload_0
duke@435 438 // invokespecial
duke@435 439 // indexbyte1
duke@435 440 // indexbyte2
duke@435 441 //
duke@435 442 // followed by an (optional) sequence of:
duke@435 443 //
duke@435 444 // aload_0
duke@435 445 // aconst_null / iconst_0 / fconst_0 / dconst_0
duke@435 446 // putfield
duke@435 447 // indexbyte1
duke@435 448 // indexbyte2
duke@435 449 //
duke@435 450 // followed by:
duke@435 451 //
duke@435 452 // return
duke@435 453
duke@435 454 assert(name() == vmSymbols::object_initializer_name(), "Should only be called for default constructors");
duke@435 455 assert(signature() == vmSymbols::void_method_signature(), "Should only be called for default constructors");
duke@435 456 int size = code_size();
duke@435 457 // Check if size match
duke@435 458 if (size == 0 || size % 5 != 0) return false;
duke@435 459 address cb = code_base();
duke@435 460 int last = size - 1;
duke@435 461 if (cb[0] != Bytecodes::_aload_0 || cb[1] != Bytecodes::_invokespecial || cb[last] != Bytecodes::_return) {
duke@435 462 // Does not call superclass default constructor
duke@435 463 return false;
duke@435 464 }
duke@435 465 // Check optional sequence
duke@435 466 for (int i = 4; i < last; i += 5) {
duke@435 467 if (cb[i] != Bytecodes::_aload_0) return false;
duke@435 468 if (!Bytecodes::is_zero_const(Bytecodes::cast(cb[i+1]))) return false;
duke@435 469 if (cb[i+2] != Bytecodes::_putfield) return false;
duke@435 470 }
duke@435 471 return true;
duke@435 472 }
duke@435 473
duke@435 474
coleenp@4037 475 bool Method::compute_has_loops_flag() {
coleenp@4037 476 BytecodeStream bcs(this);
duke@435 477 Bytecodes::Code bc;
duke@435 478
duke@435 479 while ((bc = bcs.next()) >= 0) {
duke@435 480 switch( bc ) {
duke@435 481 case Bytecodes::_ifeq:
duke@435 482 case Bytecodes::_ifnull:
duke@435 483 case Bytecodes::_iflt:
duke@435 484 case Bytecodes::_ifle:
duke@435 485 case Bytecodes::_ifne:
duke@435 486 case Bytecodes::_ifnonnull:
duke@435 487 case Bytecodes::_ifgt:
duke@435 488 case Bytecodes::_ifge:
duke@435 489 case Bytecodes::_if_icmpeq:
duke@435 490 case Bytecodes::_if_icmpne:
duke@435 491 case Bytecodes::_if_icmplt:
duke@435 492 case Bytecodes::_if_icmpgt:
duke@435 493 case Bytecodes::_if_icmple:
duke@435 494 case Bytecodes::_if_icmpge:
duke@435 495 case Bytecodes::_if_acmpeq:
duke@435 496 case Bytecodes::_if_acmpne:
duke@435 497 case Bytecodes::_goto:
duke@435 498 case Bytecodes::_jsr:
duke@435 499 if( bcs.dest() < bcs.next_bci() ) _access_flags.set_has_loops();
duke@435 500 break;
duke@435 501
duke@435 502 case Bytecodes::_goto_w:
duke@435 503 case Bytecodes::_jsr_w:
duke@435 504 if( bcs.dest_w() < bcs.next_bci() ) _access_flags.set_has_loops();
duke@435 505 break;
duke@435 506 }
duke@435 507 }
duke@435 508 _access_flags.set_loops_flag_init();
duke@435 509 return _access_flags.has_loops();
duke@435 510 }
duke@435 511
duke@435 512
coleenp@4037 513 bool Method::is_final_method() const {
duke@435 514 // %%% Should return true for private methods also,
duke@435 515 // since there is no way to override them.
coleenp@4251 516 return is_final() || method_holder()->is_final();
duke@435 517 }
duke@435 518
duke@435 519
coleenp@4037 520 bool Method::is_strict_method() const {
duke@435 521 return is_strict();
duke@435 522 }
duke@435 523
duke@435 524
coleenp@4037 525 bool Method::can_be_statically_bound() const {
duke@435 526 if (is_final_method()) return true;
duke@435 527 return vtable_index() == nonvirtual_vtable_index;
duke@435 528 }
duke@435 529
duke@435 530
coleenp@4037 531 bool Method::is_accessor() const {
duke@435 532 if (code_size() != 5) return false;
duke@435 533 if (size_of_parameters() != 1) return false;
never@2462 534 if (java_code_at(0) != Bytecodes::_aload_0 ) return false;
never@2462 535 if (java_code_at(1) != Bytecodes::_getfield) return false;
never@2462 536 if (java_code_at(4) != Bytecodes::_areturn &&
never@2462 537 java_code_at(4) != Bytecodes::_ireturn ) return false;
duke@435 538 return true;
duke@435 539 }
duke@435 540
duke@435 541
coleenp@4037 542 bool Method::is_initializer() const {
kamg@2616 543 return name() == vmSymbols::object_initializer_name() || is_static_initializer();
kamg@2616 544 }
kamg@2616 545
coleenp@4037 546 bool Method::has_valid_initializer_flags() const {
kamg@2616 547 return (is_static() ||
coleenp@4251 548 method_holder()->major_version() < 51);
kamg@2616 549 }
kamg@2616 550
coleenp@4037 551 bool Method::is_static_initializer() const {
kamg@2616 552 // For classfiles version 51 or greater, ensure that the clinit method is
kamg@2616 553 // static. Non-static methods with the name "<clinit>" are not static
kamg@2616 554 // initializers. (older classfiles exempted for backward compatibility)
kamg@2616 555 return name() == vmSymbols::class_initializer_name() &&
kamg@2616 556 has_valid_initializer_flags();
duke@435 557 }
duke@435 558
duke@435 559
coleenp@4037 560 objArrayHandle Method::resolved_checked_exceptions_impl(Method* this_oop, TRAPS) {
duke@435 561 int length = this_oop->checked_exceptions_length();
duke@435 562 if (length == 0) { // common case
duke@435 563 return objArrayHandle(THREAD, Universe::the_empty_class_klass_array());
duke@435 564 } else {
duke@435 565 methodHandle h_this(THREAD, this_oop);
never@1577 566 objArrayOop m_oop = oopFactory::new_objArray(SystemDictionary::Class_klass(), length, CHECK_(objArrayHandle()));
duke@435 567 objArrayHandle mirrors (THREAD, m_oop);
duke@435 568 for (int i = 0; i < length; i++) {
duke@435 569 CheckedExceptionElement* table = h_this->checked_exceptions_start(); // recompute on each iteration, not gc safe
coleenp@4037 570 Klass* k = h_this->constants()->klass_at(table[i].class_cp_index, CHECK_(objArrayHandle()));
hseigel@4278 571 assert(k->is_subclass_of(SystemDictionary::Throwable_klass()), "invalid exception class");
hseigel@4278 572 mirrors->obj_at_put(i, k->java_mirror());
duke@435 573 }
duke@435 574 return mirrors;
duke@435 575 }
duke@435 576 };
duke@435 577
duke@435 578
coleenp@4037 579 int Method::line_number_from_bci(int bci) const {
duke@435 580 if (bci == SynchronizationEntryBCI) bci = 0;
duke@435 581 assert(bci == 0 || 0 <= bci && bci < code_size(), "illegal bci");
duke@435 582 int best_bci = 0;
duke@435 583 int best_line = -1;
duke@435 584
duke@435 585 if (has_linenumber_table()) {
duke@435 586 // The line numbers are a short array of 2-tuples [start_pc, line_number].
duke@435 587 // Not necessarily sorted and not necessarily one-to-one.
duke@435 588 CompressedLineNumberReadStream stream(compressed_linenumber_table());
duke@435 589 while (stream.read_pair()) {
duke@435 590 if (stream.bci() == bci) {
duke@435 591 // perfect match
duke@435 592 return stream.line();
duke@435 593 } else {
duke@435 594 // update best_bci/line
duke@435 595 if (stream.bci() < bci && stream.bci() >= best_bci) {
duke@435 596 best_bci = stream.bci();
duke@435 597 best_line = stream.line();
duke@435 598 }
duke@435 599 }
duke@435 600 }
duke@435 601 }
duke@435 602 return best_line;
duke@435 603 }
duke@435 604
duke@435 605
coleenp@4037 606 bool Method::is_klass_loaded_by_klass_index(int klass_index) const {
jiangli@3826 607 if( constants()->tag_at(klass_index).is_unresolved_klass() ) {
duke@435 608 Thread *thread = Thread::current();
jiangli@3826 609 Symbol* klass_name = constants()->klass_name_at(klass_index);
coleenp@4251 610 Handle loader(thread, method_holder()->class_loader());
hseigel@4278 611 Handle prot (thread, method_holder()->protection_domain());
duke@435 612 return SystemDictionary::find(klass_name, loader, prot, thread) != NULL;
duke@435 613 } else {
duke@435 614 return true;
duke@435 615 }
duke@435 616 }
duke@435 617
duke@435 618
coleenp@4037 619 bool Method::is_klass_loaded(int refinfo_index, bool must_be_resolved) const {
jiangli@3826 620 int klass_index = constants()->klass_ref_index_at(refinfo_index);
duke@435 621 if (must_be_resolved) {
duke@435 622 // Make sure klass is resolved in constantpool.
duke@435 623 if (constants()->tag_at(klass_index).is_unresolved_klass()) return false;
duke@435 624 }
duke@435 625 return is_klass_loaded_by_klass_index(klass_index);
duke@435 626 }
duke@435 627
duke@435 628
coleenp@4037 629 void Method::set_native_function(address function, bool post_event_flag) {
duke@435 630 assert(function != NULL, "use clear_native_function to unregister natives");
twisti@3969 631 assert(!is_method_handle_intrinsic() || function == SharedRuntime::native_method_throw_unsatisfied_link_error_entry(), "");
duke@435 632 address* native_function = native_function_addr();
duke@435 633
duke@435 634 // We can see racers trying to place the same native function into place. Once
duke@435 635 // is plenty.
duke@435 636 address current = *native_function;
duke@435 637 if (current == function) return;
duke@435 638 if (post_event_flag && JvmtiExport::should_post_native_method_bind() &&
duke@435 639 function != NULL) {
duke@435 640 // native_method_throw_unsatisfied_link_error_entry() should only
duke@435 641 // be passed when post_event_flag is false.
duke@435 642 assert(function !=
duke@435 643 SharedRuntime::native_method_throw_unsatisfied_link_error_entry(),
duke@435 644 "post_event_flag mis-match");
duke@435 645
duke@435 646 // post the bind event, and possible change the bind function
duke@435 647 JvmtiExport::post_native_method_bind(this, &function);
duke@435 648 }
duke@435 649 *native_function = function;
duke@435 650 // This function can be called more than once. We must make sure that we always
duke@435 651 // use the latest registered method -> check if a stub already has been generated.
duke@435 652 // If so, we have to make it not_entrant.
duke@435 653 nmethod* nm = code(); // Put it into local variable to guard against concurrent updates
duke@435 654 if (nm != NULL) {
duke@435 655 nm->make_not_entrant();
duke@435 656 }
duke@435 657 }
duke@435 658
duke@435 659
coleenp@4037 660 bool Method::has_native_function() const {
twisti@3970 661 if (is_method_handle_intrinsic())
twisti@3970 662 return false; // special-cased in SharedRuntime::generate_native_wrapper
duke@435 663 address func = native_function();
duke@435 664 return (func != NULL && func != SharedRuntime::native_method_throw_unsatisfied_link_error_entry());
duke@435 665 }
duke@435 666
duke@435 667
coleenp@4037 668 void Method::clear_native_function() {
twisti@3969 669 // Note: is_method_handle_intrinsic() is allowed here.
duke@435 670 set_native_function(
duke@435 671 SharedRuntime::native_method_throw_unsatisfied_link_error_entry(),
duke@435 672 !native_bind_event_is_interesting);
duke@435 673 clear_code();
duke@435 674 }
duke@435 675
coleenp@4037 676 address Method::critical_native_function() {
never@3500 677 methodHandle mh(this);
never@3500 678 return NativeLookup::lookup_critical_entry(mh);
never@3500 679 }
never@3500 680
duke@435 681
coleenp@4037 682 void Method::set_signature_handler(address handler) {
duke@435 683 address* signature_handler = signature_handler_addr();
duke@435 684 *signature_handler = handler;
duke@435 685 }
duke@435 686
duke@435 687
vlivanov@4539 688 void Method::print_made_not_compilable(int comp_level, bool is_osr, bool report, const char* reason) {
kvn@1643 689 if (PrintCompilation && report) {
kvn@1641 690 ttyLocker ttyl;
twisti@4111 691 tty->print("made not %scompilable on ", is_osr ? "OSR " : "");
twisti@4111 692 if (comp_level == CompLevel_all) {
twisti@4111 693 tty->print("all levels ");
twisti@4111 694 } else {
twisti@4111 695 tty->print("levels ");
twisti@4111 696 for (int i = (int)CompLevel_none; i <= comp_level; i++) {
twisti@4111 697 tty->print("%d ", i);
twisti@4111 698 }
twisti@4111 699 }
kvn@1641 700 this->print_short_name(tty);
kvn@1641 701 int size = this->code_size();
vlivanov@4539 702 if (size > 0) {
kvn@1641 703 tty->print(" (%d bytes)", size);
vlivanov@4539 704 }
vlivanov@4539 705 if (reason != NULL) {
vlivanov@4539 706 tty->print(" %s", reason);
vlivanov@4539 707 }
kvn@1641 708 tty->cr();
kvn@1641 709 }
duke@435 710 if ((TraceDeoptimization || LogCompilation) && (xtty != NULL)) {
duke@435 711 ttyLocker ttyl;
vlivanov@4154 712 xtty->begin_elem("make_not_%scompilable thread='" UINTX_FORMAT "'",
vlivanov@4154 713 is_osr ? "osr_" : "", os::current_thread_id());
vlivanov@4539 714 if (reason != NULL) {
vlivanov@4539 715 xtty->print(" reason=\'%s\'", reason);
vlivanov@4539 716 }
coleenp@4037 717 xtty->method(this);
duke@435 718 xtty->stamp();
duke@435 719 xtty->end_elem();
duke@435 720 }
twisti@4111 721 }
twisti@4111 722
twisti@4111 723 bool Method::is_not_compilable(int comp_level) const {
twisti@4111 724 if (number_of_breakpoints() > 0)
twisti@4111 725 return true;
twisti@4111 726 if (is_method_handle_intrinsic())
twisti@4111 727 return !is_synthetic(); // the generated adapters must be compiled
twisti@4111 728 if (comp_level == CompLevel_any)
twisti@4111 729 return is_not_c1_compilable() || is_not_c2_compilable();
twisti@4111 730 if (is_c1_compile(comp_level))
twisti@4111 731 return is_not_c1_compilable();
twisti@4111 732 if (is_c2_compile(comp_level))
twisti@4111 733 return is_not_c2_compilable();
twisti@4111 734 return false;
twisti@4111 735 }
twisti@4111 736
twisti@4111 737 // call this when compiler finds that this method is not compilable
vlivanov@4539 738 void Method::set_not_compilable(int comp_level, bool report, const char* reason) {
vlivanov@4539 739 print_made_not_compilable(comp_level, /*is_osr*/ false, report, reason);
iveresov@2138 740 if (comp_level == CompLevel_all) {
iveresov@2138 741 set_not_c1_compilable();
iveresov@2138 742 set_not_c2_compilable();
iveresov@2138 743 } else {
twisti@4111 744 if (is_c1_compile(comp_level))
iveresov@2138 745 set_not_c1_compilable();
twisti@4111 746 if (is_c2_compile(comp_level))
twisti@4111 747 set_not_c2_compilable();
twisti@4111 748 }
twisti@4111 749 CompilationPolicy::policy()->disable_compilation(this);
iignatyev@5541 750 assert(!CompilationPolicy::can_be_compiled(this, comp_level), "sanity check");
twisti@4111 751 }
twisti@4111 752
twisti@4111 753 bool Method::is_not_osr_compilable(int comp_level) const {
twisti@4111 754 if (is_not_compilable(comp_level))
twisti@4111 755 return true;
twisti@4111 756 if (comp_level == CompLevel_any)
twisti@4111 757 return is_not_c1_osr_compilable() || is_not_c2_osr_compilable();
twisti@4111 758 if (is_c1_compile(comp_level))
twisti@4111 759 return is_not_c1_osr_compilable();
twisti@4111 760 if (is_c2_compile(comp_level))
twisti@4111 761 return is_not_c2_osr_compilable();
twisti@4111 762 return false;
twisti@4111 763 }
twisti@4111 764
vlivanov@4539 765 void Method::set_not_osr_compilable(int comp_level, bool report, const char* reason) {
vlivanov@4539 766 print_made_not_compilable(comp_level, /*is_osr*/ true, report, reason);
twisti@4111 767 if (comp_level == CompLevel_all) {
twisti@4111 768 set_not_c1_osr_compilable();
twisti@4111 769 set_not_c2_osr_compilable();
twisti@4111 770 } else {
twisti@4111 771 if (is_c1_compile(comp_level))
twisti@4111 772 set_not_c1_osr_compilable();
twisti@4111 773 if (is_c2_compile(comp_level))
twisti@4111 774 set_not_c2_osr_compilable();
duke@435 775 }
iveresov@2138 776 CompilationPolicy::policy()->disable_compilation(this);
iignatyev@5541 777 assert(!CompilationPolicy::can_be_osr_compiled(this, comp_level), "sanity check");
duke@435 778 }
duke@435 779
duke@435 780 // Revert to using the interpreter and clear out the nmethod
coleenp@4037 781 void Method::clear_code() {
duke@435 782
duke@435 783 // this may be NULL if c2i adapters have not been made yet
duke@435 784 // Only should happen at allocate time.
duke@435 785 if (_adapter == NULL) {
duke@435 786 _from_compiled_entry = NULL;
duke@435 787 } else {
duke@435 788 _from_compiled_entry = _adapter->get_c2i_entry();
duke@435 789 }
duke@435 790 OrderAccess::storestore();
duke@435 791 _from_interpreted_entry = _i2i_entry;
duke@435 792 OrderAccess::storestore();
duke@435 793 _code = NULL;
duke@435 794 }
duke@435 795
duke@435 796 // Called by class data sharing to remove any entry points (which are not shared)
coleenp@4037 797 void Method::unlink_method() {
duke@435 798 _code = NULL;
duke@435 799 _i2i_entry = NULL;
duke@435 800 _from_interpreted_entry = NULL;
duke@435 801 if (is_native()) {
duke@435 802 *native_function_addr() = NULL;
duke@435 803 set_signature_handler(NULL);
duke@435 804 }
duke@435 805 NOT_PRODUCT(set_compiled_invocation_count(0);)
duke@435 806 _adapter = NULL;
duke@435 807 _from_compiled_entry = NULL;
coleenp@4751 808
coleenp@4751 809 // In case of DumpSharedSpaces, _method_data should always be NULL.
coleenp@4751 810 //
coleenp@4751 811 // During runtime (!DumpSharedSpaces), when we are cleaning a
coleenp@4751 812 // shared class that failed to load, this->link_method() may
coleenp@4751 813 // have already been called (before an exception happened), so
coleenp@4751 814 // this->_method_data may not be NULL.
coleenp@4751 815 assert(!DumpSharedSpaces || _method_data == NULL, "unexpected method data?");
coleenp@4751 816
duke@435 817 set_method_data(NULL);
jiangli@4936 818 set_method_counters(NULL);
duke@435 819 }
duke@435 820
duke@435 821 // Called when the method_holder is getting linked. Setup entrypoints so the method
duke@435 822 // is ready to be called from interpreter, compiler, and vtables.
coleenp@4037 823 void Method::link_method(methodHandle h_method, TRAPS) {
coleenp@2945 824 // If the code cache is full, we may reenter this function for the
coleenp@2945 825 // leftover methods that weren't linked.
coleenp@2945 826 if (_i2i_entry != NULL) return;
coleenp@2945 827
duke@435 828 assert(_adapter == NULL, "init'd to NULL" );
duke@435 829 assert( _code == NULL, "nothing compiled yet" );
duke@435 830
duke@435 831 // Setup interpreter entrypoint
duke@435 832 assert(this == h_method(), "wrong h_method()" );
duke@435 833 address entry = Interpreter::entry_for_method(h_method);
duke@435 834 assert(entry != NULL, "interpreter entry must be non-null");
duke@435 835 // Sets both _i2i_entry and _from_interpreted_entry
duke@435 836 set_interpreter_entry(entry);
twisti@5108 837
twisti@5108 838 // Don't overwrite already registered native entries.
twisti@5108 839 if (is_native() && !has_native_function()) {
duke@435 840 set_native_function(
duke@435 841 SharedRuntime::native_method_throw_unsatisfied_link_error_entry(),
duke@435 842 !native_bind_event_is_interesting);
duke@435 843 }
duke@435 844
duke@435 845 // Setup compiler entrypoint. This is made eagerly, so we do not need
duke@435 846 // special handling of vtables. An alternative is to make adapters more
duke@435 847 // lazily by calling make_adapter() from from_compiled_entry() for the
duke@435 848 // normal calls. For vtable calls life gets more complicated. When a
duke@435 849 // call-site goes mega-morphic we need adapters in all methods which can be
duke@435 850 // called from the vtable. We need adapters on such methods that get loaded
duke@435 851 // later. Ditto for mega-morphic itable calls. If this proves to be a
duke@435 852 // problem we'll make these lazily later.
coleenp@2946 853 (void) make_adapters(h_method, CHECK);
duke@435 854
duke@435 855 // ONLY USE the h_method now as make_adapter may have blocked
duke@435 856
duke@435 857 }
duke@435 858
coleenp@4037 859 address Method::make_adapters(methodHandle mh, TRAPS) {
duke@435 860 // Adapters for compiled code are made eagerly here. They are fairly
duke@435 861 // small (generally < 100 bytes) and quick to make (and cached and shared)
duke@435 862 // so making them eagerly shouldn't be too expensive.
duke@435 863 AdapterHandlerEntry* adapter = AdapterHandlerLibrary::get_adapter(mh);
duke@435 864 if (adapter == NULL ) {
never@1622 865 THROW_MSG_NULL(vmSymbols::java_lang_VirtualMachineError(), "out of space in CodeCache for adapters");
duke@435 866 }
duke@435 867
duke@435 868 mh->set_adapter_entry(adapter);
duke@435 869 mh->_from_compiled_entry = adapter->get_c2i_entry();
duke@435 870 return adapter->get_c2i_entry();
duke@435 871 }
duke@435 872
duke@435 873 // The verified_code_entry() must be called when a invoke is resolved
duke@435 874 // on this method.
duke@435 875
duke@435 876 // It returns the compiled code entry point, after asserting not null.
duke@435 877 // This function is called after potential safepoints so that nmethod
duke@435 878 // or adapter that it points to is still live and valid.
duke@435 879 // This function must not hit a safepoint!
coleenp@4037 880 address Method::verified_code_entry() {
duke@435 881 debug_only(No_Safepoint_Verifier nsv;)
kvn@1637 882 nmethod *code = (nmethod *)OrderAccess::load_ptr_acquire(&_code);
kvn@1637 883 if (code == NULL && UseCodeCacheFlushing) {
neliasso@5038 884 nmethod *saved_code = CodeCache::reanimate_saved_code(this);
kvn@1637 885 if (saved_code != NULL) {
kvn@1637 886 methodHandle method(this);
kvn@1637 887 assert( ! saved_code->is_osr_method(), "should not get here for osr" );
kvn@1637 888 set_code( method, saved_code );
kvn@1637 889 }
kvn@1637 890 }
kvn@1637 891
duke@435 892 assert(_from_compiled_entry != NULL, "must be set");
duke@435 893 return _from_compiled_entry;
duke@435 894 }
duke@435 895
duke@435 896 // Check that if an nmethod ref exists, it has a backlink to this or no backlink at all
duke@435 897 // (could be racing a deopt).
duke@435 898 // Not inline to avoid circular ref.
coleenp@4037 899 bool Method::check_code() const {
duke@435 900 // cached in a register or local. There's a race on the value of the field.
duke@435 901 nmethod *code = (nmethod *)OrderAccess::load_ptr_acquire(&_code);
coleenp@4037 902 return code == NULL || (code->method() == NULL) || (code->method() == (Method*)this && !code->is_osr_method());
duke@435 903 }
duke@435 904
duke@435 905 // Install compiled code. Instantly it can execute.
coleenp@4037 906 void Method::set_code(methodHandle mh, nmethod *code) {
duke@435 907 assert( code, "use clear_code to remove code" );
duke@435 908 assert( mh->check_code(), "" );
duke@435 909
duke@435 910 guarantee(mh->adapter() != NULL, "Adapter blob must already exist!");
duke@435 911
duke@435 912 // These writes must happen in this order, because the interpreter will
duke@435 913 // directly jump to from_interpreted_entry which jumps to an i2c adapter
duke@435 914 // which jumps to _from_compiled_entry.
duke@435 915 mh->_code = code; // Assign before allowing compiled code to exec
duke@435 916
duke@435 917 int comp_level = code->comp_level();
duke@435 918 // In theory there could be a race here. In practice it is unlikely
duke@435 919 // and not worth worrying about.
iveresov@2138 920 if (comp_level > mh->highest_comp_level()) {
iveresov@2138 921 mh->set_highest_comp_level(comp_level);
duke@435 922 }
duke@435 923
duke@435 924 OrderAccess::storestore();
twisti@2047 925 #ifdef SHARK
twisti@2200 926 mh->_from_interpreted_entry = code->insts_begin();
twisti@3969 927 #else //!SHARK
duke@435 928 mh->_from_compiled_entry = code->verified_entry_point();
duke@435 929 OrderAccess::storestore();
duke@435 930 // Instantly compiled code can execute.
twisti@3969 931 if (!mh->is_method_handle_intrinsic())
twisti@3969 932 mh->_from_interpreted_entry = mh->get_i2c_entry();
twisti@3969 933 #endif //!SHARK
duke@435 934 }
duke@435 935
duke@435 936
coleenp@4037 937 bool Method::is_overridden_in(Klass* k) const {
coleenp@4037 938 InstanceKlass* ik = InstanceKlass::cast(k);
duke@435 939
duke@435 940 if (ik->is_interface()) return false;
duke@435 941
duke@435 942 // If method is an interface, we skip it - except if it
duke@435 943 // is a miranda method
coleenp@4251 944 if (method_holder()->is_interface()) {
duke@435 945 // Check that method is not a miranda method
duke@435 946 if (ik->lookup_method(name(), signature()) == NULL) {
duke@435 947 // No implementation exist - so miranda method
duke@435 948 return false;
duke@435 949 }
duke@435 950 return true;
duke@435 951 }
duke@435 952
duke@435 953 assert(ik->is_subclass_of(method_holder()), "should be subklass");
duke@435 954 assert(ik->vtable() != NULL, "vtable should exist");
duke@435 955 if (vtable_index() == nonvirtual_vtable_index) {
duke@435 956 return false;
duke@435 957 } else {
coleenp@4037 958 Method* vt_m = ik->method_at_vtable(vtable_index());
coleenp@4037 959 return vt_m != this;
duke@435 960 }
duke@435 961 }
duke@435 962
duke@435 963
coleenp@4037 964 // give advice about whether this Method* should be cached or not
coleenp@4037 965 bool Method::should_not_be_cached() const {
dcubed@483 966 if (is_old()) {
dcubed@483 967 // This method has been redefined. It is either EMCP or obsolete
dcubed@483 968 // and we don't want to cache it because that would pin the method
dcubed@483 969 // down and prevent it from being collectible if and when it
dcubed@483 970 // finishes executing.
dcubed@483 971 return true;
dcubed@483 972 }
dcubed@483 973
dcubed@483 974 // caching this method should be just fine
dcubed@483 975 return false;
dcubed@483 976 }
dcubed@483 977
twisti@4866 978
twisti@4866 979 /**
twisti@4866 980 * Returns true if this is one of the specially treated methods for
twisti@4866 981 * security related stack walks (like Reflection.getCallerClass).
twisti@4866 982 */
twisti@4866 983 bool Method::is_ignored_by_security_stack_walk() const {
twisti@4866 984 const bool use_new_reflection = JDK_Version::is_gte_jdk14x_version() && UseNewReflection;
twisti@4866 985
twisti@4866 986 if (intrinsic_id() == vmIntrinsics::_invoke) {
twisti@4866 987 // This is Method.invoke() -- ignore it
twisti@4866 988 return true;
twisti@4866 989 }
twisti@4866 990 if (use_new_reflection &&
twisti@4866 991 method_holder()->is_subclass_of(SystemDictionary::reflect_MethodAccessorImpl_klass())) {
twisti@4866 992 // This is an auxilary frame -- ignore it
twisti@4866 993 return true;
twisti@4866 994 }
twisti@4866 995 if (is_method_handle_intrinsic() || is_compiled_lambda_form()) {
twisti@4866 996 // This is an internal adapter frame for method handles -- ignore it
twisti@4866 997 return true;
twisti@4866 998 }
twisti@4866 999 return false;
twisti@4866 1000 }
twisti@4866 1001
twisti@4866 1002
jrose@1145 1003 // Constant pool structure for invoke methods:
jrose@1145 1004 enum {
twisti@3969 1005 _imcp_invoke_name = 1, // utf8: 'invokeExact', etc.
coleenp@2497 1006 _imcp_invoke_signature, // utf8: (variable Symbol*)
jrose@1145 1007 _imcp_limit
jrose@1145 1008 };
jrose@1145 1009
twisti@3969 1010 // Test if this method is an MH adapter frame generated by Java code.
twisti@3969 1011 // Cf. java/lang/invoke/InvokerBytecodeGenerator
coleenp@4037 1012 bool Method::is_compiled_lambda_form() const {
twisti@3969 1013 return intrinsic_id() == vmIntrinsics::_compiledLambdaForm;
jrose@1145 1014 }
jrose@1145 1015
twisti@3969 1016 // Test if this method is an internal MH primitive method.
coleenp@4037 1017 bool Method::is_method_handle_intrinsic() const {
twisti@3969 1018 vmIntrinsics::ID iid = intrinsic_id();
twisti@3969 1019 return (MethodHandles::is_signature_polymorphic(iid) &&
twisti@3969 1020 MethodHandles::is_signature_polymorphic_intrinsic(iid));
jrose@1145 1021 }
jrose@1145 1022
coleenp@4037 1023 bool Method::has_member_arg() const {
twisti@3969 1024 vmIntrinsics::ID iid = intrinsic_id();
twisti@3969 1025 return (MethodHandles::is_signature_polymorphic(iid) &&
twisti@3969 1026 MethodHandles::has_member_arg(iid));
twisti@1587 1027 }
twisti@1587 1028
twisti@3969 1029 // Make an instance of a signature-polymorphic internal MH primitive.
coleenp@4037 1030 methodHandle Method::make_method_handle_intrinsic(vmIntrinsics::ID iid,
twisti@3969 1031 Symbol* signature,
twisti@3969 1032 TRAPS) {
never@3091 1033 ResourceMark rm;
jrose@1145 1034 methodHandle empty;
jrose@1145 1035
twisti@3969 1036 KlassHandle holder = SystemDictionary::MethodHandle_klass();
twisti@3969 1037 Symbol* name = MethodHandles::signature_polymorphic_intrinsic_name(iid);
twisti@3969 1038 assert(iid == MethodHandles::signature_polymorphic_name_id(name), "");
jrose@1145 1039 if (TraceMethodHandles) {
twisti@3969 1040 tty->print_cr("make_method_handle_intrinsic MH.%s%s", name->as_C_string(), signature->as_C_string());
jrose@1145 1041 }
jrose@1145 1042
jrose@2760 1043 // invariant: cp->symbol_at_put is preceded by a refcount increment (more usually a lookup)
jrose@2760 1044 name->increment_refcount();
jrose@2760 1045 signature->increment_refcount();
jrose@2760 1046
twisti@3969 1047 int cp_length = _imcp_limit;
coleenp@4037 1048 ClassLoaderData* loader_data = holder->class_loader_data();
jrose@1145 1049 constantPoolHandle cp;
jrose@1145 1050 {
coleenp@4037 1051 ConstantPool* cp_oop = ConstantPool::allocate(loader_data, cp_length, CHECK_(empty));
jrose@1145 1052 cp = constantPoolHandle(THREAD, cp_oop);
jrose@1145 1053 }
coleenp@4251 1054 cp->set_pool_holder(InstanceKlass::cast(holder()));
coleenp@2497 1055 cp->symbol_at_put(_imcp_invoke_name, name);
coleenp@2497 1056 cp->symbol_at_put(_imcp_invoke_signature, signature);
coleenp@4490 1057 cp->set_has_preresolution();
jrose@1145 1058
twisti@3969 1059 // decide on access bits: public or not?
twisti@3969 1060 int flags_bits = (JVM_ACC_NATIVE | JVM_ACC_SYNTHETIC | JVM_ACC_FINAL);
twisti@3969 1061 bool must_be_static = MethodHandles::is_signature_polymorphic_static(iid);
twisti@3969 1062 if (must_be_static) flags_bits |= JVM_ACC_STATIC;
twisti@3969 1063 assert((flags_bits & JVM_ACC_PUBLIC) == 0, "do not expose these methods");
twisti@3969 1064
jrose@1145 1065 methodHandle m;
jrose@1145 1066 {
coleenp@4572 1067 InlineTableSizes sizes;
coleenp@4398 1068 Method* m_oop = Method::allocate(loader_data, 0,
coleenp@4572 1069 accessFlags_from(flags_bits), &sizes,
coleenp@4398 1070 ConstMethod::NORMAL, CHECK_(empty));
jrose@1145 1071 m = methodHandle(THREAD, m_oop);
jrose@1145 1072 }
jrose@1145 1073 m->set_constants(cp());
jrose@1145 1074 m->set_name_index(_imcp_invoke_name);
jrose@1145 1075 m->set_signature_index(_imcp_invoke_signature);
twisti@3969 1076 assert(MethodHandles::is_signature_polymorphic_name(m->name()), "");
coleenp@2497 1077 assert(m->signature() == signature, "");
jrose@1145 1078 #ifdef CC_INTERP
twisti@2563 1079 ResultTypeFinder rtf(signature);
jrose@1145 1080 m->set_result_index(rtf.type());
jrose@1145 1081 #endif
jrose@1145 1082 m->compute_size_of_parameters(THREAD);
jrose@2148 1083 m->init_intrinsic_id();
twisti@3969 1084 assert(m->is_method_handle_intrinsic(), "");
twisti@3969 1085 #ifdef ASSERT
twisti@3969 1086 if (!MethodHandles::is_signature_polymorphic(m->intrinsic_id())) m->print();
twisti@3969 1087 assert(MethodHandles::is_signature_polymorphic(m->intrinsic_id()), "must be an invoker");
twisti@3969 1088 assert(m->intrinsic_id() == iid, "correctly predicted iid");
twisti@3969 1089 #endif //ASSERT
jrose@1145 1090
jrose@1145 1091 // Finally, set up its entry points.
jrose@1145 1092 assert(m->can_be_statically_bound(), "");
coleenp@4037 1093 m->set_vtable_index(Method::nonvirtual_vtable_index);
jrose@1145 1094 m->link_method(m, CHECK_(empty));
jrose@1145 1095
jrose@1474 1096 if (TraceMethodHandles && (Verbose || WizardMode))
jrose@1145 1097 m->print_on(tty);
jrose@1145 1098
jrose@1145 1099 return m;
jrose@1145 1100 }
jrose@1145 1101
coleenp@4037 1102 Klass* Method::check_non_bcp_klass(Klass* klass) {
hseigel@4278 1103 if (klass != NULL && klass->class_loader() != NULL) {
hseigel@4278 1104 if (klass->oop_is_objArray())
coleenp@4142 1105 klass = ObjArrayKlass::cast(klass)->bottom_klass();
jrose@2982 1106 return klass;
jrose@2982 1107 }
jrose@2982 1108 return NULL;
jrose@2982 1109 }
jrose@1145 1110
dcubed@483 1111
coleenp@4037 1112 methodHandle Method::clone_with_new_data(methodHandle m, u_char* new_code, int new_code_length,
duke@435 1113 u_char* new_compressed_linenumber_table, int new_compressed_linenumber_size, TRAPS) {
duke@435 1114 // Code below does not work for native methods - they should never get rewritten anyway
duke@435 1115 assert(!m->is_native(), "cannot rewrite native methods");
coleenp@4037 1116 // Allocate new Method*
duke@435 1117 AccessFlags flags = m->access_flags();
coleenp@4572 1118
coleenp@4572 1119 ConstMethod* cm = m->constMethod();
coleenp@4572 1120 int checked_exceptions_len = cm->checked_exceptions_length();
coleenp@4572 1121 int localvariable_len = cm->localvariable_table_length();
coleenp@4572 1122 int exception_table_len = cm->exception_table_length();
coleenp@4572 1123 int method_parameters_len = cm->method_parameters_length();
coleenp@4572 1124 int method_annotations_len = cm->method_annotations_length();
coleenp@4572 1125 int parameter_annotations_len = cm->parameter_annotations_length();
coleenp@4572 1126 int type_annotations_len = cm->type_annotations_length();
coleenp@4572 1127 int default_annotations_len = cm->default_annotations_length();
coleenp@4572 1128
coleenp@4572 1129 InlineTableSizes sizes(
coleenp@4572 1130 localvariable_len,
coleenp@4572 1131 new_compressed_linenumber_size,
coleenp@4572 1132 exception_table_len,
coleenp@4572 1133 checked_exceptions_len,
coleenp@4572 1134 method_parameters_len,
coleenp@4572 1135 cm->generic_signature_index(),
coleenp@4572 1136 method_annotations_len,
coleenp@4572 1137 parameter_annotations_len,
coleenp@4572 1138 type_annotations_len,
coleenp@4572 1139 default_annotations_len,
coleenp@4572 1140 0);
coleenp@4037 1141
kamg@4245 1142 ClassLoaderData* loader_data = m->method_holder()->class_loader_data();
coleenp@4037 1143 Method* newm_oop = Method::allocate(loader_data,
kamg@4245 1144 new_code_length,
kamg@4245 1145 flags,
coleenp@4572 1146 &sizes,
kamg@4245 1147 m->method_type(),
kamg@4245 1148 CHECK_(methodHandle()));
duke@435 1149 methodHandle newm (THREAD, newm_oop);
duke@435 1150 int new_method_size = newm->method_size();
jmasa@953 1151
coleenp@4037 1152 // Create a shallow copy of Method part, but be careful to preserve the new ConstMethod*
coleenp@4037 1153 ConstMethod* newcm = newm->constMethod();
coleenp@4037 1154 int new_const_method_size = newm->constMethod()->size();
ysr@2533 1155
coleenp@4037 1156 memcpy(newm(), m(), sizeof(Method));
coleenp@4037 1157
coleenp@4037 1158 // Create shallow copy of ConstMethod.
coleenp@4037 1159 memcpy(newcm, m->constMethod(), sizeof(ConstMethod));
ysr@2533 1160
duke@435 1161 // Reset correct method/const method, method size, and parameter info
duke@435 1162 newm->set_constMethod(newcm);
duke@435 1163 newm->constMethod()->set_code_size(new_code_length);
duke@435 1164 newm->constMethod()->set_constMethod_size(new_const_method_size);
duke@435 1165 newm->set_method_size(new_method_size);
duke@435 1166 assert(newm->code_size() == new_code_length, "check");
emc@5432 1167 assert(newm->method_parameters_length() == method_parameters_len, "check");
duke@435 1168 assert(newm->checked_exceptions_length() == checked_exceptions_len, "check");
jiangli@3920 1169 assert(newm->exception_table_length() == exception_table_len, "check");
duke@435 1170 assert(newm->localvariable_table_length() == localvariable_len, "check");
duke@435 1171 // Copy new byte codes
duke@435 1172 memcpy(newm->code_base(), new_code, new_code_length);
duke@435 1173 // Copy line number table
duke@435 1174 if (new_compressed_linenumber_size > 0) {
duke@435 1175 memcpy(newm->compressed_linenumber_table(),
duke@435 1176 new_compressed_linenumber_table,
duke@435 1177 new_compressed_linenumber_size);
duke@435 1178 }
emc@5432 1179 // Copy method_parameters
emc@5432 1180 if (method_parameters_len > 0) {
emc@5432 1181 memcpy(newm->method_parameters_start(),
emc@5432 1182 m->method_parameters_start(),
emc@5432 1183 method_parameters_len * sizeof(MethodParametersElement));
emc@5432 1184 }
duke@435 1185 // Copy checked_exceptions
duke@435 1186 if (checked_exceptions_len > 0) {
duke@435 1187 memcpy(newm->checked_exceptions_start(),
duke@435 1188 m->checked_exceptions_start(),
duke@435 1189 checked_exceptions_len * sizeof(CheckedExceptionElement));
duke@435 1190 }
jiangli@3920 1191 // Copy exception table
jiangli@3920 1192 if (exception_table_len > 0) {
jiangli@3920 1193 memcpy(newm->exception_table_start(),
jiangli@3920 1194 m->exception_table_start(),
jiangli@3920 1195 exception_table_len * sizeof(ExceptionTableElement));
jiangli@3920 1196 }
duke@435 1197 // Copy local variable number table
duke@435 1198 if (localvariable_len > 0) {
duke@435 1199 memcpy(newm->localvariable_table_start(),
duke@435 1200 m->localvariable_table_start(),
duke@435 1201 localvariable_len * sizeof(LocalVariableTableElement));
duke@435 1202 }
coleenp@4037 1203 // Copy stackmap table
coleenp@4037 1204 if (m->has_stackmap_table()) {
coleenp@4037 1205 int code_attribute_length = m->stackmap_data()->length();
coleenp@4037 1206 Array<u1>* stackmap_data =
coleenp@4037 1207 MetadataFactory::new_array<u1>(loader_data, code_attribute_length, 0, CHECK_NULL);
coleenp@4037 1208 memcpy((void*)stackmap_data->adr_at(0),
coleenp@4037 1209 (void*)m->stackmap_data()->adr_at(0), code_attribute_length);
coleenp@4037 1210 newm->set_stackmap_data(stackmap_data);
coleenp@4037 1211 }
jmasa@953 1212
coleenp@4837 1213 // copy annotations over to new method
coleenp@4837 1214 newcm->copy_annotations_from(cm);
duke@435 1215 return newm;
duke@435 1216 }
duke@435 1217
coleenp@4037 1218 vmSymbols::SID Method::klass_id_for_intrinsics(Klass* holder) {
duke@435 1219 // if loader is not the default loader (i.e., != NULL), we can't know the intrinsics
duke@435 1220 // because we are not loading from core libraries
kvn@4205 1221 // exception: the AES intrinsics come from lib/ext/sunjce_provider.jar
kvn@4205 1222 // which does not use the class default class loader so we check for its loader here
twisti@4866 1223 InstanceKlass* ik = InstanceKlass::cast(holder);
twisti@4866 1224 if ((ik->class_loader() != NULL) && !SystemDictionary::is_ext_class_loader(ik->class_loader())) {
jrose@1291 1225 return vmSymbols::NO_SID; // regardless of name, no intrinsics here
kvn@4205 1226 }
duke@435 1227
duke@435 1228 // see if the klass name is well-known:
twisti@4866 1229 Symbol* klass_name = ik->name();
jrose@1291 1230 return vmSymbols::find_sid(klass_name);
jrose@1291 1231 }
jrose@1291 1232
coleenp@4037 1233 void Method::init_intrinsic_id() {
jrose@1291 1234 assert(_intrinsic_id == vmIntrinsics::_none, "do this just once");
jrose@1291 1235 const uintptr_t max_id_uint = right_n_bits((int)(sizeof(_intrinsic_id) * BitsPerByte));
jrose@1291 1236 assert((uintptr_t)vmIntrinsics::ID_LIMIT <= max_id_uint, "else fix size");
jrose@2148 1237 assert(intrinsic_id_size_in_bytes() == sizeof(_intrinsic_id), "");
jrose@1291 1238
jrose@1291 1239 // the klass name is well-known:
jrose@1291 1240 vmSymbols::SID klass_id = klass_id_for_intrinsics(method_holder());
jrose@1291 1241 assert(klass_id != vmSymbols::NO_SID, "caller responsibility");
duke@435 1242
duke@435 1243 // ditto for method and signature:
duke@435 1244 vmSymbols::SID name_id = vmSymbols::find_sid(name());
twisti@3969 1245 if (klass_id != vmSymbols::VM_SYMBOL_ENUM_NAME(java_lang_invoke_MethodHandle)
twisti@3969 1246 && name_id == vmSymbols::NO_SID)
twisti@3969 1247 return;
duke@435 1248 vmSymbols::SID sig_id = vmSymbols::find_sid(signature());
jrose@2639 1249 if (klass_id != vmSymbols::VM_SYMBOL_ENUM_NAME(java_lang_invoke_MethodHandle)
jrose@2148 1250 && sig_id == vmSymbols::NO_SID) return;
duke@435 1251 jshort flags = access_flags().as_short();
duke@435 1252
jrose@1291 1253 vmIntrinsics::ID id = vmIntrinsics::find_id(klass_id, name_id, sig_id, flags);
jrose@1291 1254 if (id != vmIntrinsics::_none) {
jrose@1291 1255 set_intrinsic_id(id);
jrose@1291 1256 return;
jrose@1291 1257 }
jrose@1291 1258
duke@435 1259 // A few slightly irregular cases:
duke@435 1260 switch (klass_id) {
duke@435 1261 case vmSymbols::VM_SYMBOL_ENUM_NAME(java_lang_StrictMath):
duke@435 1262 // Second chance: check in regular Math.
duke@435 1263 switch (name_id) {
duke@435 1264 case vmSymbols::VM_SYMBOL_ENUM_NAME(min_name):
duke@435 1265 case vmSymbols::VM_SYMBOL_ENUM_NAME(max_name):
duke@435 1266 case vmSymbols::VM_SYMBOL_ENUM_NAME(sqrt_name):
duke@435 1267 // pretend it is the corresponding method in the non-strict class:
duke@435 1268 klass_id = vmSymbols::VM_SYMBOL_ENUM_NAME(java_lang_Math);
jrose@1291 1269 id = vmIntrinsics::find_id(klass_id, name_id, sig_id, flags);
duke@435 1270 break;
duke@435 1271 }
jrose@1862 1272 break;
jrose@1862 1273
jrose@1862 1274 // Signature-polymorphic methods: MethodHandle.invoke*, InvokeDynamic.*.
jrose@2639 1275 case vmSymbols::VM_SYMBOL_ENUM_NAME(java_lang_invoke_MethodHandle):
twisti@3969 1276 if (!is_native()) break;
twisti@3969 1277 id = MethodHandles::signature_polymorphic_name_id(method_holder(), name());
twisti@3969 1278 if (is_static() != MethodHandles::is_signature_polymorphic_static(id))
twisti@3969 1279 id = vmIntrinsics::_none;
jrose@1862 1280 break;
duke@435 1281 }
duke@435 1282
jrose@1291 1283 if (id != vmIntrinsics::_none) {
jrose@1291 1284 // Set up its iid. It is an alias method.
jrose@1291 1285 set_intrinsic_id(id);
jrose@1291 1286 return;
jrose@1291 1287 }
duke@435 1288 }
duke@435 1289
coleenp@4037 1290 // These two methods are static since a GC may move the Method
coleenp@4037 1291 bool Method::load_signature_classes(methodHandle m, TRAPS) {
twisti@3969 1292 if (THREAD->is_Compiler_thread()) {
twisti@3969 1293 // There is nothing useful this routine can do from within the Compile thread.
twisti@3969 1294 // Hopefully, the signature contains only well-known classes.
twisti@3969 1295 // We could scan for this and return true/false, but the caller won't care.
twisti@3969 1296 return false;
twisti@3969 1297 }
duke@435 1298 bool sig_is_loaded = true;
coleenp@4251 1299 Handle class_loader(THREAD, m->method_holder()->class_loader());
coleenp@4251 1300 Handle protection_domain(THREAD, m->method_holder()->protection_domain());
coleenp@2497 1301 ResourceMark rm(THREAD);
coleenp@2497 1302 Symbol* signature = m->signature();
duke@435 1303 for(SignatureStream ss(signature); !ss.is_done(); ss.next()) {
duke@435 1304 if (ss.is_object()) {
coleenp@2497 1305 Symbol* sym = ss.as_symbol(CHECK_(false));
coleenp@2497 1306 Symbol* name = sym;
coleenp@4037 1307 Klass* klass = SystemDictionary::resolve_or_null(name, class_loader,
duke@435 1308 protection_domain, THREAD);
rasbold@539 1309 // We are loading classes eagerly. If a ClassNotFoundException or
rasbold@539 1310 // a LinkageError was generated, be sure to ignore it.
duke@435 1311 if (HAS_PENDING_EXCEPTION) {
never@1577 1312 if (PENDING_EXCEPTION->is_a(SystemDictionary::ClassNotFoundException_klass()) ||
never@1577 1313 PENDING_EXCEPTION->is_a(SystemDictionary::LinkageError_klass())) {
duke@435 1314 CLEAR_PENDING_EXCEPTION;
duke@435 1315 } else {
duke@435 1316 return false;
duke@435 1317 }
duke@435 1318 }
duke@435 1319 if( klass == NULL) { sig_is_loaded = false; }
duke@435 1320 }
duke@435 1321 }
duke@435 1322 return sig_is_loaded;
duke@435 1323 }
duke@435 1324
coleenp@4037 1325 bool Method::has_unloaded_classes_in_signature(methodHandle m, TRAPS) {
coleenp@4251 1326 Handle class_loader(THREAD, m->method_holder()->class_loader());
coleenp@4251 1327 Handle protection_domain(THREAD, m->method_holder()->protection_domain());
coleenp@2497 1328 ResourceMark rm(THREAD);
coleenp@2497 1329 Symbol* signature = m->signature();
duke@435 1330 for(SignatureStream ss(signature); !ss.is_done(); ss.next()) {
duke@435 1331 if (ss.type() == T_OBJECT) {
coleenp@2497 1332 Symbol* name = ss.as_symbol_or_null();
coleenp@2497 1333 if (name == NULL) return true;
coleenp@4037 1334 Klass* klass = SystemDictionary::find(name, class_loader, protection_domain, THREAD);
duke@435 1335 if (klass == NULL) return true;
duke@435 1336 }
duke@435 1337 }
duke@435 1338 return false;
duke@435 1339 }
duke@435 1340
duke@435 1341 // Exposed so field engineers can debug VM
coleenp@4037 1342 void Method::print_short_name(outputStream* st) {
duke@435 1343 ResourceMark rm;
duke@435 1344 #ifdef PRODUCT
coleenp@4037 1345 st->print(" %s::", method_holder()->external_name());
duke@435 1346 #else
coleenp@4037 1347 st->print(" %s::", method_holder()->internal_name());
duke@435 1348 #endif
duke@435 1349 name()->print_symbol_on(st);
duke@435 1350 if (WizardMode) signature()->print_symbol_on(st);
twisti@3969 1351 else if (MethodHandles::is_signature_polymorphic(intrinsic_id()))
twisti@3969 1352 MethodHandles::print_as_basic_type_signature_on(st, signature(), true);
duke@435 1353 }
duke@435 1354
brutisso@2976 1355 // Comparer for sorting an object array containing
coleenp@4037 1356 // Method*s.
coleenp@4037 1357 static int method_comparator(Method* a, Method* b) {
coleenp@4037 1358 return a->name()->fast_compare(b->name());
kvn@3128 1359 }
duke@435 1360
duke@435 1361 // This is only done during class loading, so it is OK to assume method_idnum matches the methods() array
coleenp@4572 1362 void Method::sort_methods(Array<Method*>* methods, bool idempotent) {
duke@435 1363 int length = methods->length();
duke@435 1364 if (length > 1) {
brutisso@2976 1365 {
brutisso@2976 1366 No_Safepoint_Verifier nsv;
coleenp@4037 1367 QuickSort::sort<Method*>(methods->data(), length, method_comparator, idempotent);
duke@435 1368 }
duke@435 1369 // Reset method ordering
duke@435 1370 for (int i = 0; i < length; i++) {
coleenp@4037 1371 Method* m = methods->at(i);
duke@435 1372 m->set_method_idnum(i);
duke@435 1373 }
duke@435 1374 }
duke@435 1375 }
duke@435 1376
duke@435 1377
duke@435 1378 //-----------------------------------------------------------------------------------
dcubed@4562 1379 // Non-product code unless JVM/TI needs it
duke@435 1380
dcubed@4562 1381 #if !defined(PRODUCT) || INCLUDE_JVMTI
duke@435 1382 class SignatureTypePrinter : public SignatureTypeNames {
duke@435 1383 private:
duke@435 1384 outputStream* _st;
duke@435 1385 bool _use_separator;
duke@435 1386
duke@435 1387 void type_name(const char* name) {
duke@435 1388 if (_use_separator) _st->print(", ");
duke@435 1389 _st->print(name);
duke@435 1390 _use_separator = true;
duke@435 1391 }
duke@435 1392
duke@435 1393 public:
coleenp@2497 1394 SignatureTypePrinter(Symbol* signature, outputStream* st) : SignatureTypeNames(signature) {
duke@435 1395 _st = st;
duke@435 1396 _use_separator = false;
duke@435 1397 }
duke@435 1398
duke@435 1399 void print_parameters() { _use_separator = false; iterate_parameters(); }
duke@435 1400 void print_returntype() { _use_separator = false; iterate_returntype(); }
duke@435 1401 };
duke@435 1402
duke@435 1403
coleenp@4037 1404 void Method::print_name(outputStream* st) {
duke@435 1405 Thread *thread = Thread::current();
duke@435 1406 ResourceMark rm(thread);
duke@435 1407 SignatureTypePrinter sig(signature(), st);
duke@435 1408 st->print("%s ", is_static() ? "static" : "virtual");
duke@435 1409 sig.print_returntype();
coleenp@4037 1410 st->print(" %s.", method_holder()->internal_name());
duke@435 1411 name()->print_symbol_on(st);
duke@435 1412 st->print("(");
duke@435 1413 sig.print_parameters();
duke@435 1414 st->print(")");
duke@435 1415 }
dcubed@4562 1416 #endif // !PRODUCT || INCLUDE_JVMTI
duke@435 1417
duke@435 1418
dcubed@4562 1419 //-----------------------------------------------------------------------------------
dcubed@4562 1420 // Non-product code
dcubed@4562 1421
dcubed@4562 1422 #ifndef PRODUCT
coleenp@4037 1423 void Method::print_codes_on(outputStream* st) const {
duke@435 1424 print_codes_on(0, code_size(), st);
duke@435 1425 }
duke@435 1426
coleenp@4037 1427 void Method::print_codes_on(int from, int to, outputStream* st) const {
duke@435 1428 Thread *thread = Thread::current();
duke@435 1429 ResourceMark rm(thread);
coleenp@4037 1430 methodHandle mh (thread, (Method*)this);
duke@435 1431 BytecodeStream s(mh);
duke@435 1432 s.set_interval(from, to);
duke@435 1433 BytecodeTracer::set_closure(BytecodeTracer::std_closure());
duke@435 1434 while (s.next() >= 0) BytecodeTracer::trace(mh, s.bcp(), st);
duke@435 1435 }
duke@435 1436 #endif // not PRODUCT
duke@435 1437
duke@435 1438
duke@435 1439 // Simple compression of line number tables. We use a regular compressed stream, except that we compress deltas
duke@435 1440 // between (bci,line) pairs since they are smaller. If (bci delta, line delta) fits in (5-bit unsigned, 3-bit unsigned)
duke@435 1441 // we save it as one byte, otherwise we write a 0xFF escape character and use regular compression. 0x0 is used
duke@435 1442 // as end-of-stream terminator.
duke@435 1443
duke@435 1444 void CompressedLineNumberWriteStream::write_pair_regular(int bci_delta, int line_delta) {
duke@435 1445 // bci and line number does not compress into single byte.
duke@435 1446 // Write out escape character and use regular compression for bci and line number.
duke@435 1447 write_byte((jubyte)0xFF);
duke@435 1448 write_signed_int(bci_delta);
duke@435 1449 write_signed_int(line_delta);
duke@435 1450 }
duke@435 1451
coleenp@4037 1452 // See comment in method.hpp which explains why this exists.
sla@2540 1453 #if defined(_M_AMD64) && _MSC_VER >= 1400
duke@435 1454 #pragma optimize("", off)
duke@435 1455 void CompressedLineNumberWriteStream::write_pair(int bci, int line) {
duke@435 1456 write_pair_inline(bci, line);
duke@435 1457 }
duke@435 1458 #pragma optimize("", on)
duke@435 1459 #endif
duke@435 1460
duke@435 1461 CompressedLineNumberReadStream::CompressedLineNumberReadStream(u_char* buffer) : CompressedReadStream(buffer) {
duke@435 1462 _bci = 0;
duke@435 1463 _line = 0;
duke@435 1464 };
duke@435 1465
duke@435 1466
duke@435 1467 bool CompressedLineNumberReadStream::read_pair() {
duke@435 1468 jubyte next = read_byte();
duke@435 1469 // Check for terminator
duke@435 1470 if (next == 0) return false;
duke@435 1471 if (next == 0xFF) {
duke@435 1472 // Escape character, regular compression used
duke@435 1473 _bci += read_signed_int();
duke@435 1474 _line += read_signed_int();
duke@435 1475 } else {
duke@435 1476 // Single byte compression used
duke@435 1477 _bci += next >> 3;
duke@435 1478 _line += next & 0x7;
duke@435 1479 }
duke@435 1480 return true;
duke@435 1481 }
duke@435 1482
duke@435 1483
coleenp@4037 1484 Bytecodes::Code Method::orig_bytecode_at(int bci) const {
coleenp@4251 1485 BreakpointInfo* bp = method_holder()->breakpoints();
duke@435 1486 for (; bp != NULL; bp = bp->next()) {
duke@435 1487 if (bp->match(this, bci)) {
duke@435 1488 return bp->orig_bytecode();
duke@435 1489 }
duke@435 1490 }
duke@435 1491 ShouldNotReachHere();
duke@435 1492 return Bytecodes::_shouldnotreachhere;
duke@435 1493 }
duke@435 1494
coleenp@4037 1495 void Method::set_orig_bytecode_at(int bci, Bytecodes::Code code) {
duke@435 1496 assert(code != Bytecodes::_breakpoint, "cannot patch breakpoints this way");
coleenp@4251 1497 BreakpointInfo* bp = method_holder()->breakpoints();
duke@435 1498 for (; bp != NULL; bp = bp->next()) {
duke@435 1499 if (bp->match(this, bci)) {
duke@435 1500 bp->set_orig_bytecode(code);
duke@435 1501 // and continue, in case there is more than one
duke@435 1502 }
duke@435 1503 }
duke@435 1504 }
duke@435 1505
coleenp@4037 1506 void Method::set_breakpoint(int bci) {
coleenp@4251 1507 InstanceKlass* ik = method_holder();
duke@435 1508 BreakpointInfo *bp = new BreakpointInfo(this, bci);
duke@435 1509 bp->set_next(ik->breakpoints());
duke@435 1510 ik->set_breakpoints(bp);
duke@435 1511 // do this last:
duke@435 1512 bp->set(this);
duke@435 1513 }
duke@435 1514
coleenp@4037 1515 static void clear_matches(Method* m, int bci) {
coleenp@4251 1516 InstanceKlass* ik = m->method_holder();
duke@435 1517 BreakpointInfo* prev_bp = NULL;
duke@435 1518 BreakpointInfo* next_bp;
duke@435 1519 for (BreakpointInfo* bp = ik->breakpoints(); bp != NULL; bp = next_bp) {
duke@435 1520 next_bp = bp->next();
duke@435 1521 // bci value of -1 is used to delete all breakpoints in method m (ex: clear_all_breakpoint).
duke@435 1522 if (bci >= 0 ? bp->match(m, bci) : bp->match(m)) {
duke@435 1523 // do this first:
duke@435 1524 bp->clear(m);
duke@435 1525 // unhook it
duke@435 1526 if (prev_bp != NULL)
duke@435 1527 prev_bp->set_next(next_bp);
duke@435 1528 else
duke@435 1529 ik->set_breakpoints(next_bp);
duke@435 1530 delete bp;
duke@435 1531 // When class is redefined JVMTI sets breakpoint in all versions of EMCP methods
duke@435 1532 // at same location. So we have multiple matching (method_index and bci)
duke@435 1533 // BreakpointInfo nodes in BreakpointInfo list. We should just delete one
duke@435 1534 // breakpoint for clear_breakpoint request and keep all other method versions
duke@435 1535 // BreakpointInfo for future clear_breakpoint request.
duke@435 1536 // bcivalue of -1 is used to clear all breakpoints (see clear_all_breakpoints)
duke@435 1537 // which is being called when class is unloaded. We delete all the Breakpoint
duke@435 1538 // information for all versions of method. We may not correctly restore the original
duke@435 1539 // bytecode in all method versions, but that is ok. Because the class is being unloaded
duke@435 1540 // so these methods won't be used anymore.
duke@435 1541 if (bci >= 0) {
duke@435 1542 break;
duke@435 1543 }
duke@435 1544 } else {
duke@435 1545 // This one is a keeper.
duke@435 1546 prev_bp = bp;
duke@435 1547 }
duke@435 1548 }
duke@435 1549 }
duke@435 1550
coleenp@4037 1551 void Method::clear_breakpoint(int bci) {
duke@435 1552 assert(bci >= 0, "");
duke@435 1553 clear_matches(this, bci);
duke@435 1554 }
duke@435 1555
coleenp@4037 1556 void Method::clear_all_breakpoints() {
duke@435 1557 clear_matches(this, -1);
duke@435 1558 }
duke@435 1559
duke@435 1560
coleenp@4037 1561 int Method::invocation_count() {
jiangli@4936 1562 MethodCounters *mcs = method_counters();
iveresov@2138 1563 if (TieredCompilation) {
coleenp@4037 1564 MethodData* const mdo = method_data();
jiangli@4936 1565 if (((mcs != NULL) ? mcs->invocation_counter()->carry() : false) ||
jiangli@4936 1566 ((mdo != NULL) ? mdo->invocation_counter()->carry() : false)) {
iveresov@2138 1567 return InvocationCounter::count_limit;
iveresov@2138 1568 } else {
jiangli@4936 1569 return ((mcs != NULL) ? mcs->invocation_counter()->count() : 0) +
jiangli@4936 1570 ((mdo != NULL) ? mdo->invocation_counter()->count() : 0);
iveresov@2138 1571 }
iveresov@2138 1572 } else {
jiangli@4936 1573 return (mcs == NULL) ? 0 : mcs->invocation_counter()->count();
iveresov@2138 1574 }
iveresov@2138 1575 }
iveresov@2138 1576
coleenp@4037 1577 int Method::backedge_count() {
jiangli@4936 1578 MethodCounters *mcs = method_counters();
iveresov@2138 1579 if (TieredCompilation) {
coleenp@4037 1580 MethodData* const mdo = method_data();
jiangli@4936 1581 if (((mcs != NULL) ? mcs->backedge_counter()->carry() : false) ||
jiangli@4936 1582 ((mdo != NULL) ? mdo->backedge_counter()->carry() : false)) {
iveresov@2138 1583 return InvocationCounter::count_limit;
iveresov@2138 1584 } else {
jiangli@4936 1585 return ((mcs != NULL) ? mcs->backedge_counter()->count() : 0) +
jiangli@4936 1586 ((mdo != NULL) ? mdo->backedge_counter()->count() : 0);
iveresov@2138 1587 }
iveresov@2138 1588 } else {
jiangli@4936 1589 return (mcs == NULL) ? 0 : mcs->backedge_counter()->count();
iveresov@2138 1590 }
iveresov@2138 1591 }
iveresov@2138 1592
coleenp@4037 1593 int Method::highest_comp_level() const {
minqi@5097 1594 const MethodData* mdo = method_data();
iveresov@2138 1595 if (mdo != NULL) {
iveresov@2138 1596 return mdo->highest_comp_level();
iveresov@2138 1597 } else {
iveresov@2138 1598 return CompLevel_none;
iveresov@2138 1599 }
iveresov@2138 1600 }
iveresov@2138 1601
coleenp@4037 1602 int Method::highest_osr_comp_level() const {
minqi@5097 1603 const MethodData* mdo = method_data();
iveresov@2138 1604 if (mdo != NULL) {
iveresov@2138 1605 return mdo->highest_osr_comp_level();
iveresov@2138 1606 } else {
iveresov@2138 1607 return CompLevel_none;
iveresov@2138 1608 }
iveresov@2138 1609 }
iveresov@2138 1610
coleenp@4037 1611 void Method::set_highest_comp_level(int level) {
coleenp@4037 1612 MethodData* mdo = method_data();
iveresov@2138 1613 if (mdo != NULL) {
iveresov@2138 1614 mdo->set_highest_comp_level(level);
iveresov@2138 1615 }
iveresov@2138 1616 }
iveresov@2138 1617
coleenp@4037 1618 void Method::set_highest_osr_comp_level(int level) {
coleenp@4037 1619 MethodData* mdo = method_data();
iveresov@2138 1620 if (mdo != NULL) {
iveresov@2138 1621 mdo->set_highest_osr_comp_level(level);
iveresov@2138 1622 }
iveresov@2138 1623 }
iveresov@2138 1624
coleenp@4037 1625 BreakpointInfo::BreakpointInfo(Method* m, int bci) {
duke@435 1626 _bci = bci;
duke@435 1627 _name_index = m->name_index();
duke@435 1628 _signature_index = m->signature_index();
duke@435 1629 _orig_bytecode = (Bytecodes::Code) *m->bcp_from(_bci);
duke@435 1630 if (_orig_bytecode == Bytecodes::_breakpoint)
duke@435 1631 _orig_bytecode = m->orig_bytecode_at(_bci);
duke@435 1632 _next = NULL;
duke@435 1633 }
duke@435 1634
coleenp@4037 1635 void BreakpointInfo::set(Method* method) {
duke@435 1636 #ifdef ASSERT
duke@435 1637 {
duke@435 1638 Bytecodes::Code code = (Bytecodes::Code) *method->bcp_from(_bci);
duke@435 1639 if (code == Bytecodes::_breakpoint)
duke@435 1640 code = method->orig_bytecode_at(_bci);
duke@435 1641 assert(orig_bytecode() == code, "original bytecode must be the same");
duke@435 1642 }
duke@435 1643 #endif
jiangli@4936 1644 Thread *thread = Thread::current();
duke@435 1645 *method->bcp_from(_bci) = Bytecodes::_breakpoint;
jiangli@4936 1646 method->incr_number_of_breakpoints(thread);
duke@435 1647 SystemDictionary::notice_modification();
duke@435 1648 {
duke@435 1649 // Deoptimize all dependents on this method
duke@435 1650 HandleMark hm(thread);
duke@435 1651 methodHandle mh(thread, method);
duke@435 1652 Universe::flush_dependents_on_method(mh);
duke@435 1653 }
duke@435 1654 }
duke@435 1655
coleenp@4037 1656 void BreakpointInfo::clear(Method* method) {
duke@435 1657 *method->bcp_from(_bci) = orig_bytecode();
duke@435 1658 assert(method->number_of_breakpoints() > 0, "must not go negative");
jiangli@4936 1659 method->decr_number_of_breakpoints(Thread::current());
duke@435 1660 }
coleenp@4037 1661
coleenp@4037 1662 // jmethodID handling
coleenp@4037 1663
coleenp@4037 1664 // This is a block allocating object, sort of like JNIHandleBlock, only a
coleenp@4037 1665 // lot simpler. There aren't many of these, they aren't long, they are rarely
coleenp@4037 1666 // deleted and so we can do some suboptimal things.
coleenp@4037 1667 // It's allocated on the CHeap because once we allocate a jmethodID, we can
coleenp@4037 1668 // never get rid of it.
coleenp@4037 1669 // It would be nice to be able to parameterize the number of methods for
coleenp@4037 1670 // the null_class_loader but then we'd have to turn this and ClassLoaderData
coleenp@4037 1671 // into templates.
coleenp@4037 1672
coleenp@4037 1673 // I feel like this brain dead class should exist somewhere in the STL
coleenp@4037 1674
coleenp@4037 1675 class JNIMethodBlock : public CHeapObj<mtClass> {
coleenp@4037 1676 enum { number_of_methods = 8 };
coleenp@4037 1677
coleenp@4037 1678 Method* _methods[number_of_methods];
coleenp@4037 1679 int _top;
coleenp@4037 1680 JNIMethodBlock* _next;
coleenp@4037 1681 public:
coleenp@4037 1682 static Method* const _free_method;
coleenp@4037 1683
coleenp@4037 1684 JNIMethodBlock() : _next(NULL), _top(0) {
coleenp@4037 1685 for (int i = 0; i< number_of_methods; i++) _methods[i] = _free_method;
coleenp@4037 1686 }
coleenp@4037 1687
coleenp@4037 1688 Method** add_method(Method* m) {
coleenp@4037 1689 if (_top < number_of_methods) {
coleenp@4037 1690 // top points to the next free entry.
coleenp@4037 1691 int i = _top;
coleenp@4037 1692 _methods[i] = m;
coleenp@4037 1693 _top++;
coleenp@4037 1694 return &_methods[i];
coleenp@4037 1695 } else if (_top == number_of_methods) {
coleenp@4037 1696 // if the next free entry ran off the block see if there's a free entry
coleenp@4037 1697 for (int i = 0; i< number_of_methods; i++) {
coleenp@4037 1698 if (_methods[i] == _free_method) {
coleenp@4037 1699 _methods[i] = m;
coleenp@4037 1700 return &_methods[i];
coleenp@4037 1701 }
coleenp@4037 1702 }
coleenp@4037 1703 // Only check each block once for frees. They're very unlikely.
coleenp@4037 1704 // Increment top past the end of the block.
coleenp@4037 1705 _top++;
coleenp@4037 1706 }
coleenp@4037 1707 // need to allocate a next block.
coleenp@4037 1708 if (_next == NULL) {
coleenp@4037 1709 _next = new JNIMethodBlock();
coleenp@4037 1710 }
coleenp@4037 1711 return _next->add_method(m);
coleenp@4037 1712 }
coleenp@4037 1713
coleenp@4037 1714 bool contains(Method** m) {
coleenp@4037 1715 for (JNIMethodBlock* b = this; b != NULL; b = b->_next) {
coleenp@4037 1716 for (int i = 0; i< number_of_methods; i++) {
coleenp@4037 1717 if (&(b->_methods[i]) == m) {
coleenp@4037 1718 return true;
coleenp@4037 1719 }
coleenp@4037 1720 }
coleenp@4037 1721 }
coleenp@4037 1722 return false; // not found
coleenp@4037 1723 }
coleenp@4037 1724
coleenp@4037 1725 // Doesn't really destroy it, just marks it as free so it can be reused.
coleenp@4037 1726 void destroy_method(Method** m) {
coleenp@4037 1727 #ifdef ASSERT
coleenp@4037 1728 assert(contains(m), "should be a methodID");
coleenp@4037 1729 #endif // ASSERT
coleenp@4037 1730 *m = _free_method;
coleenp@4037 1731 }
coleenp@4037 1732
coleenp@4037 1733 // During class unloading the methods are cleared, which is different
coleenp@4037 1734 // than freed.
coleenp@4037 1735 void clear_all_methods() {
coleenp@4037 1736 for (JNIMethodBlock* b = this; b != NULL; b = b->_next) {
coleenp@4037 1737 for (int i = 0; i< number_of_methods; i++) {
coleenp@4037 1738 _methods[i] = NULL;
coleenp@4037 1739 }
coleenp@4037 1740 }
coleenp@4037 1741 }
coleenp@4037 1742 #ifndef PRODUCT
coleenp@4037 1743 int count_methods() {
coleenp@4037 1744 // count all allocated methods
coleenp@4037 1745 int count = 0;
coleenp@4037 1746 for (JNIMethodBlock* b = this; b != NULL; b = b->_next) {
coleenp@4037 1747 for (int i = 0; i< number_of_methods; i++) {
coleenp@4037 1748 if (_methods[i] != _free_method) count++;
coleenp@4037 1749 }
coleenp@4037 1750 }
coleenp@4037 1751 return count;
coleenp@4037 1752 }
coleenp@4037 1753 #endif // PRODUCT
coleenp@4037 1754 };
coleenp@4037 1755
coleenp@4037 1756 // Something that can't be mistaken for an address or a markOop
coleenp@4037 1757 Method* const JNIMethodBlock::_free_method = (Method*)55;
coleenp@4037 1758
coleenp@4037 1759 // Add a method id to the jmethod_ids
coleenp@4037 1760 jmethodID Method::make_jmethod_id(ClassLoaderData* loader_data, Method* m) {
coleenp@4037 1761 ClassLoaderData* cld = loader_data;
coleenp@4037 1762
coleenp@4037 1763 if (!SafepointSynchronize::is_at_safepoint()) {
coleenp@4037 1764 // Have to add jmethod_ids() to class loader data thread-safely.
coleenp@4037 1765 // Also have to add the method to the list safely, which the cld lock
coleenp@4037 1766 // protects as well.
coleenp@4037 1767 MutexLockerEx ml(cld->metaspace_lock(), Mutex::_no_safepoint_check_flag);
coleenp@4037 1768 if (cld->jmethod_ids() == NULL) {
coleenp@4037 1769 cld->set_jmethod_ids(new JNIMethodBlock());
coleenp@4037 1770 }
coleenp@4037 1771 // jmethodID is a pointer to Method*
coleenp@4037 1772 return (jmethodID)cld->jmethod_ids()->add_method(m);
coleenp@4037 1773 } else {
coleenp@4037 1774 // At safepoint, we are single threaded and can set this.
coleenp@4037 1775 if (cld->jmethod_ids() == NULL) {
coleenp@4037 1776 cld->set_jmethod_ids(new JNIMethodBlock());
coleenp@4037 1777 }
coleenp@4037 1778 // jmethodID is a pointer to Method*
coleenp@4037 1779 return (jmethodID)cld->jmethod_ids()->add_method(m);
coleenp@4037 1780 }
coleenp@4037 1781 }
coleenp@4037 1782
coleenp@4037 1783 // Mark a jmethodID as free. This is called when there is a data race in
coleenp@4037 1784 // InstanceKlass while creating the jmethodID cache.
coleenp@4037 1785 void Method::destroy_jmethod_id(ClassLoaderData* loader_data, jmethodID m) {
coleenp@4037 1786 ClassLoaderData* cld = loader_data;
coleenp@4037 1787 Method** ptr = (Method**)m;
coleenp@4037 1788 assert(cld->jmethod_ids() != NULL, "should have method handles");
coleenp@4037 1789 cld->jmethod_ids()->destroy_method(ptr);
coleenp@4037 1790 }
coleenp@4037 1791
coleenp@4037 1792 void Method::change_method_associated_with_jmethod_id(jmethodID jmid, Method* new_method) {
coleenp@4037 1793 // Can't assert the method_holder is the same because the new method has the
coleenp@4037 1794 // scratch method holder.
coleenp@4037 1795 assert(resolve_jmethod_id(jmid)->method_holder()->class_loader()
coleenp@4037 1796 == new_method->method_holder()->class_loader(),
coleenp@4037 1797 "changing to a different class loader");
coleenp@4037 1798 // Just change the method in place, jmethodID pointer doesn't change.
coleenp@4037 1799 *((Method**)jmid) = new_method;
coleenp@4037 1800 }
coleenp@4037 1801
coleenp@4037 1802 bool Method::is_method_id(jmethodID mid) {
coleenp@4037 1803 Method* m = resolve_jmethod_id(mid);
coleenp@4037 1804 assert(m != NULL, "should be called with non-null method");
coleenp@4251 1805 InstanceKlass* ik = m->method_holder();
coleenp@4037 1806 ClassLoaderData* cld = ik->class_loader_data();
coleenp@4037 1807 if (cld->jmethod_ids() == NULL) return false;
coleenp@4037 1808 return (cld->jmethod_ids()->contains((Method**)mid));
coleenp@4037 1809 }
coleenp@4037 1810
coleenp@4037 1811 Method* Method::checked_resolve_jmethod_id(jmethodID mid) {
coleenp@4037 1812 if (mid == NULL) return NULL;
coleenp@4037 1813 Method* o = resolve_jmethod_id(mid);
coleenp@4037 1814 if (o == NULL || o == JNIMethodBlock::_free_method || !((Metadata*)o)->is_method()) {
coleenp@4037 1815 return NULL;
coleenp@4037 1816 }
coleenp@4037 1817 return o;
coleenp@4037 1818 };
coleenp@4037 1819
coleenp@4037 1820 void Method::set_on_stack(const bool value) {
coleenp@4037 1821 // Set both the method itself and its constant pool. The constant pool
coleenp@4037 1822 // on stack means some method referring to it is also on the stack.
coleenp@4037 1823 _access_flags.set_on_stack(value);
coleenp@4037 1824 constants()->set_on_stack(value);
coleenp@4037 1825 if (value) MetadataOnStackMark::record(this);
coleenp@4037 1826 }
coleenp@4037 1827
coleenp@4037 1828 // Called when the class loader is unloaded to make all methods weak.
coleenp@4037 1829 void Method::clear_jmethod_ids(ClassLoaderData* loader_data) {
coleenp@4037 1830 loader_data->jmethod_ids()->clear_all_methods();
coleenp@4037 1831 }
coleenp@4037 1832
coleenp@4295 1833
coleenp@4295 1834 // Check that this pointer is valid by checking that the vtbl pointer matches
coleenp@4295 1835 bool Method::is_valid_method() const {
coleenp@4295 1836 if (this == NULL) {
coleenp@4295 1837 return false;
coleenp@4295 1838 } else if (!is_metaspace_object()) {
coleenp@4295 1839 return false;
coleenp@4295 1840 } else {
coleenp@4295 1841 Method m;
coleenp@4295 1842 // This assumes that the vtbl pointer is the first word of a C++ object.
coleenp@4295 1843 // This assumption is also in universe.cpp patch_klass_vtble
coleenp@4295 1844 void* vtbl2 = dereference_vptr((void*)&m);
coleenp@4295 1845 void* this_vtbl = dereference_vptr((void*)this);
coleenp@4295 1846 return vtbl2 == this_vtbl;
coleenp@4295 1847 }
coleenp@4295 1848 }
coleenp@4295 1849
coleenp@4037 1850 #ifndef PRODUCT
coleenp@4037 1851 void Method::print_jmethod_ids(ClassLoaderData* loader_data, outputStream* out) {
coleenp@4037 1852 out->print_cr("jni_method_id count = %d", loader_data->jmethod_ids()->count_methods());
coleenp@4037 1853 }
coleenp@4037 1854 #endif // PRODUCT
coleenp@4037 1855
coleenp@4037 1856
coleenp@4037 1857 // Printing
coleenp@4037 1858
coleenp@4037 1859 #ifndef PRODUCT
coleenp@4037 1860
coleenp@4037 1861 void Method::print_on(outputStream* st) const {
coleenp@4037 1862 ResourceMark rm;
coleenp@4037 1863 assert(is_method(), "must be method");
coleenp@4037 1864 st->print_cr(internal_name());
coleenp@4037 1865 // get the effect of PrintOopAddress, always, for methods:
coleenp@4037 1866 st->print_cr(" - this oop: "INTPTR_FORMAT, (intptr_t)this);
coleenp@4037 1867 st->print (" - method holder: "); method_holder()->print_value_on(st); st->cr();
coleenp@4037 1868 st->print (" - constants: "INTPTR_FORMAT" ", (address)constants());
coleenp@4037 1869 constants()->print_value_on(st); st->cr();
coleenp@4037 1870 st->print (" - access: 0x%x ", access_flags().as_int()); access_flags().print_on(st); st->cr();
coleenp@4037 1871 st->print (" - name: "); name()->print_value_on(st); st->cr();
coleenp@4037 1872 st->print (" - signature: "); signature()->print_value_on(st); st->cr();
coleenp@4037 1873 st->print_cr(" - max stack: %d", max_stack());
coleenp@4037 1874 st->print_cr(" - max locals: %d", max_locals());
coleenp@4037 1875 st->print_cr(" - size of params: %d", size_of_parameters());
coleenp@4037 1876 st->print_cr(" - method size: %d", method_size());
coleenp@4037 1877 if (intrinsic_id() != vmIntrinsics::_none)
coleenp@4037 1878 st->print_cr(" - intrinsic id: %d %s", intrinsic_id(), vmIntrinsics::name_at(intrinsic_id()));
coleenp@4037 1879 if (highest_comp_level() != CompLevel_none)
coleenp@4037 1880 st->print_cr(" - highest level: %d", highest_comp_level());
coleenp@4037 1881 st->print_cr(" - vtable index: %d", _vtable_index);
coleenp@4037 1882 st->print_cr(" - i2i entry: " INTPTR_FORMAT, interpreter_entry());
coleenp@4037 1883 st->print( " - adapters: ");
coleenp@4037 1884 AdapterHandlerEntry* a = ((Method*)this)->adapter();
coleenp@4037 1885 if (a == NULL)
coleenp@4037 1886 st->print_cr(INTPTR_FORMAT, a);
coleenp@4037 1887 else
coleenp@4037 1888 a->print_adapter_on(st);
coleenp@4037 1889 st->print_cr(" - compiled entry " INTPTR_FORMAT, from_compiled_entry());
coleenp@4037 1890 st->print_cr(" - code size: %d", code_size());
coleenp@4037 1891 if (code_size() != 0) {
coleenp@4037 1892 st->print_cr(" - code start: " INTPTR_FORMAT, code_base());
coleenp@4037 1893 st->print_cr(" - code end (excl): " INTPTR_FORMAT, code_base() + code_size());
coleenp@4037 1894 }
coleenp@4037 1895 if (method_data() != NULL) {
coleenp@4037 1896 st->print_cr(" - method data: " INTPTR_FORMAT, (address)method_data());
coleenp@4037 1897 }
coleenp@4037 1898 st->print_cr(" - checked ex length: %d", checked_exceptions_length());
coleenp@4037 1899 if (checked_exceptions_length() > 0) {
coleenp@4037 1900 CheckedExceptionElement* table = checked_exceptions_start();
coleenp@4037 1901 st->print_cr(" - checked ex start: " INTPTR_FORMAT, table);
coleenp@4037 1902 if (Verbose) {
coleenp@4037 1903 for (int i = 0; i < checked_exceptions_length(); i++) {
coleenp@4037 1904 st->print_cr(" - throws %s", constants()->printable_name_at(table[i].class_cp_index));
coleenp@4037 1905 }
coleenp@4037 1906 }
coleenp@4037 1907 }
coleenp@4037 1908 if (has_linenumber_table()) {
coleenp@4037 1909 u_char* table = compressed_linenumber_table();
coleenp@4037 1910 st->print_cr(" - linenumber start: " INTPTR_FORMAT, table);
coleenp@4037 1911 if (Verbose) {
coleenp@4037 1912 CompressedLineNumberReadStream stream(table);
coleenp@4037 1913 while (stream.read_pair()) {
coleenp@4037 1914 st->print_cr(" - line %d: %d", stream.line(), stream.bci());
coleenp@4037 1915 }
coleenp@4037 1916 }
coleenp@4037 1917 }
coleenp@4037 1918 st->print_cr(" - localvar length: %d", localvariable_table_length());
coleenp@4037 1919 if (localvariable_table_length() > 0) {
coleenp@4037 1920 LocalVariableTableElement* table = localvariable_table_start();
coleenp@4037 1921 st->print_cr(" - localvar start: " INTPTR_FORMAT, table);
coleenp@4037 1922 if (Verbose) {
coleenp@4037 1923 for (int i = 0; i < localvariable_table_length(); i++) {
coleenp@4037 1924 int bci = table[i].start_bci;
coleenp@4037 1925 int len = table[i].length;
coleenp@4037 1926 const char* name = constants()->printable_name_at(table[i].name_cp_index);
coleenp@4037 1927 const char* desc = constants()->printable_name_at(table[i].descriptor_cp_index);
coleenp@4037 1928 int slot = table[i].slot;
coleenp@4037 1929 st->print_cr(" - %s %s bci=%d len=%d slot=%d", desc, name, bci, len, slot);
coleenp@4037 1930 }
coleenp@4037 1931 }
coleenp@4037 1932 }
coleenp@4037 1933 if (code() != NULL) {
coleenp@4037 1934 st->print (" - compiled code: ");
coleenp@4037 1935 code()->print_value_on(st);
coleenp@4037 1936 }
coleenp@4037 1937 if (is_native()) {
coleenp@4037 1938 st->print_cr(" - native function: " INTPTR_FORMAT, native_function());
coleenp@4037 1939 st->print_cr(" - signature handler: " INTPTR_FORMAT, signature_handler());
coleenp@4037 1940 }
coleenp@4037 1941 }
coleenp@4037 1942
coleenp@4037 1943 #endif //PRODUCT
coleenp@4037 1944
coleenp@4037 1945 void Method::print_value_on(outputStream* st) const {
coleenp@4037 1946 assert(is_method(), "must be method");
coleenp@4037 1947 st->print_cr(internal_name());
coleenp@4037 1948 print_address_on(st);
coleenp@4037 1949 st->print(" ");
coleenp@4037 1950 name()->print_value_on(st);
coleenp@4037 1951 st->print(" ");
coleenp@4037 1952 signature()->print_value_on(st);
coleenp@4037 1953 st->print(" in ");
coleenp@4037 1954 method_holder()->print_value_on(st);
coleenp@4037 1955 if (WizardMode) st->print("[%d,%d]", size_of_parameters(), max_locals());
coleenp@4037 1956 if (WizardMode && code() != NULL) st->print(" ((nmethod*)%p)", code());
coleenp@4037 1957 }
coleenp@4037 1958
acorn@4497 1959 #if INCLUDE_SERVICES
acorn@4497 1960 // Size Statistics
acorn@4497 1961 void Method::collect_statistics(KlassSizeStats *sz) const {
acorn@4497 1962 int mysize = sz->count(this);
acorn@4497 1963 sz->_method_bytes += mysize;
acorn@4497 1964 sz->_method_all_bytes += mysize;
acorn@4497 1965 sz->_rw_bytes += mysize;
acorn@4497 1966
acorn@4497 1967 if (constMethod()) {
acorn@4497 1968 constMethod()->collect_statistics(sz);
acorn@4497 1969 }
acorn@4497 1970 if (method_data()) {
acorn@4497 1971 method_data()->collect_statistics(sz);
acorn@4497 1972 }
acorn@4497 1973 }
acorn@4497 1974 #endif // INCLUDE_SERVICES
coleenp@4037 1975
coleenp@4037 1976 // Verification
coleenp@4037 1977
coleenp@4037 1978 void Method::verify_on(outputStream* st) {
coleenp@4037 1979 guarantee(is_method(), "object must be method");
coleenp@4037 1980 guarantee(constants()->is_constantPool(), "should be constant pool");
coleenp@4037 1981 guarantee(constMethod()->is_constMethod(), "should be ConstMethod*");
coleenp@4037 1982 MethodData* md = method_data();
coleenp@4037 1983 guarantee(md == NULL ||
coleenp@4037 1984 md->is_methodData(), "should be method data");
coleenp@4037 1985 }

mercurial