src/share/vm/oops/methodOop.cpp

Tue, 24 Jul 2012 10:51:00 -0700

author
twisti
date
Tue, 24 Jul 2012 10:51:00 -0700
changeset 3969
1d7922586cf6
parent 3920
161ae369407d
child 3970
977007096840
permissions
-rw-r--r--

7023639: JSR 292 method handle invocation needs a fast path for compiled code
6984705: JSR 292 method handle creation should not go through JNI
Summary: remove assembly code for JDK 7 chained method handles
Reviewed-by: jrose, twisti, kvn, mhaupt
Contributed-by: John Rose <john.r.rose@oracle.com>, Christian Thalinger <christian.thalinger@oracle.com>, Michael Haupt <michael.haupt@oracle.com>

duke@435 1 /*
never@3500 2 * Copyright (c) 1997, 2012, 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"
stefank@2314 26 #include "classfile/systemDictionary.hpp"
stefank@2314 27 #include "code/debugInfoRec.hpp"
stefank@2314 28 #include "gc_interface/collectedHeap.inline.hpp"
stefank@2314 29 #include "interpreter/bytecodeStream.hpp"
stefank@2314 30 #include "interpreter/bytecodeTracer.hpp"
stefank@2314 31 #include "interpreter/bytecodes.hpp"
stefank@2314 32 #include "interpreter/interpreter.hpp"
stefank@2314 33 #include "interpreter/oopMapCache.hpp"
stefank@2314 34 #include "memory/gcLocker.hpp"
stefank@2314 35 #include "memory/generation.hpp"
stefank@2314 36 #include "memory/oopFactory.hpp"
stefank@2314 37 #include "oops/klassOop.hpp"
stefank@2314 38 #include "oops/methodDataOop.hpp"
stefank@2314 39 #include "oops/methodOop.hpp"
stefank@2314 40 #include "oops/oop.inline.hpp"
coleenp@2497 41 #include "oops/symbol.hpp"
stefank@2314 42 #include "prims/jvmtiExport.hpp"
twisti@3969 43 #include "prims/methodHandles.hpp"
stefank@2314 44 #include "prims/nativeLookup.hpp"
stefank@2314 45 #include "runtime/arguments.hpp"
stefank@2314 46 #include "runtime/compilationPolicy.hpp"
stefank@2314 47 #include "runtime/frame.inline.hpp"
stefank@2314 48 #include "runtime/handles.inline.hpp"
stefank@2314 49 #include "runtime/relocator.hpp"
stefank@2314 50 #include "runtime/sharedRuntime.hpp"
stefank@2314 51 #include "runtime/signature.hpp"
brutisso@2976 52 #include "utilities/quickSort.hpp"
stefank@2314 53 #include "utilities/xmlstream.hpp"
duke@435 54
duke@435 55
duke@435 56 // Implementation of methodOopDesc
duke@435 57
duke@435 58 address methodOopDesc::get_i2c_entry() {
duke@435 59 assert(_adapter != NULL, "must have");
duke@435 60 return _adapter->get_i2c_entry();
duke@435 61 }
duke@435 62
duke@435 63 address methodOopDesc::get_c2i_entry() {
duke@435 64 assert(_adapter != NULL, "must have");
duke@435 65 return _adapter->get_c2i_entry();
duke@435 66 }
duke@435 67
duke@435 68 address methodOopDesc::get_c2i_unverified_entry() {
duke@435 69 assert(_adapter != NULL, "must have");
duke@435 70 return _adapter->get_c2i_unverified_entry();
duke@435 71 }
duke@435 72
twisti@3848 73 char* methodOopDesc::name_and_sig_as_C_string() const {
duke@435 74 return name_and_sig_as_C_string(Klass::cast(constants()->pool_holder()), name(), signature());
duke@435 75 }
duke@435 76
twisti@3848 77 char* methodOopDesc::name_and_sig_as_C_string(char* buf, int size) const {
duke@435 78 return name_and_sig_as_C_string(Klass::cast(constants()->pool_holder()), name(), signature(), buf, size);
duke@435 79 }
duke@435 80
coleenp@2497 81 char* methodOopDesc::name_and_sig_as_C_string(Klass* klass, Symbol* method_name, Symbol* signature) {
duke@435 82 const char* klass_name = klass->external_name();
duke@435 83 int klass_name_len = (int)strlen(klass_name);
duke@435 84 int method_name_len = method_name->utf8_length();
duke@435 85 int len = klass_name_len + 1 + method_name_len + signature->utf8_length();
duke@435 86 char* dest = NEW_RESOURCE_ARRAY(char, len + 1);
duke@435 87 strcpy(dest, klass_name);
duke@435 88 dest[klass_name_len] = '.';
duke@435 89 strcpy(&dest[klass_name_len + 1], method_name->as_C_string());
duke@435 90 strcpy(&dest[klass_name_len + 1 + method_name_len], signature->as_C_string());
duke@435 91 dest[len] = 0;
duke@435 92 return dest;
duke@435 93 }
duke@435 94
coleenp@2497 95 char* methodOopDesc::name_and_sig_as_C_string(Klass* klass, Symbol* method_name, Symbol* signature, char* buf, int size) {
coleenp@2497 96 Symbol* klass_name = klass->name();
duke@435 97 klass_name->as_klass_external_name(buf, size);
duke@435 98 int len = (int)strlen(buf);
duke@435 99
duke@435 100 if (len < size - 1) {
duke@435 101 buf[len++] = '.';
duke@435 102
duke@435 103 method_name->as_C_string(&(buf[len]), size - len);
duke@435 104 len = (int)strlen(buf);
duke@435 105
duke@435 106 signature->as_C_string(&(buf[len]), size - len);
duke@435 107 }
duke@435 108
duke@435 109 return buf;
duke@435 110 }
duke@435 111
duke@435 112 int methodOopDesc::fast_exception_handler_bci_for(KlassHandle ex_klass, int throw_bci, TRAPS) {
duke@435 113 // exception table holds quadruple entries of the form (beg_bci, end_bci, handler_bci, klass_index)
duke@435 114 // access exception table
jiangli@3917 115 ExceptionTable table(this);
jiangli@3917 116 int length = table.length();
duke@435 117 // iterate through all entries sequentially
duke@435 118 constantPoolHandle pool(THREAD, constants());
jiangli@3917 119 for (int i = 0; i < length; i ++) {
jiangli@3917 120 //reacquire the table in case a GC happened
jiangli@3917 121 ExceptionTable table(this);
jiangli@3917 122 int beg_bci = table.start_pc(i);
jiangli@3917 123 int end_bci = table.end_pc(i);
duke@435 124 assert(beg_bci <= end_bci, "inconsistent exception table");
duke@435 125 if (beg_bci <= throw_bci && throw_bci < end_bci) {
duke@435 126 // exception handler bci range covers throw_bci => investigate further
jiangli@3917 127 int handler_bci = table.handler_pc(i);
jiangli@3917 128 int klass_index = table.catch_type_index(i);
duke@435 129 if (klass_index == 0) {
duke@435 130 return handler_bci;
duke@435 131 } else if (ex_klass.is_null()) {
duke@435 132 return handler_bci;
duke@435 133 } else {
duke@435 134 // we know the exception class => get the constraint class
duke@435 135 // this may require loading of the constraint class; if verification
duke@435 136 // fails or some other exception occurs, return handler_bci
duke@435 137 klassOop k = pool->klass_at(klass_index, CHECK_(handler_bci));
duke@435 138 KlassHandle klass = KlassHandle(THREAD, k);
duke@435 139 assert(klass.not_null(), "klass not loaded");
duke@435 140 if (ex_klass->is_subtype_of(klass())) {
duke@435 141 return handler_bci;
duke@435 142 }
duke@435 143 }
duke@435 144 }
duke@435 145 }
duke@435 146
duke@435 147 return -1;
duke@435 148 }
duke@435 149
duke@435 150 void methodOopDesc::mask_for(int bci, InterpreterOopMap* mask) {
duke@435 151
duke@435 152 Thread* myThread = Thread::current();
duke@435 153 methodHandle h_this(myThread, this);
duke@435 154 #ifdef ASSERT
duke@435 155 bool has_capability = myThread->is_VM_thread() ||
duke@435 156 myThread->is_ConcurrentGC_thread() ||
duke@435 157 myThread->is_GC_task_thread();
duke@435 158
duke@435 159 if (!has_capability) {
duke@435 160 if (!VerifyStack && !VerifyLastFrame) {
duke@435 161 // verify stack calls this outside VM thread
duke@435 162 warning("oopmap should only be accessed by the "
duke@435 163 "VM, GC task or CMS threads (or during debugging)");
duke@435 164 InterpreterOopMap local_mask;
duke@435 165 instanceKlass::cast(method_holder())->mask_for(h_this, bci, &local_mask);
duke@435 166 local_mask.print();
duke@435 167 }
duke@435 168 }
duke@435 169 #endif
duke@435 170 instanceKlass::cast(method_holder())->mask_for(h_this, bci, mask);
duke@435 171 return;
duke@435 172 }
duke@435 173
duke@435 174
duke@435 175 int methodOopDesc::bci_from(address bcp) const {
twisti@3848 176 assert(is_native() && bcp == code_base() || contains(bcp) || is_error_reported(),
twisti@3848 177 err_msg("bcp doesn't belong to this method: bcp: " INTPTR_FORMAT ", method: %s", bcp, name_and_sig_as_C_string()));
duke@435 178 return bcp - code_base();
duke@435 179 }
duke@435 180
duke@435 181
duke@435 182 // Return (int)bcx if it appears to be a valid BCI.
duke@435 183 // Return bci_from((address)bcx) if it appears to be a valid BCP.
duke@435 184 // Return -1 otherwise.
duke@435 185 // Used by profiling code, when invalid data is a possibility.
duke@435 186 // The caller is responsible for validating the methodOop itself.
duke@435 187 int methodOopDesc::validate_bci_from_bcx(intptr_t bcx) const {
duke@435 188 // keep bci as -1 if not a valid bci
duke@435 189 int bci = -1;
duke@435 190 if (bcx == 0 || (address)bcx == code_base()) {
duke@435 191 // code_size() may return 0 and we allow 0 here
duke@435 192 // the method may be native
duke@435 193 bci = 0;
duke@435 194 } else if (frame::is_bci(bcx)) {
duke@435 195 if (bcx < code_size()) {
duke@435 196 bci = (int)bcx;
duke@435 197 }
duke@435 198 } else if (contains((address)bcx)) {
duke@435 199 bci = (address)bcx - code_base();
duke@435 200 }
duke@435 201 // Assert that if we have dodged any asserts, bci is negative.
duke@435 202 assert(bci == -1 || bci == bci_from(bcp_from(bci)), "sane bci if >=0");
duke@435 203 return bci;
duke@435 204 }
duke@435 205
duke@435 206 address methodOopDesc::bcp_from(int bci) const {
duke@435 207 assert((is_native() && bci == 0) || (!is_native() && 0 <= bci && bci < code_size()), "illegal bci");
duke@435 208 address bcp = code_base() + bci;
duke@435 209 assert(is_native() && bcp == code_base() || contains(bcp), "bcp doesn't belong to this method");
duke@435 210 return bcp;
duke@435 211 }
duke@435 212
duke@435 213
duke@435 214 int methodOopDesc::object_size(bool is_native) {
duke@435 215 // If native, then include pointers for native_function and signature_handler
duke@435 216 int extra_bytes = (is_native) ? 2*sizeof(address*) : 0;
duke@435 217 int extra_words = align_size_up(extra_bytes, BytesPerWord) / BytesPerWord;
duke@435 218 return align_object_size(header_size() + extra_words);
duke@435 219 }
duke@435 220
duke@435 221
coleenp@2497 222 Symbol* methodOopDesc::klass_name() const {
duke@435 223 klassOop k = method_holder();
duke@435 224 assert(k->is_klass(), "must be klass");
duke@435 225 instanceKlass* ik = (instanceKlass*) k->klass_part();
duke@435 226 return ik->name();
duke@435 227 }
duke@435 228
duke@435 229
duke@435 230 void methodOopDesc::set_interpreter_kind() {
duke@435 231 int kind = Interpreter::method_kind(methodOop(this));
duke@435 232 assert(kind != Interpreter::invalid,
duke@435 233 "interpreter entry must be valid");
duke@435 234 set_interpreter_kind(kind);
duke@435 235 }
duke@435 236
duke@435 237
duke@435 238 // Attempt to return method oop to original state. Clear any pointers
duke@435 239 // (to objects outside the shared spaces). We won't be able to predict
duke@435 240 // where they should point in a new JVM. Further initialize some
duke@435 241 // entries now in order allow them to be write protected later.
duke@435 242
duke@435 243 void methodOopDesc::remove_unshareable_info() {
duke@435 244 unlink_method();
duke@435 245 set_interpreter_kind();
duke@435 246 }
duke@435 247
duke@435 248
iveresov@2138 249 bool methodOopDesc::was_executed_more_than(int n) {
duke@435 250 // Invocation counter is reset when the methodOop is compiled.
duke@435 251 // If the method has compiled code we therefore assume it has
duke@435 252 // be excuted more than n times.
duke@435 253 if (is_accessor() || is_empty_method() || (code() != NULL)) {
duke@435 254 // interpreter doesn't bump invocation counter of trivial methods
duke@435 255 // compiler does not bump invocation counter of compiled methods
duke@435 256 return true;
iveresov@2138 257 }
iveresov@2138 258 else if (_invocation_counter.carry() || (method_data() != NULL && method_data()->invocation_counter()->carry())) {
duke@435 259 // The carry bit is set when the counter overflows and causes
duke@435 260 // a compilation to occur. We don't know how many times
duke@435 261 // the counter has been reset, so we simply assume it has
duke@435 262 // been executed more than n times.
duke@435 263 return true;
duke@435 264 } else {
duke@435 265 return invocation_count() > n;
duke@435 266 }
duke@435 267 }
duke@435 268
duke@435 269 #ifndef PRODUCT
iveresov@2138 270 void methodOopDesc::print_invocation_count() {
duke@435 271 if (is_static()) tty->print("static ");
duke@435 272 if (is_final()) tty->print("final ");
duke@435 273 if (is_synchronized()) tty->print("synchronized ");
duke@435 274 if (is_native()) tty->print("native ");
duke@435 275 method_holder()->klass_part()->name()->print_symbol_on(tty);
duke@435 276 tty->print(".");
duke@435 277 name()->print_symbol_on(tty);
duke@435 278 signature()->print_symbol_on(tty);
duke@435 279
duke@435 280 if (WizardMode) {
duke@435 281 // dump the size of the byte codes
duke@435 282 tty->print(" {%d}", code_size());
duke@435 283 }
duke@435 284 tty->cr();
duke@435 285
duke@435 286 tty->print_cr (" interpreter_invocation_count: %8d ", interpreter_invocation_count());
duke@435 287 tty->print_cr (" invocation_counter: %8d ", invocation_count());
duke@435 288 tty->print_cr (" backedge_counter: %8d ", backedge_count());
duke@435 289 if (CountCompiledCalls) {
duke@435 290 tty->print_cr (" compiled_invocation_count: %8d ", compiled_invocation_count());
duke@435 291 }
duke@435 292
duke@435 293 }
duke@435 294 #endif
duke@435 295
duke@435 296 // Build a methodDataOop object to hold information about this method
duke@435 297 // collected in the interpreter.
duke@435 298 void methodOopDesc::build_interpreter_method_data(methodHandle method, TRAPS) {
coleenp@2363 299 // Do not profile method if current thread holds the pending list lock,
coleenp@2363 300 // which avoids deadlock for acquiring the MethodData_lock.
coleenp@2363 301 if (instanceRefKlass::owns_pending_list_lock((JavaThread*)THREAD)) {
coleenp@2363 302 return;
coleenp@2363 303 }
coleenp@2363 304
duke@435 305 // Grab a lock here to prevent multiple
duke@435 306 // methodDataOops from being created.
duke@435 307 MutexLocker ml(MethodData_lock, THREAD);
duke@435 308 if (method->method_data() == NULL) {
duke@435 309 methodDataOop method_data = oopFactory::new_methodData(method, CHECK);
duke@435 310 method->set_method_data(method_data);
duke@435 311 if (PrintMethodData && (Verbose || WizardMode)) {
duke@435 312 ResourceMark rm(THREAD);
duke@435 313 tty->print("build_interpreter_method_data for ");
duke@435 314 method->print_name(tty);
duke@435 315 tty->cr();
duke@435 316 // At the end of the run, the MDO, full of data, will be dumped.
duke@435 317 }
duke@435 318 }
duke@435 319 }
duke@435 320
duke@435 321 void methodOopDesc::cleanup_inline_caches() {
duke@435 322 // The current system doesn't use inline caches in the interpreter
duke@435 323 // => nothing to do (keep this method around for future use)
duke@435 324 }
duke@435 325
duke@435 326
jrose@1145 327 int methodOopDesc::extra_stack_words() {
jrose@1145 328 // not an inline function, to avoid a header dependency on Interpreter
twisti@1861 329 return extra_stack_entries() * Interpreter::stackElementSize;
jrose@1145 330 }
jrose@1145 331
jrose@1145 332
duke@435 333 void methodOopDesc::compute_size_of_parameters(Thread *thread) {
coleenp@2497 334 ArgumentSizeComputer asc(signature());
duke@435 335 set_size_of_parameters(asc.size() + (is_static() ? 0 : 1));
duke@435 336 }
duke@435 337
duke@435 338 #ifdef CC_INTERP
duke@435 339 void methodOopDesc::set_result_index(BasicType type) {
duke@435 340 _result_index = Interpreter::BasicType_as_index(type);
duke@435 341 }
duke@435 342 #endif
duke@435 343
duke@435 344 BasicType methodOopDesc::result_type() const {
duke@435 345 ResultTypeFinder rtf(signature());
duke@435 346 return rtf.type();
duke@435 347 }
duke@435 348
duke@435 349
duke@435 350 bool methodOopDesc::is_empty_method() const {
duke@435 351 return code_size() == 1
duke@435 352 && *code_base() == Bytecodes::_return;
duke@435 353 }
duke@435 354
duke@435 355
duke@435 356 bool methodOopDesc::is_vanilla_constructor() const {
duke@435 357 // Returns true if this method is a vanilla constructor, i.e. an "<init>" "()V" method
duke@435 358 // which only calls the superclass vanilla constructor and possibly does stores of
duke@435 359 // zero constants to local fields:
duke@435 360 //
duke@435 361 // aload_0
duke@435 362 // invokespecial
duke@435 363 // indexbyte1
duke@435 364 // indexbyte2
duke@435 365 //
duke@435 366 // followed by an (optional) sequence of:
duke@435 367 //
duke@435 368 // aload_0
duke@435 369 // aconst_null / iconst_0 / fconst_0 / dconst_0
duke@435 370 // putfield
duke@435 371 // indexbyte1
duke@435 372 // indexbyte2
duke@435 373 //
duke@435 374 // followed by:
duke@435 375 //
duke@435 376 // return
duke@435 377
duke@435 378 assert(name() == vmSymbols::object_initializer_name(), "Should only be called for default constructors");
duke@435 379 assert(signature() == vmSymbols::void_method_signature(), "Should only be called for default constructors");
duke@435 380 int size = code_size();
duke@435 381 // Check if size match
duke@435 382 if (size == 0 || size % 5 != 0) return false;
duke@435 383 address cb = code_base();
duke@435 384 int last = size - 1;
duke@435 385 if (cb[0] != Bytecodes::_aload_0 || cb[1] != Bytecodes::_invokespecial || cb[last] != Bytecodes::_return) {
duke@435 386 // Does not call superclass default constructor
duke@435 387 return false;
duke@435 388 }
duke@435 389 // Check optional sequence
duke@435 390 for (int i = 4; i < last; i += 5) {
duke@435 391 if (cb[i] != Bytecodes::_aload_0) return false;
duke@435 392 if (!Bytecodes::is_zero_const(Bytecodes::cast(cb[i+1]))) return false;
duke@435 393 if (cb[i+2] != Bytecodes::_putfield) return false;
duke@435 394 }
duke@435 395 return true;
duke@435 396 }
duke@435 397
duke@435 398
duke@435 399 bool methodOopDesc::compute_has_loops_flag() {
duke@435 400 BytecodeStream bcs(methodOop(this));
duke@435 401 Bytecodes::Code bc;
duke@435 402
duke@435 403 while ((bc = bcs.next()) >= 0) {
duke@435 404 switch( bc ) {
duke@435 405 case Bytecodes::_ifeq:
duke@435 406 case Bytecodes::_ifnull:
duke@435 407 case Bytecodes::_iflt:
duke@435 408 case Bytecodes::_ifle:
duke@435 409 case Bytecodes::_ifne:
duke@435 410 case Bytecodes::_ifnonnull:
duke@435 411 case Bytecodes::_ifgt:
duke@435 412 case Bytecodes::_ifge:
duke@435 413 case Bytecodes::_if_icmpeq:
duke@435 414 case Bytecodes::_if_icmpne:
duke@435 415 case Bytecodes::_if_icmplt:
duke@435 416 case Bytecodes::_if_icmpgt:
duke@435 417 case Bytecodes::_if_icmple:
duke@435 418 case Bytecodes::_if_icmpge:
duke@435 419 case Bytecodes::_if_acmpeq:
duke@435 420 case Bytecodes::_if_acmpne:
duke@435 421 case Bytecodes::_goto:
duke@435 422 case Bytecodes::_jsr:
duke@435 423 if( bcs.dest() < bcs.next_bci() ) _access_flags.set_has_loops();
duke@435 424 break;
duke@435 425
duke@435 426 case Bytecodes::_goto_w:
duke@435 427 case Bytecodes::_jsr_w:
duke@435 428 if( bcs.dest_w() < bcs.next_bci() ) _access_flags.set_has_loops();
duke@435 429 break;
duke@435 430 }
duke@435 431 }
duke@435 432 _access_flags.set_loops_flag_init();
duke@435 433 return _access_flags.has_loops();
duke@435 434 }
duke@435 435
duke@435 436
duke@435 437 bool methodOopDesc::is_final_method() const {
duke@435 438 // %%% Should return true for private methods also,
duke@435 439 // since there is no way to override them.
duke@435 440 return is_final() || Klass::cast(method_holder())->is_final();
duke@435 441 }
duke@435 442
duke@435 443
duke@435 444 bool methodOopDesc::is_strict_method() const {
duke@435 445 return is_strict();
duke@435 446 }
duke@435 447
duke@435 448
duke@435 449 bool methodOopDesc::can_be_statically_bound() const {
duke@435 450 if (is_final_method()) return true;
duke@435 451 return vtable_index() == nonvirtual_vtable_index;
duke@435 452 }
duke@435 453
duke@435 454
duke@435 455 bool methodOopDesc::is_accessor() const {
duke@435 456 if (code_size() != 5) return false;
duke@435 457 if (size_of_parameters() != 1) return false;
never@2462 458 if (java_code_at(0) != Bytecodes::_aload_0 ) return false;
never@2462 459 if (java_code_at(1) != Bytecodes::_getfield) return false;
never@2462 460 if (java_code_at(4) != Bytecodes::_areturn &&
never@2462 461 java_code_at(4) != Bytecodes::_ireturn ) return false;
duke@435 462 return true;
duke@435 463 }
duke@435 464
duke@435 465
duke@435 466 bool methodOopDesc::is_initializer() const {
kamg@2616 467 return name() == vmSymbols::object_initializer_name() || is_static_initializer();
kamg@2616 468 }
kamg@2616 469
kamg@2616 470 bool methodOopDesc::has_valid_initializer_flags() const {
kamg@2616 471 return (is_static() ||
kamg@2616 472 instanceKlass::cast(method_holder())->major_version() < 51);
kamg@2616 473 }
kamg@2616 474
kamg@2616 475 bool methodOopDesc::is_static_initializer() const {
kamg@2616 476 // For classfiles version 51 or greater, ensure that the clinit method is
kamg@2616 477 // static. Non-static methods with the name "<clinit>" are not static
kamg@2616 478 // initializers. (older classfiles exempted for backward compatibility)
kamg@2616 479 return name() == vmSymbols::class_initializer_name() &&
kamg@2616 480 has_valid_initializer_flags();
duke@435 481 }
duke@435 482
duke@435 483
duke@435 484 objArrayHandle methodOopDesc::resolved_checked_exceptions_impl(methodOop this_oop, TRAPS) {
duke@435 485 int length = this_oop->checked_exceptions_length();
duke@435 486 if (length == 0) { // common case
duke@435 487 return objArrayHandle(THREAD, Universe::the_empty_class_klass_array());
duke@435 488 } else {
duke@435 489 methodHandle h_this(THREAD, this_oop);
never@1577 490 objArrayOop m_oop = oopFactory::new_objArray(SystemDictionary::Class_klass(), length, CHECK_(objArrayHandle()));
duke@435 491 objArrayHandle mirrors (THREAD, m_oop);
duke@435 492 for (int i = 0; i < length; i++) {
duke@435 493 CheckedExceptionElement* table = h_this->checked_exceptions_start(); // recompute on each iteration, not gc safe
duke@435 494 klassOop k = h_this->constants()->klass_at(table[i].class_cp_index, CHECK_(objArrayHandle()));
never@1577 495 assert(Klass::cast(k)->is_subclass_of(SystemDictionary::Throwable_klass()), "invalid exception class");
duke@435 496 mirrors->obj_at_put(i, Klass::cast(k)->java_mirror());
duke@435 497 }
duke@435 498 return mirrors;
duke@435 499 }
duke@435 500 };
duke@435 501
duke@435 502
duke@435 503 int methodOopDesc::line_number_from_bci(int bci) const {
duke@435 504 if (bci == SynchronizationEntryBCI) bci = 0;
duke@435 505 assert(bci == 0 || 0 <= bci && bci < code_size(), "illegal bci");
duke@435 506 int best_bci = 0;
duke@435 507 int best_line = -1;
duke@435 508
duke@435 509 if (has_linenumber_table()) {
duke@435 510 // The line numbers are a short array of 2-tuples [start_pc, line_number].
duke@435 511 // Not necessarily sorted and not necessarily one-to-one.
duke@435 512 CompressedLineNumberReadStream stream(compressed_linenumber_table());
duke@435 513 while (stream.read_pair()) {
duke@435 514 if (stream.bci() == bci) {
duke@435 515 // perfect match
duke@435 516 return stream.line();
duke@435 517 } else {
duke@435 518 // update best_bci/line
duke@435 519 if (stream.bci() < bci && stream.bci() >= best_bci) {
duke@435 520 best_bci = stream.bci();
duke@435 521 best_line = stream.line();
duke@435 522 }
duke@435 523 }
duke@435 524 }
duke@435 525 }
duke@435 526 return best_line;
duke@435 527 }
duke@435 528
duke@435 529
duke@435 530 bool methodOopDesc::is_klass_loaded_by_klass_index(int klass_index) const {
jiangli@3826 531 if( constants()->tag_at(klass_index).is_unresolved_klass() ) {
duke@435 532 Thread *thread = Thread::current();
jiangli@3826 533 Symbol* klass_name = constants()->klass_name_at(klass_index);
duke@435 534 Handle loader(thread, instanceKlass::cast(method_holder())->class_loader());
duke@435 535 Handle prot (thread, Klass::cast(method_holder())->protection_domain());
duke@435 536 return SystemDictionary::find(klass_name, loader, prot, thread) != NULL;
duke@435 537 } else {
duke@435 538 return true;
duke@435 539 }
duke@435 540 }
duke@435 541
duke@435 542
duke@435 543 bool methodOopDesc::is_klass_loaded(int refinfo_index, bool must_be_resolved) const {
jiangli@3826 544 int klass_index = constants()->klass_ref_index_at(refinfo_index);
duke@435 545 if (must_be_resolved) {
duke@435 546 // Make sure klass is resolved in constantpool.
duke@435 547 if (constants()->tag_at(klass_index).is_unresolved_klass()) return false;
duke@435 548 }
duke@435 549 return is_klass_loaded_by_klass_index(klass_index);
duke@435 550 }
duke@435 551
duke@435 552
duke@435 553 void methodOopDesc::set_native_function(address function, bool post_event_flag) {
duke@435 554 assert(function != NULL, "use clear_native_function to unregister natives");
twisti@3969 555 assert(!is_method_handle_intrinsic() || function == SharedRuntime::native_method_throw_unsatisfied_link_error_entry(), "");
duke@435 556 address* native_function = native_function_addr();
duke@435 557
duke@435 558 // We can see racers trying to place the same native function into place. Once
duke@435 559 // is plenty.
duke@435 560 address current = *native_function;
duke@435 561 if (current == function) return;
duke@435 562 if (post_event_flag && JvmtiExport::should_post_native_method_bind() &&
duke@435 563 function != NULL) {
duke@435 564 // native_method_throw_unsatisfied_link_error_entry() should only
duke@435 565 // be passed when post_event_flag is false.
duke@435 566 assert(function !=
duke@435 567 SharedRuntime::native_method_throw_unsatisfied_link_error_entry(),
duke@435 568 "post_event_flag mis-match");
duke@435 569
duke@435 570 // post the bind event, and possible change the bind function
duke@435 571 JvmtiExport::post_native_method_bind(this, &function);
duke@435 572 }
duke@435 573 *native_function = function;
duke@435 574 // This function can be called more than once. We must make sure that we always
duke@435 575 // use the latest registered method -> check if a stub already has been generated.
duke@435 576 // If so, we have to make it not_entrant.
duke@435 577 nmethod* nm = code(); // Put it into local variable to guard against concurrent updates
duke@435 578 if (nm != NULL) {
duke@435 579 nm->make_not_entrant();
duke@435 580 }
duke@435 581 }
duke@435 582
duke@435 583
duke@435 584 bool methodOopDesc::has_native_function() const {
twisti@3969 585 assert(!is_method_handle_intrinsic(), "");
duke@435 586 address func = native_function();
duke@435 587 return (func != NULL && func != SharedRuntime::native_method_throw_unsatisfied_link_error_entry());
duke@435 588 }
duke@435 589
duke@435 590
duke@435 591 void methodOopDesc::clear_native_function() {
twisti@3969 592 // Note: is_method_handle_intrinsic() is allowed here.
duke@435 593 set_native_function(
duke@435 594 SharedRuntime::native_method_throw_unsatisfied_link_error_entry(),
duke@435 595 !native_bind_event_is_interesting);
duke@435 596 clear_code();
duke@435 597 }
duke@435 598
never@3500 599 address methodOopDesc::critical_native_function() {
never@3500 600 methodHandle mh(this);
never@3500 601 return NativeLookup::lookup_critical_entry(mh);
never@3500 602 }
never@3500 603
duke@435 604
duke@435 605 void methodOopDesc::set_signature_handler(address handler) {
duke@435 606 address* signature_handler = signature_handler_addr();
duke@435 607 *signature_handler = handler;
duke@435 608 }
duke@435 609
duke@435 610
duke@435 611 bool methodOopDesc::is_not_compilable(int comp_level) const {
iveresov@2138 612 if (number_of_breakpoints() > 0) {
iveresov@2138 613 return true;
duke@435 614 }
iveresov@2138 615 if (comp_level == CompLevel_any) {
iveresov@2138 616 return is_not_c1_compilable() || is_not_c2_compilable();
iveresov@2138 617 }
iveresov@2138 618 if (is_c1_compile(comp_level)) {
iveresov@2138 619 return is_not_c1_compilable();
iveresov@2138 620 }
iveresov@2138 621 if (is_c2_compile(comp_level)) {
iveresov@2138 622 return is_not_c2_compilable();
iveresov@2138 623 }
iveresov@2138 624 return false;
duke@435 625 }
duke@435 626
duke@435 627 // call this when compiler finds that this method is not compilable
kvn@1643 628 void methodOopDesc::set_not_compilable(int comp_level, bool report) {
kvn@1643 629 if (PrintCompilation && report) {
kvn@1641 630 ttyLocker ttyl;
kvn@1641 631 tty->print("made not compilable ");
kvn@1641 632 this->print_short_name(tty);
kvn@1641 633 int size = this->code_size();
kvn@1641 634 if (size > 0)
kvn@1641 635 tty->print(" (%d bytes)", size);
kvn@1641 636 tty->cr();
kvn@1641 637 }
duke@435 638 if ((TraceDeoptimization || LogCompilation) && (xtty != NULL)) {
duke@435 639 ttyLocker ttyl;
duke@435 640 xtty->begin_elem("make_not_compilable thread='%d'", (int) os::current_thread_id());
duke@435 641 xtty->method(methodOop(this));
duke@435 642 xtty->stamp();
duke@435 643 xtty->end_elem();
duke@435 644 }
iveresov@2138 645 if (comp_level == CompLevel_all) {
iveresov@2138 646 set_not_c1_compilable();
iveresov@2138 647 set_not_c2_compilable();
iveresov@2138 648 } else {
iveresov@2138 649 if (is_c1_compile(comp_level)) {
iveresov@2138 650 set_not_c1_compilable();
iveresov@2138 651 } else
iveresov@2138 652 if (is_c2_compile(comp_level)) {
iveresov@2138 653 set_not_c2_compilable();
iveresov@2138 654 }
duke@435 655 }
iveresov@2138 656 CompilationPolicy::policy()->disable_compilation(this);
duke@435 657 }
duke@435 658
duke@435 659 // Revert to using the interpreter and clear out the nmethod
duke@435 660 void methodOopDesc::clear_code() {
duke@435 661
duke@435 662 // this may be NULL if c2i adapters have not been made yet
duke@435 663 // Only should happen at allocate time.
duke@435 664 if (_adapter == NULL) {
duke@435 665 _from_compiled_entry = NULL;
duke@435 666 } else {
duke@435 667 _from_compiled_entry = _adapter->get_c2i_entry();
duke@435 668 }
duke@435 669 OrderAccess::storestore();
duke@435 670 _from_interpreted_entry = _i2i_entry;
duke@435 671 OrderAccess::storestore();
duke@435 672 _code = NULL;
duke@435 673 }
duke@435 674
duke@435 675 // Called by class data sharing to remove any entry points (which are not shared)
duke@435 676 void methodOopDesc::unlink_method() {
duke@435 677 _code = NULL;
duke@435 678 _i2i_entry = NULL;
duke@435 679 _from_interpreted_entry = NULL;
duke@435 680 if (is_native()) {
duke@435 681 *native_function_addr() = NULL;
duke@435 682 set_signature_handler(NULL);
duke@435 683 }
duke@435 684 NOT_PRODUCT(set_compiled_invocation_count(0);)
duke@435 685 invocation_counter()->reset();
duke@435 686 backedge_counter()->reset();
duke@435 687 _adapter = NULL;
duke@435 688 _from_compiled_entry = NULL;
duke@435 689 assert(_method_data == NULL, "unexpected method data?");
duke@435 690 set_method_data(NULL);
duke@435 691 set_interpreter_throwout_count(0);
duke@435 692 set_interpreter_invocation_count(0);
duke@435 693 }
duke@435 694
duke@435 695 // Called when the method_holder is getting linked. Setup entrypoints so the method
duke@435 696 // is ready to be called from interpreter, compiler, and vtables.
duke@435 697 void methodOopDesc::link_method(methodHandle h_method, TRAPS) {
coleenp@2945 698 // If the code cache is full, we may reenter this function for the
coleenp@2945 699 // leftover methods that weren't linked.
coleenp@2945 700 if (_i2i_entry != NULL) return;
coleenp@2945 701
duke@435 702 assert(_adapter == NULL, "init'd to NULL" );
duke@435 703 assert( _code == NULL, "nothing compiled yet" );
duke@435 704
duke@435 705 // Setup interpreter entrypoint
duke@435 706 assert(this == h_method(), "wrong h_method()" );
duke@435 707 address entry = Interpreter::entry_for_method(h_method);
duke@435 708 assert(entry != NULL, "interpreter entry must be non-null");
duke@435 709 // Sets both _i2i_entry and _from_interpreted_entry
duke@435 710 set_interpreter_entry(entry);
twisti@3969 711 if (is_native() && !is_method_handle_intrinsic()) {
duke@435 712 set_native_function(
duke@435 713 SharedRuntime::native_method_throw_unsatisfied_link_error_entry(),
duke@435 714 !native_bind_event_is_interesting);
duke@435 715 }
duke@435 716
duke@435 717 // Setup compiler entrypoint. This is made eagerly, so we do not need
duke@435 718 // special handling of vtables. An alternative is to make adapters more
duke@435 719 // lazily by calling make_adapter() from from_compiled_entry() for the
duke@435 720 // normal calls. For vtable calls life gets more complicated. When a
duke@435 721 // call-site goes mega-morphic we need adapters in all methods which can be
duke@435 722 // called from the vtable. We need adapters on such methods that get loaded
duke@435 723 // later. Ditto for mega-morphic itable calls. If this proves to be a
duke@435 724 // problem we'll make these lazily later.
coleenp@2946 725 (void) make_adapters(h_method, CHECK);
duke@435 726
duke@435 727 // ONLY USE the h_method now as make_adapter may have blocked
duke@435 728
duke@435 729 }
duke@435 730
duke@435 731 address methodOopDesc::make_adapters(methodHandle mh, TRAPS) {
duke@435 732 // Adapters for compiled code are made eagerly here. They are fairly
duke@435 733 // small (generally < 100 bytes) and quick to make (and cached and shared)
duke@435 734 // so making them eagerly shouldn't be too expensive.
duke@435 735 AdapterHandlerEntry* adapter = AdapterHandlerLibrary::get_adapter(mh);
duke@435 736 if (adapter == NULL ) {
never@1622 737 THROW_MSG_NULL(vmSymbols::java_lang_VirtualMachineError(), "out of space in CodeCache for adapters");
duke@435 738 }
duke@435 739
duke@435 740 mh->set_adapter_entry(adapter);
duke@435 741 mh->_from_compiled_entry = adapter->get_c2i_entry();
duke@435 742 return adapter->get_c2i_entry();
duke@435 743 }
duke@435 744
duke@435 745 // The verified_code_entry() must be called when a invoke is resolved
duke@435 746 // on this method.
duke@435 747
duke@435 748 // It returns the compiled code entry point, after asserting not null.
duke@435 749 // This function is called after potential safepoints so that nmethod
duke@435 750 // or adapter that it points to is still live and valid.
duke@435 751 // This function must not hit a safepoint!
duke@435 752 address methodOopDesc::verified_code_entry() {
duke@435 753 debug_only(No_Safepoint_Verifier nsv;)
kvn@1637 754 nmethod *code = (nmethod *)OrderAccess::load_ptr_acquire(&_code);
kvn@1637 755 if (code == NULL && UseCodeCacheFlushing) {
kvn@1637 756 nmethod *saved_code = CodeCache::find_and_remove_saved_code(this);
kvn@1637 757 if (saved_code != NULL) {
kvn@1637 758 methodHandle method(this);
kvn@1637 759 assert( ! saved_code->is_osr_method(), "should not get here for osr" );
kvn@1637 760 set_code( method, saved_code );
kvn@1637 761 }
kvn@1637 762 }
kvn@1637 763
duke@435 764 assert(_from_compiled_entry != NULL, "must be set");
duke@435 765 return _from_compiled_entry;
duke@435 766 }
duke@435 767
duke@435 768 // Check that if an nmethod ref exists, it has a backlink to this or no backlink at all
duke@435 769 // (could be racing a deopt).
duke@435 770 // Not inline to avoid circular ref.
duke@435 771 bool methodOopDesc::check_code() const {
duke@435 772 // cached in a register or local. There's a race on the value of the field.
duke@435 773 nmethod *code = (nmethod *)OrderAccess::load_ptr_acquire(&_code);
duke@435 774 return code == NULL || (code->method() == NULL) || (code->method() == (methodOop)this && !code->is_osr_method());
duke@435 775 }
duke@435 776
duke@435 777 // Install compiled code. Instantly it can execute.
duke@435 778 void methodOopDesc::set_code(methodHandle mh, nmethod *code) {
duke@435 779 assert( code, "use clear_code to remove code" );
duke@435 780 assert( mh->check_code(), "" );
duke@435 781
duke@435 782 guarantee(mh->adapter() != NULL, "Adapter blob must already exist!");
duke@435 783
duke@435 784 // These writes must happen in this order, because the interpreter will
duke@435 785 // directly jump to from_interpreted_entry which jumps to an i2c adapter
duke@435 786 // which jumps to _from_compiled_entry.
duke@435 787 mh->_code = code; // Assign before allowing compiled code to exec
duke@435 788
duke@435 789 int comp_level = code->comp_level();
duke@435 790 // In theory there could be a race here. In practice it is unlikely
duke@435 791 // and not worth worrying about.
iveresov@2138 792 if (comp_level > mh->highest_comp_level()) {
iveresov@2138 793 mh->set_highest_comp_level(comp_level);
duke@435 794 }
duke@435 795
duke@435 796 OrderAccess::storestore();
twisti@2047 797 #ifdef SHARK
twisti@2200 798 mh->_from_interpreted_entry = code->insts_begin();
twisti@3969 799 #else //!SHARK
duke@435 800 mh->_from_compiled_entry = code->verified_entry_point();
duke@435 801 OrderAccess::storestore();
duke@435 802 // Instantly compiled code can execute.
twisti@3969 803 if (!mh->is_method_handle_intrinsic())
twisti@3969 804 mh->_from_interpreted_entry = mh->get_i2c_entry();
twisti@3969 805 #endif //!SHARK
duke@435 806 }
duke@435 807
duke@435 808
duke@435 809 bool methodOopDesc::is_overridden_in(klassOop k) const {
duke@435 810 instanceKlass* ik = instanceKlass::cast(k);
duke@435 811
duke@435 812 if (ik->is_interface()) return false;
duke@435 813
duke@435 814 // If method is an interface, we skip it - except if it
duke@435 815 // is a miranda method
duke@435 816 if (instanceKlass::cast(method_holder())->is_interface()) {
duke@435 817 // Check that method is not a miranda method
duke@435 818 if (ik->lookup_method(name(), signature()) == NULL) {
duke@435 819 // No implementation exist - so miranda method
duke@435 820 return false;
duke@435 821 }
duke@435 822 return true;
duke@435 823 }
duke@435 824
duke@435 825 assert(ik->is_subclass_of(method_holder()), "should be subklass");
duke@435 826 assert(ik->vtable() != NULL, "vtable should exist");
duke@435 827 if (vtable_index() == nonvirtual_vtable_index) {
duke@435 828 return false;
duke@435 829 } else {
duke@435 830 methodOop vt_m = ik->method_at_vtable(vtable_index());
duke@435 831 return vt_m != methodOop(this);
duke@435 832 }
duke@435 833 }
duke@435 834
duke@435 835
dcubed@483 836 // give advice about whether this methodOop should be cached or not
dcubed@483 837 bool methodOopDesc::should_not_be_cached() const {
dcubed@483 838 if (is_old()) {
dcubed@483 839 // This method has been redefined. It is either EMCP or obsolete
dcubed@483 840 // and we don't want to cache it because that would pin the method
dcubed@483 841 // down and prevent it from being collectible if and when it
dcubed@483 842 // finishes executing.
dcubed@483 843 return true;
dcubed@483 844 }
dcubed@483 845
dcubed@483 846 if (mark()->should_not_be_cached()) {
dcubed@483 847 // It is either not safe or not a good idea to cache this
dcubed@483 848 // method at this time because of the state of the embedded
dcubed@483 849 // markOop. See markOop.cpp for the gory details.
dcubed@483 850 return true;
dcubed@483 851 }
dcubed@483 852
dcubed@483 853 // caching this method should be just fine
dcubed@483 854 return false;
dcubed@483 855 }
dcubed@483 856
jrose@1145 857 // Constant pool structure for invoke methods:
jrose@1145 858 enum {
twisti@3969 859 _imcp_invoke_name = 1, // utf8: 'invokeExact', etc.
coleenp@2497 860 _imcp_invoke_signature, // utf8: (variable Symbol*)
jrose@1145 861 _imcp_limit
jrose@1145 862 };
jrose@1145 863
twisti@3969 864 // Test if this method is an MH adapter frame generated by Java code.
twisti@3969 865 // Cf. java/lang/invoke/InvokerBytecodeGenerator
twisti@3969 866 bool methodOopDesc::is_compiled_lambda_form() const {
twisti@3969 867 return intrinsic_id() == vmIntrinsics::_compiledLambdaForm;
jrose@1145 868 }
jrose@1145 869
twisti@3969 870 // Test if this method is an internal MH primitive method.
twisti@3969 871 bool methodOopDesc::is_method_handle_intrinsic() const {
twisti@3969 872 vmIntrinsics::ID iid = intrinsic_id();
twisti@3969 873 return (MethodHandles::is_signature_polymorphic(iid) &&
twisti@3969 874 MethodHandles::is_signature_polymorphic_intrinsic(iid));
jrose@1145 875 }
jrose@1145 876
twisti@3969 877 bool methodOopDesc::has_member_arg() const {
twisti@3969 878 vmIntrinsics::ID iid = intrinsic_id();
twisti@3969 879 return (MethodHandles::is_signature_polymorphic(iid) &&
twisti@3969 880 MethodHandles::has_member_arg(iid));
twisti@1587 881 }
twisti@1587 882
twisti@3969 883 // Make an instance of a signature-polymorphic internal MH primitive.
twisti@3969 884 methodHandle methodOopDesc::make_method_handle_intrinsic(vmIntrinsics::ID iid,
twisti@3969 885 Symbol* signature,
twisti@3969 886 TRAPS) {
never@3091 887 ResourceMark rm;
jrose@1145 888 methodHandle empty;
jrose@1145 889
twisti@3969 890 KlassHandle holder = SystemDictionary::MethodHandle_klass();
twisti@3969 891 Symbol* name = MethodHandles::signature_polymorphic_intrinsic_name(iid);
twisti@3969 892 assert(iid == MethodHandles::signature_polymorphic_name_id(name), "");
jrose@1145 893 if (TraceMethodHandles) {
twisti@3969 894 tty->print_cr("make_method_handle_intrinsic MH.%s%s", name->as_C_string(), signature->as_C_string());
jrose@1145 895 }
jrose@1145 896
jrose@2760 897 // invariant: cp->symbol_at_put is preceded by a refcount increment (more usually a lookup)
jrose@2760 898 name->increment_refcount();
jrose@2760 899 signature->increment_refcount();
jrose@2760 900
twisti@3969 901 int cp_length = _imcp_limit;
jrose@1145 902 constantPoolHandle cp;
jrose@1145 903 {
jrose@2982 904 constantPoolOop cp_oop = oopFactory::new_constantPool(cp_length, IsSafeConc, CHECK_(empty));
jrose@1145 905 cp = constantPoolHandle(THREAD, cp_oop);
jrose@1145 906 }
coleenp@2497 907 cp->symbol_at_put(_imcp_invoke_name, name);
coleenp@2497 908 cp->symbol_at_put(_imcp_invoke_signature, signature);
jrose@2982 909 cp->set_preresolution();
jrose@1145 910 cp->set_pool_holder(holder());
jrose@1145 911
twisti@3969 912 // decide on access bits: public or not?
twisti@3969 913 int flags_bits = (JVM_ACC_NATIVE | JVM_ACC_SYNTHETIC | JVM_ACC_FINAL);
twisti@3969 914 bool must_be_static = MethodHandles::is_signature_polymorphic_static(iid);
twisti@3969 915 if (must_be_static) flags_bits |= JVM_ACC_STATIC;
twisti@3969 916 assert((flags_bits & JVM_ACC_PUBLIC) == 0, "do not expose these methods");
twisti@3969 917
jrose@1145 918 methodHandle m;
jrose@1145 919 {
jrose@1145 920 methodOop m_oop = oopFactory::new_method(0, accessFlags_from(flags_bits),
jiangli@3917 921 0, 0, 0, 0, IsSafeConc, CHECK_(empty));
jrose@1145 922 m = methodHandle(THREAD, m_oop);
jrose@1145 923 }
jrose@1145 924 m->set_constants(cp());
jrose@1145 925 m->set_name_index(_imcp_invoke_name);
jrose@1145 926 m->set_signature_index(_imcp_invoke_signature);
twisti@3969 927 assert(MethodHandles::is_signature_polymorphic_name(m->name()), "");
coleenp@2497 928 assert(m->signature() == signature, "");
jrose@1145 929 #ifdef CC_INTERP
twisti@2563 930 ResultTypeFinder rtf(signature);
jrose@1145 931 m->set_result_index(rtf.type());
jrose@1145 932 #endif
jrose@1145 933 m->compute_size_of_parameters(THREAD);
jrose@2148 934 m->init_intrinsic_id();
twisti@3969 935 assert(m->is_method_handle_intrinsic(), "");
twisti@3969 936 #ifdef ASSERT
twisti@3969 937 if (!MethodHandles::is_signature_polymorphic(m->intrinsic_id())) m->print();
twisti@3969 938 assert(MethodHandles::is_signature_polymorphic(m->intrinsic_id()), "must be an invoker");
twisti@3969 939 assert(m->intrinsic_id() == iid, "correctly predicted iid");
twisti@3969 940 #endif //ASSERT
jrose@1145 941
jrose@1145 942 // Finally, set up its entry points.
jrose@1145 943 assert(m->can_be_statically_bound(), "");
jrose@1145 944 m->set_vtable_index(methodOopDesc::nonvirtual_vtable_index);
jrose@1145 945 m->link_method(m, CHECK_(empty));
jrose@1145 946
jrose@1474 947 if (TraceMethodHandles && (Verbose || WizardMode))
jrose@1145 948 m->print_on(tty);
jrose@1145 949
jrose@1145 950 return m;
jrose@1145 951 }
jrose@1145 952
jrose@2982 953 klassOop methodOopDesc::check_non_bcp_klass(klassOop klass) {
jrose@2982 954 if (klass != NULL && Klass::cast(klass)->class_loader() != NULL) {
jrose@2982 955 if (Klass::cast(klass)->oop_is_objArray())
jrose@2982 956 klass = objArrayKlass::cast(klass)->bottom_klass();
jrose@2982 957 return klass;
jrose@2982 958 }
jrose@2982 959 return NULL;
jrose@2982 960 }
jrose@1145 961
dcubed@483 962
twisti@3969 963 methodHandle methodOopDesc::clone_with_new_data(methodHandle m, u_char* new_code, int new_code_length,
duke@435 964 u_char* new_compressed_linenumber_table, int new_compressed_linenumber_size, TRAPS) {
duke@435 965 // Code below does not work for native methods - they should never get rewritten anyway
duke@435 966 assert(!m->is_native(), "cannot rewrite native methods");
duke@435 967 // Allocate new methodOop
duke@435 968 AccessFlags flags = m->access_flags();
duke@435 969 int checked_exceptions_len = m->checked_exceptions_length();
duke@435 970 int localvariable_len = m->localvariable_table_length();
jiangli@3917 971 int exception_table_len = m->exception_table_length();
jmasa@953 972 // Allocate newm_oop with the is_conc_safe parameter set
jmasa@953 973 // to IsUnsafeConc to indicate that newm_oop is not yet
jmasa@953 974 // safe for concurrent processing by a GC.
jmasa@953 975 methodOop newm_oop = oopFactory::new_method(new_code_length,
jmasa@953 976 flags,
jmasa@953 977 new_compressed_linenumber_size,
jmasa@953 978 localvariable_len,
jiangli@3917 979 exception_table_len,
jmasa@953 980 checked_exceptions_len,
jmasa@953 981 IsUnsafeConc,
jmasa@953 982 CHECK_(methodHandle()));
duke@435 983 methodHandle newm (THREAD, newm_oop);
ysr@2533 984 NOT_PRODUCT(int nmsz = newm->is_parsable() ? newm->size() : -1;)
duke@435 985 int new_method_size = newm->method_size();
duke@435 986 // Create a shallow copy of methodOopDesc part, but be careful to preserve the new constMethodOop
duke@435 987 constMethodOop newcm = newm->constMethod();
ysr@2533 988 NOT_PRODUCT(int ncmsz = newcm->is_parsable() ? newcm->size() : -1;)
duke@435 989 int new_const_method_size = newm->constMethod()->object_size();
jmasa@953 990
duke@435 991 memcpy(newm(), m(), sizeof(methodOopDesc));
duke@435 992 // Create shallow copy of constMethodOopDesc, but be careful to preserve the methodOop
jmasa@953 993 // is_conc_safe is set to false because that is the value of
jmasa@953 994 // is_conc_safe initialzied into newcm and the copy should
jmasa@953 995 // not overwrite that value. During the window during which it is
jmasa@953 996 // tagged as unsafe, some extra work could be needed during precleaning
jmasa@953 997 // or concurrent marking but those phases will be correct. Setting and
jmasa@953 998 // resetting is done in preference to a careful copying into newcm to
jmasa@953 999 // avoid having to know the precise layout of a constMethodOop.
ysr@2533 1000 m->constMethod()->set_is_conc_safe(oopDesc::IsUnsafeConc);
ysr@2533 1001 assert(m->constMethod()->is_parsable(), "Should remain parsable");
ysr@2533 1002
ysr@2533 1003 // NOTE: this is a reachable object that transiently signals "conc_unsafe"
ysr@2533 1004 // However, no allocations are done during this window
ysr@2533 1005 // during which it is tagged conc_unsafe, so we are assured that any concurrent
ysr@2533 1006 // thread will not wait forever for the object to revert to "conc_safe".
ysr@2533 1007 // Further, any such conc_unsafe object will indicate a stable size
ysr@2533 1008 // through the transition.
duke@435 1009 memcpy(newcm, m->constMethod(), sizeof(constMethodOopDesc));
ysr@2533 1010 m->constMethod()->set_is_conc_safe(oopDesc::IsSafeConc);
ysr@2533 1011 assert(m->constMethod()->is_parsable(), "Should remain parsable");
ysr@2533 1012
duke@435 1013 // Reset correct method/const method, method size, and parameter info
duke@435 1014 newm->set_constMethod(newcm);
duke@435 1015 newm->constMethod()->set_code_size(new_code_length);
duke@435 1016 newm->constMethod()->set_constMethod_size(new_const_method_size);
duke@435 1017 newm->set_method_size(new_method_size);
duke@435 1018 assert(newm->code_size() == new_code_length, "check");
duke@435 1019 assert(newm->checked_exceptions_length() == checked_exceptions_len, "check");
jiangli@3920 1020 assert(newm->exception_table_length() == exception_table_len, "check");
duke@435 1021 assert(newm->localvariable_table_length() == localvariable_len, "check");
duke@435 1022 // Copy new byte codes
duke@435 1023 memcpy(newm->code_base(), new_code, new_code_length);
duke@435 1024 // Copy line number table
duke@435 1025 if (new_compressed_linenumber_size > 0) {
duke@435 1026 memcpy(newm->compressed_linenumber_table(),
duke@435 1027 new_compressed_linenumber_table,
duke@435 1028 new_compressed_linenumber_size);
duke@435 1029 }
duke@435 1030 // Copy checked_exceptions
duke@435 1031 if (checked_exceptions_len > 0) {
duke@435 1032 memcpy(newm->checked_exceptions_start(),
duke@435 1033 m->checked_exceptions_start(),
duke@435 1034 checked_exceptions_len * sizeof(CheckedExceptionElement));
duke@435 1035 }
jiangli@3920 1036 // Copy exception table
jiangli@3920 1037 if (exception_table_len > 0) {
jiangli@3920 1038 memcpy(newm->exception_table_start(),
jiangli@3920 1039 m->exception_table_start(),
jiangli@3920 1040 exception_table_len * sizeof(ExceptionTableElement));
jiangli@3920 1041 }
duke@435 1042 // Copy local variable number table
duke@435 1043 if (localvariable_len > 0) {
duke@435 1044 memcpy(newm->localvariable_table_start(),
duke@435 1045 m->localvariable_table_start(),
duke@435 1046 localvariable_len * sizeof(LocalVariableTableElement));
duke@435 1047 }
jmasa@953 1048
jmasa@953 1049 // Only set is_conc_safe to true when changes to newcm are
jmasa@953 1050 // complete.
ysr@2533 1051 assert(!newm->is_parsable() || nmsz < 0 || newm->size() == nmsz, "newm->size() inconsistency");
ysr@2533 1052 assert(!newcm->is_parsable() || ncmsz < 0 || newcm->size() == ncmsz, "newcm->size() inconsistency");
jmasa@953 1053 newcm->set_is_conc_safe(true);
duke@435 1054 return newm;
duke@435 1055 }
duke@435 1056
jrose@1291 1057 vmSymbols::SID methodOopDesc::klass_id_for_intrinsics(klassOop holder) {
duke@435 1058 // if loader is not the default loader (i.e., != NULL), we can't know the intrinsics
duke@435 1059 // because we are not loading from core libraries
jrose@1291 1060 if (instanceKlass::cast(holder)->class_loader() != NULL)
jrose@1291 1061 return vmSymbols::NO_SID; // regardless of name, no intrinsics here
duke@435 1062
duke@435 1063 // see if the klass name is well-known:
coleenp@2497 1064 Symbol* klass_name = instanceKlass::cast(holder)->name();
jrose@1291 1065 return vmSymbols::find_sid(klass_name);
jrose@1291 1066 }
jrose@1291 1067
jrose@1291 1068 void methodOopDesc::init_intrinsic_id() {
jrose@1291 1069 assert(_intrinsic_id == vmIntrinsics::_none, "do this just once");
jrose@1291 1070 const uintptr_t max_id_uint = right_n_bits((int)(sizeof(_intrinsic_id) * BitsPerByte));
jrose@1291 1071 assert((uintptr_t)vmIntrinsics::ID_LIMIT <= max_id_uint, "else fix size");
jrose@2148 1072 assert(intrinsic_id_size_in_bytes() == sizeof(_intrinsic_id), "");
jrose@1291 1073
jrose@1291 1074 // the klass name is well-known:
jrose@1291 1075 vmSymbols::SID klass_id = klass_id_for_intrinsics(method_holder());
jrose@1291 1076 assert(klass_id != vmSymbols::NO_SID, "caller responsibility");
duke@435 1077
duke@435 1078 // ditto for method and signature:
duke@435 1079 vmSymbols::SID name_id = vmSymbols::find_sid(name());
twisti@3969 1080 if (klass_id != vmSymbols::VM_SYMBOL_ENUM_NAME(java_lang_invoke_MethodHandle)
twisti@3969 1081 && name_id == vmSymbols::NO_SID)
twisti@3969 1082 return;
duke@435 1083 vmSymbols::SID sig_id = vmSymbols::find_sid(signature());
jrose@2639 1084 if (klass_id != vmSymbols::VM_SYMBOL_ENUM_NAME(java_lang_invoke_MethodHandle)
jrose@2148 1085 && sig_id == vmSymbols::NO_SID) return;
duke@435 1086 jshort flags = access_flags().as_short();
duke@435 1087
jrose@1291 1088 vmIntrinsics::ID id = vmIntrinsics::find_id(klass_id, name_id, sig_id, flags);
jrose@1291 1089 if (id != vmIntrinsics::_none) {
jrose@1291 1090 set_intrinsic_id(id);
jrose@1291 1091 return;
jrose@1291 1092 }
jrose@1291 1093
duke@435 1094 // A few slightly irregular cases:
duke@435 1095 switch (klass_id) {
duke@435 1096 case vmSymbols::VM_SYMBOL_ENUM_NAME(java_lang_StrictMath):
duke@435 1097 // Second chance: check in regular Math.
duke@435 1098 switch (name_id) {
duke@435 1099 case vmSymbols::VM_SYMBOL_ENUM_NAME(min_name):
duke@435 1100 case vmSymbols::VM_SYMBOL_ENUM_NAME(max_name):
duke@435 1101 case vmSymbols::VM_SYMBOL_ENUM_NAME(sqrt_name):
duke@435 1102 // pretend it is the corresponding method in the non-strict class:
duke@435 1103 klass_id = vmSymbols::VM_SYMBOL_ENUM_NAME(java_lang_Math);
jrose@1291 1104 id = vmIntrinsics::find_id(klass_id, name_id, sig_id, flags);
duke@435 1105 break;
duke@435 1106 }
jrose@1862 1107 break;
jrose@1862 1108
jrose@1862 1109 // Signature-polymorphic methods: MethodHandle.invoke*, InvokeDynamic.*.
jrose@2639 1110 case vmSymbols::VM_SYMBOL_ENUM_NAME(java_lang_invoke_MethodHandle):
twisti@3969 1111 if (!is_native()) break;
twisti@3969 1112 id = MethodHandles::signature_polymorphic_name_id(method_holder(), name());
twisti@3969 1113 if (is_static() != MethodHandles::is_signature_polymorphic_static(id))
twisti@3969 1114 id = vmIntrinsics::_none;
jrose@1862 1115 break;
duke@435 1116 }
duke@435 1117
jrose@1291 1118 if (id != vmIntrinsics::_none) {
jrose@1291 1119 // Set up its iid. It is an alias method.
jrose@1291 1120 set_intrinsic_id(id);
jrose@1291 1121 return;
jrose@1291 1122 }
duke@435 1123 }
duke@435 1124
duke@435 1125 // These two methods are static since a GC may move the methodOopDesc
duke@435 1126 bool methodOopDesc::load_signature_classes(methodHandle m, TRAPS) {
twisti@3969 1127 if (THREAD->is_Compiler_thread()) {
twisti@3969 1128 // There is nothing useful this routine can do from within the Compile thread.
twisti@3969 1129 // Hopefully, the signature contains only well-known classes.
twisti@3969 1130 // We could scan for this and return true/false, but the caller won't care.
twisti@3969 1131 return false;
twisti@3969 1132 }
duke@435 1133 bool sig_is_loaded = true;
duke@435 1134 Handle class_loader(THREAD, instanceKlass::cast(m->method_holder())->class_loader());
duke@435 1135 Handle protection_domain(THREAD, Klass::cast(m->method_holder())->protection_domain());
coleenp@2497 1136 ResourceMark rm(THREAD);
coleenp@2497 1137 Symbol* signature = m->signature();
duke@435 1138 for(SignatureStream ss(signature); !ss.is_done(); ss.next()) {
duke@435 1139 if (ss.is_object()) {
coleenp@2497 1140 Symbol* sym = ss.as_symbol(CHECK_(false));
coleenp@2497 1141 Symbol* name = sym;
duke@435 1142 klassOop klass = SystemDictionary::resolve_or_null(name, class_loader,
duke@435 1143 protection_domain, THREAD);
rasbold@539 1144 // We are loading classes eagerly. If a ClassNotFoundException or
rasbold@539 1145 // a LinkageError was generated, be sure to ignore it.
duke@435 1146 if (HAS_PENDING_EXCEPTION) {
never@1577 1147 if (PENDING_EXCEPTION->is_a(SystemDictionary::ClassNotFoundException_klass()) ||
never@1577 1148 PENDING_EXCEPTION->is_a(SystemDictionary::LinkageError_klass())) {
duke@435 1149 CLEAR_PENDING_EXCEPTION;
duke@435 1150 } else {
duke@435 1151 return false;
duke@435 1152 }
duke@435 1153 }
duke@435 1154 if( klass == NULL) { sig_is_loaded = false; }
duke@435 1155 }
duke@435 1156 }
duke@435 1157 return sig_is_loaded;
duke@435 1158 }
duke@435 1159
duke@435 1160 bool methodOopDesc::has_unloaded_classes_in_signature(methodHandle m, TRAPS) {
duke@435 1161 Handle class_loader(THREAD, instanceKlass::cast(m->method_holder())->class_loader());
duke@435 1162 Handle protection_domain(THREAD, Klass::cast(m->method_holder())->protection_domain());
coleenp@2497 1163 ResourceMark rm(THREAD);
coleenp@2497 1164 Symbol* signature = m->signature();
duke@435 1165 for(SignatureStream ss(signature); !ss.is_done(); ss.next()) {
duke@435 1166 if (ss.type() == T_OBJECT) {
coleenp@2497 1167 Symbol* name = ss.as_symbol_or_null();
coleenp@2497 1168 if (name == NULL) return true;
duke@435 1169 klassOop klass = SystemDictionary::find(name, class_loader, protection_domain, THREAD);
duke@435 1170 if (klass == NULL) return true;
duke@435 1171 }
duke@435 1172 }
duke@435 1173 return false;
duke@435 1174 }
duke@435 1175
duke@435 1176 // Exposed so field engineers can debug VM
duke@435 1177 void methodOopDesc::print_short_name(outputStream* st) {
duke@435 1178 ResourceMark rm;
duke@435 1179 #ifdef PRODUCT
duke@435 1180 st->print(" %s::", method_holder()->klass_part()->external_name());
duke@435 1181 #else
duke@435 1182 st->print(" %s::", method_holder()->klass_part()->internal_name());
duke@435 1183 #endif
duke@435 1184 name()->print_symbol_on(st);
duke@435 1185 if (WizardMode) signature()->print_symbol_on(st);
twisti@3969 1186 else if (MethodHandles::is_signature_polymorphic(intrinsic_id()))
twisti@3969 1187 MethodHandles::print_as_basic_type_signature_on(st, signature(), true);
duke@435 1188 }
duke@435 1189
duke@435 1190 // This is only done during class loading, so it is OK to assume method_idnum matches the methods() array
duke@435 1191 static void reorder_based_on_method_index(objArrayOop methods,
duke@435 1192 objArrayOop annotations,
coleenp@548 1193 GrowableArray<oop>* temp_array) {
duke@435 1194 if (annotations == NULL) {
duke@435 1195 return;
duke@435 1196 }
duke@435 1197
duke@435 1198 int length = methods->length();
duke@435 1199 int i;
duke@435 1200 // Copy to temp array
coleenp@548 1201 temp_array->clear();
coleenp@548 1202 for (i = 0; i < length; i++) {
coleenp@548 1203 temp_array->append(annotations->obj_at(i));
coleenp@548 1204 }
duke@435 1205
duke@435 1206 // Copy back using old method indices
duke@435 1207 for (i = 0; i < length; i++) {
duke@435 1208 methodOop m = (methodOop) methods->obj_at(i);
coleenp@548 1209 annotations->obj_at_put(i, temp_array->at(m->method_idnum()));
duke@435 1210 }
duke@435 1211 }
duke@435 1212
brutisso@2976 1213 // Comparer for sorting an object array containing
brutisso@2976 1214 // methodOops.
kvn@3128 1215 // Used non-template method_comparator methods since
kvn@3128 1216 // Visual Studio 2003 compiler generates incorrect
kvn@3128 1217 // optimized code for it.
kvn@3128 1218 static int method_comparator_narrowOop(narrowOop a, narrowOop b) {
brutisso@2976 1219 methodOop m = (methodOop)oopDesc::decode_heap_oop_not_null(a);
brutisso@2976 1220 methodOop n = (methodOop)oopDesc::decode_heap_oop_not_null(b);
brutisso@2976 1221 return m->name()->fast_compare(n->name());
brutisso@2976 1222 }
kvn@3128 1223 static int method_comparator_oop(oop a, oop b) {
kvn@3128 1224 methodOop m = (methodOop)a;
kvn@3128 1225 methodOop n = (methodOop)b;
kvn@3128 1226 return m->name()->fast_compare(n->name());
kvn@3128 1227 }
duke@435 1228
duke@435 1229 // This is only done during class loading, so it is OK to assume method_idnum matches the methods() array
duke@435 1230 void methodOopDesc::sort_methods(objArrayOop methods,
duke@435 1231 objArrayOop methods_annotations,
duke@435 1232 objArrayOop methods_parameter_annotations,
duke@435 1233 objArrayOop methods_default_annotations,
duke@435 1234 bool idempotent) {
duke@435 1235 int length = methods->length();
duke@435 1236 if (length > 1) {
duke@435 1237 bool do_annotations = false;
duke@435 1238 if (methods_annotations != NULL ||
duke@435 1239 methods_parameter_annotations != NULL ||
duke@435 1240 methods_default_annotations != NULL) {
duke@435 1241 do_annotations = true;
duke@435 1242 }
duke@435 1243 if (do_annotations) {
duke@435 1244 // Remember current method ordering so we can reorder annotations
duke@435 1245 for (int i = 0; i < length; i++) {
duke@435 1246 methodOop m = (methodOop) methods->obj_at(i);
duke@435 1247 m->set_method_idnum(i);
duke@435 1248 }
duke@435 1249 }
brutisso@2976 1250 {
brutisso@2976 1251 No_Safepoint_Verifier nsv;
brutisso@2976 1252 if (UseCompressedOops) {
kvn@3128 1253 QuickSort::sort<narrowOop>((narrowOop*)(methods->base()), length, method_comparator_narrowOop, idempotent);
brutisso@2976 1254 } else {
kvn@3128 1255 QuickSort::sort<oop>((oop*)(methods->base()), length, method_comparator_oop, idempotent);
duke@435 1256 }
brutisso@2976 1257 if (UseConcMarkSweepGC) {
brutisso@2976 1258 // For CMS we need to dirty the cards for the array
brutisso@2976 1259 BarrierSet* bs = Universe::heap()->barrier_set();
brutisso@2976 1260 assert(bs->has_write_ref_array_opt(), "Barrier set must have ref array opt");
brutisso@2976 1261 bs->write_ref_array(methods->base(), length);
brutisso@2976 1262 }
duke@435 1263 }
duke@435 1264
duke@435 1265 // Sort annotations if necessary
duke@435 1266 assert(methods_annotations == NULL || methods_annotations->length() == methods->length(), "");
duke@435 1267 assert(methods_parameter_annotations == NULL || methods_parameter_annotations->length() == methods->length(), "");
duke@435 1268 assert(methods_default_annotations == NULL || methods_default_annotations->length() == methods->length(), "");
duke@435 1269 if (do_annotations) {
coleenp@548 1270 ResourceMark rm;
duke@435 1271 // Allocate temporary storage
coleenp@548 1272 GrowableArray<oop>* temp_array = new GrowableArray<oop>(length);
duke@435 1273 reorder_based_on_method_index(methods, methods_annotations, temp_array);
duke@435 1274 reorder_based_on_method_index(methods, methods_parameter_annotations, temp_array);
duke@435 1275 reorder_based_on_method_index(methods, methods_default_annotations, temp_array);
duke@435 1276 }
duke@435 1277
duke@435 1278 // Reset method ordering
duke@435 1279 for (int i = 0; i < length; i++) {
duke@435 1280 methodOop m = (methodOop) methods->obj_at(i);
duke@435 1281 m->set_method_idnum(i);
duke@435 1282 }
duke@435 1283 }
duke@435 1284 }
duke@435 1285
duke@435 1286
duke@435 1287 //-----------------------------------------------------------------------------------
duke@435 1288 // Non-product code
duke@435 1289
duke@435 1290 #ifndef PRODUCT
duke@435 1291 class SignatureTypePrinter : public SignatureTypeNames {
duke@435 1292 private:
duke@435 1293 outputStream* _st;
duke@435 1294 bool _use_separator;
duke@435 1295
duke@435 1296 void type_name(const char* name) {
duke@435 1297 if (_use_separator) _st->print(", ");
duke@435 1298 _st->print(name);
duke@435 1299 _use_separator = true;
duke@435 1300 }
duke@435 1301
duke@435 1302 public:
coleenp@2497 1303 SignatureTypePrinter(Symbol* signature, outputStream* st) : SignatureTypeNames(signature) {
duke@435 1304 _st = st;
duke@435 1305 _use_separator = false;
duke@435 1306 }
duke@435 1307
duke@435 1308 void print_parameters() { _use_separator = false; iterate_parameters(); }
duke@435 1309 void print_returntype() { _use_separator = false; iterate_returntype(); }
duke@435 1310 };
duke@435 1311
duke@435 1312
duke@435 1313 void methodOopDesc::print_name(outputStream* st) {
duke@435 1314 Thread *thread = Thread::current();
duke@435 1315 ResourceMark rm(thread);
duke@435 1316 SignatureTypePrinter sig(signature(), st);
duke@435 1317 st->print("%s ", is_static() ? "static" : "virtual");
duke@435 1318 sig.print_returntype();
duke@435 1319 st->print(" %s.", method_holder()->klass_part()->internal_name());
duke@435 1320 name()->print_symbol_on(st);
duke@435 1321 st->print("(");
duke@435 1322 sig.print_parameters();
duke@435 1323 st->print(")");
duke@435 1324 }
duke@435 1325
duke@435 1326
duke@435 1327 void methodOopDesc::print_codes_on(outputStream* st) const {
duke@435 1328 print_codes_on(0, code_size(), st);
duke@435 1329 }
duke@435 1330
duke@435 1331 void methodOopDesc::print_codes_on(int from, int to, outputStream* st) const {
duke@435 1332 Thread *thread = Thread::current();
duke@435 1333 ResourceMark rm(thread);
duke@435 1334 methodHandle mh (thread, (methodOop)this);
duke@435 1335 BytecodeStream s(mh);
duke@435 1336 s.set_interval(from, to);
duke@435 1337 BytecodeTracer::set_closure(BytecodeTracer::std_closure());
duke@435 1338 while (s.next() >= 0) BytecodeTracer::trace(mh, s.bcp(), st);
duke@435 1339 }
duke@435 1340 #endif // not PRODUCT
duke@435 1341
duke@435 1342
duke@435 1343 // Simple compression of line number tables. We use a regular compressed stream, except that we compress deltas
duke@435 1344 // between (bci,line) pairs since they are smaller. If (bci delta, line delta) fits in (5-bit unsigned, 3-bit unsigned)
duke@435 1345 // we save it as one byte, otherwise we write a 0xFF escape character and use regular compression. 0x0 is used
duke@435 1346 // as end-of-stream terminator.
duke@435 1347
duke@435 1348 void CompressedLineNumberWriteStream::write_pair_regular(int bci_delta, int line_delta) {
duke@435 1349 // bci and line number does not compress into single byte.
duke@435 1350 // Write out escape character and use regular compression for bci and line number.
duke@435 1351 write_byte((jubyte)0xFF);
duke@435 1352 write_signed_int(bci_delta);
duke@435 1353 write_signed_int(line_delta);
duke@435 1354 }
duke@435 1355
duke@435 1356 // See comment in methodOop.hpp which explains why this exists.
sla@2540 1357 #if defined(_M_AMD64) && _MSC_VER >= 1400
duke@435 1358 #pragma optimize("", off)
duke@435 1359 void CompressedLineNumberWriteStream::write_pair(int bci, int line) {
duke@435 1360 write_pair_inline(bci, line);
duke@435 1361 }
duke@435 1362 #pragma optimize("", on)
duke@435 1363 #endif
duke@435 1364
duke@435 1365 CompressedLineNumberReadStream::CompressedLineNumberReadStream(u_char* buffer) : CompressedReadStream(buffer) {
duke@435 1366 _bci = 0;
duke@435 1367 _line = 0;
duke@435 1368 };
duke@435 1369
duke@435 1370
duke@435 1371 bool CompressedLineNumberReadStream::read_pair() {
duke@435 1372 jubyte next = read_byte();
duke@435 1373 // Check for terminator
duke@435 1374 if (next == 0) return false;
duke@435 1375 if (next == 0xFF) {
duke@435 1376 // Escape character, regular compression used
duke@435 1377 _bci += read_signed_int();
duke@435 1378 _line += read_signed_int();
duke@435 1379 } else {
duke@435 1380 // Single byte compression used
duke@435 1381 _bci += next >> 3;
duke@435 1382 _line += next & 0x7;
duke@435 1383 }
duke@435 1384 return true;
duke@435 1385 }
duke@435 1386
duke@435 1387
never@2462 1388 Bytecodes::Code methodOopDesc::orig_bytecode_at(int bci) const {
duke@435 1389 BreakpointInfo* bp = instanceKlass::cast(method_holder())->breakpoints();
duke@435 1390 for (; bp != NULL; bp = bp->next()) {
duke@435 1391 if (bp->match(this, bci)) {
duke@435 1392 return bp->orig_bytecode();
duke@435 1393 }
duke@435 1394 }
duke@435 1395 ShouldNotReachHere();
duke@435 1396 return Bytecodes::_shouldnotreachhere;
duke@435 1397 }
duke@435 1398
duke@435 1399 void methodOopDesc::set_orig_bytecode_at(int bci, Bytecodes::Code code) {
duke@435 1400 assert(code != Bytecodes::_breakpoint, "cannot patch breakpoints this way");
duke@435 1401 BreakpointInfo* bp = instanceKlass::cast(method_holder())->breakpoints();
duke@435 1402 for (; bp != NULL; bp = bp->next()) {
duke@435 1403 if (bp->match(this, bci)) {
duke@435 1404 bp->set_orig_bytecode(code);
duke@435 1405 // and continue, in case there is more than one
duke@435 1406 }
duke@435 1407 }
duke@435 1408 }
duke@435 1409
duke@435 1410 void methodOopDesc::set_breakpoint(int bci) {
duke@435 1411 instanceKlass* ik = instanceKlass::cast(method_holder());
duke@435 1412 BreakpointInfo *bp = new BreakpointInfo(this, bci);
duke@435 1413 bp->set_next(ik->breakpoints());
duke@435 1414 ik->set_breakpoints(bp);
duke@435 1415 // do this last:
duke@435 1416 bp->set(this);
duke@435 1417 }
duke@435 1418
duke@435 1419 static void clear_matches(methodOop m, int bci) {
duke@435 1420 instanceKlass* ik = instanceKlass::cast(m->method_holder());
duke@435 1421 BreakpointInfo* prev_bp = NULL;
duke@435 1422 BreakpointInfo* next_bp;
duke@435 1423 for (BreakpointInfo* bp = ik->breakpoints(); bp != NULL; bp = next_bp) {
duke@435 1424 next_bp = bp->next();
duke@435 1425 // bci value of -1 is used to delete all breakpoints in method m (ex: clear_all_breakpoint).
duke@435 1426 if (bci >= 0 ? bp->match(m, bci) : bp->match(m)) {
duke@435 1427 // do this first:
duke@435 1428 bp->clear(m);
duke@435 1429 // unhook it
duke@435 1430 if (prev_bp != NULL)
duke@435 1431 prev_bp->set_next(next_bp);
duke@435 1432 else
duke@435 1433 ik->set_breakpoints(next_bp);
duke@435 1434 delete bp;
duke@435 1435 // When class is redefined JVMTI sets breakpoint in all versions of EMCP methods
duke@435 1436 // at same location. So we have multiple matching (method_index and bci)
duke@435 1437 // BreakpointInfo nodes in BreakpointInfo list. We should just delete one
duke@435 1438 // breakpoint for clear_breakpoint request and keep all other method versions
duke@435 1439 // BreakpointInfo for future clear_breakpoint request.
duke@435 1440 // bcivalue of -1 is used to clear all breakpoints (see clear_all_breakpoints)
duke@435 1441 // which is being called when class is unloaded. We delete all the Breakpoint
duke@435 1442 // information for all versions of method. We may not correctly restore the original
duke@435 1443 // bytecode in all method versions, but that is ok. Because the class is being unloaded
duke@435 1444 // so these methods won't be used anymore.
duke@435 1445 if (bci >= 0) {
duke@435 1446 break;
duke@435 1447 }
duke@435 1448 } else {
duke@435 1449 // This one is a keeper.
duke@435 1450 prev_bp = bp;
duke@435 1451 }
duke@435 1452 }
duke@435 1453 }
duke@435 1454
duke@435 1455 void methodOopDesc::clear_breakpoint(int bci) {
duke@435 1456 assert(bci >= 0, "");
duke@435 1457 clear_matches(this, bci);
duke@435 1458 }
duke@435 1459
duke@435 1460 void methodOopDesc::clear_all_breakpoints() {
duke@435 1461 clear_matches(this, -1);
duke@435 1462 }
duke@435 1463
duke@435 1464
iveresov@2138 1465 int methodOopDesc::invocation_count() {
iveresov@2138 1466 if (TieredCompilation) {
iveresov@2138 1467 const methodDataOop mdo = method_data();
iveresov@2138 1468 if (invocation_counter()->carry() || ((mdo != NULL) ? mdo->invocation_counter()->carry() : false)) {
iveresov@2138 1469 return InvocationCounter::count_limit;
iveresov@2138 1470 } else {
iveresov@2138 1471 return invocation_counter()->count() + ((mdo != NULL) ? mdo->invocation_counter()->count() : 0);
iveresov@2138 1472 }
iveresov@2138 1473 } else {
iveresov@2138 1474 return invocation_counter()->count();
iveresov@2138 1475 }
iveresov@2138 1476 }
iveresov@2138 1477
iveresov@2138 1478 int methodOopDesc::backedge_count() {
iveresov@2138 1479 if (TieredCompilation) {
iveresov@2138 1480 const methodDataOop mdo = method_data();
iveresov@2138 1481 if (backedge_counter()->carry() || ((mdo != NULL) ? mdo->backedge_counter()->carry() : false)) {
iveresov@2138 1482 return InvocationCounter::count_limit;
iveresov@2138 1483 } else {
iveresov@2138 1484 return backedge_counter()->count() + ((mdo != NULL) ? mdo->backedge_counter()->count() : 0);
iveresov@2138 1485 }
iveresov@2138 1486 } else {
iveresov@2138 1487 return backedge_counter()->count();
iveresov@2138 1488 }
iveresov@2138 1489 }
iveresov@2138 1490
iveresov@2138 1491 int methodOopDesc::highest_comp_level() const {
iveresov@2138 1492 methodDataOop mdo = method_data();
iveresov@2138 1493 if (mdo != NULL) {
iveresov@2138 1494 return mdo->highest_comp_level();
iveresov@2138 1495 } else {
iveresov@2138 1496 return CompLevel_none;
iveresov@2138 1497 }
iveresov@2138 1498 }
iveresov@2138 1499
iveresov@2138 1500 int methodOopDesc::highest_osr_comp_level() const {
iveresov@2138 1501 methodDataOop mdo = method_data();
iveresov@2138 1502 if (mdo != NULL) {
iveresov@2138 1503 return mdo->highest_osr_comp_level();
iveresov@2138 1504 } else {
iveresov@2138 1505 return CompLevel_none;
iveresov@2138 1506 }
iveresov@2138 1507 }
iveresov@2138 1508
iveresov@2138 1509 void methodOopDesc::set_highest_comp_level(int level) {
iveresov@2138 1510 methodDataOop mdo = method_data();
iveresov@2138 1511 if (mdo != NULL) {
iveresov@2138 1512 mdo->set_highest_comp_level(level);
iveresov@2138 1513 }
iveresov@2138 1514 }
iveresov@2138 1515
iveresov@2138 1516 void methodOopDesc::set_highest_osr_comp_level(int level) {
iveresov@2138 1517 methodDataOop mdo = method_data();
iveresov@2138 1518 if (mdo != NULL) {
iveresov@2138 1519 mdo->set_highest_osr_comp_level(level);
iveresov@2138 1520 }
iveresov@2138 1521 }
iveresov@2138 1522
duke@435 1523 BreakpointInfo::BreakpointInfo(methodOop m, int bci) {
duke@435 1524 _bci = bci;
duke@435 1525 _name_index = m->name_index();
duke@435 1526 _signature_index = m->signature_index();
duke@435 1527 _orig_bytecode = (Bytecodes::Code) *m->bcp_from(_bci);
duke@435 1528 if (_orig_bytecode == Bytecodes::_breakpoint)
duke@435 1529 _orig_bytecode = m->orig_bytecode_at(_bci);
duke@435 1530 _next = NULL;
duke@435 1531 }
duke@435 1532
duke@435 1533 void BreakpointInfo::set(methodOop method) {
duke@435 1534 #ifdef ASSERT
duke@435 1535 {
duke@435 1536 Bytecodes::Code code = (Bytecodes::Code) *method->bcp_from(_bci);
duke@435 1537 if (code == Bytecodes::_breakpoint)
duke@435 1538 code = method->orig_bytecode_at(_bci);
duke@435 1539 assert(orig_bytecode() == code, "original bytecode must be the same");
duke@435 1540 }
duke@435 1541 #endif
duke@435 1542 *method->bcp_from(_bci) = Bytecodes::_breakpoint;
duke@435 1543 method->incr_number_of_breakpoints();
duke@435 1544 SystemDictionary::notice_modification();
duke@435 1545 {
duke@435 1546 // Deoptimize all dependents on this method
duke@435 1547 Thread *thread = Thread::current();
duke@435 1548 HandleMark hm(thread);
duke@435 1549 methodHandle mh(thread, method);
duke@435 1550 Universe::flush_dependents_on_method(mh);
duke@435 1551 }
duke@435 1552 }
duke@435 1553
duke@435 1554 void BreakpointInfo::clear(methodOop method) {
duke@435 1555 *method->bcp_from(_bci) = orig_bytecode();
duke@435 1556 assert(method->number_of_breakpoints() > 0, "must not go negative");
duke@435 1557 method->decr_number_of_breakpoints();
duke@435 1558 }

mercurial