src/share/vm/oops/methodOop.cpp

Fri, 27 Feb 2009 13:27:09 -0800

author
twisti
date
Fri, 27 Feb 2009 13:27:09 -0800
changeset 1040
98cb887364d3
parent 953
0af8b0718fc9
child 1014
0fbdb4381b99
permissions
-rw-r--r--

6810672: Comment typos
Summary: I have collected some typos I have found while looking at the code.
Reviewed-by: kvn, never

duke@435 1 /*
xdono@631 2 * Copyright 1997-2008 Sun Microsystems, Inc. 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 *
duke@435 19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
duke@435 20 * CA 95054 USA or visit www.sun.com if you need additional information or
duke@435 21 * have any questions.
duke@435 22 *
duke@435 23 */
duke@435 24
duke@435 25 # include "incls/_precompiled.incl"
duke@435 26 # include "incls/_methodOop.cpp.incl"
duke@435 27
duke@435 28
duke@435 29 // Implementation of methodOopDesc
duke@435 30
duke@435 31 address methodOopDesc::get_i2c_entry() {
duke@435 32 assert(_adapter != NULL, "must have");
duke@435 33 return _adapter->get_i2c_entry();
duke@435 34 }
duke@435 35
duke@435 36 address methodOopDesc::get_c2i_entry() {
duke@435 37 assert(_adapter != NULL, "must have");
duke@435 38 return _adapter->get_c2i_entry();
duke@435 39 }
duke@435 40
duke@435 41 address methodOopDesc::get_c2i_unverified_entry() {
duke@435 42 assert(_adapter != NULL, "must have");
duke@435 43 return _adapter->get_c2i_unverified_entry();
duke@435 44 }
duke@435 45
duke@435 46 char* methodOopDesc::name_and_sig_as_C_string() {
duke@435 47 return name_and_sig_as_C_string(Klass::cast(constants()->pool_holder()), name(), signature());
duke@435 48 }
duke@435 49
duke@435 50 char* methodOopDesc::name_and_sig_as_C_string(char* buf, int size) {
duke@435 51 return name_and_sig_as_C_string(Klass::cast(constants()->pool_holder()), name(), signature(), buf, size);
duke@435 52 }
duke@435 53
duke@435 54 char* methodOopDesc::name_and_sig_as_C_string(Klass* klass, symbolOop method_name, symbolOop signature) {
duke@435 55 const char* klass_name = klass->external_name();
duke@435 56 int klass_name_len = (int)strlen(klass_name);
duke@435 57 int method_name_len = method_name->utf8_length();
duke@435 58 int len = klass_name_len + 1 + method_name_len + signature->utf8_length();
duke@435 59 char* dest = NEW_RESOURCE_ARRAY(char, len + 1);
duke@435 60 strcpy(dest, klass_name);
duke@435 61 dest[klass_name_len] = '.';
duke@435 62 strcpy(&dest[klass_name_len + 1], method_name->as_C_string());
duke@435 63 strcpy(&dest[klass_name_len + 1 + method_name_len], signature->as_C_string());
duke@435 64 dest[len] = 0;
duke@435 65 return dest;
duke@435 66 }
duke@435 67
duke@435 68 char* methodOopDesc::name_and_sig_as_C_string(Klass* klass, symbolOop method_name, symbolOop signature, char* buf, int size) {
duke@435 69 symbolOop klass_name = klass->name();
duke@435 70 klass_name->as_klass_external_name(buf, size);
duke@435 71 int len = (int)strlen(buf);
duke@435 72
duke@435 73 if (len < size - 1) {
duke@435 74 buf[len++] = '.';
duke@435 75
duke@435 76 method_name->as_C_string(&(buf[len]), size - len);
duke@435 77 len = (int)strlen(buf);
duke@435 78
duke@435 79 signature->as_C_string(&(buf[len]), size - len);
duke@435 80 }
duke@435 81
duke@435 82 return buf;
duke@435 83 }
duke@435 84
duke@435 85 int methodOopDesc::fast_exception_handler_bci_for(KlassHandle ex_klass, int throw_bci, TRAPS) {
duke@435 86 // exception table holds quadruple entries of the form (beg_bci, end_bci, handler_bci, klass_index)
duke@435 87 const int beg_bci_offset = 0;
duke@435 88 const int end_bci_offset = 1;
duke@435 89 const int handler_bci_offset = 2;
duke@435 90 const int klass_index_offset = 3;
duke@435 91 const int entry_size = 4;
duke@435 92 // access exception table
duke@435 93 typeArrayHandle table (THREAD, constMethod()->exception_table());
duke@435 94 int length = table->length();
duke@435 95 assert(length % entry_size == 0, "exception table format has changed");
duke@435 96 // iterate through all entries sequentially
duke@435 97 constantPoolHandle pool(THREAD, constants());
duke@435 98 for (int i = 0; i < length; i += entry_size) {
duke@435 99 int beg_bci = table->int_at(i + beg_bci_offset);
duke@435 100 int end_bci = table->int_at(i + end_bci_offset);
duke@435 101 assert(beg_bci <= end_bci, "inconsistent exception table");
duke@435 102 if (beg_bci <= throw_bci && throw_bci < end_bci) {
duke@435 103 // exception handler bci range covers throw_bci => investigate further
duke@435 104 int handler_bci = table->int_at(i + handler_bci_offset);
duke@435 105 int klass_index = table->int_at(i + klass_index_offset);
duke@435 106 if (klass_index == 0) {
duke@435 107 return handler_bci;
duke@435 108 } else if (ex_klass.is_null()) {
duke@435 109 return handler_bci;
duke@435 110 } else {
duke@435 111 // we know the exception class => get the constraint class
duke@435 112 // this may require loading of the constraint class; if verification
duke@435 113 // fails or some other exception occurs, return handler_bci
duke@435 114 klassOop k = pool->klass_at(klass_index, CHECK_(handler_bci));
duke@435 115 KlassHandle klass = KlassHandle(THREAD, k);
duke@435 116 assert(klass.not_null(), "klass not loaded");
duke@435 117 if (ex_klass->is_subtype_of(klass())) {
duke@435 118 return handler_bci;
duke@435 119 }
duke@435 120 }
duke@435 121 }
duke@435 122 }
duke@435 123
duke@435 124 return -1;
duke@435 125 }
duke@435 126
duke@435 127 methodOop methodOopDesc::method_from_bcp(address bcp) {
duke@435 128 debug_only(static int count = 0; count++);
duke@435 129 assert(Universe::heap()->is_in_permanent(bcp), "bcp not in perm_gen");
duke@435 130 // TO DO: this may be unsafe in some configurations
duke@435 131 HeapWord* p = Universe::heap()->block_start(bcp);
duke@435 132 assert(Universe::heap()->block_is_obj(p), "must be obj");
duke@435 133 assert(oop(p)->is_constMethod(), "not a method");
duke@435 134 return constMethodOop(p)->method();
duke@435 135 }
duke@435 136
duke@435 137
duke@435 138 void methodOopDesc::mask_for(int bci, InterpreterOopMap* mask) {
duke@435 139
duke@435 140 Thread* myThread = Thread::current();
duke@435 141 methodHandle h_this(myThread, this);
duke@435 142 #ifdef ASSERT
duke@435 143 bool has_capability = myThread->is_VM_thread() ||
duke@435 144 myThread->is_ConcurrentGC_thread() ||
duke@435 145 myThread->is_GC_task_thread();
duke@435 146
duke@435 147 if (!has_capability) {
duke@435 148 if (!VerifyStack && !VerifyLastFrame) {
duke@435 149 // verify stack calls this outside VM thread
duke@435 150 warning("oopmap should only be accessed by the "
duke@435 151 "VM, GC task or CMS threads (or during debugging)");
duke@435 152 InterpreterOopMap local_mask;
duke@435 153 instanceKlass::cast(method_holder())->mask_for(h_this, bci, &local_mask);
duke@435 154 local_mask.print();
duke@435 155 }
duke@435 156 }
duke@435 157 #endif
duke@435 158 instanceKlass::cast(method_holder())->mask_for(h_this, bci, mask);
duke@435 159 return;
duke@435 160 }
duke@435 161
duke@435 162
duke@435 163 int methodOopDesc::bci_from(address bcp) const {
duke@435 164 assert(is_native() && bcp == code_base() || contains(bcp), "bcp doesn't belong to this method");
duke@435 165 return bcp - code_base();
duke@435 166 }
duke@435 167
duke@435 168
duke@435 169 // Return (int)bcx if it appears to be a valid BCI.
duke@435 170 // Return bci_from((address)bcx) if it appears to be a valid BCP.
duke@435 171 // Return -1 otherwise.
duke@435 172 // Used by profiling code, when invalid data is a possibility.
duke@435 173 // The caller is responsible for validating the methodOop itself.
duke@435 174 int methodOopDesc::validate_bci_from_bcx(intptr_t bcx) const {
duke@435 175 // keep bci as -1 if not a valid bci
duke@435 176 int bci = -1;
duke@435 177 if (bcx == 0 || (address)bcx == code_base()) {
duke@435 178 // code_size() may return 0 and we allow 0 here
duke@435 179 // the method may be native
duke@435 180 bci = 0;
duke@435 181 } else if (frame::is_bci(bcx)) {
duke@435 182 if (bcx < code_size()) {
duke@435 183 bci = (int)bcx;
duke@435 184 }
duke@435 185 } else if (contains((address)bcx)) {
duke@435 186 bci = (address)bcx - code_base();
duke@435 187 }
duke@435 188 // Assert that if we have dodged any asserts, bci is negative.
duke@435 189 assert(bci == -1 || bci == bci_from(bcp_from(bci)), "sane bci if >=0");
duke@435 190 return bci;
duke@435 191 }
duke@435 192
duke@435 193 address methodOopDesc::bcp_from(int bci) const {
duke@435 194 assert((is_native() && bci == 0) || (!is_native() && 0 <= bci && bci < code_size()), "illegal bci");
duke@435 195 address bcp = code_base() + bci;
duke@435 196 assert(is_native() && bcp == code_base() || contains(bcp), "bcp doesn't belong to this method");
duke@435 197 return bcp;
duke@435 198 }
duke@435 199
duke@435 200
duke@435 201 int methodOopDesc::object_size(bool is_native) {
duke@435 202 // If native, then include pointers for native_function and signature_handler
duke@435 203 int extra_bytes = (is_native) ? 2*sizeof(address*) : 0;
duke@435 204 int extra_words = align_size_up(extra_bytes, BytesPerWord) / BytesPerWord;
duke@435 205 return align_object_size(header_size() + extra_words);
duke@435 206 }
duke@435 207
duke@435 208
duke@435 209 symbolOop methodOopDesc::klass_name() const {
duke@435 210 klassOop k = method_holder();
duke@435 211 assert(k->is_klass(), "must be klass");
duke@435 212 instanceKlass* ik = (instanceKlass*) k->klass_part();
duke@435 213 return ik->name();
duke@435 214 }
duke@435 215
duke@435 216
duke@435 217 void methodOopDesc::set_interpreter_kind() {
duke@435 218 int kind = Interpreter::method_kind(methodOop(this));
duke@435 219 assert(kind != Interpreter::invalid,
duke@435 220 "interpreter entry must be valid");
duke@435 221 set_interpreter_kind(kind);
duke@435 222 }
duke@435 223
duke@435 224
duke@435 225 // Attempt to return method oop to original state. Clear any pointers
duke@435 226 // (to objects outside the shared spaces). We won't be able to predict
duke@435 227 // where they should point in a new JVM. Further initialize some
duke@435 228 // entries now in order allow them to be write protected later.
duke@435 229
duke@435 230 void methodOopDesc::remove_unshareable_info() {
duke@435 231 unlink_method();
duke@435 232 set_interpreter_kind();
duke@435 233 }
duke@435 234
duke@435 235
duke@435 236 bool methodOopDesc::was_executed_more_than(int n) const {
duke@435 237 // Invocation counter is reset when the methodOop is compiled.
duke@435 238 // If the method has compiled code we therefore assume it has
duke@435 239 // be excuted more than n times.
duke@435 240 if (is_accessor() || is_empty_method() || (code() != NULL)) {
duke@435 241 // interpreter doesn't bump invocation counter of trivial methods
duke@435 242 // compiler does not bump invocation counter of compiled methods
duke@435 243 return true;
duke@435 244 } else if (_invocation_counter.carry()) {
duke@435 245 // The carry bit is set when the counter overflows and causes
duke@435 246 // a compilation to occur. We don't know how many times
duke@435 247 // the counter has been reset, so we simply assume it has
duke@435 248 // been executed more than n times.
duke@435 249 return true;
duke@435 250 } else {
duke@435 251 return invocation_count() > n;
duke@435 252 }
duke@435 253 }
duke@435 254
duke@435 255 #ifndef PRODUCT
duke@435 256 void methodOopDesc::print_invocation_count() const {
duke@435 257 if (is_static()) tty->print("static ");
duke@435 258 if (is_final()) tty->print("final ");
duke@435 259 if (is_synchronized()) tty->print("synchronized ");
duke@435 260 if (is_native()) tty->print("native ");
duke@435 261 method_holder()->klass_part()->name()->print_symbol_on(tty);
duke@435 262 tty->print(".");
duke@435 263 name()->print_symbol_on(tty);
duke@435 264 signature()->print_symbol_on(tty);
duke@435 265
duke@435 266 if (WizardMode) {
duke@435 267 // dump the size of the byte codes
duke@435 268 tty->print(" {%d}", code_size());
duke@435 269 }
duke@435 270 tty->cr();
duke@435 271
duke@435 272 tty->print_cr (" interpreter_invocation_count: %8d ", interpreter_invocation_count());
duke@435 273 tty->print_cr (" invocation_counter: %8d ", invocation_count());
duke@435 274 tty->print_cr (" backedge_counter: %8d ", backedge_count());
duke@435 275 if (CountCompiledCalls) {
duke@435 276 tty->print_cr (" compiled_invocation_count: %8d ", compiled_invocation_count());
duke@435 277 }
duke@435 278
duke@435 279 }
duke@435 280 #endif
duke@435 281
duke@435 282 // Build a methodDataOop object to hold information about this method
duke@435 283 // collected in the interpreter.
duke@435 284 void methodOopDesc::build_interpreter_method_data(methodHandle method, TRAPS) {
duke@435 285 // Grab a lock here to prevent multiple
duke@435 286 // methodDataOops from being created.
duke@435 287 MutexLocker ml(MethodData_lock, THREAD);
duke@435 288 if (method->method_data() == NULL) {
duke@435 289 methodDataOop method_data = oopFactory::new_methodData(method, CHECK);
duke@435 290 method->set_method_data(method_data);
duke@435 291 if (PrintMethodData && (Verbose || WizardMode)) {
duke@435 292 ResourceMark rm(THREAD);
duke@435 293 tty->print("build_interpreter_method_data for ");
duke@435 294 method->print_name(tty);
duke@435 295 tty->cr();
duke@435 296 // At the end of the run, the MDO, full of data, will be dumped.
duke@435 297 }
duke@435 298 }
duke@435 299 }
duke@435 300
duke@435 301 void methodOopDesc::cleanup_inline_caches() {
duke@435 302 // The current system doesn't use inline caches in the interpreter
duke@435 303 // => nothing to do (keep this method around for future use)
duke@435 304 }
duke@435 305
duke@435 306
duke@435 307 void methodOopDesc::compute_size_of_parameters(Thread *thread) {
duke@435 308 symbolHandle h_signature(thread, signature());
duke@435 309 ArgumentSizeComputer asc(h_signature);
duke@435 310 set_size_of_parameters(asc.size() + (is_static() ? 0 : 1));
duke@435 311 }
duke@435 312
duke@435 313 #ifdef CC_INTERP
duke@435 314 void methodOopDesc::set_result_index(BasicType type) {
duke@435 315 _result_index = Interpreter::BasicType_as_index(type);
duke@435 316 }
duke@435 317 #endif
duke@435 318
duke@435 319 BasicType methodOopDesc::result_type() const {
duke@435 320 ResultTypeFinder rtf(signature());
duke@435 321 return rtf.type();
duke@435 322 }
duke@435 323
duke@435 324
duke@435 325 bool methodOopDesc::is_empty_method() const {
duke@435 326 return code_size() == 1
duke@435 327 && *code_base() == Bytecodes::_return;
duke@435 328 }
duke@435 329
duke@435 330
duke@435 331 bool methodOopDesc::is_vanilla_constructor() const {
duke@435 332 // Returns true if this method is a vanilla constructor, i.e. an "<init>" "()V" method
duke@435 333 // which only calls the superclass vanilla constructor and possibly does stores of
duke@435 334 // zero constants to local fields:
duke@435 335 //
duke@435 336 // aload_0
duke@435 337 // invokespecial
duke@435 338 // indexbyte1
duke@435 339 // indexbyte2
duke@435 340 //
duke@435 341 // followed by an (optional) sequence of:
duke@435 342 //
duke@435 343 // aload_0
duke@435 344 // aconst_null / iconst_0 / fconst_0 / dconst_0
duke@435 345 // putfield
duke@435 346 // indexbyte1
duke@435 347 // indexbyte2
duke@435 348 //
duke@435 349 // followed by:
duke@435 350 //
duke@435 351 // return
duke@435 352
duke@435 353 assert(name() == vmSymbols::object_initializer_name(), "Should only be called for default constructors");
duke@435 354 assert(signature() == vmSymbols::void_method_signature(), "Should only be called for default constructors");
duke@435 355 int size = code_size();
duke@435 356 // Check if size match
duke@435 357 if (size == 0 || size % 5 != 0) return false;
duke@435 358 address cb = code_base();
duke@435 359 int last = size - 1;
duke@435 360 if (cb[0] != Bytecodes::_aload_0 || cb[1] != Bytecodes::_invokespecial || cb[last] != Bytecodes::_return) {
duke@435 361 // Does not call superclass default constructor
duke@435 362 return false;
duke@435 363 }
duke@435 364 // Check optional sequence
duke@435 365 for (int i = 4; i < last; i += 5) {
duke@435 366 if (cb[i] != Bytecodes::_aload_0) return false;
duke@435 367 if (!Bytecodes::is_zero_const(Bytecodes::cast(cb[i+1]))) return false;
duke@435 368 if (cb[i+2] != Bytecodes::_putfield) return false;
duke@435 369 }
duke@435 370 return true;
duke@435 371 }
duke@435 372
duke@435 373
duke@435 374 bool methodOopDesc::compute_has_loops_flag() {
duke@435 375 BytecodeStream bcs(methodOop(this));
duke@435 376 Bytecodes::Code bc;
duke@435 377
duke@435 378 while ((bc = bcs.next()) >= 0) {
duke@435 379 switch( bc ) {
duke@435 380 case Bytecodes::_ifeq:
duke@435 381 case Bytecodes::_ifnull:
duke@435 382 case Bytecodes::_iflt:
duke@435 383 case Bytecodes::_ifle:
duke@435 384 case Bytecodes::_ifne:
duke@435 385 case Bytecodes::_ifnonnull:
duke@435 386 case Bytecodes::_ifgt:
duke@435 387 case Bytecodes::_ifge:
duke@435 388 case Bytecodes::_if_icmpeq:
duke@435 389 case Bytecodes::_if_icmpne:
duke@435 390 case Bytecodes::_if_icmplt:
duke@435 391 case Bytecodes::_if_icmpgt:
duke@435 392 case Bytecodes::_if_icmple:
duke@435 393 case Bytecodes::_if_icmpge:
duke@435 394 case Bytecodes::_if_acmpeq:
duke@435 395 case Bytecodes::_if_acmpne:
duke@435 396 case Bytecodes::_goto:
duke@435 397 case Bytecodes::_jsr:
duke@435 398 if( bcs.dest() < bcs.next_bci() ) _access_flags.set_has_loops();
duke@435 399 break;
duke@435 400
duke@435 401 case Bytecodes::_goto_w:
duke@435 402 case Bytecodes::_jsr_w:
duke@435 403 if( bcs.dest_w() < bcs.next_bci() ) _access_flags.set_has_loops();
duke@435 404 break;
duke@435 405 }
duke@435 406 }
duke@435 407 _access_flags.set_loops_flag_init();
duke@435 408 return _access_flags.has_loops();
duke@435 409 }
duke@435 410
duke@435 411
duke@435 412 bool methodOopDesc::is_final_method() const {
duke@435 413 // %%% Should return true for private methods also,
duke@435 414 // since there is no way to override them.
duke@435 415 return is_final() || Klass::cast(method_holder())->is_final();
duke@435 416 }
duke@435 417
duke@435 418
duke@435 419 bool methodOopDesc::is_strict_method() const {
duke@435 420 return is_strict();
duke@435 421 }
duke@435 422
duke@435 423
duke@435 424 bool methodOopDesc::can_be_statically_bound() const {
duke@435 425 if (is_final_method()) return true;
duke@435 426 return vtable_index() == nonvirtual_vtable_index;
duke@435 427 }
duke@435 428
duke@435 429
duke@435 430 bool methodOopDesc::is_accessor() const {
duke@435 431 if (code_size() != 5) return false;
duke@435 432 if (size_of_parameters() != 1) return false;
coleenp@548 433 methodOop m = (methodOop)this; // pass to code_at() to avoid method_from_bcp
coleenp@548 434 if (Bytecodes::java_code_at(code_base()+0, m) != Bytecodes::_aload_0 ) return false;
coleenp@548 435 if (Bytecodes::java_code_at(code_base()+1, m) != Bytecodes::_getfield) return false;
coleenp@548 436 if (Bytecodes::java_code_at(code_base()+4, m) != Bytecodes::_areturn &&
coleenp@548 437 Bytecodes::java_code_at(code_base()+4, m) != Bytecodes::_ireturn ) return false;
duke@435 438 return true;
duke@435 439 }
duke@435 440
duke@435 441
duke@435 442 bool methodOopDesc::is_initializer() const {
duke@435 443 return name() == vmSymbols::object_initializer_name() || name() == vmSymbols::class_initializer_name();
duke@435 444 }
duke@435 445
duke@435 446
duke@435 447 objArrayHandle methodOopDesc::resolved_checked_exceptions_impl(methodOop this_oop, TRAPS) {
duke@435 448 int length = this_oop->checked_exceptions_length();
duke@435 449 if (length == 0) { // common case
duke@435 450 return objArrayHandle(THREAD, Universe::the_empty_class_klass_array());
duke@435 451 } else {
duke@435 452 methodHandle h_this(THREAD, this_oop);
duke@435 453 objArrayOop m_oop = oopFactory::new_objArray(SystemDictionary::class_klass(), length, CHECK_(objArrayHandle()));
duke@435 454 objArrayHandle mirrors (THREAD, m_oop);
duke@435 455 for (int i = 0; i < length; i++) {
duke@435 456 CheckedExceptionElement* table = h_this->checked_exceptions_start(); // recompute on each iteration, not gc safe
duke@435 457 klassOop k = h_this->constants()->klass_at(table[i].class_cp_index, CHECK_(objArrayHandle()));
duke@435 458 assert(Klass::cast(k)->is_subclass_of(SystemDictionary::throwable_klass()), "invalid exception class");
duke@435 459 mirrors->obj_at_put(i, Klass::cast(k)->java_mirror());
duke@435 460 }
duke@435 461 return mirrors;
duke@435 462 }
duke@435 463 };
duke@435 464
duke@435 465
duke@435 466 int methodOopDesc::line_number_from_bci(int bci) const {
duke@435 467 if (bci == SynchronizationEntryBCI) bci = 0;
duke@435 468 assert(bci == 0 || 0 <= bci && bci < code_size(), "illegal bci");
duke@435 469 int best_bci = 0;
duke@435 470 int best_line = -1;
duke@435 471
duke@435 472 if (has_linenumber_table()) {
duke@435 473 // The line numbers are a short array of 2-tuples [start_pc, line_number].
duke@435 474 // Not necessarily sorted and not necessarily one-to-one.
duke@435 475 CompressedLineNumberReadStream stream(compressed_linenumber_table());
duke@435 476 while (stream.read_pair()) {
duke@435 477 if (stream.bci() == bci) {
duke@435 478 // perfect match
duke@435 479 return stream.line();
duke@435 480 } else {
duke@435 481 // update best_bci/line
duke@435 482 if (stream.bci() < bci && stream.bci() >= best_bci) {
duke@435 483 best_bci = stream.bci();
duke@435 484 best_line = stream.line();
duke@435 485 }
duke@435 486 }
duke@435 487 }
duke@435 488 }
duke@435 489 return best_line;
duke@435 490 }
duke@435 491
duke@435 492
duke@435 493 bool methodOopDesc::is_klass_loaded_by_klass_index(int klass_index) const {
duke@435 494 if( _constants->tag_at(klass_index).is_unresolved_klass() ) {
duke@435 495 Thread *thread = Thread::current();
duke@435 496 symbolHandle klass_name(thread, _constants->klass_name_at(klass_index));
duke@435 497 Handle loader(thread, instanceKlass::cast(method_holder())->class_loader());
duke@435 498 Handle prot (thread, Klass::cast(method_holder())->protection_domain());
duke@435 499 return SystemDictionary::find(klass_name, loader, prot, thread) != NULL;
duke@435 500 } else {
duke@435 501 return true;
duke@435 502 }
duke@435 503 }
duke@435 504
duke@435 505
duke@435 506 bool methodOopDesc::is_klass_loaded(int refinfo_index, bool must_be_resolved) const {
duke@435 507 int klass_index = _constants->klass_ref_index_at(refinfo_index);
duke@435 508 if (must_be_resolved) {
duke@435 509 // Make sure klass is resolved in constantpool.
duke@435 510 if (constants()->tag_at(klass_index).is_unresolved_klass()) return false;
duke@435 511 }
duke@435 512 return is_klass_loaded_by_klass_index(klass_index);
duke@435 513 }
duke@435 514
duke@435 515
duke@435 516 void methodOopDesc::set_native_function(address function, bool post_event_flag) {
duke@435 517 assert(function != NULL, "use clear_native_function to unregister natives");
duke@435 518 address* native_function = native_function_addr();
duke@435 519
duke@435 520 // We can see racers trying to place the same native function into place. Once
duke@435 521 // is plenty.
duke@435 522 address current = *native_function;
duke@435 523 if (current == function) return;
duke@435 524 if (post_event_flag && JvmtiExport::should_post_native_method_bind() &&
duke@435 525 function != NULL) {
duke@435 526 // native_method_throw_unsatisfied_link_error_entry() should only
duke@435 527 // be passed when post_event_flag is false.
duke@435 528 assert(function !=
duke@435 529 SharedRuntime::native_method_throw_unsatisfied_link_error_entry(),
duke@435 530 "post_event_flag mis-match");
duke@435 531
duke@435 532 // post the bind event, and possible change the bind function
duke@435 533 JvmtiExport::post_native_method_bind(this, &function);
duke@435 534 }
duke@435 535 *native_function = function;
duke@435 536 // This function can be called more than once. We must make sure that we always
duke@435 537 // use the latest registered method -> check if a stub already has been generated.
duke@435 538 // If so, we have to make it not_entrant.
duke@435 539 nmethod* nm = code(); // Put it into local variable to guard against concurrent updates
duke@435 540 if (nm != NULL) {
duke@435 541 nm->make_not_entrant();
duke@435 542 }
duke@435 543 }
duke@435 544
duke@435 545
duke@435 546 bool methodOopDesc::has_native_function() const {
duke@435 547 address func = native_function();
duke@435 548 return (func != NULL && func != SharedRuntime::native_method_throw_unsatisfied_link_error_entry());
duke@435 549 }
duke@435 550
duke@435 551
duke@435 552 void methodOopDesc::clear_native_function() {
duke@435 553 set_native_function(
duke@435 554 SharedRuntime::native_method_throw_unsatisfied_link_error_entry(),
duke@435 555 !native_bind_event_is_interesting);
duke@435 556 clear_code();
duke@435 557 }
duke@435 558
duke@435 559
duke@435 560 void methodOopDesc::set_signature_handler(address handler) {
duke@435 561 address* signature_handler = signature_handler_addr();
duke@435 562 *signature_handler = handler;
duke@435 563 }
duke@435 564
duke@435 565
duke@435 566 bool methodOopDesc::is_not_compilable(int comp_level) const {
duke@435 567 methodDataOop mdo = method_data();
duke@435 568 if (mdo != NULL
duke@435 569 && (uint)mdo->decompile_count() > (uint)PerMethodRecompilationCutoff) {
duke@435 570 // Since (uint)-1 is large, -1 really means 'no cutoff'.
duke@435 571 return true;
duke@435 572 }
duke@435 573 #ifdef COMPILER2
duke@435 574 if (is_tier1_compile(comp_level)) {
duke@435 575 if (is_not_tier1_compilable()) {
duke@435 576 return true;
duke@435 577 }
duke@435 578 }
duke@435 579 #endif // COMPILER2
duke@435 580 return (_invocation_counter.state() == InvocationCounter::wait_for_nothing)
duke@435 581 || (number_of_breakpoints() > 0);
duke@435 582 }
duke@435 583
duke@435 584 // call this when compiler finds that this method is not compilable
duke@435 585 void methodOopDesc::set_not_compilable(int comp_level) {
duke@435 586 if ((TraceDeoptimization || LogCompilation) && (xtty != NULL)) {
duke@435 587 ttyLocker ttyl;
duke@435 588 xtty->begin_elem("make_not_compilable thread='%d'", (int) os::current_thread_id());
duke@435 589 xtty->method(methodOop(this));
duke@435 590 xtty->stamp();
duke@435 591 xtty->end_elem();
duke@435 592 }
duke@435 593 #ifdef COMPILER2
duke@435 594 if (is_tier1_compile(comp_level)) {
duke@435 595 set_not_tier1_compilable();
duke@435 596 return;
duke@435 597 }
duke@435 598 #endif /* COMPILER2 */
duke@435 599 assert(comp_level == CompLevel_highest_tier, "unexpected compilation level");
duke@435 600 invocation_counter()->set_state(InvocationCounter::wait_for_nothing);
duke@435 601 backedge_counter()->set_state(InvocationCounter::wait_for_nothing);
duke@435 602 }
duke@435 603
duke@435 604 // Revert to using the interpreter and clear out the nmethod
duke@435 605 void methodOopDesc::clear_code() {
duke@435 606
duke@435 607 // this may be NULL if c2i adapters have not been made yet
duke@435 608 // Only should happen at allocate time.
duke@435 609 if (_adapter == NULL) {
duke@435 610 _from_compiled_entry = NULL;
duke@435 611 } else {
duke@435 612 _from_compiled_entry = _adapter->get_c2i_entry();
duke@435 613 }
duke@435 614 OrderAccess::storestore();
duke@435 615 _from_interpreted_entry = _i2i_entry;
duke@435 616 OrderAccess::storestore();
duke@435 617 _code = NULL;
duke@435 618 }
duke@435 619
duke@435 620 // Called by class data sharing to remove any entry points (which are not shared)
duke@435 621 void methodOopDesc::unlink_method() {
duke@435 622 _code = NULL;
duke@435 623 _i2i_entry = NULL;
duke@435 624 _from_interpreted_entry = NULL;
duke@435 625 if (is_native()) {
duke@435 626 *native_function_addr() = NULL;
duke@435 627 set_signature_handler(NULL);
duke@435 628 }
duke@435 629 NOT_PRODUCT(set_compiled_invocation_count(0);)
duke@435 630 invocation_counter()->reset();
duke@435 631 backedge_counter()->reset();
duke@435 632 _adapter = NULL;
duke@435 633 _from_compiled_entry = NULL;
duke@435 634 assert(_method_data == NULL, "unexpected method data?");
duke@435 635 set_method_data(NULL);
duke@435 636 set_interpreter_throwout_count(0);
duke@435 637 set_interpreter_invocation_count(0);
duke@435 638 _highest_tier_compile = CompLevel_none;
duke@435 639 }
duke@435 640
duke@435 641 // Called when the method_holder is getting linked. Setup entrypoints so the method
duke@435 642 // is ready to be called from interpreter, compiler, and vtables.
duke@435 643 void methodOopDesc::link_method(methodHandle h_method, TRAPS) {
duke@435 644 assert(_i2i_entry == NULL, "should only be called once");
duke@435 645 assert(_adapter == NULL, "init'd to NULL" );
duke@435 646 assert( _code == NULL, "nothing compiled yet" );
duke@435 647
duke@435 648 // Setup interpreter entrypoint
duke@435 649 assert(this == h_method(), "wrong h_method()" );
duke@435 650 address entry = Interpreter::entry_for_method(h_method);
duke@435 651 assert(entry != NULL, "interpreter entry must be non-null");
duke@435 652 // Sets both _i2i_entry and _from_interpreted_entry
duke@435 653 set_interpreter_entry(entry);
duke@435 654 if (is_native()) {
duke@435 655 set_native_function(
duke@435 656 SharedRuntime::native_method_throw_unsatisfied_link_error_entry(),
duke@435 657 !native_bind_event_is_interesting);
duke@435 658 }
duke@435 659
duke@435 660 // Setup compiler entrypoint. This is made eagerly, so we do not need
duke@435 661 // special handling of vtables. An alternative is to make adapters more
duke@435 662 // lazily by calling make_adapter() from from_compiled_entry() for the
duke@435 663 // normal calls. For vtable calls life gets more complicated. When a
duke@435 664 // call-site goes mega-morphic we need adapters in all methods which can be
duke@435 665 // called from the vtable. We need adapters on such methods that get loaded
duke@435 666 // later. Ditto for mega-morphic itable calls. If this proves to be a
duke@435 667 // problem we'll make these lazily later.
duke@435 668 (void) make_adapters(h_method, CHECK);
duke@435 669
duke@435 670 // ONLY USE the h_method now as make_adapter may have blocked
duke@435 671
duke@435 672 }
duke@435 673
duke@435 674 address methodOopDesc::make_adapters(methodHandle mh, TRAPS) {
duke@435 675 // Adapters for compiled code are made eagerly here. They are fairly
duke@435 676 // small (generally < 100 bytes) and quick to make (and cached and shared)
duke@435 677 // so making them eagerly shouldn't be too expensive.
duke@435 678 AdapterHandlerEntry* adapter = AdapterHandlerLibrary::get_adapter(mh);
duke@435 679 if (adapter == NULL ) {
duke@435 680 THROW_0(vmSymbols::java_lang_OutOfMemoryError());
duke@435 681 }
duke@435 682
duke@435 683 mh->set_adapter_entry(adapter);
duke@435 684 mh->_from_compiled_entry = adapter->get_c2i_entry();
duke@435 685 return adapter->get_c2i_entry();
duke@435 686 }
duke@435 687
duke@435 688 // The verified_code_entry() must be called when a invoke is resolved
duke@435 689 // on this method.
duke@435 690
duke@435 691 // It returns the compiled code entry point, after asserting not null.
duke@435 692 // This function is called after potential safepoints so that nmethod
duke@435 693 // or adapter that it points to is still live and valid.
duke@435 694 // This function must not hit a safepoint!
duke@435 695 address methodOopDesc::verified_code_entry() {
duke@435 696 debug_only(No_Safepoint_Verifier nsv;)
duke@435 697 assert(_from_compiled_entry != NULL, "must be set");
duke@435 698 return _from_compiled_entry;
duke@435 699 }
duke@435 700
duke@435 701 // Check that if an nmethod ref exists, it has a backlink to this or no backlink at all
duke@435 702 // (could be racing a deopt).
duke@435 703 // Not inline to avoid circular ref.
duke@435 704 bool methodOopDesc::check_code() const {
duke@435 705 // cached in a register or local. There's a race on the value of the field.
duke@435 706 nmethod *code = (nmethod *)OrderAccess::load_ptr_acquire(&_code);
duke@435 707 return code == NULL || (code->method() == NULL) || (code->method() == (methodOop)this && !code->is_osr_method());
duke@435 708 }
duke@435 709
duke@435 710 // Install compiled code. Instantly it can execute.
duke@435 711 void methodOopDesc::set_code(methodHandle mh, nmethod *code) {
duke@435 712 assert( code, "use clear_code to remove code" );
duke@435 713 assert( mh->check_code(), "" );
duke@435 714
duke@435 715 guarantee(mh->adapter() != NULL, "Adapter blob must already exist!");
duke@435 716
duke@435 717 // These writes must happen in this order, because the interpreter will
duke@435 718 // directly jump to from_interpreted_entry which jumps to an i2c adapter
duke@435 719 // which jumps to _from_compiled_entry.
duke@435 720 mh->_code = code; // Assign before allowing compiled code to exec
duke@435 721
duke@435 722 int comp_level = code->comp_level();
duke@435 723 // In theory there could be a race here. In practice it is unlikely
duke@435 724 // and not worth worrying about.
duke@435 725 if (comp_level > highest_tier_compile()) {
duke@435 726 set_highest_tier_compile(comp_level);
duke@435 727 }
duke@435 728
duke@435 729 OrderAccess::storestore();
duke@435 730 mh->_from_compiled_entry = code->verified_entry_point();
duke@435 731 OrderAccess::storestore();
duke@435 732 // Instantly compiled code can execute.
duke@435 733 mh->_from_interpreted_entry = mh->get_i2c_entry();
duke@435 734
duke@435 735 }
duke@435 736
duke@435 737
duke@435 738 bool methodOopDesc::is_overridden_in(klassOop k) const {
duke@435 739 instanceKlass* ik = instanceKlass::cast(k);
duke@435 740
duke@435 741 if (ik->is_interface()) return false;
duke@435 742
duke@435 743 // If method is an interface, we skip it - except if it
duke@435 744 // is a miranda method
duke@435 745 if (instanceKlass::cast(method_holder())->is_interface()) {
duke@435 746 // Check that method is not a miranda method
duke@435 747 if (ik->lookup_method(name(), signature()) == NULL) {
duke@435 748 // No implementation exist - so miranda method
duke@435 749 return false;
duke@435 750 }
duke@435 751 return true;
duke@435 752 }
duke@435 753
duke@435 754 assert(ik->is_subclass_of(method_holder()), "should be subklass");
duke@435 755 assert(ik->vtable() != NULL, "vtable should exist");
duke@435 756 if (vtable_index() == nonvirtual_vtable_index) {
duke@435 757 return false;
duke@435 758 } else {
duke@435 759 methodOop vt_m = ik->method_at_vtable(vtable_index());
duke@435 760 return vt_m != methodOop(this);
duke@435 761 }
duke@435 762 }
duke@435 763
duke@435 764
dcubed@483 765 // give advice about whether this methodOop should be cached or not
dcubed@483 766 bool methodOopDesc::should_not_be_cached() const {
dcubed@483 767 if (is_old()) {
dcubed@483 768 // This method has been redefined. It is either EMCP or obsolete
dcubed@483 769 // and we don't want to cache it because that would pin the method
dcubed@483 770 // down and prevent it from being collectible if and when it
dcubed@483 771 // finishes executing.
dcubed@483 772 return true;
dcubed@483 773 }
dcubed@483 774
dcubed@483 775 if (mark()->should_not_be_cached()) {
dcubed@483 776 // It is either not safe or not a good idea to cache this
dcubed@483 777 // method at this time because of the state of the embedded
dcubed@483 778 // markOop. See markOop.cpp for the gory details.
dcubed@483 779 return true;
dcubed@483 780 }
dcubed@483 781
dcubed@483 782 // caching this method should be just fine
dcubed@483 783 return false;
dcubed@483 784 }
dcubed@483 785
dcubed@483 786
duke@435 787 methodHandle methodOopDesc:: clone_with_new_data(methodHandle m, u_char* new_code, int new_code_length,
duke@435 788 u_char* new_compressed_linenumber_table, int new_compressed_linenumber_size, TRAPS) {
duke@435 789 // Code below does not work for native methods - they should never get rewritten anyway
duke@435 790 assert(!m->is_native(), "cannot rewrite native methods");
duke@435 791 // Allocate new methodOop
duke@435 792 AccessFlags flags = m->access_flags();
duke@435 793 int checked_exceptions_len = m->checked_exceptions_length();
duke@435 794 int localvariable_len = m->localvariable_table_length();
jmasa@953 795 // Allocate newm_oop with the is_conc_safe parameter set
jmasa@953 796 // to IsUnsafeConc to indicate that newm_oop is not yet
jmasa@953 797 // safe for concurrent processing by a GC.
jmasa@953 798 methodOop newm_oop = oopFactory::new_method(new_code_length,
jmasa@953 799 flags,
jmasa@953 800 new_compressed_linenumber_size,
jmasa@953 801 localvariable_len,
jmasa@953 802 checked_exceptions_len,
jmasa@953 803 IsUnsafeConc,
jmasa@953 804 CHECK_(methodHandle()));
duke@435 805 methodHandle newm (THREAD, newm_oop);
duke@435 806 int new_method_size = newm->method_size();
duke@435 807 // Create a shallow copy of methodOopDesc part, but be careful to preserve the new constMethodOop
duke@435 808 constMethodOop newcm = newm->constMethod();
duke@435 809 int new_const_method_size = newm->constMethod()->object_size();
jmasa@953 810
duke@435 811 memcpy(newm(), m(), sizeof(methodOopDesc));
duke@435 812 // Create shallow copy of constMethodOopDesc, but be careful to preserve the methodOop
jmasa@953 813 // is_conc_safe is set to false because that is the value of
jmasa@953 814 // is_conc_safe initialzied into newcm and the copy should
jmasa@953 815 // not overwrite that value. During the window during which it is
jmasa@953 816 // tagged as unsafe, some extra work could be needed during precleaning
jmasa@953 817 // or concurrent marking but those phases will be correct. Setting and
jmasa@953 818 // resetting is done in preference to a careful copying into newcm to
jmasa@953 819 // avoid having to know the precise layout of a constMethodOop.
jmasa@953 820 m->constMethod()->set_is_conc_safe(false);
duke@435 821 memcpy(newcm, m->constMethod(), sizeof(constMethodOopDesc));
jmasa@953 822 m->constMethod()->set_is_conc_safe(true);
duke@435 823 // Reset correct method/const method, method size, and parameter info
duke@435 824 newcm->set_method(newm());
duke@435 825 newm->set_constMethod(newcm);
duke@435 826 assert(newcm->method() == newm(), "check");
duke@435 827 newm->constMethod()->set_code_size(new_code_length);
duke@435 828 newm->constMethod()->set_constMethod_size(new_const_method_size);
duke@435 829 newm->set_method_size(new_method_size);
duke@435 830 assert(newm->code_size() == new_code_length, "check");
duke@435 831 assert(newm->checked_exceptions_length() == checked_exceptions_len, "check");
duke@435 832 assert(newm->localvariable_table_length() == localvariable_len, "check");
duke@435 833 // Copy new byte codes
duke@435 834 memcpy(newm->code_base(), new_code, new_code_length);
duke@435 835 // Copy line number table
duke@435 836 if (new_compressed_linenumber_size > 0) {
duke@435 837 memcpy(newm->compressed_linenumber_table(),
duke@435 838 new_compressed_linenumber_table,
duke@435 839 new_compressed_linenumber_size);
duke@435 840 }
duke@435 841 // Copy checked_exceptions
duke@435 842 if (checked_exceptions_len > 0) {
duke@435 843 memcpy(newm->checked_exceptions_start(),
duke@435 844 m->checked_exceptions_start(),
duke@435 845 checked_exceptions_len * sizeof(CheckedExceptionElement));
duke@435 846 }
duke@435 847 // Copy local variable number table
duke@435 848 if (localvariable_len > 0) {
duke@435 849 memcpy(newm->localvariable_table_start(),
duke@435 850 m->localvariable_table_start(),
duke@435 851 localvariable_len * sizeof(LocalVariableTableElement));
duke@435 852 }
jmasa@953 853
jmasa@953 854 // Only set is_conc_safe to true when changes to newcm are
jmasa@953 855 // complete.
jmasa@953 856 newcm->set_is_conc_safe(true);
duke@435 857 return newm;
duke@435 858 }
duke@435 859
duke@435 860 vmIntrinsics::ID methodOopDesc::compute_intrinsic_id() const {
duke@435 861 assert(vmIntrinsics::_none == 0, "correct coding of default case");
duke@435 862 const uintptr_t max_cache_uint = right_n_bits((int)(sizeof(_intrinsic_id_cache) * BitsPerByte));
duke@435 863 assert((uintptr_t)vmIntrinsics::ID_LIMIT <= max_cache_uint, "else fix cache size");
duke@435 864 // if loader is not the default loader (i.e., != NULL), we can't know the intrinsics
duke@435 865 // because we are not loading from core libraries
duke@435 866 if (instanceKlass::cast(method_holder())->class_loader() != NULL) return vmIntrinsics::_none;
duke@435 867
duke@435 868 // see if the klass name is well-known:
duke@435 869 symbolOop klass_name = instanceKlass::cast(method_holder())->name();
duke@435 870 vmSymbols::SID klass_id = vmSymbols::find_sid(klass_name);
duke@435 871 if (klass_id == vmSymbols::NO_SID) return vmIntrinsics::_none;
duke@435 872
duke@435 873 // ditto for method and signature:
duke@435 874 vmSymbols::SID name_id = vmSymbols::find_sid(name());
duke@435 875 if (name_id == vmSymbols::NO_SID) return vmIntrinsics::_none;
duke@435 876 vmSymbols::SID sig_id = vmSymbols::find_sid(signature());
duke@435 877 if (sig_id == vmSymbols::NO_SID) return vmIntrinsics::_none;
duke@435 878 jshort flags = access_flags().as_short();
duke@435 879
duke@435 880 // A few slightly irregular cases:
duke@435 881 switch (klass_id) {
duke@435 882 case vmSymbols::VM_SYMBOL_ENUM_NAME(java_lang_StrictMath):
duke@435 883 // Second chance: check in regular Math.
duke@435 884 switch (name_id) {
duke@435 885 case vmSymbols::VM_SYMBOL_ENUM_NAME(min_name):
duke@435 886 case vmSymbols::VM_SYMBOL_ENUM_NAME(max_name):
duke@435 887 case vmSymbols::VM_SYMBOL_ENUM_NAME(sqrt_name):
duke@435 888 // pretend it is the corresponding method in the non-strict class:
duke@435 889 klass_id = vmSymbols::VM_SYMBOL_ENUM_NAME(java_lang_Math);
duke@435 890 break;
duke@435 891 }
duke@435 892 }
duke@435 893
duke@435 894 // return intrinsic id if any
duke@435 895 return vmIntrinsics::find_id(klass_id, name_id, sig_id, flags);
duke@435 896 }
duke@435 897
duke@435 898
duke@435 899 // These two methods are static since a GC may move the methodOopDesc
duke@435 900 bool methodOopDesc::load_signature_classes(methodHandle m, TRAPS) {
duke@435 901 bool sig_is_loaded = true;
duke@435 902 Handle class_loader(THREAD, instanceKlass::cast(m->method_holder())->class_loader());
duke@435 903 Handle protection_domain(THREAD, Klass::cast(m->method_holder())->protection_domain());
duke@435 904 symbolHandle signature(THREAD, m->signature());
duke@435 905 for(SignatureStream ss(signature); !ss.is_done(); ss.next()) {
duke@435 906 if (ss.is_object()) {
duke@435 907 symbolOop sym = ss.as_symbol(CHECK_(false));
duke@435 908 symbolHandle name (THREAD, sym);
duke@435 909 klassOop klass = SystemDictionary::resolve_or_null(name, class_loader,
duke@435 910 protection_domain, THREAD);
rasbold@539 911 // We are loading classes eagerly. If a ClassNotFoundException or
rasbold@539 912 // a LinkageError was generated, be sure to ignore it.
duke@435 913 if (HAS_PENDING_EXCEPTION) {
rasbold@539 914 if (PENDING_EXCEPTION->is_a(SystemDictionary::classNotFoundException_klass()) ||
rasbold@539 915 PENDING_EXCEPTION->is_a(SystemDictionary::linkageError_klass())) {
duke@435 916 CLEAR_PENDING_EXCEPTION;
duke@435 917 } else {
duke@435 918 return false;
duke@435 919 }
duke@435 920 }
duke@435 921 if( klass == NULL) { sig_is_loaded = false; }
duke@435 922 }
duke@435 923 }
duke@435 924 return sig_is_loaded;
duke@435 925 }
duke@435 926
duke@435 927 bool methodOopDesc::has_unloaded_classes_in_signature(methodHandle m, TRAPS) {
duke@435 928 Handle class_loader(THREAD, instanceKlass::cast(m->method_holder())->class_loader());
duke@435 929 Handle protection_domain(THREAD, Klass::cast(m->method_holder())->protection_domain());
duke@435 930 symbolHandle signature(THREAD, m->signature());
duke@435 931 for(SignatureStream ss(signature); !ss.is_done(); ss.next()) {
duke@435 932 if (ss.type() == T_OBJECT) {
duke@435 933 symbolHandle name(THREAD, ss.as_symbol_or_null());
duke@435 934 if (name() == NULL) return true;
duke@435 935 klassOop klass = SystemDictionary::find(name, class_loader, protection_domain, THREAD);
duke@435 936 if (klass == NULL) return true;
duke@435 937 }
duke@435 938 }
duke@435 939 return false;
duke@435 940 }
duke@435 941
duke@435 942 // Exposed so field engineers can debug VM
duke@435 943 void methodOopDesc::print_short_name(outputStream* st) {
duke@435 944 ResourceMark rm;
duke@435 945 #ifdef PRODUCT
duke@435 946 st->print(" %s::", method_holder()->klass_part()->external_name());
duke@435 947 #else
duke@435 948 st->print(" %s::", method_holder()->klass_part()->internal_name());
duke@435 949 #endif
duke@435 950 name()->print_symbol_on(st);
duke@435 951 if (WizardMode) signature()->print_symbol_on(st);
duke@435 952 }
duke@435 953
duke@435 954
duke@435 955 extern "C" {
duke@435 956 static int method_compare(methodOop* a, methodOop* b) {
duke@435 957 return (*a)->name()->fast_compare((*b)->name());
duke@435 958 }
duke@435 959
duke@435 960 // Prevent qsort from reordering a previous valid sort by
duke@435 961 // considering the address of the methodOops if two methods
duke@435 962 // would otherwise compare as equal. Required to preserve
duke@435 963 // optimal access order in the shared archive. Slower than
duke@435 964 // method_compare, only used for shared archive creation.
duke@435 965 static int method_compare_idempotent(methodOop* a, methodOop* b) {
duke@435 966 int i = method_compare(a, b);
duke@435 967 if (i != 0) return i;
duke@435 968 return ( a < b ? -1 : (a == b ? 0 : 1));
duke@435 969 }
duke@435 970
duke@435 971 typedef int (*compareFn)(const void*, const void*);
duke@435 972 }
duke@435 973
duke@435 974
duke@435 975 // This is only done during class loading, so it is OK to assume method_idnum matches the methods() array
duke@435 976 static void reorder_based_on_method_index(objArrayOop methods,
duke@435 977 objArrayOop annotations,
coleenp@548 978 GrowableArray<oop>* temp_array) {
duke@435 979 if (annotations == NULL) {
duke@435 980 return;
duke@435 981 }
duke@435 982
duke@435 983 int length = methods->length();
duke@435 984 int i;
duke@435 985 // Copy to temp array
coleenp@548 986 temp_array->clear();
coleenp@548 987 for (i = 0; i < length; i++) {
coleenp@548 988 temp_array->append(annotations->obj_at(i));
coleenp@548 989 }
duke@435 990
duke@435 991 // Copy back using old method indices
duke@435 992 for (i = 0; i < length; i++) {
duke@435 993 methodOop m = (methodOop) methods->obj_at(i);
coleenp@548 994 annotations->obj_at_put(i, temp_array->at(m->method_idnum()));
duke@435 995 }
duke@435 996 }
duke@435 997
duke@435 998
duke@435 999 // This is only done during class loading, so it is OK to assume method_idnum matches the methods() array
duke@435 1000 void methodOopDesc::sort_methods(objArrayOop methods,
duke@435 1001 objArrayOop methods_annotations,
duke@435 1002 objArrayOop methods_parameter_annotations,
duke@435 1003 objArrayOop methods_default_annotations,
duke@435 1004 bool idempotent) {
duke@435 1005 int length = methods->length();
duke@435 1006 if (length > 1) {
duke@435 1007 bool do_annotations = false;
duke@435 1008 if (methods_annotations != NULL ||
duke@435 1009 methods_parameter_annotations != NULL ||
duke@435 1010 methods_default_annotations != NULL) {
duke@435 1011 do_annotations = true;
duke@435 1012 }
duke@435 1013 if (do_annotations) {
duke@435 1014 // Remember current method ordering so we can reorder annotations
duke@435 1015 for (int i = 0; i < length; i++) {
duke@435 1016 methodOop m = (methodOop) methods->obj_at(i);
duke@435 1017 m->set_method_idnum(i);
duke@435 1018 }
duke@435 1019 }
duke@435 1020
duke@435 1021 // Use a simple bubble sort for small number of methods since
duke@435 1022 // qsort requires a functional pointer call for each comparison.
coleenp@548 1023 if (UseCompressedOops || length < 8) {
duke@435 1024 bool sorted = true;
duke@435 1025 for (int i=length-1; i>0; i--) {
duke@435 1026 for (int j=0; j<i; j++) {
duke@435 1027 methodOop m1 = (methodOop)methods->obj_at(j);
duke@435 1028 methodOop m2 = (methodOop)methods->obj_at(j+1);
duke@435 1029 if ((uintptr_t)m1->name() > (uintptr_t)m2->name()) {
duke@435 1030 methods->obj_at_put(j, m2);
duke@435 1031 methods->obj_at_put(j+1, m1);
duke@435 1032 sorted = false;
duke@435 1033 }
duke@435 1034 }
duke@435 1035 if (sorted) break;
coleenp@548 1036 sorted = true;
duke@435 1037 }
duke@435 1038 } else {
coleenp@548 1039 // XXX This doesn't work for UseCompressedOops because the compare fn
coleenp@548 1040 // will have to decode the methodOop anyway making it not much faster
coleenp@548 1041 // than above.
duke@435 1042 compareFn compare = (compareFn) (idempotent ? method_compare_idempotent : method_compare);
coleenp@548 1043 qsort(methods->base(), length, heapOopSize, compare);
duke@435 1044 }
duke@435 1045
duke@435 1046 // Sort annotations if necessary
duke@435 1047 assert(methods_annotations == NULL || methods_annotations->length() == methods->length(), "");
duke@435 1048 assert(methods_parameter_annotations == NULL || methods_parameter_annotations->length() == methods->length(), "");
duke@435 1049 assert(methods_default_annotations == NULL || methods_default_annotations->length() == methods->length(), "");
duke@435 1050 if (do_annotations) {
coleenp@548 1051 ResourceMark rm;
duke@435 1052 // Allocate temporary storage
coleenp@548 1053 GrowableArray<oop>* temp_array = new GrowableArray<oop>(length);
duke@435 1054 reorder_based_on_method_index(methods, methods_annotations, temp_array);
duke@435 1055 reorder_based_on_method_index(methods, methods_parameter_annotations, temp_array);
duke@435 1056 reorder_based_on_method_index(methods, methods_default_annotations, temp_array);
duke@435 1057 }
duke@435 1058
duke@435 1059 // Reset method ordering
duke@435 1060 for (int i = 0; i < length; i++) {
duke@435 1061 methodOop m = (methodOop) methods->obj_at(i);
duke@435 1062 m->set_method_idnum(i);
duke@435 1063 }
duke@435 1064 }
duke@435 1065 }
duke@435 1066
duke@435 1067
duke@435 1068 //-----------------------------------------------------------------------------------
duke@435 1069 // Non-product code
duke@435 1070
duke@435 1071 #ifndef PRODUCT
duke@435 1072 class SignatureTypePrinter : public SignatureTypeNames {
duke@435 1073 private:
duke@435 1074 outputStream* _st;
duke@435 1075 bool _use_separator;
duke@435 1076
duke@435 1077 void type_name(const char* name) {
duke@435 1078 if (_use_separator) _st->print(", ");
duke@435 1079 _st->print(name);
duke@435 1080 _use_separator = true;
duke@435 1081 }
duke@435 1082
duke@435 1083 public:
duke@435 1084 SignatureTypePrinter(symbolHandle signature, outputStream* st) : SignatureTypeNames(signature) {
duke@435 1085 _st = st;
duke@435 1086 _use_separator = false;
duke@435 1087 }
duke@435 1088
duke@435 1089 void print_parameters() { _use_separator = false; iterate_parameters(); }
duke@435 1090 void print_returntype() { _use_separator = false; iterate_returntype(); }
duke@435 1091 };
duke@435 1092
duke@435 1093
duke@435 1094 void methodOopDesc::print_name(outputStream* st) {
duke@435 1095 Thread *thread = Thread::current();
duke@435 1096 ResourceMark rm(thread);
duke@435 1097 SignatureTypePrinter sig(signature(), st);
duke@435 1098 st->print("%s ", is_static() ? "static" : "virtual");
duke@435 1099 sig.print_returntype();
duke@435 1100 st->print(" %s.", method_holder()->klass_part()->internal_name());
duke@435 1101 name()->print_symbol_on(st);
duke@435 1102 st->print("(");
duke@435 1103 sig.print_parameters();
duke@435 1104 st->print(")");
duke@435 1105 }
duke@435 1106
duke@435 1107
duke@435 1108 void methodOopDesc::print_codes_on(outputStream* st) const {
duke@435 1109 print_codes_on(0, code_size(), st);
duke@435 1110 }
duke@435 1111
duke@435 1112 void methodOopDesc::print_codes_on(int from, int to, outputStream* st) const {
duke@435 1113 Thread *thread = Thread::current();
duke@435 1114 ResourceMark rm(thread);
duke@435 1115 methodHandle mh (thread, (methodOop)this);
duke@435 1116 BytecodeStream s(mh);
duke@435 1117 s.set_interval(from, to);
duke@435 1118 BytecodeTracer::set_closure(BytecodeTracer::std_closure());
duke@435 1119 while (s.next() >= 0) BytecodeTracer::trace(mh, s.bcp(), st);
duke@435 1120 }
duke@435 1121 #endif // not PRODUCT
duke@435 1122
duke@435 1123
duke@435 1124 // Simple compression of line number tables. We use a regular compressed stream, except that we compress deltas
duke@435 1125 // between (bci,line) pairs since they are smaller. If (bci delta, line delta) fits in (5-bit unsigned, 3-bit unsigned)
duke@435 1126 // we save it as one byte, otherwise we write a 0xFF escape character and use regular compression. 0x0 is used
duke@435 1127 // as end-of-stream terminator.
duke@435 1128
duke@435 1129 void CompressedLineNumberWriteStream::write_pair_regular(int bci_delta, int line_delta) {
duke@435 1130 // bci and line number does not compress into single byte.
duke@435 1131 // Write out escape character and use regular compression for bci and line number.
duke@435 1132 write_byte((jubyte)0xFF);
duke@435 1133 write_signed_int(bci_delta);
duke@435 1134 write_signed_int(line_delta);
duke@435 1135 }
duke@435 1136
duke@435 1137 // See comment in methodOop.hpp which explains why this exists.
duke@435 1138 #if defined(_M_AMD64) && MSC_VER >= 1400
duke@435 1139 #pragma optimize("", off)
duke@435 1140 void CompressedLineNumberWriteStream::write_pair(int bci, int line) {
duke@435 1141 write_pair_inline(bci, line);
duke@435 1142 }
duke@435 1143 #pragma optimize("", on)
duke@435 1144 #endif
duke@435 1145
duke@435 1146 CompressedLineNumberReadStream::CompressedLineNumberReadStream(u_char* buffer) : CompressedReadStream(buffer) {
duke@435 1147 _bci = 0;
duke@435 1148 _line = 0;
duke@435 1149 };
duke@435 1150
duke@435 1151
duke@435 1152 bool CompressedLineNumberReadStream::read_pair() {
duke@435 1153 jubyte next = read_byte();
duke@435 1154 // Check for terminator
duke@435 1155 if (next == 0) return false;
duke@435 1156 if (next == 0xFF) {
duke@435 1157 // Escape character, regular compression used
duke@435 1158 _bci += read_signed_int();
duke@435 1159 _line += read_signed_int();
duke@435 1160 } else {
duke@435 1161 // Single byte compression used
duke@435 1162 _bci += next >> 3;
duke@435 1163 _line += next & 0x7;
duke@435 1164 }
duke@435 1165 return true;
duke@435 1166 }
duke@435 1167
duke@435 1168
duke@435 1169 Bytecodes::Code methodOopDesc::orig_bytecode_at(int bci) {
duke@435 1170 BreakpointInfo* bp = instanceKlass::cast(method_holder())->breakpoints();
duke@435 1171 for (; bp != NULL; bp = bp->next()) {
duke@435 1172 if (bp->match(this, bci)) {
duke@435 1173 return bp->orig_bytecode();
duke@435 1174 }
duke@435 1175 }
duke@435 1176 ShouldNotReachHere();
duke@435 1177 return Bytecodes::_shouldnotreachhere;
duke@435 1178 }
duke@435 1179
duke@435 1180 void methodOopDesc::set_orig_bytecode_at(int bci, Bytecodes::Code code) {
duke@435 1181 assert(code != Bytecodes::_breakpoint, "cannot patch breakpoints this way");
duke@435 1182 BreakpointInfo* bp = instanceKlass::cast(method_holder())->breakpoints();
duke@435 1183 for (; bp != NULL; bp = bp->next()) {
duke@435 1184 if (bp->match(this, bci)) {
duke@435 1185 bp->set_orig_bytecode(code);
duke@435 1186 // and continue, in case there is more than one
duke@435 1187 }
duke@435 1188 }
duke@435 1189 }
duke@435 1190
duke@435 1191 void methodOopDesc::set_breakpoint(int bci) {
duke@435 1192 instanceKlass* ik = instanceKlass::cast(method_holder());
duke@435 1193 BreakpointInfo *bp = new BreakpointInfo(this, bci);
duke@435 1194 bp->set_next(ik->breakpoints());
duke@435 1195 ik->set_breakpoints(bp);
duke@435 1196 // do this last:
duke@435 1197 bp->set(this);
duke@435 1198 }
duke@435 1199
duke@435 1200 static void clear_matches(methodOop m, int bci) {
duke@435 1201 instanceKlass* ik = instanceKlass::cast(m->method_holder());
duke@435 1202 BreakpointInfo* prev_bp = NULL;
duke@435 1203 BreakpointInfo* next_bp;
duke@435 1204 for (BreakpointInfo* bp = ik->breakpoints(); bp != NULL; bp = next_bp) {
duke@435 1205 next_bp = bp->next();
duke@435 1206 // bci value of -1 is used to delete all breakpoints in method m (ex: clear_all_breakpoint).
duke@435 1207 if (bci >= 0 ? bp->match(m, bci) : bp->match(m)) {
duke@435 1208 // do this first:
duke@435 1209 bp->clear(m);
duke@435 1210 // unhook it
duke@435 1211 if (prev_bp != NULL)
duke@435 1212 prev_bp->set_next(next_bp);
duke@435 1213 else
duke@435 1214 ik->set_breakpoints(next_bp);
duke@435 1215 delete bp;
duke@435 1216 // When class is redefined JVMTI sets breakpoint in all versions of EMCP methods
duke@435 1217 // at same location. So we have multiple matching (method_index and bci)
duke@435 1218 // BreakpointInfo nodes in BreakpointInfo list. We should just delete one
duke@435 1219 // breakpoint for clear_breakpoint request and keep all other method versions
duke@435 1220 // BreakpointInfo for future clear_breakpoint request.
duke@435 1221 // bcivalue of -1 is used to clear all breakpoints (see clear_all_breakpoints)
duke@435 1222 // which is being called when class is unloaded. We delete all the Breakpoint
duke@435 1223 // information for all versions of method. We may not correctly restore the original
duke@435 1224 // bytecode in all method versions, but that is ok. Because the class is being unloaded
duke@435 1225 // so these methods won't be used anymore.
duke@435 1226 if (bci >= 0) {
duke@435 1227 break;
duke@435 1228 }
duke@435 1229 } else {
duke@435 1230 // This one is a keeper.
duke@435 1231 prev_bp = bp;
duke@435 1232 }
duke@435 1233 }
duke@435 1234 }
duke@435 1235
duke@435 1236 void methodOopDesc::clear_breakpoint(int bci) {
duke@435 1237 assert(bci >= 0, "");
duke@435 1238 clear_matches(this, bci);
duke@435 1239 }
duke@435 1240
duke@435 1241 void methodOopDesc::clear_all_breakpoints() {
duke@435 1242 clear_matches(this, -1);
duke@435 1243 }
duke@435 1244
duke@435 1245
duke@435 1246 BreakpointInfo::BreakpointInfo(methodOop m, int bci) {
duke@435 1247 _bci = bci;
duke@435 1248 _name_index = m->name_index();
duke@435 1249 _signature_index = m->signature_index();
duke@435 1250 _orig_bytecode = (Bytecodes::Code) *m->bcp_from(_bci);
duke@435 1251 if (_orig_bytecode == Bytecodes::_breakpoint)
duke@435 1252 _orig_bytecode = m->orig_bytecode_at(_bci);
duke@435 1253 _next = NULL;
duke@435 1254 }
duke@435 1255
duke@435 1256 void BreakpointInfo::set(methodOop method) {
duke@435 1257 #ifdef ASSERT
duke@435 1258 {
duke@435 1259 Bytecodes::Code code = (Bytecodes::Code) *method->bcp_from(_bci);
duke@435 1260 if (code == Bytecodes::_breakpoint)
duke@435 1261 code = method->orig_bytecode_at(_bci);
duke@435 1262 assert(orig_bytecode() == code, "original bytecode must be the same");
duke@435 1263 }
duke@435 1264 #endif
duke@435 1265 *method->bcp_from(_bci) = Bytecodes::_breakpoint;
duke@435 1266 method->incr_number_of_breakpoints();
duke@435 1267 SystemDictionary::notice_modification();
duke@435 1268 {
duke@435 1269 // Deoptimize all dependents on this method
duke@435 1270 Thread *thread = Thread::current();
duke@435 1271 HandleMark hm(thread);
duke@435 1272 methodHandle mh(thread, method);
duke@435 1273 Universe::flush_dependents_on_method(mh);
duke@435 1274 }
duke@435 1275 }
duke@435 1276
duke@435 1277 void BreakpointInfo::clear(methodOop method) {
duke@435 1278 *method->bcp_from(_bci) = orig_bytecode();
duke@435 1279 assert(method->number_of_breakpoints() > 0, "must not go negative");
duke@435 1280 method->decr_number_of_breakpoints();
duke@435 1281 }

mercurial