src/share/vm/prims/jvmtiRedefineClasses.cpp

Wed, 27 Apr 2016 01:25:04 +0800

author
aoqi
date
Wed, 27 Apr 2016 01:25:04 +0800
changeset 0
f90c822e73f8
child 6876
710a3c8b516e
permissions
-rw-r--r--

Initial load
http://hg.openjdk.java.net/jdk8u/jdk8u/hotspot/
changeset: 6782:28b50d07f6f8
tag: jdk8u25-b17

aoqi@0 1 /*
aoqi@0 2 * Copyright (c) 2003, 2014, Oracle and/or its affiliates. All rights reserved.
aoqi@0 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 4 *
aoqi@0 5 * This code is free software; you can redistribute it and/or modify it
aoqi@0 6 * under the terms of the GNU General Public License version 2 only, as
aoqi@0 7 * published by the Free Software Foundation.
aoqi@0 8 *
aoqi@0 9 * This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 12 * version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 13 * accompanied this code).
aoqi@0 14 *
aoqi@0 15 * You should have received a copy of the GNU General Public License version
aoqi@0 16 * 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 18 *
aoqi@0 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 20 * or visit www.oracle.com if you need additional information or have any
aoqi@0 21 * questions.
aoqi@0 22 *
aoqi@0 23 */
aoqi@0 24
aoqi@0 25 #include "precompiled.hpp"
aoqi@0 26 #include "classfile/metadataOnStackMark.hpp"
aoqi@0 27 #include "classfile/systemDictionary.hpp"
aoqi@0 28 #include "classfile/verifier.hpp"
aoqi@0 29 #include "code/codeCache.hpp"
aoqi@0 30 #include "compiler/compileBroker.hpp"
aoqi@0 31 #include "interpreter/oopMapCache.hpp"
aoqi@0 32 #include "interpreter/rewriter.hpp"
aoqi@0 33 #include "memory/gcLocker.hpp"
aoqi@0 34 #include "memory/metadataFactory.hpp"
aoqi@0 35 #include "memory/metaspaceShared.hpp"
aoqi@0 36 #include "memory/universe.inline.hpp"
aoqi@0 37 #include "oops/fieldStreams.hpp"
aoqi@0 38 #include "oops/klassVtable.hpp"
aoqi@0 39 #include "prims/jvmtiImpl.hpp"
aoqi@0 40 #include "prims/jvmtiRedefineClasses.hpp"
aoqi@0 41 #include "prims/methodComparator.hpp"
aoqi@0 42 #include "runtime/deoptimization.hpp"
aoqi@0 43 #include "runtime/relocator.hpp"
aoqi@0 44 #include "utilities/bitMap.inline.hpp"
aoqi@0 45
aoqi@0 46 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
aoqi@0 47
aoqi@0 48 Array<Method*>* VM_RedefineClasses::_old_methods = NULL;
aoqi@0 49 Array<Method*>* VM_RedefineClasses::_new_methods = NULL;
aoqi@0 50 Method** VM_RedefineClasses::_matching_old_methods = NULL;
aoqi@0 51 Method** VM_RedefineClasses::_matching_new_methods = NULL;
aoqi@0 52 Method** VM_RedefineClasses::_deleted_methods = NULL;
aoqi@0 53 Method** VM_RedefineClasses::_added_methods = NULL;
aoqi@0 54 int VM_RedefineClasses::_matching_methods_length = 0;
aoqi@0 55 int VM_RedefineClasses::_deleted_methods_length = 0;
aoqi@0 56 int VM_RedefineClasses::_added_methods_length = 0;
aoqi@0 57 Klass* VM_RedefineClasses::_the_class_oop = NULL;
aoqi@0 58
aoqi@0 59
aoqi@0 60 VM_RedefineClasses::VM_RedefineClasses(jint class_count,
aoqi@0 61 const jvmtiClassDefinition *class_defs,
aoqi@0 62 JvmtiClassLoadKind class_load_kind) {
aoqi@0 63 _class_count = class_count;
aoqi@0 64 _class_defs = class_defs;
aoqi@0 65 _class_load_kind = class_load_kind;
aoqi@0 66 _res = JVMTI_ERROR_NONE;
aoqi@0 67 }
aoqi@0 68
aoqi@0 69 bool VM_RedefineClasses::doit_prologue() {
aoqi@0 70 if (_class_count == 0) {
aoqi@0 71 _res = JVMTI_ERROR_NONE;
aoqi@0 72 return false;
aoqi@0 73 }
aoqi@0 74 if (_class_defs == NULL) {
aoqi@0 75 _res = JVMTI_ERROR_NULL_POINTER;
aoqi@0 76 return false;
aoqi@0 77 }
aoqi@0 78 for (int i = 0; i < _class_count; i++) {
aoqi@0 79 if (_class_defs[i].klass == NULL) {
aoqi@0 80 _res = JVMTI_ERROR_INVALID_CLASS;
aoqi@0 81 return false;
aoqi@0 82 }
aoqi@0 83 if (_class_defs[i].class_byte_count == 0) {
aoqi@0 84 _res = JVMTI_ERROR_INVALID_CLASS_FORMAT;
aoqi@0 85 return false;
aoqi@0 86 }
aoqi@0 87 if (_class_defs[i].class_bytes == NULL) {
aoqi@0 88 _res = JVMTI_ERROR_NULL_POINTER;
aoqi@0 89 return false;
aoqi@0 90 }
aoqi@0 91 }
aoqi@0 92
aoqi@0 93 // Start timer after all the sanity checks; not quite accurate, but
aoqi@0 94 // better than adding a bunch of stop() calls.
aoqi@0 95 RC_TIMER_START(_timer_vm_op_prologue);
aoqi@0 96
aoqi@0 97 // We first load new class versions in the prologue, because somewhere down the
aoqi@0 98 // call chain it is required that the current thread is a Java thread.
aoqi@0 99 _res = load_new_class_versions(Thread::current());
aoqi@0 100 if (_res != JVMTI_ERROR_NONE) {
aoqi@0 101 // free any successfully created classes, since none are redefined
aoqi@0 102 for (int i = 0; i < _class_count; i++) {
aoqi@0 103 if (_scratch_classes[i] != NULL) {
aoqi@0 104 ClassLoaderData* cld = _scratch_classes[i]->class_loader_data();
aoqi@0 105 // Free the memory for this class at class unloading time. Not before
aoqi@0 106 // because CMS might think this is still live.
aoqi@0 107 cld->add_to_deallocate_list((InstanceKlass*)_scratch_classes[i]);
aoqi@0 108 }
aoqi@0 109 }
aoqi@0 110 // Free os::malloc allocated memory in load_new_class_version.
aoqi@0 111 os::free(_scratch_classes);
aoqi@0 112 RC_TIMER_STOP(_timer_vm_op_prologue);
aoqi@0 113 return false;
aoqi@0 114 }
aoqi@0 115
aoqi@0 116 RC_TIMER_STOP(_timer_vm_op_prologue);
aoqi@0 117 return true;
aoqi@0 118 }
aoqi@0 119
aoqi@0 120 void VM_RedefineClasses::doit() {
aoqi@0 121 Thread *thread = Thread::current();
aoqi@0 122
aoqi@0 123 if (UseSharedSpaces) {
aoqi@0 124 // Sharing is enabled so we remap the shared readonly space to
aoqi@0 125 // shared readwrite, private just in case we need to redefine
aoqi@0 126 // a shared class. We do the remap during the doit() phase of
aoqi@0 127 // the safepoint to be safer.
aoqi@0 128 if (!MetaspaceShared::remap_shared_readonly_as_readwrite()) {
aoqi@0 129 RC_TRACE_WITH_THREAD(0x00000001, thread,
aoqi@0 130 ("failed to remap shared readonly space to readwrite, private"));
aoqi@0 131 _res = JVMTI_ERROR_INTERNAL;
aoqi@0 132 return;
aoqi@0 133 }
aoqi@0 134 }
aoqi@0 135
aoqi@0 136 // Mark methods seen on stack and everywhere else so old methods are not
aoqi@0 137 // cleaned up if they're on the stack.
aoqi@0 138 MetadataOnStackMark md_on_stack;
aoqi@0 139 HandleMark hm(thread); // make sure any handles created are deleted
aoqi@0 140 // before the stack walk again.
aoqi@0 141
aoqi@0 142 for (int i = 0; i < _class_count; i++) {
aoqi@0 143 redefine_single_class(_class_defs[i].klass, _scratch_classes[i], thread);
aoqi@0 144 ClassLoaderData* cld = _scratch_classes[i]->class_loader_data();
aoqi@0 145 // Free the memory for this class at class unloading time. Not before
aoqi@0 146 // because CMS might think this is still live.
aoqi@0 147 cld->add_to_deallocate_list((InstanceKlass*)_scratch_classes[i]);
aoqi@0 148 _scratch_classes[i] = NULL;
aoqi@0 149 }
aoqi@0 150
aoqi@0 151 // Disable any dependent concurrent compilations
aoqi@0 152 SystemDictionary::notice_modification();
aoqi@0 153
aoqi@0 154 // Set flag indicating that some invariants are no longer true.
aoqi@0 155 // See jvmtiExport.hpp for detailed explanation.
aoqi@0 156 JvmtiExport::set_has_redefined_a_class();
aoqi@0 157
aoqi@0 158 // check_class() is optionally called for product bits, but is
aoqi@0 159 // always called for non-product bits.
aoqi@0 160 #ifdef PRODUCT
aoqi@0 161 if (RC_TRACE_ENABLED(0x00004000)) {
aoqi@0 162 #endif
aoqi@0 163 RC_TRACE_WITH_THREAD(0x00004000, thread, ("calling check_class"));
aoqi@0 164 CheckClass check_class(thread);
aoqi@0 165 ClassLoaderDataGraph::classes_do(&check_class);
aoqi@0 166 #ifdef PRODUCT
aoqi@0 167 }
aoqi@0 168 #endif
aoqi@0 169 }
aoqi@0 170
aoqi@0 171 void VM_RedefineClasses::doit_epilogue() {
aoqi@0 172 // Free os::malloc allocated memory.
aoqi@0 173 os::free(_scratch_classes);
aoqi@0 174
aoqi@0 175 if (RC_TRACE_ENABLED(0x00000004)) {
aoqi@0 176 // Used to have separate timers for "doit" and "all", but the timer
aoqi@0 177 // overhead skewed the measurements.
aoqi@0 178 jlong doit_time = _timer_rsc_phase1.milliseconds() +
aoqi@0 179 _timer_rsc_phase2.milliseconds();
aoqi@0 180 jlong all_time = _timer_vm_op_prologue.milliseconds() + doit_time;
aoqi@0 181
aoqi@0 182 RC_TRACE(0x00000004, ("vm_op: all=" UINT64_FORMAT
aoqi@0 183 " prologue=" UINT64_FORMAT " doit=" UINT64_FORMAT, all_time,
aoqi@0 184 _timer_vm_op_prologue.milliseconds(), doit_time));
aoqi@0 185 RC_TRACE(0x00000004,
aoqi@0 186 ("redefine_single_class: phase1=" UINT64_FORMAT " phase2=" UINT64_FORMAT,
aoqi@0 187 _timer_rsc_phase1.milliseconds(), _timer_rsc_phase2.milliseconds()));
aoqi@0 188 }
aoqi@0 189 }
aoqi@0 190
aoqi@0 191 bool VM_RedefineClasses::is_modifiable_class(oop klass_mirror) {
aoqi@0 192 // classes for primitives cannot be redefined
aoqi@0 193 if (java_lang_Class::is_primitive(klass_mirror)) {
aoqi@0 194 return false;
aoqi@0 195 }
aoqi@0 196 Klass* the_class_oop = java_lang_Class::as_Klass(klass_mirror);
aoqi@0 197 // classes for arrays cannot be redefined
aoqi@0 198 if (the_class_oop == NULL || !the_class_oop->oop_is_instance()) {
aoqi@0 199 return false;
aoqi@0 200 }
aoqi@0 201 return true;
aoqi@0 202 }
aoqi@0 203
aoqi@0 204 // Append the current entry at scratch_i in scratch_cp to *merge_cp_p
aoqi@0 205 // where the end of *merge_cp_p is specified by *merge_cp_length_p. For
aoqi@0 206 // direct CP entries, there is just the current entry to append. For
aoqi@0 207 // indirect and double-indirect CP entries, there are zero or more
aoqi@0 208 // referenced CP entries along with the current entry to append.
aoqi@0 209 // Indirect and double-indirect CP entries are handled by recursive
aoqi@0 210 // calls to append_entry() as needed. The referenced CP entries are
aoqi@0 211 // always appended to *merge_cp_p before the referee CP entry. These
aoqi@0 212 // referenced CP entries may already exist in *merge_cp_p in which case
aoqi@0 213 // there is nothing extra to append and only the current entry is
aoqi@0 214 // appended.
aoqi@0 215 void VM_RedefineClasses::append_entry(constantPoolHandle scratch_cp,
aoqi@0 216 int scratch_i, constantPoolHandle *merge_cp_p, int *merge_cp_length_p,
aoqi@0 217 TRAPS) {
aoqi@0 218
aoqi@0 219 // append is different depending on entry tag type
aoqi@0 220 switch (scratch_cp->tag_at(scratch_i).value()) {
aoqi@0 221
aoqi@0 222 // The old verifier is implemented outside the VM. It loads classes,
aoqi@0 223 // but does not resolve constant pool entries directly so we never
aoqi@0 224 // see Class entries here with the old verifier. Similarly the old
aoqi@0 225 // verifier does not like Class entries in the input constant pool.
aoqi@0 226 // The split-verifier is implemented in the VM so it can optionally
aoqi@0 227 // and directly resolve constant pool entries to load classes. The
aoqi@0 228 // split-verifier can accept either Class entries or UnresolvedClass
aoqi@0 229 // entries in the input constant pool. We revert the appended copy
aoqi@0 230 // back to UnresolvedClass so that either verifier will be happy
aoqi@0 231 // with the constant pool entry.
aoqi@0 232 case JVM_CONSTANT_Class:
aoqi@0 233 {
aoqi@0 234 // revert the copy to JVM_CONSTANT_UnresolvedClass
aoqi@0 235 (*merge_cp_p)->unresolved_klass_at_put(*merge_cp_length_p,
aoqi@0 236 scratch_cp->klass_name_at(scratch_i));
aoqi@0 237
aoqi@0 238 if (scratch_i != *merge_cp_length_p) {
aoqi@0 239 // The new entry in *merge_cp_p is at a different index than
aoqi@0 240 // the new entry in scratch_cp so we need to map the index values.
aoqi@0 241 map_index(scratch_cp, scratch_i, *merge_cp_length_p);
aoqi@0 242 }
aoqi@0 243 (*merge_cp_length_p)++;
aoqi@0 244 } break;
aoqi@0 245
aoqi@0 246 // these are direct CP entries so they can be directly appended,
aoqi@0 247 // but double and long take two constant pool entries
aoqi@0 248 case JVM_CONSTANT_Double: // fall through
aoqi@0 249 case JVM_CONSTANT_Long:
aoqi@0 250 {
aoqi@0 251 ConstantPool::copy_entry_to(scratch_cp, scratch_i, *merge_cp_p, *merge_cp_length_p,
aoqi@0 252 THREAD);
aoqi@0 253
aoqi@0 254 if (scratch_i != *merge_cp_length_p) {
aoqi@0 255 // The new entry in *merge_cp_p is at a different index than
aoqi@0 256 // the new entry in scratch_cp so we need to map the index values.
aoqi@0 257 map_index(scratch_cp, scratch_i, *merge_cp_length_p);
aoqi@0 258 }
aoqi@0 259 (*merge_cp_length_p) += 2;
aoqi@0 260 } break;
aoqi@0 261
aoqi@0 262 // these are direct CP entries so they can be directly appended
aoqi@0 263 case JVM_CONSTANT_Float: // fall through
aoqi@0 264 case JVM_CONSTANT_Integer: // fall through
aoqi@0 265 case JVM_CONSTANT_Utf8: // fall through
aoqi@0 266
aoqi@0 267 // This was an indirect CP entry, but it has been changed into
aoqi@0 268 // Symbol*s so this entry can be directly appended.
aoqi@0 269 case JVM_CONSTANT_String: // fall through
aoqi@0 270
aoqi@0 271 // These were indirect CP entries, but they have been changed into
aoqi@0 272 // Symbol*s so these entries can be directly appended.
aoqi@0 273 case JVM_CONSTANT_UnresolvedClass: // fall through
aoqi@0 274 {
aoqi@0 275 ConstantPool::copy_entry_to(scratch_cp, scratch_i, *merge_cp_p, *merge_cp_length_p,
aoqi@0 276 THREAD);
aoqi@0 277
aoqi@0 278 if (scratch_i != *merge_cp_length_p) {
aoqi@0 279 // The new entry in *merge_cp_p is at a different index than
aoqi@0 280 // the new entry in scratch_cp so we need to map the index values.
aoqi@0 281 map_index(scratch_cp, scratch_i, *merge_cp_length_p);
aoqi@0 282 }
aoqi@0 283 (*merge_cp_length_p)++;
aoqi@0 284 } break;
aoqi@0 285
aoqi@0 286 // this is an indirect CP entry so it needs special handling
aoqi@0 287 case JVM_CONSTANT_NameAndType:
aoqi@0 288 {
aoqi@0 289 int name_ref_i = scratch_cp->name_ref_index_at(scratch_i);
aoqi@0 290 int new_name_ref_i = find_or_append_indirect_entry(scratch_cp, name_ref_i, merge_cp_p,
aoqi@0 291 merge_cp_length_p, THREAD);
aoqi@0 292
aoqi@0 293 int signature_ref_i = scratch_cp->signature_ref_index_at(scratch_i);
aoqi@0 294 int new_signature_ref_i = find_or_append_indirect_entry(scratch_cp, signature_ref_i,
aoqi@0 295 merge_cp_p, merge_cp_length_p,
aoqi@0 296 THREAD);
aoqi@0 297
aoqi@0 298 // If the referenced entries already exist in *merge_cp_p, then
aoqi@0 299 // both new_name_ref_i and new_signature_ref_i will both be 0.
aoqi@0 300 // In that case, all we are appending is the current entry.
aoqi@0 301 if (new_name_ref_i != name_ref_i) {
aoqi@0 302 RC_TRACE(0x00080000,
aoqi@0 303 ("NameAndType entry@%d name_ref_index change: %d to %d",
aoqi@0 304 *merge_cp_length_p, name_ref_i, new_name_ref_i));
aoqi@0 305 }
aoqi@0 306 if (new_signature_ref_i != signature_ref_i) {
aoqi@0 307 RC_TRACE(0x00080000,
aoqi@0 308 ("NameAndType entry@%d signature_ref_index change: %d to %d",
aoqi@0 309 *merge_cp_length_p, signature_ref_i, new_signature_ref_i));
aoqi@0 310 }
aoqi@0 311
aoqi@0 312 (*merge_cp_p)->name_and_type_at_put(*merge_cp_length_p,
aoqi@0 313 new_name_ref_i, new_signature_ref_i);
aoqi@0 314 if (scratch_i != *merge_cp_length_p) {
aoqi@0 315 // The new entry in *merge_cp_p is at a different index than
aoqi@0 316 // the new entry in scratch_cp so we need to map the index values.
aoqi@0 317 map_index(scratch_cp, scratch_i, *merge_cp_length_p);
aoqi@0 318 }
aoqi@0 319 (*merge_cp_length_p)++;
aoqi@0 320 } break;
aoqi@0 321
aoqi@0 322 // this is a double-indirect CP entry so it needs special handling
aoqi@0 323 case JVM_CONSTANT_Fieldref: // fall through
aoqi@0 324 case JVM_CONSTANT_InterfaceMethodref: // fall through
aoqi@0 325 case JVM_CONSTANT_Methodref:
aoqi@0 326 {
aoqi@0 327 int klass_ref_i = scratch_cp->uncached_klass_ref_index_at(scratch_i);
aoqi@0 328 int new_klass_ref_i = find_or_append_indirect_entry(scratch_cp, klass_ref_i,
aoqi@0 329 merge_cp_p, merge_cp_length_p, THREAD);
aoqi@0 330
aoqi@0 331 int name_and_type_ref_i = scratch_cp->uncached_name_and_type_ref_index_at(scratch_i);
aoqi@0 332 int new_name_and_type_ref_i = find_or_append_indirect_entry(scratch_cp, name_and_type_ref_i,
aoqi@0 333 merge_cp_p, merge_cp_length_p, THREAD);
aoqi@0 334
aoqi@0 335 const char *entry_name;
aoqi@0 336 switch (scratch_cp->tag_at(scratch_i).value()) {
aoqi@0 337 case JVM_CONSTANT_Fieldref:
aoqi@0 338 entry_name = "Fieldref";
aoqi@0 339 (*merge_cp_p)->field_at_put(*merge_cp_length_p, new_klass_ref_i,
aoqi@0 340 new_name_and_type_ref_i);
aoqi@0 341 break;
aoqi@0 342 case JVM_CONSTANT_InterfaceMethodref:
aoqi@0 343 entry_name = "IFMethodref";
aoqi@0 344 (*merge_cp_p)->interface_method_at_put(*merge_cp_length_p,
aoqi@0 345 new_klass_ref_i, new_name_and_type_ref_i);
aoqi@0 346 break;
aoqi@0 347 case JVM_CONSTANT_Methodref:
aoqi@0 348 entry_name = "Methodref";
aoqi@0 349 (*merge_cp_p)->method_at_put(*merge_cp_length_p, new_klass_ref_i,
aoqi@0 350 new_name_and_type_ref_i);
aoqi@0 351 break;
aoqi@0 352 default:
aoqi@0 353 guarantee(false, "bad switch");
aoqi@0 354 break;
aoqi@0 355 }
aoqi@0 356
aoqi@0 357 if (klass_ref_i != new_klass_ref_i) {
aoqi@0 358 RC_TRACE(0x00080000, ("%s entry@%d class_index changed: %d to %d",
aoqi@0 359 entry_name, *merge_cp_length_p, klass_ref_i, new_klass_ref_i));
aoqi@0 360 }
aoqi@0 361 if (name_and_type_ref_i != new_name_and_type_ref_i) {
aoqi@0 362 RC_TRACE(0x00080000,
aoqi@0 363 ("%s entry@%d name_and_type_index changed: %d to %d",
aoqi@0 364 entry_name, *merge_cp_length_p, name_and_type_ref_i,
aoqi@0 365 new_name_and_type_ref_i));
aoqi@0 366 }
aoqi@0 367
aoqi@0 368 if (scratch_i != *merge_cp_length_p) {
aoqi@0 369 // The new entry in *merge_cp_p is at a different index than
aoqi@0 370 // the new entry in scratch_cp so we need to map the index values.
aoqi@0 371 map_index(scratch_cp, scratch_i, *merge_cp_length_p);
aoqi@0 372 }
aoqi@0 373 (*merge_cp_length_p)++;
aoqi@0 374 } break;
aoqi@0 375
aoqi@0 376 // this is an indirect CP entry so it needs special handling
aoqi@0 377 case JVM_CONSTANT_MethodType:
aoqi@0 378 {
aoqi@0 379 int ref_i = scratch_cp->method_type_index_at(scratch_i);
aoqi@0 380 int new_ref_i = find_or_append_indirect_entry(scratch_cp, ref_i, merge_cp_p,
aoqi@0 381 merge_cp_length_p, THREAD);
aoqi@0 382 if (new_ref_i != ref_i) {
aoqi@0 383 RC_TRACE(0x00080000,
aoqi@0 384 ("MethodType entry@%d ref_index change: %d to %d",
aoqi@0 385 *merge_cp_length_p, ref_i, new_ref_i));
aoqi@0 386 }
aoqi@0 387 (*merge_cp_p)->method_type_index_at_put(*merge_cp_length_p, new_ref_i);
aoqi@0 388 if (scratch_i != *merge_cp_length_p) {
aoqi@0 389 // The new entry in *merge_cp_p is at a different index than
aoqi@0 390 // the new entry in scratch_cp so we need to map the index values.
aoqi@0 391 map_index(scratch_cp, scratch_i, *merge_cp_length_p);
aoqi@0 392 }
aoqi@0 393 (*merge_cp_length_p)++;
aoqi@0 394 } break;
aoqi@0 395
aoqi@0 396 // this is an indirect CP entry so it needs special handling
aoqi@0 397 case JVM_CONSTANT_MethodHandle:
aoqi@0 398 {
aoqi@0 399 int ref_kind = scratch_cp->method_handle_ref_kind_at(scratch_i);
aoqi@0 400 int ref_i = scratch_cp->method_handle_index_at(scratch_i);
aoqi@0 401 int new_ref_i = find_or_append_indirect_entry(scratch_cp, ref_i, merge_cp_p,
aoqi@0 402 merge_cp_length_p, THREAD);
aoqi@0 403 if (new_ref_i != ref_i) {
aoqi@0 404 RC_TRACE(0x00080000,
aoqi@0 405 ("MethodHandle entry@%d ref_index change: %d to %d",
aoqi@0 406 *merge_cp_length_p, ref_i, new_ref_i));
aoqi@0 407 }
aoqi@0 408 (*merge_cp_p)->method_handle_index_at_put(*merge_cp_length_p, ref_kind, new_ref_i);
aoqi@0 409 if (scratch_i != *merge_cp_length_p) {
aoqi@0 410 // The new entry in *merge_cp_p is at a different index than
aoqi@0 411 // the new entry in scratch_cp so we need to map the index values.
aoqi@0 412 map_index(scratch_cp, scratch_i, *merge_cp_length_p);
aoqi@0 413 }
aoqi@0 414 (*merge_cp_length_p)++;
aoqi@0 415 } break;
aoqi@0 416
aoqi@0 417 // this is an indirect CP entry so it needs special handling
aoqi@0 418 case JVM_CONSTANT_InvokeDynamic:
aoqi@0 419 {
aoqi@0 420 // Index of the bootstrap specifier in the operands array
aoqi@0 421 int old_bs_i = scratch_cp->invoke_dynamic_bootstrap_specifier_index(scratch_i);
aoqi@0 422 int new_bs_i = find_or_append_operand(scratch_cp, old_bs_i, merge_cp_p,
aoqi@0 423 merge_cp_length_p, THREAD);
aoqi@0 424 // The bootstrap method NameAndType_info index
aoqi@0 425 int old_ref_i = scratch_cp->invoke_dynamic_name_and_type_ref_index_at(scratch_i);
aoqi@0 426 int new_ref_i = find_or_append_indirect_entry(scratch_cp, old_ref_i, merge_cp_p,
aoqi@0 427 merge_cp_length_p, THREAD);
aoqi@0 428 if (new_bs_i != old_bs_i) {
aoqi@0 429 RC_TRACE(0x00080000,
aoqi@0 430 ("InvokeDynamic entry@%d bootstrap_method_attr_index change: %d to %d",
aoqi@0 431 *merge_cp_length_p, old_bs_i, new_bs_i));
aoqi@0 432 }
aoqi@0 433 if (new_ref_i != old_ref_i) {
aoqi@0 434 RC_TRACE(0x00080000,
aoqi@0 435 ("InvokeDynamic entry@%d name_and_type_index change: %d to %d",
aoqi@0 436 *merge_cp_length_p, old_ref_i, new_ref_i));
aoqi@0 437 }
aoqi@0 438
aoqi@0 439 (*merge_cp_p)->invoke_dynamic_at_put(*merge_cp_length_p, new_bs_i, new_ref_i);
aoqi@0 440 if (scratch_i != *merge_cp_length_p) {
aoqi@0 441 // The new entry in *merge_cp_p is at a different index than
aoqi@0 442 // the new entry in scratch_cp so we need to map the index values.
aoqi@0 443 map_index(scratch_cp, scratch_i, *merge_cp_length_p);
aoqi@0 444 }
aoqi@0 445 (*merge_cp_length_p)++;
aoqi@0 446 } break;
aoqi@0 447
aoqi@0 448 // At this stage, Class or UnresolvedClass could be here, but not
aoqi@0 449 // ClassIndex
aoqi@0 450 case JVM_CONSTANT_ClassIndex: // fall through
aoqi@0 451
aoqi@0 452 // Invalid is used as the tag for the second constant pool entry
aoqi@0 453 // occupied by JVM_CONSTANT_Double or JVM_CONSTANT_Long. It should
aoqi@0 454 // not be seen by itself.
aoqi@0 455 case JVM_CONSTANT_Invalid: // fall through
aoqi@0 456
aoqi@0 457 // At this stage, String could be here, but not StringIndex
aoqi@0 458 case JVM_CONSTANT_StringIndex: // fall through
aoqi@0 459
aoqi@0 460 // At this stage JVM_CONSTANT_UnresolvedClassInError should not be
aoqi@0 461 // here
aoqi@0 462 case JVM_CONSTANT_UnresolvedClassInError: // fall through
aoqi@0 463
aoqi@0 464 default:
aoqi@0 465 {
aoqi@0 466 // leave a breadcrumb
aoqi@0 467 jbyte bad_value = scratch_cp->tag_at(scratch_i).value();
aoqi@0 468 ShouldNotReachHere();
aoqi@0 469 } break;
aoqi@0 470 } // end switch tag value
aoqi@0 471 } // end append_entry()
aoqi@0 472
aoqi@0 473
aoqi@0 474 int VM_RedefineClasses::find_or_append_indirect_entry(constantPoolHandle scratch_cp,
aoqi@0 475 int ref_i, constantPoolHandle *merge_cp_p, int *merge_cp_length_p, TRAPS) {
aoqi@0 476
aoqi@0 477 int new_ref_i = ref_i;
aoqi@0 478 bool match = (ref_i < *merge_cp_length_p) &&
aoqi@0 479 scratch_cp->compare_entry_to(ref_i, *merge_cp_p, ref_i, THREAD);
aoqi@0 480
aoqi@0 481 if (!match) {
aoqi@0 482 // forward reference in *merge_cp_p or not a direct match
aoqi@0 483 int found_i = scratch_cp->find_matching_entry(ref_i, *merge_cp_p, THREAD);
aoqi@0 484 if (found_i != 0) {
aoqi@0 485 guarantee(found_i != ref_i, "compare_entry_to() and find_matching_entry() do not agree");
aoqi@0 486 // Found a matching entry somewhere else in *merge_cp_p so just need a mapping entry.
aoqi@0 487 new_ref_i = found_i;
aoqi@0 488 map_index(scratch_cp, ref_i, found_i);
aoqi@0 489 } else {
aoqi@0 490 // no match found so we have to append this entry to *merge_cp_p
aoqi@0 491 append_entry(scratch_cp, ref_i, merge_cp_p, merge_cp_length_p, THREAD);
aoqi@0 492 // The above call to append_entry() can only append one entry
aoqi@0 493 // so the post call query of *merge_cp_length_p is only for
aoqi@0 494 // the sake of consistency.
aoqi@0 495 new_ref_i = *merge_cp_length_p - 1;
aoqi@0 496 }
aoqi@0 497 }
aoqi@0 498
aoqi@0 499 return new_ref_i;
aoqi@0 500 } // end find_or_append_indirect_entry()
aoqi@0 501
aoqi@0 502
aoqi@0 503 // Append a bootstrap specifier into the merge_cp operands that is semantically equal
aoqi@0 504 // to the scratch_cp operands bootstrap specifier passed by the old_bs_i index.
aoqi@0 505 // Recursively append new merge_cp entries referenced by the new bootstrap specifier.
aoqi@0 506 void VM_RedefineClasses::append_operand(constantPoolHandle scratch_cp, int old_bs_i,
aoqi@0 507 constantPoolHandle *merge_cp_p, int *merge_cp_length_p, TRAPS) {
aoqi@0 508
aoqi@0 509 int old_ref_i = scratch_cp->operand_bootstrap_method_ref_index_at(old_bs_i);
aoqi@0 510 int new_ref_i = find_or_append_indirect_entry(scratch_cp, old_ref_i, merge_cp_p,
aoqi@0 511 merge_cp_length_p, THREAD);
aoqi@0 512 if (new_ref_i != old_ref_i) {
aoqi@0 513 RC_TRACE(0x00080000,
aoqi@0 514 ("operands entry@%d bootstrap method ref_index change: %d to %d",
aoqi@0 515 _operands_cur_length, old_ref_i, new_ref_i));
aoqi@0 516 }
aoqi@0 517
aoqi@0 518 Array<u2>* merge_ops = (*merge_cp_p)->operands();
aoqi@0 519 int new_bs_i = _operands_cur_length;
aoqi@0 520 // We have _operands_cur_length == 0 when the merge_cp operands is empty yet.
aoqi@0 521 // However, the operand_offset_at(0) was set in the extend_operands() call.
aoqi@0 522 int new_base = (new_bs_i == 0) ? (*merge_cp_p)->operand_offset_at(0)
aoqi@0 523 : (*merge_cp_p)->operand_next_offset_at(new_bs_i - 1);
aoqi@0 524 int argc = scratch_cp->operand_argument_count_at(old_bs_i);
aoqi@0 525
aoqi@0 526 ConstantPool::operand_offset_at_put(merge_ops, _operands_cur_length, new_base);
aoqi@0 527 merge_ops->at_put(new_base++, new_ref_i);
aoqi@0 528 merge_ops->at_put(new_base++, argc);
aoqi@0 529
aoqi@0 530 for (int i = 0; i < argc; i++) {
aoqi@0 531 int old_arg_ref_i = scratch_cp->operand_argument_index_at(old_bs_i, i);
aoqi@0 532 int new_arg_ref_i = find_or_append_indirect_entry(scratch_cp, old_arg_ref_i, merge_cp_p,
aoqi@0 533 merge_cp_length_p, THREAD);
aoqi@0 534 merge_ops->at_put(new_base++, new_arg_ref_i);
aoqi@0 535 if (new_arg_ref_i != old_arg_ref_i) {
aoqi@0 536 RC_TRACE(0x00080000,
aoqi@0 537 ("operands entry@%d bootstrap method argument ref_index change: %d to %d",
aoqi@0 538 _operands_cur_length, old_arg_ref_i, new_arg_ref_i));
aoqi@0 539 }
aoqi@0 540 }
aoqi@0 541 if (old_bs_i != _operands_cur_length) {
aoqi@0 542 // The bootstrap specifier in *merge_cp_p is at a different index than
aoqi@0 543 // that in scratch_cp so we need to map the index values.
aoqi@0 544 map_operand_index(old_bs_i, new_bs_i);
aoqi@0 545 }
aoqi@0 546 _operands_cur_length++;
aoqi@0 547 } // end append_operand()
aoqi@0 548
aoqi@0 549
aoqi@0 550 int VM_RedefineClasses::find_or_append_operand(constantPoolHandle scratch_cp,
aoqi@0 551 int old_bs_i, constantPoolHandle *merge_cp_p, int *merge_cp_length_p, TRAPS) {
aoqi@0 552
aoqi@0 553 int new_bs_i = old_bs_i; // bootstrap specifier index
aoqi@0 554 bool match = (old_bs_i < _operands_cur_length) &&
aoqi@0 555 scratch_cp->compare_operand_to(old_bs_i, *merge_cp_p, old_bs_i, THREAD);
aoqi@0 556
aoqi@0 557 if (!match) {
aoqi@0 558 // forward reference in *merge_cp_p or not a direct match
aoqi@0 559 int found_i = scratch_cp->find_matching_operand(old_bs_i, *merge_cp_p,
aoqi@0 560 _operands_cur_length, THREAD);
aoqi@0 561 if (found_i != -1) {
aoqi@0 562 guarantee(found_i != old_bs_i, "compare_operand_to() and find_matching_operand() disagree");
aoqi@0 563 // found a matching operand somewhere else in *merge_cp_p so just need a mapping
aoqi@0 564 new_bs_i = found_i;
aoqi@0 565 map_operand_index(old_bs_i, found_i);
aoqi@0 566 } else {
aoqi@0 567 // no match found so we have to append this bootstrap specifier to *merge_cp_p
aoqi@0 568 append_operand(scratch_cp, old_bs_i, merge_cp_p, merge_cp_length_p, THREAD);
aoqi@0 569 new_bs_i = _operands_cur_length - 1;
aoqi@0 570 }
aoqi@0 571 }
aoqi@0 572 return new_bs_i;
aoqi@0 573 } // end find_or_append_operand()
aoqi@0 574
aoqi@0 575
aoqi@0 576 void VM_RedefineClasses::finalize_operands_merge(constantPoolHandle merge_cp, TRAPS) {
aoqi@0 577 if (merge_cp->operands() == NULL) {
aoqi@0 578 return;
aoqi@0 579 }
aoqi@0 580 // Shrink the merge_cp operands
aoqi@0 581 merge_cp->shrink_operands(_operands_cur_length, CHECK);
aoqi@0 582
aoqi@0 583 if (RC_TRACE_ENABLED(0x00040000)) {
aoqi@0 584 // don't want to loop unless we are tracing
aoqi@0 585 int count = 0;
aoqi@0 586 for (int i = 1; i < _operands_index_map_p->length(); i++) {
aoqi@0 587 int value = _operands_index_map_p->at(i);
aoqi@0 588 if (value != -1) {
aoqi@0 589 RC_TRACE_WITH_THREAD(0x00040000, THREAD,
aoqi@0 590 ("operands_index_map[%d]: old=%d new=%d", count, i, value));
aoqi@0 591 count++;
aoqi@0 592 }
aoqi@0 593 }
aoqi@0 594 }
aoqi@0 595 // Clean-up
aoqi@0 596 _operands_index_map_p = NULL;
aoqi@0 597 _operands_cur_length = 0;
aoqi@0 598 _operands_index_map_count = 0;
aoqi@0 599 } // end finalize_operands_merge()
aoqi@0 600
aoqi@0 601
aoqi@0 602 jvmtiError VM_RedefineClasses::compare_and_normalize_class_versions(
aoqi@0 603 instanceKlassHandle the_class,
aoqi@0 604 instanceKlassHandle scratch_class) {
aoqi@0 605 int i;
aoqi@0 606
aoqi@0 607 // Check superclasses, or rather their names, since superclasses themselves can be
aoqi@0 608 // requested to replace.
aoqi@0 609 // Check for NULL superclass first since this might be java.lang.Object
aoqi@0 610 if (the_class->super() != scratch_class->super() &&
aoqi@0 611 (the_class->super() == NULL || scratch_class->super() == NULL ||
aoqi@0 612 the_class->super()->name() !=
aoqi@0 613 scratch_class->super()->name())) {
aoqi@0 614 return JVMTI_ERROR_UNSUPPORTED_REDEFINITION_HIERARCHY_CHANGED;
aoqi@0 615 }
aoqi@0 616
aoqi@0 617 // Check if the number, names and order of directly implemented interfaces are the same.
aoqi@0 618 // I think in principle we should just check if the sets of names of directly implemented
aoqi@0 619 // interfaces are the same, i.e. the order of declaration (which, however, if changed in the
aoqi@0 620 // .java file, also changes in .class file) should not matter. However, comparing sets is
aoqi@0 621 // technically a bit more difficult, and, more importantly, I am not sure at present that the
aoqi@0 622 // order of interfaces does not matter on the implementation level, i.e. that the VM does not
aoqi@0 623 // rely on it somewhere.
aoqi@0 624 Array<Klass*>* k_interfaces = the_class->local_interfaces();
aoqi@0 625 Array<Klass*>* k_new_interfaces = scratch_class->local_interfaces();
aoqi@0 626 int n_intfs = k_interfaces->length();
aoqi@0 627 if (n_intfs != k_new_interfaces->length()) {
aoqi@0 628 return JVMTI_ERROR_UNSUPPORTED_REDEFINITION_HIERARCHY_CHANGED;
aoqi@0 629 }
aoqi@0 630 for (i = 0; i < n_intfs; i++) {
aoqi@0 631 if (k_interfaces->at(i)->name() !=
aoqi@0 632 k_new_interfaces->at(i)->name()) {
aoqi@0 633 return JVMTI_ERROR_UNSUPPORTED_REDEFINITION_HIERARCHY_CHANGED;
aoqi@0 634 }
aoqi@0 635 }
aoqi@0 636
aoqi@0 637 // Check whether class is in the error init state.
aoqi@0 638 if (the_class->is_in_error_state()) {
aoqi@0 639 // TBD #5057930: special error code is needed in 1.6
aoqi@0 640 return JVMTI_ERROR_INVALID_CLASS;
aoqi@0 641 }
aoqi@0 642
aoqi@0 643 // Check whether class modifiers are the same.
aoqi@0 644 jushort old_flags = (jushort) the_class->access_flags().get_flags();
aoqi@0 645 jushort new_flags = (jushort) scratch_class->access_flags().get_flags();
aoqi@0 646 if (old_flags != new_flags) {
aoqi@0 647 return JVMTI_ERROR_UNSUPPORTED_REDEFINITION_CLASS_MODIFIERS_CHANGED;
aoqi@0 648 }
aoqi@0 649
aoqi@0 650 // Check if the number, names, types and order of fields declared in these classes
aoqi@0 651 // are the same.
aoqi@0 652 JavaFieldStream old_fs(the_class);
aoqi@0 653 JavaFieldStream new_fs(scratch_class);
aoqi@0 654 for (; !old_fs.done() && !new_fs.done(); old_fs.next(), new_fs.next()) {
aoqi@0 655 // access
aoqi@0 656 old_flags = old_fs.access_flags().as_short();
aoqi@0 657 new_flags = new_fs.access_flags().as_short();
aoqi@0 658 if ((old_flags ^ new_flags) & JVM_RECOGNIZED_FIELD_MODIFIERS) {
aoqi@0 659 return JVMTI_ERROR_UNSUPPORTED_REDEFINITION_SCHEMA_CHANGED;
aoqi@0 660 }
aoqi@0 661 // offset
aoqi@0 662 if (old_fs.offset() != new_fs.offset()) {
aoqi@0 663 return JVMTI_ERROR_UNSUPPORTED_REDEFINITION_SCHEMA_CHANGED;
aoqi@0 664 }
aoqi@0 665 // name and signature
aoqi@0 666 Symbol* name_sym1 = the_class->constants()->symbol_at(old_fs.name_index());
aoqi@0 667 Symbol* sig_sym1 = the_class->constants()->symbol_at(old_fs.signature_index());
aoqi@0 668 Symbol* name_sym2 = scratch_class->constants()->symbol_at(new_fs.name_index());
aoqi@0 669 Symbol* sig_sym2 = scratch_class->constants()->symbol_at(new_fs.signature_index());
aoqi@0 670 if (name_sym1 != name_sym2 || sig_sym1 != sig_sym2) {
aoqi@0 671 return JVMTI_ERROR_UNSUPPORTED_REDEFINITION_SCHEMA_CHANGED;
aoqi@0 672 }
aoqi@0 673 }
aoqi@0 674
aoqi@0 675 // If both streams aren't done then we have a differing number of
aoqi@0 676 // fields.
aoqi@0 677 if (!old_fs.done() || !new_fs.done()) {
aoqi@0 678 return JVMTI_ERROR_UNSUPPORTED_REDEFINITION_SCHEMA_CHANGED;
aoqi@0 679 }
aoqi@0 680
aoqi@0 681 // Do a parallel walk through the old and new methods. Detect
aoqi@0 682 // cases where they match (exist in both), have been added in
aoqi@0 683 // the new methods, or have been deleted (exist only in the
aoqi@0 684 // old methods). The class file parser places methods in order
aoqi@0 685 // by method name, but does not order overloaded methods by
aoqi@0 686 // signature. In order to determine what fate befell the methods,
aoqi@0 687 // this code places the overloaded new methods that have matching
aoqi@0 688 // old methods in the same order as the old methods and places
aoqi@0 689 // new overloaded methods at the end of overloaded methods of
aoqi@0 690 // that name. The code for this order normalization is adapted
aoqi@0 691 // from the algorithm used in InstanceKlass::find_method().
aoqi@0 692 // Since we are swapping out of order entries as we find them,
aoqi@0 693 // we only have to search forward through the overloaded methods.
aoqi@0 694 // Methods which are added and have the same name as an existing
aoqi@0 695 // method (but different signature) will be put at the end of
aoqi@0 696 // the methods with that name, and the name mismatch code will
aoqi@0 697 // handle them.
aoqi@0 698 Array<Method*>* k_old_methods(the_class->methods());
aoqi@0 699 Array<Method*>* k_new_methods(scratch_class->methods());
aoqi@0 700 int n_old_methods = k_old_methods->length();
aoqi@0 701 int n_new_methods = k_new_methods->length();
aoqi@0 702 Thread* thread = Thread::current();
aoqi@0 703
aoqi@0 704 int ni = 0;
aoqi@0 705 int oi = 0;
aoqi@0 706 while (true) {
aoqi@0 707 Method* k_old_method;
aoqi@0 708 Method* k_new_method;
aoqi@0 709 enum { matched, added, deleted, undetermined } method_was = undetermined;
aoqi@0 710
aoqi@0 711 if (oi >= n_old_methods) {
aoqi@0 712 if (ni >= n_new_methods) {
aoqi@0 713 break; // we've looked at everything, done
aoqi@0 714 }
aoqi@0 715 // New method at the end
aoqi@0 716 k_new_method = k_new_methods->at(ni);
aoqi@0 717 method_was = added;
aoqi@0 718 } else if (ni >= n_new_methods) {
aoqi@0 719 // Old method, at the end, is deleted
aoqi@0 720 k_old_method = k_old_methods->at(oi);
aoqi@0 721 method_was = deleted;
aoqi@0 722 } else {
aoqi@0 723 // There are more methods in both the old and new lists
aoqi@0 724 k_old_method = k_old_methods->at(oi);
aoqi@0 725 k_new_method = k_new_methods->at(ni);
aoqi@0 726 if (k_old_method->name() != k_new_method->name()) {
aoqi@0 727 // Methods are sorted by method name, so a mismatch means added
aoqi@0 728 // or deleted
aoqi@0 729 if (k_old_method->name()->fast_compare(k_new_method->name()) > 0) {
aoqi@0 730 method_was = added;
aoqi@0 731 } else {
aoqi@0 732 method_was = deleted;
aoqi@0 733 }
aoqi@0 734 } else if (k_old_method->signature() == k_new_method->signature()) {
aoqi@0 735 // Both the name and signature match
aoqi@0 736 method_was = matched;
aoqi@0 737 } else {
aoqi@0 738 // The name matches, but the signature doesn't, which means we have to
aoqi@0 739 // search forward through the new overloaded methods.
aoqi@0 740 int nj; // outside the loop for post-loop check
aoqi@0 741 for (nj = ni + 1; nj < n_new_methods; nj++) {
aoqi@0 742 Method* m = k_new_methods->at(nj);
aoqi@0 743 if (k_old_method->name() != m->name()) {
aoqi@0 744 // reached another method name so no more overloaded methods
aoqi@0 745 method_was = deleted;
aoqi@0 746 break;
aoqi@0 747 }
aoqi@0 748 if (k_old_method->signature() == m->signature()) {
aoqi@0 749 // found a match so swap the methods
aoqi@0 750 k_new_methods->at_put(ni, m);
aoqi@0 751 k_new_methods->at_put(nj, k_new_method);
aoqi@0 752 k_new_method = m;
aoqi@0 753 method_was = matched;
aoqi@0 754 break;
aoqi@0 755 }
aoqi@0 756 }
aoqi@0 757
aoqi@0 758 if (nj >= n_new_methods) {
aoqi@0 759 // reached the end without a match; so method was deleted
aoqi@0 760 method_was = deleted;
aoqi@0 761 }
aoqi@0 762 }
aoqi@0 763 }
aoqi@0 764
aoqi@0 765 switch (method_was) {
aoqi@0 766 case matched:
aoqi@0 767 // methods match, be sure modifiers do too
aoqi@0 768 old_flags = (jushort) k_old_method->access_flags().get_flags();
aoqi@0 769 new_flags = (jushort) k_new_method->access_flags().get_flags();
aoqi@0 770 if ((old_flags ^ new_flags) & ~(JVM_ACC_NATIVE)) {
aoqi@0 771 return JVMTI_ERROR_UNSUPPORTED_REDEFINITION_METHOD_MODIFIERS_CHANGED;
aoqi@0 772 }
aoqi@0 773 {
aoqi@0 774 u2 new_num = k_new_method->method_idnum();
aoqi@0 775 u2 old_num = k_old_method->method_idnum();
aoqi@0 776 if (new_num != old_num) {
aoqi@0 777 Method* idnum_owner = scratch_class->method_with_idnum(old_num);
aoqi@0 778 if (idnum_owner != NULL) {
aoqi@0 779 // There is already a method assigned this idnum -- switch them
aoqi@0 780 idnum_owner->set_method_idnum(new_num);
aoqi@0 781 }
aoqi@0 782 k_new_method->set_method_idnum(old_num);
aoqi@0 783 if (thread->has_pending_exception()) {
aoqi@0 784 return JVMTI_ERROR_OUT_OF_MEMORY;
aoqi@0 785 }
aoqi@0 786 }
aoqi@0 787 }
aoqi@0 788 RC_TRACE(0x00008000, ("Method matched: new: %s [%d] == old: %s [%d]",
aoqi@0 789 k_new_method->name_and_sig_as_C_string(), ni,
aoqi@0 790 k_old_method->name_and_sig_as_C_string(), oi));
aoqi@0 791 // advance to next pair of methods
aoqi@0 792 ++oi;
aoqi@0 793 ++ni;
aoqi@0 794 break;
aoqi@0 795 case added:
aoqi@0 796 // method added, see if it is OK
aoqi@0 797 new_flags = (jushort) k_new_method->access_flags().get_flags();
aoqi@0 798 if ((new_flags & JVM_ACC_PRIVATE) == 0
aoqi@0 799 // hack: private should be treated as final, but alas
aoqi@0 800 || (new_flags & (JVM_ACC_FINAL|JVM_ACC_STATIC)) == 0
aoqi@0 801 ) {
aoqi@0 802 // new methods must be private
aoqi@0 803 return JVMTI_ERROR_UNSUPPORTED_REDEFINITION_METHOD_ADDED;
aoqi@0 804 }
aoqi@0 805 {
aoqi@0 806 u2 num = the_class->next_method_idnum();
aoqi@0 807 if (num == ConstMethod::UNSET_IDNUM) {
aoqi@0 808 // cannot add any more methods
aoqi@0 809 return JVMTI_ERROR_UNSUPPORTED_REDEFINITION_METHOD_ADDED;
aoqi@0 810 }
aoqi@0 811 u2 new_num = k_new_method->method_idnum();
aoqi@0 812 Method* idnum_owner = scratch_class->method_with_idnum(num);
aoqi@0 813 if (idnum_owner != NULL) {
aoqi@0 814 // There is already a method assigned this idnum -- switch them
aoqi@0 815 idnum_owner->set_method_idnum(new_num);
aoqi@0 816 }
aoqi@0 817 k_new_method->set_method_idnum(num);
aoqi@0 818 if (thread->has_pending_exception()) {
aoqi@0 819 return JVMTI_ERROR_OUT_OF_MEMORY;
aoqi@0 820 }
aoqi@0 821 }
aoqi@0 822 RC_TRACE(0x00008000, ("Method added: new: %s [%d]",
aoqi@0 823 k_new_method->name_and_sig_as_C_string(), ni));
aoqi@0 824 ++ni; // advance to next new method
aoqi@0 825 break;
aoqi@0 826 case deleted:
aoqi@0 827 // method deleted, see if it is OK
aoqi@0 828 old_flags = (jushort) k_old_method->access_flags().get_flags();
aoqi@0 829 if ((old_flags & JVM_ACC_PRIVATE) == 0
aoqi@0 830 // hack: private should be treated as final, but alas
aoqi@0 831 || (old_flags & (JVM_ACC_FINAL|JVM_ACC_STATIC)) == 0
aoqi@0 832 ) {
aoqi@0 833 // deleted methods must be private
aoqi@0 834 return JVMTI_ERROR_UNSUPPORTED_REDEFINITION_METHOD_DELETED;
aoqi@0 835 }
aoqi@0 836 RC_TRACE(0x00008000, ("Method deleted: old: %s [%d]",
aoqi@0 837 k_old_method->name_and_sig_as_C_string(), oi));
aoqi@0 838 ++oi; // advance to next old method
aoqi@0 839 break;
aoqi@0 840 default:
aoqi@0 841 ShouldNotReachHere();
aoqi@0 842 }
aoqi@0 843 }
aoqi@0 844
aoqi@0 845 return JVMTI_ERROR_NONE;
aoqi@0 846 }
aoqi@0 847
aoqi@0 848
aoqi@0 849 // Find new constant pool index value for old constant pool index value
aoqi@0 850 // by seaching the index map. Returns zero (0) if there is no mapped
aoqi@0 851 // value for the old constant pool index.
aoqi@0 852 int VM_RedefineClasses::find_new_index(int old_index) {
aoqi@0 853 if (_index_map_count == 0) {
aoqi@0 854 // map is empty so nothing can be found
aoqi@0 855 return 0;
aoqi@0 856 }
aoqi@0 857
aoqi@0 858 if (old_index < 1 || old_index >= _index_map_p->length()) {
aoqi@0 859 // The old_index is out of range so it is not mapped. This should
aoqi@0 860 // not happen in regular constant pool merging use, but it can
aoqi@0 861 // happen if a corrupt annotation is processed.
aoqi@0 862 return 0;
aoqi@0 863 }
aoqi@0 864
aoqi@0 865 int value = _index_map_p->at(old_index);
aoqi@0 866 if (value == -1) {
aoqi@0 867 // the old_index is not mapped
aoqi@0 868 return 0;
aoqi@0 869 }
aoqi@0 870
aoqi@0 871 return value;
aoqi@0 872 } // end find_new_index()
aoqi@0 873
aoqi@0 874
aoqi@0 875 // Find new bootstrap specifier index value for old bootstrap specifier index
aoqi@0 876 // value by seaching the index map. Returns unused index (-1) if there is
aoqi@0 877 // no mapped value for the old bootstrap specifier index.
aoqi@0 878 int VM_RedefineClasses::find_new_operand_index(int old_index) {
aoqi@0 879 if (_operands_index_map_count == 0) {
aoqi@0 880 // map is empty so nothing can be found
aoqi@0 881 return -1;
aoqi@0 882 }
aoqi@0 883
aoqi@0 884 if (old_index == -1 || old_index >= _operands_index_map_p->length()) {
aoqi@0 885 // The old_index is out of range so it is not mapped.
aoqi@0 886 // This should not happen in regular constant pool merging use.
aoqi@0 887 return -1;
aoqi@0 888 }
aoqi@0 889
aoqi@0 890 int value = _operands_index_map_p->at(old_index);
aoqi@0 891 if (value == -1) {
aoqi@0 892 // the old_index is not mapped
aoqi@0 893 return -1;
aoqi@0 894 }
aoqi@0 895
aoqi@0 896 return value;
aoqi@0 897 } // end find_new_operand_index()
aoqi@0 898
aoqi@0 899
aoqi@0 900 // Returns true if the current mismatch is due to a resolved/unresolved
aoqi@0 901 // class pair. Otherwise, returns false.
aoqi@0 902 bool VM_RedefineClasses::is_unresolved_class_mismatch(constantPoolHandle cp1,
aoqi@0 903 int index1, constantPoolHandle cp2, int index2) {
aoqi@0 904
aoqi@0 905 jbyte t1 = cp1->tag_at(index1).value();
aoqi@0 906 if (t1 != JVM_CONSTANT_Class && t1 != JVM_CONSTANT_UnresolvedClass) {
aoqi@0 907 return false; // wrong entry type; not our special case
aoqi@0 908 }
aoqi@0 909
aoqi@0 910 jbyte t2 = cp2->tag_at(index2).value();
aoqi@0 911 if (t2 != JVM_CONSTANT_Class && t2 != JVM_CONSTANT_UnresolvedClass) {
aoqi@0 912 return false; // wrong entry type; not our special case
aoqi@0 913 }
aoqi@0 914
aoqi@0 915 if (t1 == t2) {
aoqi@0 916 return false; // not a mismatch; not our special case
aoqi@0 917 }
aoqi@0 918
aoqi@0 919 char *s1 = cp1->klass_name_at(index1)->as_C_string();
aoqi@0 920 char *s2 = cp2->klass_name_at(index2)->as_C_string();
aoqi@0 921 if (strcmp(s1, s2) != 0) {
aoqi@0 922 return false; // strings don't match; not our special case
aoqi@0 923 }
aoqi@0 924
aoqi@0 925 return true; // made it through the gauntlet; this is our special case
aoqi@0 926 } // end is_unresolved_class_mismatch()
aoqi@0 927
aoqi@0 928
aoqi@0 929 jvmtiError VM_RedefineClasses::load_new_class_versions(TRAPS) {
aoqi@0 930
aoqi@0 931 // For consistency allocate memory using os::malloc wrapper.
aoqi@0 932 _scratch_classes = (Klass**)
aoqi@0 933 os::malloc(sizeof(Klass*) * _class_count, mtClass);
aoqi@0 934 if (_scratch_classes == NULL) {
aoqi@0 935 return JVMTI_ERROR_OUT_OF_MEMORY;
aoqi@0 936 }
aoqi@0 937 // Zero initialize the _scratch_classes array.
aoqi@0 938 for (int i = 0; i < _class_count; i++) {
aoqi@0 939 _scratch_classes[i] = NULL;
aoqi@0 940 }
aoqi@0 941
aoqi@0 942 ResourceMark rm(THREAD);
aoqi@0 943
aoqi@0 944 JvmtiThreadState *state = JvmtiThreadState::state_for(JavaThread::current());
aoqi@0 945 // state can only be NULL if the current thread is exiting which
aoqi@0 946 // should not happen since we're trying to do a RedefineClasses
aoqi@0 947 guarantee(state != NULL, "exiting thread calling load_new_class_versions");
aoqi@0 948 for (int i = 0; i < _class_count; i++) {
aoqi@0 949 // Create HandleMark so that any handles created while loading new class
aoqi@0 950 // versions are deleted. Constant pools are deallocated while merging
aoqi@0 951 // constant pools
aoqi@0 952 HandleMark hm(THREAD);
aoqi@0 953
aoqi@0 954 oop mirror = JNIHandles::resolve_non_null(_class_defs[i].klass);
aoqi@0 955 // classes for primitives cannot be redefined
aoqi@0 956 if (!is_modifiable_class(mirror)) {
aoqi@0 957 return JVMTI_ERROR_UNMODIFIABLE_CLASS;
aoqi@0 958 }
aoqi@0 959 Klass* the_class_oop = java_lang_Class::as_Klass(mirror);
aoqi@0 960 instanceKlassHandle the_class = instanceKlassHandle(THREAD, the_class_oop);
aoqi@0 961 Symbol* the_class_sym = the_class->name();
aoqi@0 962
aoqi@0 963 // RC_TRACE_WITH_THREAD macro has an embedded ResourceMark
aoqi@0 964 RC_TRACE_WITH_THREAD(0x00000001, THREAD,
aoqi@0 965 ("loading name=%s kind=%d (avail_mem=" UINT64_FORMAT "K)",
aoqi@0 966 the_class->external_name(), _class_load_kind,
aoqi@0 967 os::available_memory() >> 10));
aoqi@0 968
aoqi@0 969 ClassFileStream st((u1*) _class_defs[i].class_bytes,
aoqi@0 970 _class_defs[i].class_byte_count, (char *)"__VM_RedefineClasses__");
aoqi@0 971
aoqi@0 972 // Parse the stream.
aoqi@0 973 Handle the_class_loader(THREAD, the_class->class_loader());
aoqi@0 974 Handle protection_domain(THREAD, the_class->protection_domain());
aoqi@0 975 // Set redefined class handle in JvmtiThreadState class.
aoqi@0 976 // This redefined class is sent to agent event handler for class file
aoqi@0 977 // load hook event.
aoqi@0 978 state->set_class_being_redefined(&the_class, _class_load_kind);
aoqi@0 979
aoqi@0 980 Klass* k = SystemDictionary::parse_stream(the_class_sym,
aoqi@0 981 the_class_loader,
aoqi@0 982 protection_domain,
aoqi@0 983 &st,
aoqi@0 984 THREAD);
aoqi@0 985 // Clear class_being_redefined just to be sure.
aoqi@0 986 state->clear_class_being_redefined();
aoqi@0 987
aoqi@0 988 // TODO: if this is retransform, and nothing changed we can skip it
aoqi@0 989
aoqi@0 990 instanceKlassHandle scratch_class (THREAD, k);
aoqi@0 991
aoqi@0 992 // Need to clean up allocated InstanceKlass if there's an error so assign
aoqi@0 993 // the result here. Caller deallocates all the scratch classes in case of
aoqi@0 994 // an error.
aoqi@0 995 _scratch_classes[i] = k;
aoqi@0 996
aoqi@0 997 if (HAS_PENDING_EXCEPTION) {
aoqi@0 998 Symbol* ex_name = PENDING_EXCEPTION->klass()->name();
aoqi@0 999 // RC_TRACE_WITH_THREAD macro has an embedded ResourceMark
aoqi@0 1000 RC_TRACE_WITH_THREAD(0x00000002, THREAD, ("parse_stream exception: '%s'",
aoqi@0 1001 ex_name->as_C_string()));
aoqi@0 1002 CLEAR_PENDING_EXCEPTION;
aoqi@0 1003
aoqi@0 1004 if (ex_name == vmSymbols::java_lang_UnsupportedClassVersionError()) {
aoqi@0 1005 return JVMTI_ERROR_UNSUPPORTED_VERSION;
aoqi@0 1006 } else if (ex_name == vmSymbols::java_lang_ClassFormatError()) {
aoqi@0 1007 return JVMTI_ERROR_INVALID_CLASS_FORMAT;
aoqi@0 1008 } else if (ex_name == vmSymbols::java_lang_ClassCircularityError()) {
aoqi@0 1009 return JVMTI_ERROR_CIRCULAR_CLASS_DEFINITION;
aoqi@0 1010 } else if (ex_name == vmSymbols::java_lang_NoClassDefFoundError()) {
aoqi@0 1011 // The message will be "XXX (wrong name: YYY)"
aoqi@0 1012 return JVMTI_ERROR_NAMES_DONT_MATCH;
aoqi@0 1013 } else if (ex_name == vmSymbols::java_lang_OutOfMemoryError()) {
aoqi@0 1014 return JVMTI_ERROR_OUT_OF_MEMORY;
aoqi@0 1015 } else { // Just in case more exceptions can be thrown..
aoqi@0 1016 return JVMTI_ERROR_FAILS_VERIFICATION;
aoqi@0 1017 }
aoqi@0 1018 }
aoqi@0 1019
aoqi@0 1020 // Ensure class is linked before redefine
aoqi@0 1021 if (!the_class->is_linked()) {
aoqi@0 1022 the_class->link_class(THREAD);
aoqi@0 1023 if (HAS_PENDING_EXCEPTION) {
aoqi@0 1024 Symbol* ex_name = PENDING_EXCEPTION->klass()->name();
aoqi@0 1025 // RC_TRACE_WITH_THREAD macro has an embedded ResourceMark
aoqi@0 1026 RC_TRACE_WITH_THREAD(0x00000002, THREAD, ("link_class exception: '%s'",
aoqi@0 1027 ex_name->as_C_string()));
aoqi@0 1028 CLEAR_PENDING_EXCEPTION;
aoqi@0 1029 if (ex_name == vmSymbols::java_lang_OutOfMemoryError()) {
aoqi@0 1030 return JVMTI_ERROR_OUT_OF_MEMORY;
aoqi@0 1031 } else {
aoqi@0 1032 return JVMTI_ERROR_INTERNAL;
aoqi@0 1033 }
aoqi@0 1034 }
aoqi@0 1035 }
aoqi@0 1036
aoqi@0 1037 // Do the validity checks in compare_and_normalize_class_versions()
aoqi@0 1038 // before verifying the byte codes. By doing these checks first, we
aoqi@0 1039 // limit the number of functions that require redirection from
aoqi@0 1040 // the_class to scratch_class. In particular, we don't have to
aoqi@0 1041 // modify JNI GetSuperclass() and thus won't change its performance.
aoqi@0 1042 jvmtiError res = compare_and_normalize_class_versions(the_class,
aoqi@0 1043 scratch_class);
aoqi@0 1044 if (res != JVMTI_ERROR_NONE) {
aoqi@0 1045 return res;
aoqi@0 1046 }
aoqi@0 1047
aoqi@0 1048 // verify what the caller passed us
aoqi@0 1049 {
aoqi@0 1050 // The bug 6214132 caused the verification to fail.
aoqi@0 1051 // Information about the_class and scratch_class is temporarily
aoqi@0 1052 // recorded into jvmtiThreadState. This data is used to redirect
aoqi@0 1053 // the_class to scratch_class in the JVM_* functions called by the
aoqi@0 1054 // verifier. Please, refer to jvmtiThreadState.hpp for the detailed
aoqi@0 1055 // description.
aoqi@0 1056 RedefineVerifyMark rvm(&the_class, &scratch_class, state);
aoqi@0 1057 Verifier::verify(
aoqi@0 1058 scratch_class, Verifier::ThrowException, true, THREAD);
aoqi@0 1059 }
aoqi@0 1060
aoqi@0 1061 if (HAS_PENDING_EXCEPTION) {
aoqi@0 1062 Symbol* ex_name = PENDING_EXCEPTION->klass()->name();
aoqi@0 1063 // RC_TRACE_WITH_THREAD macro has an embedded ResourceMark
aoqi@0 1064 RC_TRACE_WITH_THREAD(0x00000002, THREAD,
aoqi@0 1065 ("verify_byte_codes exception: '%s'", ex_name->as_C_string()));
aoqi@0 1066 CLEAR_PENDING_EXCEPTION;
aoqi@0 1067 if (ex_name == vmSymbols::java_lang_OutOfMemoryError()) {
aoqi@0 1068 return JVMTI_ERROR_OUT_OF_MEMORY;
aoqi@0 1069 } else {
aoqi@0 1070 // tell the caller the bytecodes are bad
aoqi@0 1071 return JVMTI_ERROR_FAILS_VERIFICATION;
aoqi@0 1072 }
aoqi@0 1073 }
aoqi@0 1074
aoqi@0 1075 res = merge_cp_and_rewrite(the_class, scratch_class, THREAD);
aoqi@0 1076 if (HAS_PENDING_EXCEPTION) {
aoqi@0 1077 Symbol* ex_name = PENDING_EXCEPTION->klass()->name();
aoqi@0 1078 // RC_TRACE_WITH_THREAD macro has an embedded ResourceMark
aoqi@0 1079 RC_TRACE_WITH_THREAD(0x00000002, THREAD,
aoqi@0 1080 ("merge_cp_and_rewrite exception: '%s'", ex_name->as_C_string()));
aoqi@0 1081 CLEAR_PENDING_EXCEPTION;
aoqi@0 1082 if (ex_name == vmSymbols::java_lang_OutOfMemoryError()) {
aoqi@0 1083 return JVMTI_ERROR_OUT_OF_MEMORY;
aoqi@0 1084 } else {
aoqi@0 1085 return JVMTI_ERROR_INTERNAL;
aoqi@0 1086 }
aoqi@0 1087 }
aoqi@0 1088
aoqi@0 1089 if (VerifyMergedCPBytecodes) {
aoqi@0 1090 // verify what we have done during constant pool merging
aoqi@0 1091 {
aoqi@0 1092 RedefineVerifyMark rvm(&the_class, &scratch_class, state);
aoqi@0 1093 Verifier::verify(scratch_class, Verifier::ThrowException, true, THREAD);
aoqi@0 1094 }
aoqi@0 1095
aoqi@0 1096 if (HAS_PENDING_EXCEPTION) {
aoqi@0 1097 Symbol* ex_name = PENDING_EXCEPTION->klass()->name();
aoqi@0 1098 // RC_TRACE_WITH_THREAD macro has an embedded ResourceMark
aoqi@0 1099 RC_TRACE_WITH_THREAD(0x00000002, THREAD,
aoqi@0 1100 ("verify_byte_codes post merge-CP exception: '%s'",
aoqi@0 1101 ex_name->as_C_string()));
aoqi@0 1102 CLEAR_PENDING_EXCEPTION;
aoqi@0 1103 if (ex_name == vmSymbols::java_lang_OutOfMemoryError()) {
aoqi@0 1104 return JVMTI_ERROR_OUT_OF_MEMORY;
aoqi@0 1105 } else {
aoqi@0 1106 // tell the caller that constant pool merging screwed up
aoqi@0 1107 return JVMTI_ERROR_INTERNAL;
aoqi@0 1108 }
aoqi@0 1109 }
aoqi@0 1110 }
aoqi@0 1111
aoqi@0 1112 Rewriter::rewrite(scratch_class, THREAD);
aoqi@0 1113 if (!HAS_PENDING_EXCEPTION) {
aoqi@0 1114 scratch_class->link_methods(THREAD);
aoqi@0 1115 }
aoqi@0 1116 if (HAS_PENDING_EXCEPTION) {
aoqi@0 1117 Symbol* ex_name = PENDING_EXCEPTION->klass()->name();
aoqi@0 1118 // RC_TRACE_WITH_THREAD macro has an embedded ResourceMark
aoqi@0 1119 RC_TRACE_WITH_THREAD(0x00000002, THREAD,
aoqi@0 1120 ("Rewriter::rewrite or link_methods exception: '%s'", ex_name->as_C_string()));
aoqi@0 1121 CLEAR_PENDING_EXCEPTION;
aoqi@0 1122 if (ex_name == vmSymbols::java_lang_OutOfMemoryError()) {
aoqi@0 1123 return JVMTI_ERROR_OUT_OF_MEMORY;
aoqi@0 1124 } else {
aoqi@0 1125 return JVMTI_ERROR_INTERNAL;
aoqi@0 1126 }
aoqi@0 1127 }
aoqi@0 1128
aoqi@0 1129 // RC_TRACE_WITH_THREAD macro has an embedded ResourceMark
aoqi@0 1130 RC_TRACE_WITH_THREAD(0x00000001, THREAD,
aoqi@0 1131 ("loaded name=%s (avail_mem=" UINT64_FORMAT "K)",
aoqi@0 1132 the_class->external_name(), os::available_memory() >> 10));
aoqi@0 1133 }
aoqi@0 1134
aoqi@0 1135 return JVMTI_ERROR_NONE;
aoqi@0 1136 }
aoqi@0 1137
aoqi@0 1138
aoqi@0 1139 // Map old_index to new_index as needed. scratch_cp is only needed
aoqi@0 1140 // for RC_TRACE() calls.
aoqi@0 1141 void VM_RedefineClasses::map_index(constantPoolHandle scratch_cp,
aoqi@0 1142 int old_index, int new_index) {
aoqi@0 1143 if (find_new_index(old_index) != 0) {
aoqi@0 1144 // old_index is already mapped
aoqi@0 1145 return;
aoqi@0 1146 }
aoqi@0 1147
aoqi@0 1148 if (old_index == new_index) {
aoqi@0 1149 // no mapping is needed
aoqi@0 1150 return;
aoqi@0 1151 }
aoqi@0 1152
aoqi@0 1153 _index_map_p->at_put(old_index, new_index);
aoqi@0 1154 _index_map_count++;
aoqi@0 1155
aoqi@0 1156 RC_TRACE(0x00040000, ("mapped tag %d at index %d to %d",
aoqi@0 1157 scratch_cp->tag_at(old_index).value(), old_index, new_index));
aoqi@0 1158 } // end map_index()
aoqi@0 1159
aoqi@0 1160
aoqi@0 1161 // Map old_index to new_index as needed.
aoqi@0 1162 void VM_RedefineClasses::map_operand_index(int old_index, int new_index) {
aoqi@0 1163 if (find_new_operand_index(old_index) != -1) {
aoqi@0 1164 // old_index is already mapped
aoqi@0 1165 return;
aoqi@0 1166 }
aoqi@0 1167
aoqi@0 1168 if (old_index == new_index) {
aoqi@0 1169 // no mapping is needed
aoqi@0 1170 return;
aoqi@0 1171 }
aoqi@0 1172
aoqi@0 1173 _operands_index_map_p->at_put(old_index, new_index);
aoqi@0 1174 _operands_index_map_count++;
aoqi@0 1175
aoqi@0 1176 RC_TRACE(0x00040000, ("mapped bootstrap specifier at index %d to %d", old_index, new_index));
aoqi@0 1177 } // end map_index()
aoqi@0 1178
aoqi@0 1179
aoqi@0 1180 // Merge old_cp and scratch_cp and return the results of the merge via
aoqi@0 1181 // merge_cp_p. The number of entries in *merge_cp_p is returned via
aoqi@0 1182 // merge_cp_length_p. The entries in old_cp occupy the same locations
aoqi@0 1183 // in *merge_cp_p. Also creates a map of indices from entries in
aoqi@0 1184 // scratch_cp to the corresponding entry in *merge_cp_p. Index map
aoqi@0 1185 // entries are only created for entries in scratch_cp that occupy a
aoqi@0 1186 // different location in *merged_cp_p.
aoqi@0 1187 bool VM_RedefineClasses::merge_constant_pools(constantPoolHandle old_cp,
aoqi@0 1188 constantPoolHandle scratch_cp, constantPoolHandle *merge_cp_p,
aoqi@0 1189 int *merge_cp_length_p, TRAPS) {
aoqi@0 1190
aoqi@0 1191 if (merge_cp_p == NULL) {
aoqi@0 1192 assert(false, "caller must provide scratch constantPool");
aoqi@0 1193 return false; // robustness
aoqi@0 1194 }
aoqi@0 1195 if (merge_cp_length_p == NULL) {
aoqi@0 1196 assert(false, "caller must provide scratch CP length");
aoqi@0 1197 return false; // robustness
aoqi@0 1198 }
aoqi@0 1199 // Worst case we need old_cp->length() + scratch_cp()->length(),
aoqi@0 1200 // but the caller might be smart so make sure we have at least
aoqi@0 1201 // the minimum.
aoqi@0 1202 if ((*merge_cp_p)->length() < old_cp->length()) {
aoqi@0 1203 assert(false, "merge area too small");
aoqi@0 1204 return false; // robustness
aoqi@0 1205 }
aoqi@0 1206
aoqi@0 1207 RC_TRACE_WITH_THREAD(0x00010000, THREAD,
aoqi@0 1208 ("old_cp_len=%d, scratch_cp_len=%d", old_cp->length(),
aoqi@0 1209 scratch_cp->length()));
aoqi@0 1210
aoqi@0 1211 {
aoqi@0 1212 // Pass 0:
aoqi@0 1213 // The old_cp is copied to *merge_cp_p; this means that any code
aoqi@0 1214 // using old_cp does not have to change. This work looks like a
aoqi@0 1215 // perfect fit for ConstantPool*::copy_cp_to(), but we need to
aoqi@0 1216 // handle one special case:
aoqi@0 1217 // - revert JVM_CONSTANT_Class to JVM_CONSTANT_UnresolvedClass
aoqi@0 1218 // This will make verification happy.
aoqi@0 1219
aoqi@0 1220 int old_i; // index into old_cp
aoqi@0 1221
aoqi@0 1222 // index zero (0) is not used in constantPools
aoqi@0 1223 for (old_i = 1; old_i < old_cp->length(); old_i++) {
aoqi@0 1224 // leave debugging crumb
aoqi@0 1225 jbyte old_tag = old_cp->tag_at(old_i).value();
aoqi@0 1226 switch (old_tag) {
aoqi@0 1227 case JVM_CONSTANT_Class:
aoqi@0 1228 case JVM_CONSTANT_UnresolvedClass:
aoqi@0 1229 // revert the copy to JVM_CONSTANT_UnresolvedClass
aoqi@0 1230 // May be resolving while calling this so do the same for
aoqi@0 1231 // JVM_CONSTANT_UnresolvedClass (klass_name_at() deals with transition)
aoqi@0 1232 (*merge_cp_p)->unresolved_klass_at_put(old_i,
aoqi@0 1233 old_cp->klass_name_at(old_i));
aoqi@0 1234 break;
aoqi@0 1235
aoqi@0 1236 case JVM_CONSTANT_Double:
aoqi@0 1237 case JVM_CONSTANT_Long:
aoqi@0 1238 // just copy the entry to *merge_cp_p, but double and long take
aoqi@0 1239 // two constant pool entries
aoqi@0 1240 ConstantPool::copy_entry_to(old_cp, old_i, *merge_cp_p, old_i, CHECK_0);
aoqi@0 1241 old_i++;
aoqi@0 1242 break;
aoqi@0 1243
aoqi@0 1244 default:
aoqi@0 1245 // just copy the entry to *merge_cp_p
aoqi@0 1246 ConstantPool::copy_entry_to(old_cp, old_i, *merge_cp_p, old_i, CHECK_0);
aoqi@0 1247 break;
aoqi@0 1248 }
aoqi@0 1249 } // end for each old_cp entry
aoqi@0 1250
aoqi@0 1251 ConstantPool::copy_operands(old_cp, *merge_cp_p, CHECK_0);
aoqi@0 1252 (*merge_cp_p)->extend_operands(scratch_cp, CHECK_0);
aoqi@0 1253
aoqi@0 1254 // We don't need to sanity check that *merge_cp_length_p is within
aoqi@0 1255 // *merge_cp_p bounds since we have the minimum on-entry check above.
aoqi@0 1256 (*merge_cp_length_p) = old_i;
aoqi@0 1257 }
aoqi@0 1258
aoqi@0 1259 // merge_cp_len should be the same as old_cp->length() at this point
aoqi@0 1260 // so this trace message is really a "warm-and-breathing" message.
aoqi@0 1261 RC_TRACE_WITH_THREAD(0x00020000, THREAD,
aoqi@0 1262 ("after pass 0: merge_cp_len=%d", *merge_cp_length_p));
aoqi@0 1263
aoqi@0 1264 int scratch_i; // index into scratch_cp
aoqi@0 1265 {
aoqi@0 1266 // Pass 1a:
aoqi@0 1267 // Compare scratch_cp entries to the old_cp entries that we have
aoqi@0 1268 // already copied to *merge_cp_p. In this pass, we are eliminating
aoqi@0 1269 // exact duplicates (matching entry at same index) so we only
aoqi@0 1270 // compare entries in the common indice range.
aoqi@0 1271 int increment = 1;
aoqi@0 1272 int pass1a_length = MIN2(old_cp->length(), scratch_cp->length());
aoqi@0 1273 for (scratch_i = 1; scratch_i < pass1a_length; scratch_i += increment) {
aoqi@0 1274 switch (scratch_cp->tag_at(scratch_i).value()) {
aoqi@0 1275 case JVM_CONSTANT_Double:
aoqi@0 1276 case JVM_CONSTANT_Long:
aoqi@0 1277 // double and long take two constant pool entries
aoqi@0 1278 increment = 2;
aoqi@0 1279 break;
aoqi@0 1280
aoqi@0 1281 default:
aoqi@0 1282 increment = 1;
aoqi@0 1283 break;
aoqi@0 1284 }
aoqi@0 1285
aoqi@0 1286 bool match = scratch_cp->compare_entry_to(scratch_i, *merge_cp_p,
aoqi@0 1287 scratch_i, CHECK_0);
aoqi@0 1288 if (match) {
aoqi@0 1289 // found a match at the same index so nothing more to do
aoqi@0 1290 continue;
aoqi@0 1291 } else if (is_unresolved_class_mismatch(scratch_cp, scratch_i,
aoqi@0 1292 *merge_cp_p, scratch_i)) {
aoqi@0 1293 // The mismatch in compare_entry_to() above is because of a
aoqi@0 1294 // resolved versus unresolved class entry at the same index
aoqi@0 1295 // with the same string value. Since Pass 0 reverted any
aoqi@0 1296 // class entries to unresolved class entries in *merge_cp_p,
aoqi@0 1297 // we go with the unresolved class entry.
aoqi@0 1298 continue;
aoqi@0 1299 }
aoqi@0 1300
aoqi@0 1301 int found_i = scratch_cp->find_matching_entry(scratch_i, *merge_cp_p,
aoqi@0 1302 CHECK_0);
aoqi@0 1303 if (found_i != 0) {
aoqi@0 1304 guarantee(found_i != scratch_i,
aoqi@0 1305 "compare_entry_to() and find_matching_entry() do not agree");
aoqi@0 1306
aoqi@0 1307 // Found a matching entry somewhere else in *merge_cp_p so
aoqi@0 1308 // just need a mapping entry.
aoqi@0 1309 map_index(scratch_cp, scratch_i, found_i);
aoqi@0 1310 continue;
aoqi@0 1311 }
aoqi@0 1312
aoqi@0 1313 // The find_matching_entry() call above could fail to find a match
aoqi@0 1314 // due to a resolved versus unresolved class or string entry situation
aoqi@0 1315 // like we solved above with the is_unresolved_*_mismatch() calls.
aoqi@0 1316 // However, we would have to call is_unresolved_*_mismatch() over
aoqi@0 1317 // all of *merge_cp_p (potentially) and that doesn't seem to be
aoqi@0 1318 // worth the time.
aoqi@0 1319
aoqi@0 1320 // No match found so we have to append this entry and any unique
aoqi@0 1321 // referenced entries to *merge_cp_p.
aoqi@0 1322 append_entry(scratch_cp, scratch_i, merge_cp_p, merge_cp_length_p,
aoqi@0 1323 CHECK_0);
aoqi@0 1324 }
aoqi@0 1325 }
aoqi@0 1326
aoqi@0 1327 RC_TRACE_WITH_THREAD(0x00020000, THREAD,
aoqi@0 1328 ("after pass 1a: merge_cp_len=%d, scratch_i=%d, index_map_len=%d",
aoqi@0 1329 *merge_cp_length_p, scratch_i, _index_map_count));
aoqi@0 1330
aoqi@0 1331 if (scratch_i < scratch_cp->length()) {
aoqi@0 1332 // Pass 1b:
aoqi@0 1333 // old_cp is smaller than scratch_cp so there are entries in
aoqi@0 1334 // scratch_cp that we have not yet processed. We take care of
aoqi@0 1335 // those now.
aoqi@0 1336 int increment = 1;
aoqi@0 1337 for (; scratch_i < scratch_cp->length(); scratch_i += increment) {
aoqi@0 1338 switch (scratch_cp->tag_at(scratch_i).value()) {
aoqi@0 1339 case JVM_CONSTANT_Double:
aoqi@0 1340 case JVM_CONSTANT_Long:
aoqi@0 1341 // double and long take two constant pool entries
aoqi@0 1342 increment = 2;
aoqi@0 1343 break;
aoqi@0 1344
aoqi@0 1345 default:
aoqi@0 1346 increment = 1;
aoqi@0 1347 break;
aoqi@0 1348 }
aoqi@0 1349
aoqi@0 1350 int found_i =
aoqi@0 1351 scratch_cp->find_matching_entry(scratch_i, *merge_cp_p, CHECK_0);
aoqi@0 1352 if (found_i != 0) {
aoqi@0 1353 // Found a matching entry somewhere else in *merge_cp_p so
aoqi@0 1354 // just need a mapping entry.
aoqi@0 1355 map_index(scratch_cp, scratch_i, found_i);
aoqi@0 1356 continue;
aoqi@0 1357 }
aoqi@0 1358
aoqi@0 1359 // No match found so we have to append this entry and any unique
aoqi@0 1360 // referenced entries to *merge_cp_p.
aoqi@0 1361 append_entry(scratch_cp, scratch_i, merge_cp_p, merge_cp_length_p,
aoqi@0 1362 CHECK_0);
aoqi@0 1363 }
aoqi@0 1364
aoqi@0 1365 RC_TRACE_WITH_THREAD(0x00020000, THREAD,
aoqi@0 1366 ("after pass 1b: merge_cp_len=%d, scratch_i=%d, index_map_len=%d",
aoqi@0 1367 *merge_cp_length_p, scratch_i, _index_map_count));
aoqi@0 1368 }
aoqi@0 1369 finalize_operands_merge(*merge_cp_p, THREAD);
aoqi@0 1370
aoqi@0 1371 return true;
aoqi@0 1372 } // end merge_constant_pools()
aoqi@0 1373
aoqi@0 1374
aoqi@0 1375 // Scoped object to clean up the constant pool(s) created for merging
aoqi@0 1376 class MergeCPCleaner {
aoqi@0 1377 ClassLoaderData* _loader_data;
aoqi@0 1378 ConstantPool* _cp;
aoqi@0 1379 ConstantPool* _scratch_cp;
aoqi@0 1380 public:
aoqi@0 1381 MergeCPCleaner(ClassLoaderData* loader_data, ConstantPool* merge_cp) :
aoqi@0 1382 _loader_data(loader_data), _cp(merge_cp), _scratch_cp(NULL) {}
aoqi@0 1383 ~MergeCPCleaner() {
aoqi@0 1384 _loader_data->add_to_deallocate_list(_cp);
aoqi@0 1385 if (_scratch_cp != NULL) {
aoqi@0 1386 _loader_data->add_to_deallocate_list(_scratch_cp);
aoqi@0 1387 }
aoqi@0 1388 }
aoqi@0 1389 void add_scratch_cp(ConstantPool* scratch_cp) { _scratch_cp = scratch_cp; }
aoqi@0 1390 };
aoqi@0 1391
aoqi@0 1392 // Merge constant pools between the_class and scratch_class and
aoqi@0 1393 // potentially rewrite bytecodes in scratch_class to use the merged
aoqi@0 1394 // constant pool.
aoqi@0 1395 jvmtiError VM_RedefineClasses::merge_cp_and_rewrite(
aoqi@0 1396 instanceKlassHandle the_class, instanceKlassHandle scratch_class,
aoqi@0 1397 TRAPS) {
aoqi@0 1398 // worst case merged constant pool length is old and new combined
aoqi@0 1399 int merge_cp_length = the_class->constants()->length()
aoqi@0 1400 + scratch_class->constants()->length();
aoqi@0 1401
aoqi@0 1402 // Constant pools are not easily reused so we allocate a new one
aoqi@0 1403 // each time.
aoqi@0 1404 // merge_cp is created unsafe for concurrent GC processing. It
aoqi@0 1405 // should be marked safe before discarding it. Even though
aoqi@0 1406 // garbage, if it crosses a card boundary, it may be scanned
aoqi@0 1407 // in order to find the start of the first complete object on the card.
aoqi@0 1408 ClassLoaderData* loader_data = the_class->class_loader_data();
aoqi@0 1409 ConstantPool* merge_cp_oop =
aoqi@0 1410 ConstantPool::allocate(loader_data,
aoqi@0 1411 merge_cp_length,
aoqi@0 1412 CHECK_(JVMTI_ERROR_OUT_OF_MEMORY));
aoqi@0 1413 MergeCPCleaner cp_cleaner(loader_data, merge_cp_oop);
aoqi@0 1414
aoqi@0 1415 HandleMark hm(THREAD); // make sure handles are cleared before
aoqi@0 1416 // MergeCPCleaner clears out merge_cp_oop
aoqi@0 1417 constantPoolHandle merge_cp(THREAD, merge_cp_oop);
aoqi@0 1418
aoqi@0 1419 // Get constants() from the old class because it could have been rewritten
aoqi@0 1420 // while we were at a safepoint allocating a new constant pool.
aoqi@0 1421 constantPoolHandle old_cp(THREAD, the_class->constants());
aoqi@0 1422 constantPoolHandle scratch_cp(THREAD, scratch_class->constants());
aoqi@0 1423
aoqi@0 1424 // If the length changed, the class was redefined out from under us. Return
aoqi@0 1425 // an error.
aoqi@0 1426 if (merge_cp_length != the_class->constants()->length()
aoqi@0 1427 + scratch_class->constants()->length()) {
aoqi@0 1428 return JVMTI_ERROR_INTERNAL;
aoqi@0 1429 }
aoqi@0 1430
aoqi@0 1431 // Update the version number of the constant pool
aoqi@0 1432 merge_cp->increment_and_save_version(old_cp->version());
aoqi@0 1433
aoqi@0 1434 ResourceMark rm(THREAD);
aoqi@0 1435 _index_map_count = 0;
aoqi@0 1436 _index_map_p = new intArray(scratch_cp->length(), -1);
aoqi@0 1437
aoqi@0 1438 _operands_cur_length = ConstantPool::operand_array_length(old_cp->operands());
aoqi@0 1439 _operands_index_map_count = 0;
aoqi@0 1440 _operands_index_map_p = new intArray(
aoqi@0 1441 ConstantPool::operand_array_length(scratch_cp->operands()), -1);
aoqi@0 1442
aoqi@0 1443 // reference to the cp holder is needed for copy_operands()
aoqi@0 1444 merge_cp->set_pool_holder(scratch_class());
aoqi@0 1445 bool result = merge_constant_pools(old_cp, scratch_cp, &merge_cp,
aoqi@0 1446 &merge_cp_length, THREAD);
aoqi@0 1447 merge_cp->set_pool_holder(NULL);
aoqi@0 1448
aoqi@0 1449 if (!result) {
aoqi@0 1450 // The merge can fail due to memory allocation failure or due
aoqi@0 1451 // to robustness checks.
aoqi@0 1452 return JVMTI_ERROR_INTERNAL;
aoqi@0 1453 }
aoqi@0 1454
aoqi@0 1455 RC_TRACE_WITH_THREAD(0x00010000, THREAD,
aoqi@0 1456 ("merge_cp_len=%d, index_map_len=%d", merge_cp_length, _index_map_count));
aoqi@0 1457
aoqi@0 1458 if (_index_map_count == 0) {
aoqi@0 1459 // there is nothing to map between the new and merged constant pools
aoqi@0 1460
aoqi@0 1461 if (old_cp->length() == scratch_cp->length()) {
aoqi@0 1462 // The old and new constant pools are the same length and the
aoqi@0 1463 // index map is empty. This means that the three constant pools
aoqi@0 1464 // are equivalent (but not the same). Unfortunately, the new
aoqi@0 1465 // constant pool has not gone through link resolution nor have
aoqi@0 1466 // the new class bytecodes gone through constant pool cache
aoqi@0 1467 // rewriting so we can't use the old constant pool with the new
aoqi@0 1468 // class.
aoqi@0 1469
aoqi@0 1470 // toss the merged constant pool at return
aoqi@0 1471 } else if (old_cp->length() < scratch_cp->length()) {
aoqi@0 1472 // The old constant pool has fewer entries than the new constant
aoqi@0 1473 // pool and the index map is empty. This means the new constant
aoqi@0 1474 // pool is a superset of the old constant pool. However, the old
aoqi@0 1475 // class bytecodes have already gone through constant pool cache
aoqi@0 1476 // rewriting so we can't use the new constant pool with the old
aoqi@0 1477 // class.
aoqi@0 1478
aoqi@0 1479 // toss the merged constant pool at return
aoqi@0 1480 } else {
aoqi@0 1481 // The old constant pool has more entries than the new constant
aoqi@0 1482 // pool and the index map is empty. This means that both the old
aoqi@0 1483 // and merged constant pools are supersets of the new constant
aoqi@0 1484 // pool.
aoqi@0 1485
aoqi@0 1486 // Replace the new constant pool with a shrunken copy of the
aoqi@0 1487 // merged constant pool
aoqi@0 1488 set_new_constant_pool(loader_data, scratch_class, merge_cp, merge_cp_length,
aoqi@0 1489 CHECK_(JVMTI_ERROR_OUT_OF_MEMORY));
aoqi@0 1490 // The new constant pool replaces scratch_cp so have cleaner clean it up.
aoqi@0 1491 // It can't be cleaned up while there are handles to it.
aoqi@0 1492 cp_cleaner.add_scratch_cp(scratch_cp());
aoqi@0 1493 }
aoqi@0 1494 } else {
aoqi@0 1495 if (RC_TRACE_ENABLED(0x00040000)) {
aoqi@0 1496 // don't want to loop unless we are tracing
aoqi@0 1497 int count = 0;
aoqi@0 1498 for (int i = 1; i < _index_map_p->length(); i++) {
aoqi@0 1499 int value = _index_map_p->at(i);
aoqi@0 1500
aoqi@0 1501 if (value != -1) {
aoqi@0 1502 RC_TRACE_WITH_THREAD(0x00040000, THREAD,
aoqi@0 1503 ("index_map[%d]: old=%d new=%d", count, i, value));
aoqi@0 1504 count++;
aoqi@0 1505 }
aoqi@0 1506 }
aoqi@0 1507 }
aoqi@0 1508
aoqi@0 1509 // We have entries mapped between the new and merged constant pools
aoqi@0 1510 // so we have to rewrite some constant pool references.
aoqi@0 1511 if (!rewrite_cp_refs(scratch_class, THREAD)) {
aoqi@0 1512 return JVMTI_ERROR_INTERNAL;
aoqi@0 1513 }
aoqi@0 1514
aoqi@0 1515 // Replace the new constant pool with a shrunken copy of the
aoqi@0 1516 // merged constant pool so now the rewritten bytecodes have
aoqi@0 1517 // valid references; the previous new constant pool will get
aoqi@0 1518 // GCed.
aoqi@0 1519 set_new_constant_pool(loader_data, scratch_class, merge_cp, merge_cp_length,
aoqi@0 1520 CHECK_(JVMTI_ERROR_OUT_OF_MEMORY));
aoqi@0 1521 // The new constant pool replaces scratch_cp so have cleaner clean it up.
aoqi@0 1522 // It can't be cleaned up while there are handles to it.
aoqi@0 1523 cp_cleaner.add_scratch_cp(scratch_cp());
aoqi@0 1524 }
aoqi@0 1525
aoqi@0 1526 return JVMTI_ERROR_NONE;
aoqi@0 1527 } // end merge_cp_and_rewrite()
aoqi@0 1528
aoqi@0 1529
aoqi@0 1530 // Rewrite constant pool references in klass scratch_class.
aoqi@0 1531 bool VM_RedefineClasses::rewrite_cp_refs(instanceKlassHandle scratch_class,
aoqi@0 1532 TRAPS) {
aoqi@0 1533
aoqi@0 1534 // rewrite constant pool references in the methods:
aoqi@0 1535 if (!rewrite_cp_refs_in_methods(scratch_class, THREAD)) {
aoqi@0 1536 // propagate failure back to caller
aoqi@0 1537 return false;
aoqi@0 1538 }
aoqi@0 1539
aoqi@0 1540 // rewrite constant pool references in the class_annotations:
aoqi@0 1541 if (!rewrite_cp_refs_in_class_annotations(scratch_class, THREAD)) {
aoqi@0 1542 // propagate failure back to caller
aoqi@0 1543 return false;
aoqi@0 1544 }
aoqi@0 1545
aoqi@0 1546 // rewrite constant pool references in the fields_annotations:
aoqi@0 1547 if (!rewrite_cp_refs_in_fields_annotations(scratch_class, THREAD)) {
aoqi@0 1548 // propagate failure back to caller
aoqi@0 1549 return false;
aoqi@0 1550 }
aoqi@0 1551
aoqi@0 1552 // rewrite constant pool references in the methods_annotations:
aoqi@0 1553 if (!rewrite_cp_refs_in_methods_annotations(scratch_class, THREAD)) {
aoqi@0 1554 // propagate failure back to caller
aoqi@0 1555 return false;
aoqi@0 1556 }
aoqi@0 1557
aoqi@0 1558 // rewrite constant pool references in the methods_parameter_annotations:
aoqi@0 1559 if (!rewrite_cp_refs_in_methods_parameter_annotations(scratch_class,
aoqi@0 1560 THREAD)) {
aoqi@0 1561 // propagate failure back to caller
aoqi@0 1562 return false;
aoqi@0 1563 }
aoqi@0 1564
aoqi@0 1565 // rewrite constant pool references in the methods_default_annotations:
aoqi@0 1566 if (!rewrite_cp_refs_in_methods_default_annotations(scratch_class,
aoqi@0 1567 THREAD)) {
aoqi@0 1568 // propagate failure back to caller
aoqi@0 1569 return false;
aoqi@0 1570 }
aoqi@0 1571
aoqi@0 1572 // rewrite source file name index:
aoqi@0 1573 u2 source_file_name_idx = scratch_class->source_file_name_index();
aoqi@0 1574 if (source_file_name_idx != 0) {
aoqi@0 1575 u2 new_source_file_name_idx = find_new_index(source_file_name_idx);
aoqi@0 1576 if (new_source_file_name_idx != 0) {
aoqi@0 1577 scratch_class->set_source_file_name_index(new_source_file_name_idx);
aoqi@0 1578 }
aoqi@0 1579 }
aoqi@0 1580
aoqi@0 1581 // rewrite class generic signature index:
aoqi@0 1582 u2 generic_signature_index = scratch_class->generic_signature_index();
aoqi@0 1583 if (generic_signature_index != 0) {
aoqi@0 1584 u2 new_generic_signature_index = find_new_index(generic_signature_index);
aoqi@0 1585 if (new_generic_signature_index != 0) {
aoqi@0 1586 scratch_class->set_generic_signature_index(new_generic_signature_index);
aoqi@0 1587 }
aoqi@0 1588 }
aoqi@0 1589
aoqi@0 1590 return true;
aoqi@0 1591 } // end rewrite_cp_refs()
aoqi@0 1592
aoqi@0 1593 // Rewrite constant pool references in the methods.
aoqi@0 1594 bool VM_RedefineClasses::rewrite_cp_refs_in_methods(
aoqi@0 1595 instanceKlassHandle scratch_class, TRAPS) {
aoqi@0 1596
aoqi@0 1597 Array<Method*>* methods = scratch_class->methods();
aoqi@0 1598
aoqi@0 1599 if (methods == NULL || methods->length() == 0) {
aoqi@0 1600 // no methods so nothing to do
aoqi@0 1601 return true;
aoqi@0 1602 }
aoqi@0 1603
aoqi@0 1604 // rewrite constant pool references in the methods:
aoqi@0 1605 for (int i = methods->length() - 1; i >= 0; i--) {
aoqi@0 1606 methodHandle method(THREAD, methods->at(i));
aoqi@0 1607 methodHandle new_method;
aoqi@0 1608 rewrite_cp_refs_in_method(method, &new_method, THREAD);
aoqi@0 1609 if (!new_method.is_null()) {
aoqi@0 1610 // the method has been replaced so save the new method version
aoqi@0 1611 // even in the case of an exception. original method is on the
aoqi@0 1612 // deallocation list.
aoqi@0 1613 methods->at_put(i, new_method());
aoqi@0 1614 }
aoqi@0 1615 if (HAS_PENDING_EXCEPTION) {
aoqi@0 1616 Symbol* ex_name = PENDING_EXCEPTION->klass()->name();
aoqi@0 1617 // RC_TRACE_WITH_THREAD macro has an embedded ResourceMark
aoqi@0 1618 RC_TRACE_WITH_THREAD(0x00000002, THREAD,
aoqi@0 1619 ("rewrite_cp_refs_in_method exception: '%s'", ex_name->as_C_string()));
aoqi@0 1620 // Need to clear pending exception here as the super caller sets
aoqi@0 1621 // the JVMTI_ERROR_INTERNAL if the returned value is false.
aoqi@0 1622 CLEAR_PENDING_EXCEPTION;
aoqi@0 1623 return false;
aoqi@0 1624 }
aoqi@0 1625 }
aoqi@0 1626
aoqi@0 1627 return true;
aoqi@0 1628 }
aoqi@0 1629
aoqi@0 1630
aoqi@0 1631 // Rewrite constant pool references in the specific method. This code
aoqi@0 1632 // was adapted from Rewriter::rewrite_method().
aoqi@0 1633 void VM_RedefineClasses::rewrite_cp_refs_in_method(methodHandle method,
aoqi@0 1634 methodHandle *new_method_p, TRAPS) {
aoqi@0 1635
aoqi@0 1636 *new_method_p = methodHandle(); // default is no new method
aoqi@0 1637
aoqi@0 1638 // We cache a pointer to the bytecodes here in code_base. If GC
aoqi@0 1639 // moves the Method*, then the bytecodes will also move which
aoqi@0 1640 // will likely cause a crash. We create a No_Safepoint_Verifier
aoqi@0 1641 // object to detect whether we pass a possible safepoint in this
aoqi@0 1642 // code block.
aoqi@0 1643 No_Safepoint_Verifier nsv;
aoqi@0 1644
aoqi@0 1645 // Bytecodes and their length
aoqi@0 1646 address code_base = method->code_base();
aoqi@0 1647 int code_length = method->code_size();
aoqi@0 1648
aoqi@0 1649 int bc_length;
aoqi@0 1650 for (int bci = 0; bci < code_length; bci += bc_length) {
aoqi@0 1651 address bcp = code_base + bci;
aoqi@0 1652 Bytecodes::Code c = (Bytecodes::Code)(*bcp);
aoqi@0 1653
aoqi@0 1654 bc_length = Bytecodes::length_for(c);
aoqi@0 1655 if (bc_length == 0) {
aoqi@0 1656 // More complicated bytecodes report a length of zero so
aoqi@0 1657 // we have to try again a slightly different way.
aoqi@0 1658 bc_length = Bytecodes::length_at(method(), bcp);
aoqi@0 1659 }
aoqi@0 1660
aoqi@0 1661 assert(bc_length != 0, "impossible bytecode length");
aoqi@0 1662
aoqi@0 1663 switch (c) {
aoqi@0 1664 case Bytecodes::_ldc:
aoqi@0 1665 {
aoqi@0 1666 int cp_index = *(bcp + 1);
aoqi@0 1667 int new_index = find_new_index(cp_index);
aoqi@0 1668
aoqi@0 1669 if (StressLdcRewrite && new_index == 0) {
aoqi@0 1670 // If we are stressing ldc -> ldc_w rewriting, then we
aoqi@0 1671 // always need a new_index value.
aoqi@0 1672 new_index = cp_index;
aoqi@0 1673 }
aoqi@0 1674 if (new_index != 0) {
aoqi@0 1675 // the original index is mapped so we have more work to do
aoqi@0 1676 if (!StressLdcRewrite && new_index <= max_jubyte) {
aoqi@0 1677 // The new value can still use ldc instead of ldc_w
aoqi@0 1678 // unless we are trying to stress ldc -> ldc_w rewriting
aoqi@0 1679 RC_TRACE_WITH_THREAD(0x00080000, THREAD,
aoqi@0 1680 ("%s@" INTPTR_FORMAT " old=%d, new=%d", Bytecodes::name(c),
aoqi@0 1681 bcp, cp_index, new_index));
aoqi@0 1682 *(bcp + 1) = new_index;
aoqi@0 1683 } else {
aoqi@0 1684 RC_TRACE_WITH_THREAD(0x00080000, THREAD,
aoqi@0 1685 ("%s->ldc_w@" INTPTR_FORMAT " old=%d, new=%d",
aoqi@0 1686 Bytecodes::name(c), bcp, cp_index, new_index));
aoqi@0 1687 // the new value needs ldc_w instead of ldc
aoqi@0 1688 u_char inst_buffer[4]; // max instruction size is 4 bytes
aoqi@0 1689 bcp = (address)inst_buffer;
aoqi@0 1690 // construct new instruction sequence
aoqi@0 1691 *bcp = Bytecodes::_ldc_w;
aoqi@0 1692 bcp++;
aoqi@0 1693 // Rewriter::rewrite_method() does not rewrite ldc -> ldc_w.
aoqi@0 1694 // See comment below for difference between put_Java_u2()
aoqi@0 1695 // and put_native_u2().
aoqi@0 1696 Bytes::put_Java_u2(bcp, new_index);
aoqi@0 1697
aoqi@0 1698 Relocator rc(method, NULL /* no RelocatorListener needed */);
aoqi@0 1699 methodHandle m;
aoqi@0 1700 {
aoqi@0 1701 Pause_No_Safepoint_Verifier pnsv(&nsv);
aoqi@0 1702
aoqi@0 1703 // ldc is 2 bytes and ldc_w is 3 bytes
aoqi@0 1704 m = rc.insert_space_at(bci, 3, inst_buffer, CHECK);
aoqi@0 1705 }
aoqi@0 1706
aoqi@0 1707 // return the new method so that the caller can update
aoqi@0 1708 // the containing class
aoqi@0 1709 *new_method_p = method = m;
aoqi@0 1710 // switch our bytecode processing loop from the old method
aoqi@0 1711 // to the new method
aoqi@0 1712 code_base = method->code_base();
aoqi@0 1713 code_length = method->code_size();
aoqi@0 1714 bcp = code_base + bci;
aoqi@0 1715 c = (Bytecodes::Code)(*bcp);
aoqi@0 1716 bc_length = Bytecodes::length_for(c);
aoqi@0 1717 assert(bc_length != 0, "sanity check");
aoqi@0 1718 } // end we need ldc_w instead of ldc
aoqi@0 1719 } // end if there is a mapped index
aoqi@0 1720 } break;
aoqi@0 1721
aoqi@0 1722 // these bytecodes have a two-byte constant pool index
aoqi@0 1723 case Bytecodes::_anewarray : // fall through
aoqi@0 1724 case Bytecodes::_checkcast : // fall through
aoqi@0 1725 case Bytecodes::_getfield : // fall through
aoqi@0 1726 case Bytecodes::_getstatic : // fall through
aoqi@0 1727 case Bytecodes::_instanceof : // fall through
aoqi@0 1728 case Bytecodes::_invokedynamic : // fall through
aoqi@0 1729 case Bytecodes::_invokeinterface: // fall through
aoqi@0 1730 case Bytecodes::_invokespecial : // fall through
aoqi@0 1731 case Bytecodes::_invokestatic : // fall through
aoqi@0 1732 case Bytecodes::_invokevirtual : // fall through
aoqi@0 1733 case Bytecodes::_ldc_w : // fall through
aoqi@0 1734 case Bytecodes::_ldc2_w : // fall through
aoqi@0 1735 case Bytecodes::_multianewarray : // fall through
aoqi@0 1736 case Bytecodes::_new : // fall through
aoqi@0 1737 case Bytecodes::_putfield : // fall through
aoqi@0 1738 case Bytecodes::_putstatic :
aoqi@0 1739 {
aoqi@0 1740 address p = bcp + 1;
aoqi@0 1741 int cp_index = Bytes::get_Java_u2(p);
aoqi@0 1742 int new_index = find_new_index(cp_index);
aoqi@0 1743 if (new_index != 0) {
aoqi@0 1744 // the original index is mapped so update w/ new value
aoqi@0 1745 RC_TRACE_WITH_THREAD(0x00080000, THREAD,
aoqi@0 1746 ("%s@" INTPTR_FORMAT " old=%d, new=%d", Bytecodes::name(c),
aoqi@0 1747 bcp, cp_index, new_index));
aoqi@0 1748 // Rewriter::rewrite_method() uses put_native_u2() in this
aoqi@0 1749 // situation because it is reusing the constant pool index
aoqi@0 1750 // location for a native index into the ConstantPoolCache.
aoqi@0 1751 // Since we are updating the constant pool index prior to
aoqi@0 1752 // verification and ConstantPoolCache initialization, we
aoqi@0 1753 // need to keep the new index in Java byte order.
aoqi@0 1754 Bytes::put_Java_u2(p, new_index);
aoqi@0 1755 }
aoqi@0 1756 } break;
aoqi@0 1757 }
aoqi@0 1758 } // end for each bytecode
aoqi@0 1759
aoqi@0 1760 // We also need to rewrite the parameter name indexes, if there is
aoqi@0 1761 // method parameter data present
aoqi@0 1762 if(method->has_method_parameters()) {
aoqi@0 1763 const int len = method->method_parameters_length();
aoqi@0 1764 MethodParametersElement* elem = method->method_parameters_start();
aoqi@0 1765
aoqi@0 1766 for (int i = 0; i < len; i++) {
aoqi@0 1767 const u2 cp_index = elem[i].name_cp_index;
aoqi@0 1768 const u2 new_cp_index = find_new_index(cp_index);
aoqi@0 1769 if (new_cp_index != 0) {
aoqi@0 1770 elem[i].name_cp_index = new_cp_index;
aoqi@0 1771 }
aoqi@0 1772 }
aoqi@0 1773 }
aoqi@0 1774 } // end rewrite_cp_refs_in_method()
aoqi@0 1775
aoqi@0 1776
aoqi@0 1777 // Rewrite constant pool references in the class_annotations field.
aoqi@0 1778 bool VM_RedefineClasses::rewrite_cp_refs_in_class_annotations(
aoqi@0 1779 instanceKlassHandle scratch_class, TRAPS) {
aoqi@0 1780
aoqi@0 1781 AnnotationArray* class_annotations = scratch_class->class_annotations();
aoqi@0 1782 if (class_annotations == NULL || class_annotations->length() == 0) {
aoqi@0 1783 // no class_annotations so nothing to do
aoqi@0 1784 return true;
aoqi@0 1785 }
aoqi@0 1786
aoqi@0 1787 RC_TRACE_WITH_THREAD(0x02000000, THREAD,
aoqi@0 1788 ("class_annotations length=%d", class_annotations->length()));
aoqi@0 1789
aoqi@0 1790 int byte_i = 0; // byte index into class_annotations
aoqi@0 1791 return rewrite_cp_refs_in_annotations_typeArray(class_annotations, byte_i,
aoqi@0 1792 THREAD);
aoqi@0 1793 }
aoqi@0 1794
aoqi@0 1795
aoqi@0 1796 // Rewrite constant pool references in an annotations typeArray. This
aoqi@0 1797 // "structure" is adapted from the RuntimeVisibleAnnotations_attribute
aoqi@0 1798 // that is described in section 4.8.15 of the 2nd-edition of the VM spec:
aoqi@0 1799 //
aoqi@0 1800 // annotations_typeArray {
aoqi@0 1801 // u2 num_annotations;
aoqi@0 1802 // annotation annotations[num_annotations];
aoqi@0 1803 // }
aoqi@0 1804 //
aoqi@0 1805 bool VM_RedefineClasses::rewrite_cp_refs_in_annotations_typeArray(
aoqi@0 1806 AnnotationArray* annotations_typeArray, int &byte_i_ref, TRAPS) {
aoqi@0 1807
aoqi@0 1808 if ((byte_i_ref + 2) > annotations_typeArray->length()) {
aoqi@0 1809 // not enough room for num_annotations field
aoqi@0 1810 RC_TRACE_WITH_THREAD(0x02000000, THREAD,
aoqi@0 1811 ("length() is too small for num_annotations field"));
aoqi@0 1812 return false;
aoqi@0 1813 }
aoqi@0 1814
aoqi@0 1815 u2 num_annotations = Bytes::get_Java_u2((address)
aoqi@0 1816 annotations_typeArray->adr_at(byte_i_ref));
aoqi@0 1817 byte_i_ref += 2;
aoqi@0 1818
aoqi@0 1819 RC_TRACE_WITH_THREAD(0x02000000, THREAD,
aoqi@0 1820 ("num_annotations=%d", num_annotations));
aoqi@0 1821
aoqi@0 1822 int calc_num_annotations = 0;
aoqi@0 1823 for (; calc_num_annotations < num_annotations; calc_num_annotations++) {
aoqi@0 1824 if (!rewrite_cp_refs_in_annotation_struct(annotations_typeArray,
aoqi@0 1825 byte_i_ref, THREAD)) {
aoqi@0 1826 RC_TRACE_WITH_THREAD(0x02000000, THREAD,
aoqi@0 1827 ("bad annotation_struct at %d", calc_num_annotations));
aoqi@0 1828 // propagate failure back to caller
aoqi@0 1829 return false;
aoqi@0 1830 }
aoqi@0 1831 }
aoqi@0 1832 assert(num_annotations == calc_num_annotations, "sanity check");
aoqi@0 1833
aoqi@0 1834 return true;
aoqi@0 1835 } // end rewrite_cp_refs_in_annotations_typeArray()
aoqi@0 1836
aoqi@0 1837
aoqi@0 1838 // Rewrite constant pool references in the annotation struct portion of
aoqi@0 1839 // an annotations_typeArray. This "structure" is from section 4.8.15 of
aoqi@0 1840 // the 2nd-edition of the VM spec:
aoqi@0 1841 //
aoqi@0 1842 // struct annotation {
aoqi@0 1843 // u2 type_index;
aoqi@0 1844 // u2 num_element_value_pairs;
aoqi@0 1845 // {
aoqi@0 1846 // u2 element_name_index;
aoqi@0 1847 // element_value value;
aoqi@0 1848 // } element_value_pairs[num_element_value_pairs];
aoqi@0 1849 // }
aoqi@0 1850 //
aoqi@0 1851 bool VM_RedefineClasses::rewrite_cp_refs_in_annotation_struct(
aoqi@0 1852 AnnotationArray* annotations_typeArray, int &byte_i_ref, TRAPS) {
aoqi@0 1853 if ((byte_i_ref + 2 + 2) > annotations_typeArray->length()) {
aoqi@0 1854 // not enough room for smallest annotation_struct
aoqi@0 1855 RC_TRACE_WITH_THREAD(0x02000000, THREAD,
aoqi@0 1856 ("length() is too small for annotation_struct"));
aoqi@0 1857 return false;
aoqi@0 1858 }
aoqi@0 1859
aoqi@0 1860 u2 type_index = rewrite_cp_ref_in_annotation_data(annotations_typeArray,
aoqi@0 1861 byte_i_ref, "mapped old type_index=%d", THREAD);
aoqi@0 1862
aoqi@0 1863 u2 num_element_value_pairs = Bytes::get_Java_u2((address)
aoqi@0 1864 annotations_typeArray->adr_at(byte_i_ref));
aoqi@0 1865 byte_i_ref += 2;
aoqi@0 1866
aoqi@0 1867 RC_TRACE_WITH_THREAD(0x02000000, THREAD,
aoqi@0 1868 ("type_index=%d num_element_value_pairs=%d", type_index,
aoqi@0 1869 num_element_value_pairs));
aoqi@0 1870
aoqi@0 1871 int calc_num_element_value_pairs = 0;
aoqi@0 1872 for (; calc_num_element_value_pairs < num_element_value_pairs;
aoqi@0 1873 calc_num_element_value_pairs++) {
aoqi@0 1874 if ((byte_i_ref + 2) > annotations_typeArray->length()) {
aoqi@0 1875 // not enough room for another element_name_index, let alone
aoqi@0 1876 // the rest of another component
aoqi@0 1877 RC_TRACE_WITH_THREAD(0x02000000, THREAD,
aoqi@0 1878 ("length() is too small for element_name_index"));
aoqi@0 1879 return false;
aoqi@0 1880 }
aoqi@0 1881
aoqi@0 1882 u2 element_name_index = rewrite_cp_ref_in_annotation_data(
aoqi@0 1883 annotations_typeArray, byte_i_ref,
aoqi@0 1884 "mapped old element_name_index=%d", THREAD);
aoqi@0 1885
aoqi@0 1886 RC_TRACE_WITH_THREAD(0x02000000, THREAD,
aoqi@0 1887 ("element_name_index=%d", element_name_index));
aoqi@0 1888
aoqi@0 1889 if (!rewrite_cp_refs_in_element_value(annotations_typeArray,
aoqi@0 1890 byte_i_ref, THREAD)) {
aoqi@0 1891 RC_TRACE_WITH_THREAD(0x02000000, THREAD,
aoqi@0 1892 ("bad element_value at %d", calc_num_element_value_pairs));
aoqi@0 1893 // propagate failure back to caller
aoqi@0 1894 return false;
aoqi@0 1895 }
aoqi@0 1896 } // end for each component
aoqi@0 1897 assert(num_element_value_pairs == calc_num_element_value_pairs,
aoqi@0 1898 "sanity check");
aoqi@0 1899
aoqi@0 1900 return true;
aoqi@0 1901 } // end rewrite_cp_refs_in_annotation_struct()
aoqi@0 1902
aoqi@0 1903
aoqi@0 1904 // Rewrite a constant pool reference at the current position in
aoqi@0 1905 // annotations_typeArray if needed. Returns the original constant
aoqi@0 1906 // pool reference if a rewrite was not needed or the new constant
aoqi@0 1907 // pool reference if a rewrite was needed.
aoqi@0 1908 PRAGMA_DIAG_PUSH
aoqi@0 1909 PRAGMA_FORMAT_NONLITERAL_IGNORED
aoqi@0 1910 u2 VM_RedefineClasses::rewrite_cp_ref_in_annotation_data(
aoqi@0 1911 AnnotationArray* annotations_typeArray, int &byte_i_ref,
aoqi@0 1912 const char * trace_mesg, TRAPS) {
aoqi@0 1913
aoqi@0 1914 address cp_index_addr = (address)
aoqi@0 1915 annotations_typeArray->adr_at(byte_i_ref);
aoqi@0 1916 u2 old_cp_index = Bytes::get_Java_u2(cp_index_addr);
aoqi@0 1917 u2 new_cp_index = find_new_index(old_cp_index);
aoqi@0 1918 if (new_cp_index != 0) {
aoqi@0 1919 RC_TRACE_WITH_THREAD(0x02000000, THREAD, (trace_mesg, old_cp_index));
aoqi@0 1920 Bytes::put_Java_u2(cp_index_addr, new_cp_index);
aoqi@0 1921 old_cp_index = new_cp_index;
aoqi@0 1922 }
aoqi@0 1923 byte_i_ref += 2;
aoqi@0 1924 return old_cp_index;
aoqi@0 1925 }
aoqi@0 1926 PRAGMA_DIAG_POP
aoqi@0 1927
aoqi@0 1928
aoqi@0 1929 // Rewrite constant pool references in the element_value portion of an
aoqi@0 1930 // annotations_typeArray. This "structure" is from section 4.8.15.1 of
aoqi@0 1931 // the 2nd-edition of the VM spec:
aoqi@0 1932 //
aoqi@0 1933 // struct element_value {
aoqi@0 1934 // u1 tag;
aoqi@0 1935 // union {
aoqi@0 1936 // u2 const_value_index;
aoqi@0 1937 // {
aoqi@0 1938 // u2 type_name_index;
aoqi@0 1939 // u2 const_name_index;
aoqi@0 1940 // } enum_const_value;
aoqi@0 1941 // u2 class_info_index;
aoqi@0 1942 // annotation annotation_value;
aoqi@0 1943 // struct {
aoqi@0 1944 // u2 num_values;
aoqi@0 1945 // element_value values[num_values];
aoqi@0 1946 // } array_value;
aoqi@0 1947 // } value;
aoqi@0 1948 // }
aoqi@0 1949 //
aoqi@0 1950 bool VM_RedefineClasses::rewrite_cp_refs_in_element_value(
aoqi@0 1951 AnnotationArray* annotations_typeArray, int &byte_i_ref, TRAPS) {
aoqi@0 1952
aoqi@0 1953 if ((byte_i_ref + 1) > annotations_typeArray->length()) {
aoqi@0 1954 // not enough room for a tag let alone the rest of an element_value
aoqi@0 1955 RC_TRACE_WITH_THREAD(0x02000000, THREAD,
aoqi@0 1956 ("length() is too small for a tag"));
aoqi@0 1957 return false;
aoqi@0 1958 }
aoqi@0 1959
aoqi@0 1960 u1 tag = annotations_typeArray->at(byte_i_ref);
aoqi@0 1961 byte_i_ref++;
aoqi@0 1962 RC_TRACE_WITH_THREAD(0x02000000, THREAD, ("tag='%c'", tag));
aoqi@0 1963
aoqi@0 1964 switch (tag) {
aoqi@0 1965 // These BaseType tag values are from Table 4.2 in VM spec:
aoqi@0 1966 case 'B': // byte
aoqi@0 1967 case 'C': // char
aoqi@0 1968 case 'D': // double
aoqi@0 1969 case 'F': // float
aoqi@0 1970 case 'I': // int
aoqi@0 1971 case 'J': // long
aoqi@0 1972 case 'S': // short
aoqi@0 1973 case 'Z': // boolean
aoqi@0 1974
aoqi@0 1975 // The remaining tag values are from Table 4.8 in the 2nd-edition of
aoqi@0 1976 // the VM spec:
aoqi@0 1977 case 's':
aoqi@0 1978 {
aoqi@0 1979 // For the above tag values (including the BaseType values),
aoqi@0 1980 // value.const_value_index is right union field.
aoqi@0 1981
aoqi@0 1982 if ((byte_i_ref + 2) > annotations_typeArray->length()) {
aoqi@0 1983 // not enough room for a const_value_index
aoqi@0 1984 RC_TRACE_WITH_THREAD(0x02000000, THREAD,
aoqi@0 1985 ("length() is too small for a const_value_index"));
aoqi@0 1986 return false;
aoqi@0 1987 }
aoqi@0 1988
aoqi@0 1989 u2 const_value_index = rewrite_cp_ref_in_annotation_data(
aoqi@0 1990 annotations_typeArray, byte_i_ref,
aoqi@0 1991 "mapped old const_value_index=%d", THREAD);
aoqi@0 1992
aoqi@0 1993 RC_TRACE_WITH_THREAD(0x02000000, THREAD,
aoqi@0 1994 ("const_value_index=%d", const_value_index));
aoqi@0 1995 } break;
aoqi@0 1996
aoqi@0 1997 case 'e':
aoqi@0 1998 {
aoqi@0 1999 // for the above tag value, value.enum_const_value is right union field
aoqi@0 2000
aoqi@0 2001 if ((byte_i_ref + 4) > annotations_typeArray->length()) {
aoqi@0 2002 // not enough room for a enum_const_value
aoqi@0 2003 RC_TRACE_WITH_THREAD(0x02000000, THREAD,
aoqi@0 2004 ("length() is too small for a enum_const_value"));
aoqi@0 2005 return false;
aoqi@0 2006 }
aoqi@0 2007
aoqi@0 2008 u2 type_name_index = rewrite_cp_ref_in_annotation_data(
aoqi@0 2009 annotations_typeArray, byte_i_ref,
aoqi@0 2010 "mapped old type_name_index=%d", THREAD);
aoqi@0 2011
aoqi@0 2012 u2 const_name_index = rewrite_cp_ref_in_annotation_data(
aoqi@0 2013 annotations_typeArray, byte_i_ref,
aoqi@0 2014 "mapped old const_name_index=%d", THREAD);
aoqi@0 2015
aoqi@0 2016 RC_TRACE_WITH_THREAD(0x02000000, THREAD,
aoqi@0 2017 ("type_name_index=%d const_name_index=%d", type_name_index,
aoqi@0 2018 const_name_index));
aoqi@0 2019 } break;
aoqi@0 2020
aoqi@0 2021 case 'c':
aoqi@0 2022 {
aoqi@0 2023 // for the above tag value, value.class_info_index is right union field
aoqi@0 2024
aoqi@0 2025 if ((byte_i_ref + 2) > annotations_typeArray->length()) {
aoqi@0 2026 // not enough room for a class_info_index
aoqi@0 2027 RC_TRACE_WITH_THREAD(0x02000000, THREAD,
aoqi@0 2028 ("length() is too small for a class_info_index"));
aoqi@0 2029 return false;
aoqi@0 2030 }
aoqi@0 2031
aoqi@0 2032 u2 class_info_index = rewrite_cp_ref_in_annotation_data(
aoqi@0 2033 annotations_typeArray, byte_i_ref,
aoqi@0 2034 "mapped old class_info_index=%d", THREAD);
aoqi@0 2035
aoqi@0 2036 RC_TRACE_WITH_THREAD(0x02000000, THREAD,
aoqi@0 2037 ("class_info_index=%d", class_info_index));
aoqi@0 2038 } break;
aoqi@0 2039
aoqi@0 2040 case '@':
aoqi@0 2041 // For the above tag value, value.attr_value is the right union
aoqi@0 2042 // field. This is a nested annotation.
aoqi@0 2043 if (!rewrite_cp_refs_in_annotation_struct(annotations_typeArray,
aoqi@0 2044 byte_i_ref, THREAD)) {
aoqi@0 2045 // propagate failure back to caller
aoqi@0 2046 return false;
aoqi@0 2047 }
aoqi@0 2048 break;
aoqi@0 2049
aoqi@0 2050 case '[':
aoqi@0 2051 {
aoqi@0 2052 if ((byte_i_ref + 2) > annotations_typeArray->length()) {
aoqi@0 2053 // not enough room for a num_values field
aoqi@0 2054 RC_TRACE_WITH_THREAD(0x02000000, THREAD,
aoqi@0 2055 ("length() is too small for a num_values field"));
aoqi@0 2056 return false;
aoqi@0 2057 }
aoqi@0 2058
aoqi@0 2059 // For the above tag value, value.array_value is the right union
aoqi@0 2060 // field. This is an array of nested element_value.
aoqi@0 2061 u2 num_values = Bytes::get_Java_u2((address)
aoqi@0 2062 annotations_typeArray->adr_at(byte_i_ref));
aoqi@0 2063 byte_i_ref += 2;
aoqi@0 2064 RC_TRACE_WITH_THREAD(0x02000000, THREAD, ("num_values=%d", num_values));
aoqi@0 2065
aoqi@0 2066 int calc_num_values = 0;
aoqi@0 2067 for (; calc_num_values < num_values; calc_num_values++) {
aoqi@0 2068 if (!rewrite_cp_refs_in_element_value(
aoqi@0 2069 annotations_typeArray, byte_i_ref, THREAD)) {
aoqi@0 2070 RC_TRACE_WITH_THREAD(0x02000000, THREAD,
aoqi@0 2071 ("bad nested element_value at %d", calc_num_values));
aoqi@0 2072 // propagate failure back to caller
aoqi@0 2073 return false;
aoqi@0 2074 }
aoqi@0 2075 }
aoqi@0 2076 assert(num_values == calc_num_values, "sanity check");
aoqi@0 2077 } break;
aoqi@0 2078
aoqi@0 2079 default:
aoqi@0 2080 RC_TRACE_WITH_THREAD(0x02000000, THREAD, ("bad tag=0x%x", tag));
aoqi@0 2081 return false;
aoqi@0 2082 } // end decode tag field
aoqi@0 2083
aoqi@0 2084 return true;
aoqi@0 2085 } // end rewrite_cp_refs_in_element_value()
aoqi@0 2086
aoqi@0 2087
aoqi@0 2088 // Rewrite constant pool references in a fields_annotations field.
aoqi@0 2089 bool VM_RedefineClasses::rewrite_cp_refs_in_fields_annotations(
aoqi@0 2090 instanceKlassHandle scratch_class, TRAPS) {
aoqi@0 2091
aoqi@0 2092 Array<AnnotationArray*>* fields_annotations = scratch_class->fields_annotations();
aoqi@0 2093
aoqi@0 2094 if (fields_annotations == NULL || fields_annotations->length() == 0) {
aoqi@0 2095 // no fields_annotations so nothing to do
aoqi@0 2096 return true;
aoqi@0 2097 }
aoqi@0 2098
aoqi@0 2099 RC_TRACE_WITH_THREAD(0x02000000, THREAD,
aoqi@0 2100 ("fields_annotations length=%d", fields_annotations->length()));
aoqi@0 2101
aoqi@0 2102 for (int i = 0; i < fields_annotations->length(); i++) {
aoqi@0 2103 AnnotationArray* field_annotations = fields_annotations->at(i);
aoqi@0 2104 if (field_annotations == NULL || field_annotations->length() == 0) {
aoqi@0 2105 // this field does not have any annotations so skip it
aoqi@0 2106 continue;
aoqi@0 2107 }
aoqi@0 2108
aoqi@0 2109 int byte_i = 0; // byte index into field_annotations
aoqi@0 2110 if (!rewrite_cp_refs_in_annotations_typeArray(field_annotations, byte_i,
aoqi@0 2111 THREAD)) {
aoqi@0 2112 RC_TRACE_WITH_THREAD(0x02000000, THREAD,
aoqi@0 2113 ("bad field_annotations at %d", i));
aoqi@0 2114 // propagate failure back to caller
aoqi@0 2115 return false;
aoqi@0 2116 }
aoqi@0 2117 }
aoqi@0 2118
aoqi@0 2119 return true;
aoqi@0 2120 } // end rewrite_cp_refs_in_fields_annotations()
aoqi@0 2121
aoqi@0 2122
aoqi@0 2123 // Rewrite constant pool references in a methods_annotations field.
aoqi@0 2124 bool VM_RedefineClasses::rewrite_cp_refs_in_methods_annotations(
aoqi@0 2125 instanceKlassHandle scratch_class, TRAPS) {
aoqi@0 2126
aoqi@0 2127 for (int i = 0; i < scratch_class->methods()->length(); i++) {
aoqi@0 2128 Method* m = scratch_class->methods()->at(i);
aoqi@0 2129 AnnotationArray* method_annotations = m->constMethod()->method_annotations();
aoqi@0 2130
aoqi@0 2131 if (method_annotations == NULL || method_annotations->length() == 0) {
aoqi@0 2132 // this method does not have any annotations so skip it
aoqi@0 2133 continue;
aoqi@0 2134 }
aoqi@0 2135
aoqi@0 2136 int byte_i = 0; // byte index into method_annotations
aoqi@0 2137 if (!rewrite_cp_refs_in_annotations_typeArray(method_annotations, byte_i,
aoqi@0 2138 THREAD)) {
aoqi@0 2139 RC_TRACE_WITH_THREAD(0x02000000, THREAD,
aoqi@0 2140 ("bad method_annotations at %d", i));
aoqi@0 2141 // propagate failure back to caller
aoqi@0 2142 return false;
aoqi@0 2143 }
aoqi@0 2144 }
aoqi@0 2145
aoqi@0 2146 return true;
aoqi@0 2147 } // end rewrite_cp_refs_in_methods_annotations()
aoqi@0 2148
aoqi@0 2149
aoqi@0 2150 // Rewrite constant pool references in a methods_parameter_annotations
aoqi@0 2151 // field. This "structure" is adapted from the
aoqi@0 2152 // RuntimeVisibleParameterAnnotations_attribute described in section
aoqi@0 2153 // 4.8.17 of the 2nd-edition of the VM spec:
aoqi@0 2154 //
aoqi@0 2155 // methods_parameter_annotations_typeArray {
aoqi@0 2156 // u1 num_parameters;
aoqi@0 2157 // {
aoqi@0 2158 // u2 num_annotations;
aoqi@0 2159 // annotation annotations[num_annotations];
aoqi@0 2160 // } parameter_annotations[num_parameters];
aoqi@0 2161 // }
aoqi@0 2162 //
aoqi@0 2163 bool VM_RedefineClasses::rewrite_cp_refs_in_methods_parameter_annotations(
aoqi@0 2164 instanceKlassHandle scratch_class, TRAPS) {
aoqi@0 2165
aoqi@0 2166 for (int i = 0; i < scratch_class->methods()->length(); i++) {
aoqi@0 2167 Method* m = scratch_class->methods()->at(i);
aoqi@0 2168 AnnotationArray* method_parameter_annotations = m->constMethod()->parameter_annotations();
aoqi@0 2169 if (method_parameter_annotations == NULL
aoqi@0 2170 || method_parameter_annotations->length() == 0) {
aoqi@0 2171 // this method does not have any parameter annotations so skip it
aoqi@0 2172 continue;
aoqi@0 2173 }
aoqi@0 2174
aoqi@0 2175 if (method_parameter_annotations->length() < 1) {
aoqi@0 2176 // not enough room for a num_parameters field
aoqi@0 2177 RC_TRACE_WITH_THREAD(0x02000000, THREAD,
aoqi@0 2178 ("length() is too small for a num_parameters field at %d", i));
aoqi@0 2179 return false;
aoqi@0 2180 }
aoqi@0 2181
aoqi@0 2182 int byte_i = 0; // byte index into method_parameter_annotations
aoqi@0 2183
aoqi@0 2184 u1 num_parameters = method_parameter_annotations->at(byte_i);
aoqi@0 2185 byte_i++;
aoqi@0 2186
aoqi@0 2187 RC_TRACE_WITH_THREAD(0x02000000, THREAD,
aoqi@0 2188 ("num_parameters=%d", num_parameters));
aoqi@0 2189
aoqi@0 2190 int calc_num_parameters = 0;
aoqi@0 2191 for (; calc_num_parameters < num_parameters; calc_num_parameters++) {
aoqi@0 2192 if (!rewrite_cp_refs_in_annotations_typeArray(
aoqi@0 2193 method_parameter_annotations, byte_i, THREAD)) {
aoqi@0 2194 RC_TRACE_WITH_THREAD(0x02000000, THREAD,
aoqi@0 2195 ("bad method_parameter_annotations at %d", calc_num_parameters));
aoqi@0 2196 // propagate failure back to caller
aoqi@0 2197 return false;
aoqi@0 2198 }
aoqi@0 2199 }
aoqi@0 2200 assert(num_parameters == calc_num_parameters, "sanity check");
aoqi@0 2201 }
aoqi@0 2202
aoqi@0 2203 return true;
aoqi@0 2204 } // end rewrite_cp_refs_in_methods_parameter_annotations()
aoqi@0 2205
aoqi@0 2206
aoqi@0 2207 // Rewrite constant pool references in a methods_default_annotations
aoqi@0 2208 // field. This "structure" is adapted from the AnnotationDefault_attribute
aoqi@0 2209 // that is described in section 4.8.19 of the 2nd-edition of the VM spec:
aoqi@0 2210 //
aoqi@0 2211 // methods_default_annotations_typeArray {
aoqi@0 2212 // element_value default_value;
aoqi@0 2213 // }
aoqi@0 2214 //
aoqi@0 2215 bool VM_RedefineClasses::rewrite_cp_refs_in_methods_default_annotations(
aoqi@0 2216 instanceKlassHandle scratch_class, TRAPS) {
aoqi@0 2217
aoqi@0 2218 for (int i = 0; i < scratch_class->methods()->length(); i++) {
aoqi@0 2219 Method* m = scratch_class->methods()->at(i);
aoqi@0 2220 AnnotationArray* method_default_annotations = m->constMethod()->default_annotations();
aoqi@0 2221 if (method_default_annotations == NULL
aoqi@0 2222 || method_default_annotations->length() == 0) {
aoqi@0 2223 // this method does not have any default annotations so skip it
aoqi@0 2224 continue;
aoqi@0 2225 }
aoqi@0 2226
aoqi@0 2227 int byte_i = 0; // byte index into method_default_annotations
aoqi@0 2228
aoqi@0 2229 if (!rewrite_cp_refs_in_element_value(
aoqi@0 2230 method_default_annotations, byte_i, THREAD)) {
aoqi@0 2231 RC_TRACE_WITH_THREAD(0x02000000, THREAD,
aoqi@0 2232 ("bad default element_value at %d", i));
aoqi@0 2233 // propagate failure back to caller
aoqi@0 2234 return false;
aoqi@0 2235 }
aoqi@0 2236 }
aoqi@0 2237
aoqi@0 2238 return true;
aoqi@0 2239 } // end rewrite_cp_refs_in_methods_default_annotations()
aoqi@0 2240
aoqi@0 2241
aoqi@0 2242 // Rewrite constant pool references in the method's stackmap table.
aoqi@0 2243 // These "structures" are adapted from the StackMapTable_attribute that
aoqi@0 2244 // is described in section 4.8.4 of the 6.0 version of the VM spec
aoqi@0 2245 // (dated 2005.10.26):
aoqi@0 2246 // file:///net/quincunx.sfbay/export/gbracha/ClassFile-Java6.pdf
aoqi@0 2247 //
aoqi@0 2248 // stack_map {
aoqi@0 2249 // u2 number_of_entries;
aoqi@0 2250 // stack_map_frame entries[number_of_entries];
aoqi@0 2251 // }
aoqi@0 2252 //
aoqi@0 2253 void VM_RedefineClasses::rewrite_cp_refs_in_stack_map_table(
aoqi@0 2254 methodHandle method, TRAPS) {
aoqi@0 2255
aoqi@0 2256 if (!method->has_stackmap_table()) {
aoqi@0 2257 return;
aoqi@0 2258 }
aoqi@0 2259
aoqi@0 2260 AnnotationArray* stackmap_data = method->stackmap_data();
aoqi@0 2261 address stackmap_p = (address)stackmap_data->adr_at(0);
aoqi@0 2262 address stackmap_end = stackmap_p + stackmap_data->length();
aoqi@0 2263
aoqi@0 2264 assert(stackmap_p + 2 <= stackmap_end, "no room for number_of_entries");
aoqi@0 2265 u2 number_of_entries = Bytes::get_Java_u2(stackmap_p);
aoqi@0 2266 stackmap_p += 2;
aoqi@0 2267
aoqi@0 2268 RC_TRACE_WITH_THREAD(0x04000000, THREAD,
aoqi@0 2269 ("number_of_entries=%u", number_of_entries));
aoqi@0 2270
aoqi@0 2271 // walk through each stack_map_frame
aoqi@0 2272 u2 calc_number_of_entries = 0;
aoqi@0 2273 for (; calc_number_of_entries < number_of_entries; calc_number_of_entries++) {
aoqi@0 2274 // The stack_map_frame structure is a u1 frame_type followed by
aoqi@0 2275 // 0 or more bytes of data:
aoqi@0 2276 //
aoqi@0 2277 // union stack_map_frame {
aoqi@0 2278 // same_frame;
aoqi@0 2279 // same_locals_1_stack_item_frame;
aoqi@0 2280 // same_locals_1_stack_item_frame_extended;
aoqi@0 2281 // chop_frame;
aoqi@0 2282 // same_frame_extended;
aoqi@0 2283 // append_frame;
aoqi@0 2284 // full_frame;
aoqi@0 2285 // }
aoqi@0 2286
aoqi@0 2287 assert(stackmap_p + 1 <= stackmap_end, "no room for frame_type");
aoqi@0 2288 // The Linux compiler does not like frame_type to be u1 or u2. It
aoqi@0 2289 // issues the following warning for the first if-statement below:
aoqi@0 2290 //
aoqi@0 2291 // "warning: comparison is always true due to limited range of data type"
aoqi@0 2292 //
aoqi@0 2293 u4 frame_type = *stackmap_p;
aoqi@0 2294 stackmap_p++;
aoqi@0 2295
aoqi@0 2296 // same_frame {
aoqi@0 2297 // u1 frame_type = SAME; /* 0-63 */
aoqi@0 2298 // }
aoqi@0 2299 if (frame_type >= 0 && frame_type <= 63) {
aoqi@0 2300 // nothing more to do for same_frame
aoqi@0 2301 }
aoqi@0 2302
aoqi@0 2303 // same_locals_1_stack_item_frame {
aoqi@0 2304 // u1 frame_type = SAME_LOCALS_1_STACK_ITEM; /* 64-127 */
aoqi@0 2305 // verification_type_info stack[1];
aoqi@0 2306 // }
aoqi@0 2307 else if (frame_type >= 64 && frame_type <= 127) {
aoqi@0 2308 rewrite_cp_refs_in_verification_type_info(stackmap_p, stackmap_end,
aoqi@0 2309 calc_number_of_entries, frame_type, THREAD);
aoqi@0 2310 }
aoqi@0 2311
aoqi@0 2312 // reserved for future use
aoqi@0 2313 else if (frame_type >= 128 && frame_type <= 246) {
aoqi@0 2314 // nothing more to do for reserved frame_types
aoqi@0 2315 }
aoqi@0 2316
aoqi@0 2317 // same_locals_1_stack_item_frame_extended {
aoqi@0 2318 // u1 frame_type = SAME_LOCALS_1_STACK_ITEM_EXTENDED; /* 247 */
aoqi@0 2319 // u2 offset_delta;
aoqi@0 2320 // verification_type_info stack[1];
aoqi@0 2321 // }
aoqi@0 2322 else if (frame_type == 247) {
aoqi@0 2323 stackmap_p += 2;
aoqi@0 2324 rewrite_cp_refs_in_verification_type_info(stackmap_p, stackmap_end,
aoqi@0 2325 calc_number_of_entries, frame_type, THREAD);
aoqi@0 2326 }
aoqi@0 2327
aoqi@0 2328 // chop_frame {
aoqi@0 2329 // u1 frame_type = CHOP; /* 248-250 */
aoqi@0 2330 // u2 offset_delta;
aoqi@0 2331 // }
aoqi@0 2332 else if (frame_type >= 248 && frame_type <= 250) {
aoqi@0 2333 stackmap_p += 2;
aoqi@0 2334 }
aoqi@0 2335
aoqi@0 2336 // same_frame_extended {
aoqi@0 2337 // u1 frame_type = SAME_FRAME_EXTENDED; /* 251*/
aoqi@0 2338 // u2 offset_delta;
aoqi@0 2339 // }
aoqi@0 2340 else if (frame_type == 251) {
aoqi@0 2341 stackmap_p += 2;
aoqi@0 2342 }
aoqi@0 2343
aoqi@0 2344 // append_frame {
aoqi@0 2345 // u1 frame_type = APPEND; /* 252-254 */
aoqi@0 2346 // u2 offset_delta;
aoqi@0 2347 // verification_type_info locals[frame_type - 251];
aoqi@0 2348 // }
aoqi@0 2349 else if (frame_type >= 252 && frame_type <= 254) {
aoqi@0 2350 assert(stackmap_p + 2 <= stackmap_end,
aoqi@0 2351 "no room for offset_delta");
aoqi@0 2352 stackmap_p += 2;
aoqi@0 2353 u1 len = frame_type - 251;
aoqi@0 2354 for (u1 i = 0; i < len; i++) {
aoqi@0 2355 rewrite_cp_refs_in_verification_type_info(stackmap_p, stackmap_end,
aoqi@0 2356 calc_number_of_entries, frame_type, THREAD);
aoqi@0 2357 }
aoqi@0 2358 }
aoqi@0 2359
aoqi@0 2360 // full_frame {
aoqi@0 2361 // u1 frame_type = FULL_FRAME; /* 255 */
aoqi@0 2362 // u2 offset_delta;
aoqi@0 2363 // u2 number_of_locals;
aoqi@0 2364 // verification_type_info locals[number_of_locals];
aoqi@0 2365 // u2 number_of_stack_items;
aoqi@0 2366 // verification_type_info stack[number_of_stack_items];
aoqi@0 2367 // }
aoqi@0 2368 else if (frame_type == 255) {
aoqi@0 2369 assert(stackmap_p + 2 + 2 <= stackmap_end,
aoqi@0 2370 "no room for smallest full_frame");
aoqi@0 2371 stackmap_p += 2;
aoqi@0 2372
aoqi@0 2373 u2 number_of_locals = Bytes::get_Java_u2(stackmap_p);
aoqi@0 2374 stackmap_p += 2;
aoqi@0 2375
aoqi@0 2376 for (u2 locals_i = 0; locals_i < number_of_locals; locals_i++) {
aoqi@0 2377 rewrite_cp_refs_in_verification_type_info(stackmap_p, stackmap_end,
aoqi@0 2378 calc_number_of_entries, frame_type, THREAD);
aoqi@0 2379 }
aoqi@0 2380
aoqi@0 2381 // Use the largest size for the number_of_stack_items, but only get
aoqi@0 2382 // the right number of bytes.
aoqi@0 2383 u2 number_of_stack_items = Bytes::get_Java_u2(stackmap_p);
aoqi@0 2384 stackmap_p += 2;
aoqi@0 2385
aoqi@0 2386 for (u2 stack_i = 0; stack_i < number_of_stack_items; stack_i++) {
aoqi@0 2387 rewrite_cp_refs_in_verification_type_info(stackmap_p, stackmap_end,
aoqi@0 2388 calc_number_of_entries, frame_type, THREAD);
aoqi@0 2389 }
aoqi@0 2390 }
aoqi@0 2391 } // end while there is a stack_map_frame
aoqi@0 2392 assert(number_of_entries == calc_number_of_entries, "sanity check");
aoqi@0 2393 } // end rewrite_cp_refs_in_stack_map_table()
aoqi@0 2394
aoqi@0 2395
aoqi@0 2396 // Rewrite constant pool references in the verification type info
aoqi@0 2397 // portion of the method's stackmap table. These "structures" are
aoqi@0 2398 // adapted from the StackMapTable_attribute that is described in
aoqi@0 2399 // section 4.8.4 of the 6.0 version of the VM spec (dated 2005.10.26):
aoqi@0 2400 // file:///net/quincunx.sfbay/export/gbracha/ClassFile-Java6.pdf
aoqi@0 2401 //
aoqi@0 2402 // The verification_type_info structure is a u1 tag followed by 0 or
aoqi@0 2403 // more bytes of data:
aoqi@0 2404 //
aoqi@0 2405 // union verification_type_info {
aoqi@0 2406 // Top_variable_info;
aoqi@0 2407 // Integer_variable_info;
aoqi@0 2408 // Float_variable_info;
aoqi@0 2409 // Long_variable_info;
aoqi@0 2410 // Double_variable_info;
aoqi@0 2411 // Null_variable_info;
aoqi@0 2412 // UninitializedThis_variable_info;
aoqi@0 2413 // Object_variable_info;
aoqi@0 2414 // Uninitialized_variable_info;
aoqi@0 2415 // }
aoqi@0 2416 //
aoqi@0 2417 void VM_RedefineClasses::rewrite_cp_refs_in_verification_type_info(
aoqi@0 2418 address& stackmap_p_ref, address stackmap_end, u2 frame_i,
aoqi@0 2419 u1 frame_type, TRAPS) {
aoqi@0 2420
aoqi@0 2421 assert(stackmap_p_ref + 1 <= stackmap_end, "no room for tag");
aoqi@0 2422 u1 tag = *stackmap_p_ref;
aoqi@0 2423 stackmap_p_ref++;
aoqi@0 2424
aoqi@0 2425 switch (tag) {
aoqi@0 2426 // Top_variable_info {
aoqi@0 2427 // u1 tag = ITEM_Top; /* 0 */
aoqi@0 2428 // }
aoqi@0 2429 // verificationType.hpp has zero as ITEM_Bogus instead of ITEM_Top
aoqi@0 2430 case 0: // fall through
aoqi@0 2431
aoqi@0 2432 // Integer_variable_info {
aoqi@0 2433 // u1 tag = ITEM_Integer; /* 1 */
aoqi@0 2434 // }
aoqi@0 2435 case ITEM_Integer: // fall through
aoqi@0 2436
aoqi@0 2437 // Float_variable_info {
aoqi@0 2438 // u1 tag = ITEM_Float; /* 2 */
aoqi@0 2439 // }
aoqi@0 2440 case ITEM_Float: // fall through
aoqi@0 2441
aoqi@0 2442 // Double_variable_info {
aoqi@0 2443 // u1 tag = ITEM_Double; /* 3 */
aoqi@0 2444 // }
aoqi@0 2445 case ITEM_Double: // fall through
aoqi@0 2446
aoqi@0 2447 // Long_variable_info {
aoqi@0 2448 // u1 tag = ITEM_Long; /* 4 */
aoqi@0 2449 // }
aoqi@0 2450 case ITEM_Long: // fall through
aoqi@0 2451
aoqi@0 2452 // Null_variable_info {
aoqi@0 2453 // u1 tag = ITEM_Null; /* 5 */
aoqi@0 2454 // }
aoqi@0 2455 case ITEM_Null: // fall through
aoqi@0 2456
aoqi@0 2457 // UninitializedThis_variable_info {
aoqi@0 2458 // u1 tag = ITEM_UninitializedThis; /* 6 */
aoqi@0 2459 // }
aoqi@0 2460 case ITEM_UninitializedThis:
aoqi@0 2461 // nothing more to do for the above tag types
aoqi@0 2462 break;
aoqi@0 2463
aoqi@0 2464 // Object_variable_info {
aoqi@0 2465 // u1 tag = ITEM_Object; /* 7 */
aoqi@0 2466 // u2 cpool_index;
aoqi@0 2467 // }
aoqi@0 2468 case ITEM_Object:
aoqi@0 2469 {
aoqi@0 2470 assert(stackmap_p_ref + 2 <= stackmap_end, "no room for cpool_index");
aoqi@0 2471 u2 cpool_index = Bytes::get_Java_u2(stackmap_p_ref);
aoqi@0 2472 u2 new_cp_index = find_new_index(cpool_index);
aoqi@0 2473 if (new_cp_index != 0) {
aoqi@0 2474 RC_TRACE_WITH_THREAD(0x04000000, THREAD,
aoqi@0 2475 ("mapped old cpool_index=%d", cpool_index));
aoqi@0 2476 Bytes::put_Java_u2(stackmap_p_ref, new_cp_index);
aoqi@0 2477 cpool_index = new_cp_index;
aoqi@0 2478 }
aoqi@0 2479 stackmap_p_ref += 2;
aoqi@0 2480
aoqi@0 2481 RC_TRACE_WITH_THREAD(0x04000000, THREAD,
aoqi@0 2482 ("frame_i=%u, frame_type=%u, cpool_index=%d", frame_i,
aoqi@0 2483 frame_type, cpool_index));
aoqi@0 2484 } break;
aoqi@0 2485
aoqi@0 2486 // Uninitialized_variable_info {
aoqi@0 2487 // u1 tag = ITEM_Uninitialized; /* 8 */
aoqi@0 2488 // u2 offset;
aoqi@0 2489 // }
aoqi@0 2490 case ITEM_Uninitialized:
aoqi@0 2491 assert(stackmap_p_ref + 2 <= stackmap_end, "no room for offset");
aoqi@0 2492 stackmap_p_ref += 2;
aoqi@0 2493 break;
aoqi@0 2494
aoqi@0 2495 default:
aoqi@0 2496 RC_TRACE_WITH_THREAD(0x04000000, THREAD,
aoqi@0 2497 ("frame_i=%u, frame_type=%u, bad tag=0x%x", frame_i, frame_type, tag));
aoqi@0 2498 ShouldNotReachHere();
aoqi@0 2499 break;
aoqi@0 2500 } // end switch (tag)
aoqi@0 2501 } // end rewrite_cp_refs_in_verification_type_info()
aoqi@0 2502
aoqi@0 2503
aoqi@0 2504 // Change the constant pool associated with klass scratch_class to
aoqi@0 2505 // scratch_cp. If shrink is true, then scratch_cp_length elements
aoqi@0 2506 // are copied from scratch_cp to a smaller constant pool and the
aoqi@0 2507 // smaller constant pool is associated with scratch_class.
aoqi@0 2508 void VM_RedefineClasses::set_new_constant_pool(
aoqi@0 2509 ClassLoaderData* loader_data,
aoqi@0 2510 instanceKlassHandle scratch_class, constantPoolHandle scratch_cp,
aoqi@0 2511 int scratch_cp_length, TRAPS) {
aoqi@0 2512 assert(scratch_cp->length() >= scratch_cp_length, "sanity check");
aoqi@0 2513
aoqi@0 2514 // scratch_cp is a merged constant pool and has enough space for a
aoqi@0 2515 // worst case merge situation. We want to associate the minimum
aoqi@0 2516 // sized constant pool with the klass to save space.
aoqi@0 2517 ConstantPool* cp = ConstantPool::allocate(loader_data, scratch_cp_length, CHECK);
aoqi@0 2518 constantPoolHandle smaller_cp(THREAD, cp);
aoqi@0 2519
aoqi@0 2520 // preserve version() value in the smaller copy
aoqi@0 2521 int version = scratch_cp->version();
aoqi@0 2522 assert(version != 0, "sanity check");
aoqi@0 2523 smaller_cp->set_version(version);
aoqi@0 2524
aoqi@0 2525 // attach klass to new constant pool
aoqi@0 2526 // reference to the cp holder is needed for copy_operands()
aoqi@0 2527 smaller_cp->set_pool_holder(scratch_class());
aoqi@0 2528
aoqi@0 2529 scratch_cp->copy_cp_to(1, scratch_cp_length - 1, smaller_cp, 1, THREAD);
aoqi@0 2530 if (HAS_PENDING_EXCEPTION) {
aoqi@0 2531 // Exception is handled in the caller
aoqi@0 2532 loader_data->add_to_deallocate_list(smaller_cp());
aoqi@0 2533 return;
aoqi@0 2534 }
aoqi@0 2535 scratch_cp = smaller_cp;
aoqi@0 2536
aoqi@0 2537 // attach new constant pool to klass
aoqi@0 2538 scratch_class->set_constants(scratch_cp());
aoqi@0 2539
aoqi@0 2540 int i; // for portability
aoqi@0 2541
aoqi@0 2542 // update each field in klass to use new constant pool indices as needed
aoqi@0 2543 for (JavaFieldStream fs(scratch_class); !fs.done(); fs.next()) {
aoqi@0 2544 jshort cur_index = fs.name_index();
aoqi@0 2545 jshort new_index = find_new_index(cur_index);
aoqi@0 2546 if (new_index != 0) {
aoqi@0 2547 RC_TRACE_WITH_THREAD(0x00080000, THREAD,
aoqi@0 2548 ("field-name_index change: %d to %d", cur_index, new_index));
aoqi@0 2549 fs.set_name_index(new_index);
aoqi@0 2550 }
aoqi@0 2551 cur_index = fs.signature_index();
aoqi@0 2552 new_index = find_new_index(cur_index);
aoqi@0 2553 if (new_index != 0) {
aoqi@0 2554 RC_TRACE_WITH_THREAD(0x00080000, THREAD,
aoqi@0 2555 ("field-signature_index change: %d to %d", cur_index, new_index));
aoqi@0 2556 fs.set_signature_index(new_index);
aoqi@0 2557 }
aoqi@0 2558 cur_index = fs.initval_index();
aoqi@0 2559 new_index = find_new_index(cur_index);
aoqi@0 2560 if (new_index != 0) {
aoqi@0 2561 RC_TRACE_WITH_THREAD(0x00080000, THREAD,
aoqi@0 2562 ("field-initval_index change: %d to %d", cur_index, new_index));
aoqi@0 2563 fs.set_initval_index(new_index);
aoqi@0 2564 }
aoqi@0 2565 cur_index = fs.generic_signature_index();
aoqi@0 2566 new_index = find_new_index(cur_index);
aoqi@0 2567 if (new_index != 0) {
aoqi@0 2568 RC_TRACE_WITH_THREAD(0x00080000, THREAD,
aoqi@0 2569 ("field-generic_signature change: %d to %d", cur_index, new_index));
aoqi@0 2570 fs.set_generic_signature_index(new_index);
aoqi@0 2571 }
aoqi@0 2572 } // end for each field
aoqi@0 2573
aoqi@0 2574 // Update constant pool indices in the inner classes info to use
aoqi@0 2575 // new constant indices as needed. The inner classes info is a
aoqi@0 2576 // quadruple:
aoqi@0 2577 // (inner_class_info, outer_class_info, inner_name, inner_access_flags)
aoqi@0 2578 InnerClassesIterator iter(scratch_class);
aoqi@0 2579 for (; !iter.done(); iter.next()) {
aoqi@0 2580 int cur_index = iter.inner_class_info_index();
aoqi@0 2581 if (cur_index == 0) {
aoqi@0 2582 continue; // JVM spec. allows null inner class refs so skip it
aoqi@0 2583 }
aoqi@0 2584 int new_index = find_new_index(cur_index);
aoqi@0 2585 if (new_index != 0) {
aoqi@0 2586 RC_TRACE_WITH_THREAD(0x00080000, THREAD,
aoqi@0 2587 ("inner_class_info change: %d to %d", cur_index, new_index));
aoqi@0 2588 iter.set_inner_class_info_index(new_index);
aoqi@0 2589 }
aoqi@0 2590 cur_index = iter.outer_class_info_index();
aoqi@0 2591 new_index = find_new_index(cur_index);
aoqi@0 2592 if (new_index != 0) {
aoqi@0 2593 RC_TRACE_WITH_THREAD(0x00080000, THREAD,
aoqi@0 2594 ("outer_class_info change: %d to %d", cur_index, new_index));
aoqi@0 2595 iter.set_outer_class_info_index(new_index);
aoqi@0 2596 }
aoqi@0 2597 cur_index = iter.inner_name_index();
aoqi@0 2598 new_index = find_new_index(cur_index);
aoqi@0 2599 if (new_index != 0) {
aoqi@0 2600 RC_TRACE_WITH_THREAD(0x00080000, THREAD,
aoqi@0 2601 ("inner_name change: %d to %d", cur_index, new_index));
aoqi@0 2602 iter.set_inner_name_index(new_index);
aoqi@0 2603 }
aoqi@0 2604 } // end for each inner class
aoqi@0 2605
aoqi@0 2606 // Attach each method in klass to the new constant pool and update
aoqi@0 2607 // to use new constant pool indices as needed:
aoqi@0 2608 Array<Method*>* methods = scratch_class->methods();
aoqi@0 2609 for (i = methods->length() - 1; i >= 0; i--) {
aoqi@0 2610 methodHandle method(THREAD, methods->at(i));
aoqi@0 2611 method->set_constants(scratch_cp());
aoqi@0 2612
aoqi@0 2613 int new_index = find_new_index(method->name_index());
aoqi@0 2614 if (new_index != 0) {
aoqi@0 2615 RC_TRACE_WITH_THREAD(0x00080000, THREAD,
aoqi@0 2616 ("method-name_index change: %d to %d", method->name_index(),
aoqi@0 2617 new_index));
aoqi@0 2618 method->set_name_index(new_index);
aoqi@0 2619 }
aoqi@0 2620 new_index = find_new_index(method->signature_index());
aoqi@0 2621 if (new_index != 0) {
aoqi@0 2622 RC_TRACE_WITH_THREAD(0x00080000, THREAD,
aoqi@0 2623 ("method-signature_index change: %d to %d",
aoqi@0 2624 method->signature_index(), new_index));
aoqi@0 2625 method->set_signature_index(new_index);
aoqi@0 2626 }
aoqi@0 2627 new_index = find_new_index(method->generic_signature_index());
aoqi@0 2628 if (new_index != 0) {
aoqi@0 2629 RC_TRACE_WITH_THREAD(0x00080000, THREAD,
aoqi@0 2630 ("method-generic_signature_index change: %d to %d",
aoqi@0 2631 method->generic_signature_index(), new_index));
aoqi@0 2632 method->set_generic_signature_index(new_index);
aoqi@0 2633 }
aoqi@0 2634
aoqi@0 2635 // Update constant pool indices in the method's checked exception
aoqi@0 2636 // table to use new constant indices as needed.
aoqi@0 2637 int cext_length = method->checked_exceptions_length();
aoqi@0 2638 if (cext_length > 0) {
aoqi@0 2639 CheckedExceptionElement * cext_table =
aoqi@0 2640 method->checked_exceptions_start();
aoqi@0 2641 for (int j = 0; j < cext_length; j++) {
aoqi@0 2642 int cur_index = cext_table[j].class_cp_index;
aoqi@0 2643 int new_index = find_new_index(cur_index);
aoqi@0 2644 if (new_index != 0) {
aoqi@0 2645 RC_TRACE_WITH_THREAD(0x00080000, THREAD,
aoqi@0 2646 ("cext-class_cp_index change: %d to %d", cur_index, new_index));
aoqi@0 2647 cext_table[j].class_cp_index = (u2)new_index;
aoqi@0 2648 }
aoqi@0 2649 } // end for each checked exception table entry
aoqi@0 2650 } // end if there are checked exception table entries
aoqi@0 2651
aoqi@0 2652 // Update each catch type index in the method's exception table
aoqi@0 2653 // to use new constant pool indices as needed. The exception table
aoqi@0 2654 // holds quadruple entries of the form:
aoqi@0 2655 // (beg_bci, end_bci, handler_bci, klass_index)
aoqi@0 2656
aoqi@0 2657 ExceptionTable ex_table(method());
aoqi@0 2658 int ext_length = ex_table.length();
aoqi@0 2659
aoqi@0 2660 for (int j = 0; j < ext_length; j ++) {
aoqi@0 2661 int cur_index = ex_table.catch_type_index(j);
aoqi@0 2662 int new_index = find_new_index(cur_index);
aoqi@0 2663 if (new_index != 0) {
aoqi@0 2664 RC_TRACE_WITH_THREAD(0x00080000, THREAD,
aoqi@0 2665 ("ext-klass_index change: %d to %d", cur_index, new_index));
aoqi@0 2666 ex_table.set_catch_type_index(j, new_index);
aoqi@0 2667 }
aoqi@0 2668 } // end for each exception table entry
aoqi@0 2669
aoqi@0 2670 // Update constant pool indices in the method's local variable
aoqi@0 2671 // table to use new constant indices as needed. The local variable
aoqi@0 2672 // table hold sextuple entries of the form:
aoqi@0 2673 // (start_pc, length, name_index, descriptor_index, signature_index, slot)
aoqi@0 2674 int lvt_length = method->localvariable_table_length();
aoqi@0 2675 if (lvt_length > 0) {
aoqi@0 2676 LocalVariableTableElement * lv_table =
aoqi@0 2677 method->localvariable_table_start();
aoqi@0 2678 for (int j = 0; j < lvt_length; j++) {
aoqi@0 2679 int cur_index = lv_table[j].name_cp_index;
aoqi@0 2680 int new_index = find_new_index(cur_index);
aoqi@0 2681 if (new_index != 0) {
aoqi@0 2682 RC_TRACE_WITH_THREAD(0x00080000, THREAD,
aoqi@0 2683 ("lvt-name_cp_index change: %d to %d", cur_index, new_index));
aoqi@0 2684 lv_table[j].name_cp_index = (u2)new_index;
aoqi@0 2685 }
aoqi@0 2686 cur_index = lv_table[j].descriptor_cp_index;
aoqi@0 2687 new_index = find_new_index(cur_index);
aoqi@0 2688 if (new_index != 0) {
aoqi@0 2689 RC_TRACE_WITH_THREAD(0x00080000, THREAD,
aoqi@0 2690 ("lvt-descriptor_cp_index change: %d to %d", cur_index,
aoqi@0 2691 new_index));
aoqi@0 2692 lv_table[j].descriptor_cp_index = (u2)new_index;
aoqi@0 2693 }
aoqi@0 2694 cur_index = lv_table[j].signature_cp_index;
aoqi@0 2695 new_index = find_new_index(cur_index);
aoqi@0 2696 if (new_index != 0) {
aoqi@0 2697 RC_TRACE_WITH_THREAD(0x00080000, THREAD,
aoqi@0 2698 ("lvt-signature_cp_index change: %d to %d", cur_index, new_index));
aoqi@0 2699 lv_table[j].signature_cp_index = (u2)new_index;
aoqi@0 2700 }
aoqi@0 2701 } // end for each local variable table entry
aoqi@0 2702 } // end if there are local variable table entries
aoqi@0 2703
aoqi@0 2704 rewrite_cp_refs_in_stack_map_table(method, THREAD);
aoqi@0 2705 } // end for each method
aoqi@0 2706 } // end set_new_constant_pool()
aoqi@0 2707
aoqi@0 2708
aoqi@0 2709 // Unevolving classes may point to methods of the_class directly
aoqi@0 2710 // from their constant pool caches, itables, and/or vtables. We
aoqi@0 2711 // use the ClassLoaderDataGraph::classes_do() facility and this helper
aoqi@0 2712 // to fix up these pointers.
aoqi@0 2713
aoqi@0 2714 // Adjust cpools and vtables closure
aoqi@0 2715 void VM_RedefineClasses::AdjustCpoolCacheAndVtable::do_klass(Klass* k) {
aoqi@0 2716
aoqi@0 2717 // This is a very busy routine. We don't want too much tracing
aoqi@0 2718 // printed out.
aoqi@0 2719 bool trace_name_printed = false;
aoqi@0 2720
aoqi@0 2721 // Very noisy: only enable this call if you are trying to determine
aoqi@0 2722 // that a specific class gets found by this routine.
aoqi@0 2723 // RC_TRACE macro has an embedded ResourceMark
aoqi@0 2724 // RC_TRACE_WITH_THREAD(0x00100000, THREAD,
aoqi@0 2725 // ("adjust check: name=%s", k->external_name()));
aoqi@0 2726 // trace_name_printed = true;
aoqi@0 2727
aoqi@0 2728 // If the class being redefined is java.lang.Object, we need to fix all
aoqi@0 2729 // array class vtables also
aoqi@0 2730 if (k->oop_is_array() && _the_class_oop == SystemDictionary::Object_klass()) {
aoqi@0 2731 k->vtable()->adjust_method_entries(_matching_old_methods,
aoqi@0 2732 _matching_new_methods,
aoqi@0 2733 _matching_methods_length,
aoqi@0 2734 &trace_name_printed);
aoqi@0 2735 } else if (k->oop_is_instance()) {
aoqi@0 2736 HandleMark hm(_thread);
aoqi@0 2737 InstanceKlass *ik = InstanceKlass::cast(k);
aoqi@0 2738
aoqi@0 2739 // HotSpot specific optimization! HotSpot does not currently
aoqi@0 2740 // support delegation from the bootstrap class loader to a
aoqi@0 2741 // user-defined class loader. This means that if the bootstrap
aoqi@0 2742 // class loader is the initiating class loader, then it will also
aoqi@0 2743 // be the defining class loader. This also means that classes
aoqi@0 2744 // loaded by the bootstrap class loader cannot refer to classes
aoqi@0 2745 // loaded by a user-defined class loader. Note: a user-defined
aoqi@0 2746 // class loader can delegate to the bootstrap class loader.
aoqi@0 2747 //
aoqi@0 2748 // If the current class being redefined has a user-defined class
aoqi@0 2749 // loader as its defining class loader, then we can skip all
aoqi@0 2750 // classes loaded by the bootstrap class loader.
aoqi@0 2751 bool is_user_defined =
aoqi@0 2752 InstanceKlass::cast(_the_class_oop)->class_loader() != NULL;
aoqi@0 2753 if (is_user_defined && ik->class_loader() == NULL) {
aoqi@0 2754 return;
aoqi@0 2755 }
aoqi@0 2756
aoqi@0 2757 // Fix the vtable embedded in the_class and subclasses of the_class,
aoqi@0 2758 // if one exists. We discard scratch_class and we don't keep an
aoqi@0 2759 // InstanceKlass around to hold obsolete methods so we don't have
aoqi@0 2760 // any other InstanceKlass embedded vtables to update. The vtable
aoqi@0 2761 // holds the Method*s for virtual (but not final) methods.
aoqi@0 2762 // Default methods, or concrete methods in interfaces are stored
aoqi@0 2763 // in the vtable, so if an interface changes we need to check
aoqi@0 2764 // adjust_method_entries() for every InstanceKlass, which will also
aoqi@0 2765 // adjust the default method vtable indices.
aoqi@0 2766 // We also need to adjust any default method entries that are
aoqi@0 2767 // not yet in the vtable, because the vtable setup is in progress.
aoqi@0 2768 // This must be done after we adjust the default_methods and
aoqi@0 2769 // default_vtable_indices for methods already in the vtable.
aoqi@0 2770 if (ik->vtable_length() > 0 && (_the_class_oop->is_interface()
aoqi@0 2771 || ik->is_subtype_of(_the_class_oop))) {
aoqi@0 2772 // ik->vtable() creates a wrapper object; rm cleans it up
aoqi@0 2773 ResourceMark rm(_thread);
aoqi@0 2774 ik->vtable()->adjust_method_entries(_matching_old_methods,
aoqi@0 2775 _matching_new_methods,
aoqi@0 2776 _matching_methods_length,
aoqi@0 2777 &trace_name_printed);
aoqi@0 2778 ik->adjust_default_methods(_matching_old_methods,
aoqi@0 2779 _matching_new_methods,
aoqi@0 2780 _matching_methods_length,
aoqi@0 2781 &trace_name_printed);
aoqi@0 2782 }
aoqi@0 2783
aoqi@0 2784 // If the current class has an itable and we are either redefining an
aoqi@0 2785 // interface or if the current class is a subclass of the_class, then
aoqi@0 2786 // we potentially have to fix the itable. If we are redefining an
aoqi@0 2787 // interface, then we have to call adjust_method_entries() for
aoqi@0 2788 // every InstanceKlass that has an itable since there isn't a
aoqi@0 2789 // subclass relationship between an interface and an InstanceKlass.
aoqi@0 2790 if (ik->itable_length() > 0 && (_the_class_oop->is_interface()
aoqi@0 2791 || ik->is_subclass_of(_the_class_oop))) {
aoqi@0 2792 // ik->itable() creates a wrapper object; rm cleans it up
aoqi@0 2793 ResourceMark rm(_thread);
aoqi@0 2794 ik->itable()->adjust_method_entries(_matching_old_methods,
aoqi@0 2795 _matching_new_methods,
aoqi@0 2796 _matching_methods_length,
aoqi@0 2797 &trace_name_printed);
aoqi@0 2798 }
aoqi@0 2799
aoqi@0 2800 // The constant pools in other classes (other_cp) can refer to
aoqi@0 2801 // methods in the_class. We have to update method information in
aoqi@0 2802 // other_cp's cache. If other_cp has a previous version, then we
aoqi@0 2803 // have to repeat the process for each previous version. The
aoqi@0 2804 // constant pool cache holds the Method*s for non-virtual
aoqi@0 2805 // methods and for virtual, final methods.
aoqi@0 2806 //
aoqi@0 2807 // Special case: if the current class is the_class, then new_cp
aoqi@0 2808 // has already been attached to the_class and old_cp has already
aoqi@0 2809 // been added as a previous version. The new_cp doesn't have any
aoqi@0 2810 // cached references to old methods so it doesn't need to be
aoqi@0 2811 // updated. We can simply start with the previous version(s) in
aoqi@0 2812 // that case.
aoqi@0 2813 constantPoolHandle other_cp;
aoqi@0 2814 ConstantPoolCache* cp_cache;
aoqi@0 2815
aoqi@0 2816 if (ik != _the_class_oop) {
aoqi@0 2817 // this klass' constant pool cache may need adjustment
aoqi@0 2818 other_cp = constantPoolHandle(ik->constants());
aoqi@0 2819 cp_cache = other_cp->cache();
aoqi@0 2820 if (cp_cache != NULL) {
aoqi@0 2821 cp_cache->adjust_method_entries(_matching_old_methods,
aoqi@0 2822 _matching_new_methods,
aoqi@0 2823 _matching_methods_length,
aoqi@0 2824 &trace_name_printed);
aoqi@0 2825 }
aoqi@0 2826 }
aoqi@0 2827
aoqi@0 2828 // the previous versions' constant pool caches may need adjustment
aoqi@0 2829 PreviousVersionWalker pvw(_thread, ik);
aoqi@0 2830 for (PreviousVersionNode * pv_node = pvw.next_previous_version();
aoqi@0 2831 pv_node != NULL; pv_node = pvw.next_previous_version()) {
aoqi@0 2832 other_cp = pv_node->prev_constant_pool();
aoqi@0 2833 cp_cache = other_cp->cache();
aoqi@0 2834 if (cp_cache != NULL) {
aoqi@0 2835 cp_cache->adjust_method_entries(_matching_old_methods,
aoqi@0 2836 _matching_new_methods,
aoqi@0 2837 _matching_methods_length,
aoqi@0 2838 &trace_name_printed);
aoqi@0 2839 }
aoqi@0 2840 }
aoqi@0 2841 }
aoqi@0 2842 }
aoqi@0 2843
aoqi@0 2844 void VM_RedefineClasses::update_jmethod_ids() {
aoqi@0 2845 for (int j = 0; j < _matching_methods_length; ++j) {
aoqi@0 2846 Method* old_method = _matching_old_methods[j];
aoqi@0 2847 jmethodID jmid = old_method->find_jmethod_id_or_null();
aoqi@0 2848 if (jmid != NULL) {
aoqi@0 2849 // There is a jmethodID, change it to point to the new method
aoqi@0 2850 methodHandle new_method_h(_matching_new_methods[j]);
aoqi@0 2851 Method::change_method_associated_with_jmethod_id(jmid, new_method_h());
aoqi@0 2852 assert(Method::resolve_jmethod_id(jmid) == _matching_new_methods[j],
aoqi@0 2853 "should be replaced");
aoqi@0 2854 }
aoqi@0 2855 }
aoqi@0 2856 }
aoqi@0 2857
aoqi@0 2858 void VM_RedefineClasses::check_methods_and_mark_as_obsolete(
aoqi@0 2859 BitMap *emcp_methods, int * emcp_method_count_p) {
aoqi@0 2860 *emcp_method_count_p = 0;
aoqi@0 2861 int obsolete_count = 0;
aoqi@0 2862 int old_index = 0;
aoqi@0 2863 for (int j = 0; j < _matching_methods_length; ++j, ++old_index) {
aoqi@0 2864 Method* old_method = _matching_old_methods[j];
aoqi@0 2865 Method* new_method = _matching_new_methods[j];
aoqi@0 2866 Method* old_array_method;
aoqi@0 2867
aoqi@0 2868 // Maintain an old_index into the _old_methods array by skipping
aoqi@0 2869 // deleted methods
aoqi@0 2870 while ((old_array_method = _old_methods->at(old_index)) != old_method) {
aoqi@0 2871 ++old_index;
aoqi@0 2872 }
aoqi@0 2873
aoqi@0 2874 if (MethodComparator::methods_EMCP(old_method, new_method)) {
aoqi@0 2875 // The EMCP definition from JSR-163 requires the bytecodes to be
aoqi@0 2876 // the same with the exception of constant pool indices which may
aoqi@0 2877 // differ. However, the constants referred to by those indices
aoqi@0 2878 // must be the same.
aoqi@0 2879 //
aoqi@0 2880 // We use methods_EMCP() for comparison since constant pool
aoqi@0 2881 // merging can remove duplicate constant pool entries that were
aoqi@0 2882 // present in the old method and removed from the rewritten new
aoqi@0 2883 // method. A faster binary comparison function would consider the
aoqi@0 2884 // old and new methods to be different when they are actually
aoqi@0 2885 // EMCP.
aoqi@0 2886 //
aoqi@0 2887 // The old and new methods are EMCP and you would think that we
aoqi@0 2888 // could get rid of one of them here and now and save some space.
aoqi@0 2889 // However, the concept of EMCP only considers the bytecodes and
aoqi@0 2890 // the constant pool entries in the comparison. Other things,
aoqi@0 2891 // e.g., the line number table (LNT) or the local variable table
aoqi@0 2892 // (LVT) don't count in the comparison. So the new (and EMCP)
aoqi@0 2893 // method can have a new LNT that we need so we can't just
aoqi@0 2894 // overwrite the new method with the old method.
aoqi@0 2895 //
aoqi@0 2896 // When this routine is called, we have already attached the new
aoqi@0 2897 // methods to the_class so the old methods are effectively
aoqi@0 2898 // overwritten. However, if an old method is still executing,
aoqi@0 2899 // then the old method cannot be collected until sometime after
aoqi@0 2900 // the old method call has returned. So the overwriting of old
aoqi@0 2901 // methods by new methods will save us space except for those
aoqi@0 2902 // (hopefully few) old methods that are still executing.
aoqi@0 2903 //
aoqi@0 2904 // A method refers to a ConstMethod* and this presents another
aoqi@0 2905 // possible avenue to space savings. The ConstMethod* in the
aoqi@0 2906 // new method contains possibly new attributes (LNT, LVT, etc).
aoqi@0 2907 // At first glance, it seems possible to save space by replacing
aoqi@0 2908 // the ConstMethod* in the old method with the ConstMethod*
aoqi@0 2909 // from the new method. The old and new methods would share the
aoqi@0 2910 // same ConstMethod* and we would save the space occupied by
aoqi@0 2911 // the old ConstMethod*. However, the ConstMethod* contains
aoqi@0 2912 // a back reference to the containing method. Sharing the
aoqi@0 2913 // ConstMethod* between two methods could lead to confusion in
aoqi@0 2914 // the code that uses the back reference. This would lead to
aoqi@0 2915 // brittle code that could be broken in non-obvious ways now or
aoqi@0 2916 // in the future.
aoqi@0 2917 //
aoqi@0 2918 // Another possibility is to copy the ConstMethod* from the new
aoqi@0 2919 // method to the old method and then overwrite the new method with
aoqi@0 2920 // the old method. Since the ConstMethod* contains the bytecodes
aoqi@0 2921 // for the method embedded in the oop, this option would change
aoqi@0 2922 // the bytecodes out from under any threads executing the old
aoqi@0 2923 // method and make the thread's bcp invalid. Since EMCP requires
aoqi@0 2924 // that the bytecodes be the same modulo constant pool indices, it
aoqi@0 2925 // is straight forward to compute the correct new bcp in the new
aoqi@0 2926 // ConstMethod* from the old bcp in the old ConstMethod*. The
aoqi@0 2927 // time consuming part would be searching all the frames in all
aoqi@0 2928 // of the threads to find all of the calls to the old method.
aoqi@0 2929 //
aoqi@0 2930 // It looks like we will have to live with the limited savings
aoqi@0 2931 // that we get from effectively overwriting the old methods
aoqi@0 2932 // when the new methods are attached to the_class.
aoqi@0 2933
aoqi@0 2934 // track which methods are EMCP for add_previous_version() call
aoqi@0 2935 emcp_methods->set_bit(old_index);
aoqi@0 2936 (*emcp_method_count_p)++;
aoqi@0 2937
aoqi@0 2938 // An EMCP method is _not_ obsolete. An obsolete method has a
aoqi@0 2939 // different jmethodID than the current method. An EMCP method
aoqi@0 2940 // has the same jmethodID as the current method. Having the
aoqi@0 2941 // same jmethodID for all EMCP versions of a method allows for
aoqi@0 2942 // a consistent view of the EMCP methods regardless of which
aoqi@0 2943 // EMCP method you happen to have in hand. For example, a
aoqi@0 2944 // breakpoint set in one EMCP method will work for all EMCP
aoqi@0 2945 // versions of the method including the current one.
aoqi@0 2946 } else {
aoqi@0 2947 // mark obsolete methods as such
aoqi@0 2948 old_method->set_is_obsolete();
aoqi@0 2949 obsolete_count++;
aoqi@0 2950
aoqi@0 2951 // obsolete methods need a unique idnum so they become new entries in
aoqi@0 2952 // the jmethodID cache in InstanceKlass
aoqi@0 2953 u2 num = InstanceKlass::cast(_the_class_oop)->next_method_idnum();
aoqi@0 2954 if (num != ConstMethod::UNSET_IDNUM) {
aoqi@0 2955 old_method->set_method_idnum(num);
aoqi@0 2956 }
aoqi@0 2957
aoqi@0 2958 // With tracing we try not to "yack" too much. The position of
aoqi@0 2959 // this trace assumes there are fewer obsolete methods than
aoqi@0 2960 // EMCP methods.
aoqi@0 2961 RC_TRACE(0x00000100, ("mark %s(%s) as obsolete",
aoqi@0 2962 old_method->name()->as_C_string(),
aoqi@0 2963 old_method->signature()->as_C_string()));
aoqi@0 2964 }
aoqi@0 2965 old_method->set_is_old();
aoqi@0 2966 }
aoqi@0 2967 for (int i = 0; i < _deleted_methods_length; ++i) {
aoqi@0 2968 Method* old_method = _deleted_methods[i];
aoqi@0 2969
aoqi@0 2970 assert(!old_method->has_vtable_index(),
aoqi@0 2971 "cannot delete methods with vtable entries");;
aoqi@0 2972
aoqi@0 2973 // Mark all deleted methods as old and obsolete
aoqi@0 2974 old_method->set_is_old();
aoqi@0 2975 old_method->set_is_obsolete();
aoqi@0 2976 ++obsolete_count;
aoqi@0 2977 // With tracing we try not to "yack" too much. The position of
aoqi@0 2978 // this trace assumes there are fewer obsolete methods than
aoqi@0 2979 // EMCP methods.
aoqi@0 2980 RC_TRACE(0x00000100, ("mark deleted %s(%s) as obsolete",
aoqi@0 2981 old_method->name()->as_C_string(),
aoqi@0 2982 old_method->signature()->as_C_string()));
aoqi@0 2983 }
aoqi@0 2984 assert((*emcp_method_count_p + obsolete_count) == _old_methods->length(),
aoqi@0 2985 "sanity check");
aoqi@0 2986 RC_TRACE(0x00000100, ("EMCP_cnt=%d, obsolete_cnt=%d", *emcp_method_count_p,
aoqi@0 2987 obsolete_count));
aoqi@0 2988 }
aoqi@0 2989
aoqi@0 2990 // This internal class transfers the native function registration from old methods
aoqi@0 2991 // to new methods. It is designed to handle both the simple case of unchanged
aoqi@0 2992 // native methods and the complex cases of native method prefixes being added and/or
aoqi@0 2993 // removed.
aoqi@0 2994 // It expects only to be used during the VM_RedefineClasses op (a safepoint).
aoqi@0 2995 //
aoqi@0 2996 // This class is used after the new methods have been installed in "the_class".
aoqi@0 2997 //
aoqi@0 2998 // So, for example, the following must be handled. Where 'm' is a method and
aoqi@0 2999 // a number followed by an underscore is a prefix.
aoqi@0 3000 //
aoqi@0 3001 // Old Name New Name
aoqi@0 3002 // Simple transfer to new method m -> m
aoqi@0 3003 // Add prefix m -> 1_m
aoqi@0 3004 // Remove prefix 1_m -> m
aoqi@0 3005 // Simultaneous add of prefixes m -> 3_2_1_m
aoqi@0 3006 // Simultaneous removal of prefixes 3_2_1_m -> m
aoqi@0 3007 // Simultaneous add and remove 1_m -> 2_m
aoqi@0 3008 // Same, caused by prefix removal only 3_2_1_m -> 3_2_m
aoqi@0 3009 //
aoqi@0 3010 class TransferNativeFunctionRegistration {
aoqi@0 3011 private:
aoqi@0 3012 instanceKlassHandle the_class;
aoqi@0 3013 int prefix_count;
aoqi@0 3014 char** prefixes;
aoqi@0 3015
aoqi@0 3016 // Recursively search the binary tree of possibly prefixed method names.
aoqi@0 3017 // Iteration could be used if all agents were well behaved. Full tree walk is
aoqi@0 3018 // more resilent to agents not cleaning up intermediate methods.
aoqi@0 3019 // Branch at each depth in the binary tree is:
aoqi@0 3020 // (1) without the prefix.
aoqi@0 3021 // (2) with the prefix.
aoqi@0 3022 // where 'prefix' is the prefix at that 'depth' (first prefix, second prefix,...)
aoqi@0 3023 Method* search_prefix_name_space(int depth, char* name_str, size_t name_len,
aoqi@0 3024 Symbol* signature) {
aoqi@0 3025 TempNewSymbol name_symbol = SymbolTable::probe(name_str, (int)name_len);
aoqi@0 3026 if (name_symbol != NULL) {
aoqi@0 3027 Method* method = the_class()->lookup_method(name_symbol, signature);
aoqi@0 3028 if (method != NULL) {
aoqi@0 3029 // Even if prefixed, intermediate methods must exist.
aoqi@0 3030 if (method->is_native()) {
aoqi@0 3031 // Wahoo, we found a (possibly prefixed) version of the method, return it.
aoqi@0 3032 return method;
aoqi@0 3033 }
aoqi@0 3034 if (depth < prefix_count) {
aoqi@0 3035 // Try applying further prefixes (other than this one).
aoqi@0 3036 method = search_prefix_name_space(depth+1, name_str, name_len, signature);
aoqi@0 3037 if (method != NULL) {
aoqi@0 3038 return method; // found
aoqi@0 3039 }
aoqi@0 3040
aoqi@0 3041 // Try adding this prefix to the method name and see if it matches
aoqi@0 3042 // another method name.
aoqi@0 3043 char* prefix = prefixes[depth];
aoqi@0 3044 size_t prefix_len = strlen(prefix);
aoqi@0 3045 size_t trial_len = name_len + prefix_len;
aoqi@0 3046 char* trial_name_str = NEW_RESOURCE_ARRAY(char, trial_len + 1);
aoqi@0 3047 strcpy(trial_name_str, prefix);
aoqi@0 3048 strcat(trial_name_str, name_str);
aoqi@0 3049 method = search_prefix_name_space(depth+1, trial_name_str, trial_len,
aoqi@0 3050 signature);
aoqi@0 3051 if (method != NULL) {
aoqi@0 3052 // If found along this branch, it was prefixed, mark as such
aoqi@0 3053 method->set_is_prefixed_native();
aoqi@0 3054 return method; // found
aoqi@0 3055 }
aoqi@0 3056 }
aoqi@0 3057 }
aoqi@0 3058 }
aoqi@0 3059 return NULL; // This whole branch bore nothing
aoqi@0 3060 }
aoqi@0 3061
aoqi@0 3062 // Return the method name with old prefixes stripped away.
aoqi@0 3063 char* method_name_without_prefixes(Method* method) {
aoqi@0 3064 Symbol* name = method->name();
aoqi@0 3065 char* name_str = name->as_utf8();
aoqi@0 3066
aoqi@0 3067 // Old prefixing may be defunct, strip prefixes, if any.
aoqi@0 3068 for (int i = prefix_count-1; i >= 0; i--) {
aoqi@0 3069 char* prefix = prefixes[i];
aoqi@0 3070 size_t prefix_len = strlen(prefix);
aoqi@0 3071 if (strncmp(prefix, name_str, prefix_len) == 0) {
aoqi@0 3072 name_str += prefix_len;
aoqi@0 3073 }
aoqi@0 3074 }
aoqi@0 3075 return name_str;
aoqi@0 3076 }
aoqi@0 3077
aoqi@0 3078 // Strip any prefixes off the old native method, then try to find a
aoqi@0 3079 // (possibly prefixed) new native that matches it.
aoqi@0 3080 Method* strip_and_search_for_new_native(Method* method) {
aoqi@0 3081 ResourceMark rm;
aoqi@0 3082 char* name_str = method_name_without_prefixes(method);
aoqi@0 3083 return search_prefix_name_space(0, name_str, strlen(name_str),
aoqi@0 3084 method->signature());
aoqi@0 3085 }
aoqi@0 3086
aoqi@0 3087 public:
aoqi@0 3088
aoqi@0 3089 // Construct a native method transfer processor for this class.
aoqi@0 3090 TransferNativeFunctionRegistration(instanceKlassHandle _the_class) {
aoqi@0 3091 assert(SafepointSynchronize::is_at_safepoint(), "sanity check");
aoqi@0 3092
aoqi@0 3093 the_class = _the_class;
aoqi@0 3094 prefixes = JvmtiExport::get_all_native_method_prefixes(&prefix_count);
aoqi@0 3095 }
aoqi@0 3096
aoqi@0 3097 // Attempt to transfer any of the old or deleted methods that are native
aoqi@0 3098 void transfer_registrations(Method** old_methods, int methods_length) {
aoqi@0 3099 for (int j = 0; j < methods_length; j++) {
aoqi@0 3100 Method* old_method = old_methods[j];
aoqi@0 3101
aoqi@0 3102 if (old_method->is_native() && old_method->has_native_function()) {
aoqi@0 3103 Method* new_method = strip_and_search_for_new_native(old_method);
aoqi@0 3104 if (new_method != NULL) {
aoqi@0 3105 // Actually set the native function in the new method.
aoqi@0 3106 // Redefine does not send events (except CFLH), certainly not this
aoqi@0 3107 // behind the scenes re-registration.
aoqi@0 3108 new_method->set_native_function(old_method->native_function(),
aoqi@0 3109 !Method::native_bind_event_is_interesting);
aoqi@0 3110 }
aoqi@0 3111 }
aoqi@0 3112 }
aoqi@0 3113 }
aoqi@0 3114 };
aoqi@0 3115
aoqi@0 3116 // Don't lose the association between a native method and its JNI function.
aoqi@0 3117 void VM_RedefineClasses::transfer_old_native_function_registrations(instanceKlassHandle the_class) {
aoqi@0 3118 TransferNativeFunctionRegistration transfer(the_class);
aoqi@0 3119 transfer.transfer_registrations(_deleted_methods, _deleted_methods_length);
aoqi@0 3120 transfer.transfer_registrations(_matching_old_methods, _matching_methods_length);
aoqi@0 3121 }
aoqi@0 3122
aoqi@0 3123 // Deoptimize all compiled code that depends on this class.
aoqi@0 3124 //
aoqi@0 3125 // If the can_redefine_classes capability is obtained in the onload
aoqi@0 3126 // phase then the compiler has recorded all dependencies from startup.
aoqi@0 3127 // In that case we need only deoptimize and throw away all compiled code
aoqi@0 3128 // that depends on the class.
aoqi@0 3129 //
aoqi@0 3130 // If can_redefine_classes is obtained sometime after the onload
aoqi@0 3131 // phase then the dependency information may be incomplete. In that case
aoqi@0 3132 // the first call to RedefineClasses causes all compiled code to be
aoqi@0 3133 // thrown away. As can_redefine_classes has been obtained then
aoqi@0 3134 // all future compilations will record dependencies so second and
aoqi@0 3135 // subsequent calls to RedefineClasses need only throw away code
aoqi@0 3136 // that depends on the class.
aoqi@0 3137 //
aoqi@0 3138 void VM_RedefineClasses::flush_dependent_code(instanceKlassHandle k_h, TRAPS) {
aoqi@0 3139 assert_locked_or_safepoint(Compile_lock);
aoqi@0 3140
aoqi@0 3141 // All dependencies have been recorded from startup or this is a second or
aoqi@0 3142 // subsequent use of RedefineClasses
aoqi@0 3143 if (JvmtiExport::all_dependencies_are_recorded()) {
aoqi@0 3144 Universe::flush_evol_dependents_on(k_h);
aoqi@0 3145 } else {
aoqi@0 3146 CodeCache::mark_all_nmethods_for_deoptimization();
aoqi@0 3147
aoqi@0 3148 ResourceMark rm(THREAD);
aoqi@0 3149 DeoptimizationMarker dm;
aoqi@0 3150
aoqi@0 3151 // Deoptimize all activations depending on marked nmethods
aoqi@0 3152 Deoptimization::deoptimize_dependents();
aoqi@0 3153
aoqi@0 3154 // Make the dependent methods not entrant (in VM_Deoptimize they are made zombies)
aoqi@0 3155 CodeCache::make_marked_nmethods_not_entrant();
aoqi@0 3156
aoqi@0 3157 // From now on we know that the dependency information is complete
aoqi@0 3158 JvmtiExport::set_all_dependencies_are_recorded(true);
aoqi@0 3159 }
aoqi@0 3160 }
aoqi@0 3161
aoqi@0 3162 void VM_RedefineClasses::compute_added_deleted_matching_methods() {
aoqi@0 3163 Method* old_method;
aoqi@0 3164 Method* new_method;
aoqi@0 3165
aoqi@0 3166 _matching_old_methods = NEW_RESOURCE_ARRAY(Method*, _old_methods->length());
aoqi@0 3167 _matching_new_methods = NEW_RESOURCE_ARRAY(Method*, _old_methods->length());
aoqi@0 3168 _added_methods = NEW_RESOURCE_ARRAY(Method*, _new_methods->length());
aoqi@0 3169 _deleted_methods = NEW_RESOURCE_ARRAY(Method*, _old_methods->length());
aoqi@0 3170
aoqi@0 3171 _matching_methods_length = 0;
aoqi@0 3172 _deleted_methods_length = 0;
aoqi@0 3173 _added_methods_length = 0;
aoqi@0 3174
aoqi@0 3175 int nj = 0;
aoqi@0 3176 int oj = 0;
aoqi@0 3177 while (true) {
aoqi@0 3178 if (oj >= _old_methods->length()) {
aoqi@0 3179 if (nj >= _new_methods->length()) {
aoqi@0 3180 break; // we've looked at everything, done
aoqi@0 3181 }
aoqi@0 3182 // New method at the end
aoqi@0 3183 new_method = _new_methods->at(nj);
aoqi@0 3184 _added_methods[_added_methods_length++] = new_method;
aoqi@0 3185 ++nj;
aoqi@0 3186 } else if (nj >= _new_methods->length()) {
aoqi@0 3187 // Old method, at the end, is deleted
aoqi@0 3188 old_method = _old_methods->at(oj);
aoqi@0 3189 _deleted_methods[_deleted_methods_length++] = old_method;
aoqi@0 3190 ++oj;
aoqi@0 3191 } else {
aoqi@0 3192 old_method = _old_methods->at(oj);
aoqi@0 3193 new_method = _new_methods->at(nj);
aoqi@0 3194 if (old_method->name() == new_method->name()) {
aoqi@0 3195 if (old_method->signature() == new_method->signature()) {
aoqi@0 3196 _matching_old_methods[_matching_methods_length ] = old_method;
aoqi@0 3197 _matching_new_methods[_matching_methods_length++] = new_method;
aoqi@0 3198 ++nj;
aoqi@0 3199 ++oj;
aoqi@0 3200 } else {
aoqi@0 3201 // added overloaded have already been moved to the end,
aoqi@0 3202 // so this is a deleted overloaded method
aoqi@0 3203 _deleted_methods[_deleted_methods_length++] = old_method;
aoqi@0 3204 ++oj;
aoqi@0 3205 }
aoqi@0 3206 } else { // names don't match
aoqi@0 3207 if (old_method->name()->fast_compare(new_method->name()) > 0) {
aoqi@0 3208 // new method
aoqi@0 3209 _added_methods[_added_methods_length++] = new_method;
aoqi@0 3210 ++nj;
aoqi@0 3211 } else {
aoqi@0 3212 // deleted method
aoqi@0 3213 _deleted_methods[_deleted_methods_length++] = old_method;
aoqi@0 3214 ++oj;
aoqi@0 3215 }
aoqi@0 3216 }
aoqi@0 3217 }
aoqi@0 3218 }
aoqi@0 3219 assert(_matching_methods_length + _deleted_methods_length == _old_methods->length(), "sanity");
aoqi@0 3220 assert(_matching_methods_length + _added_methods_length == _new_methods->length(), "sanity");
aoqi@0 3221 }
aoqi@0 3222
aoqi@0 3223
aoqi@0 3224 void VM_RedefineClasses::swap_annotations(instanceKlassHandle the_class,
aoqi@0 3225 instanceKlassHandle scratch_class) {
aoqi@0 3226 // Since there is currently no rewriting of type annotations indexes
aoqi@0 3227 // into the CP, we null out type annotations on scratch_class before
aoqi@0 3228 // we swap annotations with the_class rather than facing the
aoqi@0 3229 // possibility of shipping annotations with broken indexes to
aoqi@0 3230 // Java-land.
aoqi@0 3231 ClassLoaderData* loader_data = scratch_class->class_loader_data();
aoqi@0 3232 AnnotationArray* new_class_type_annotations = scratch_class->class_type_annotations();
aoqi@0 3233 if (new_class_type_annotations != NULL) {
aoqi@0 3234 MetadataFactory::free_array<u1>(loader_data, new_class_type_annotations);
aoqi@0 3235 scratch_class->annotations()->set_class_type_annotations(NULL);
aoqi@0 3236 }
aoqi@0 3237 Array<AnnotationArray*>* new_field_type_annotations = scratch_class->fields_type_annotations();
aoqi@0 3238 if (new_field_type_annotations != NULL) {
aoqi@0 3239 Annotations::free_contents(loader_data, new_field_type_annotations);
aoqi@0 3240 scratch_class->annotations()->set_fields_type_annotations(NULL);
aoqi@0 3241 }
aoqi@0 3242
aoqi@0 3243 // Swap annotation fields values
aoqi@0 3244 Annotations* old_annotations = the_class->annotations();
aoqi@0 3245 the_class->set_annotations(scratch_class->annotations());
aoqi@0 3246 scratch_class->set_annotations(old_annotations);
aoqi@0 3247 }
aoqi@0 3248
aoqi@0 3249
aoqi@0 3250 // Install the redefinition of a class:
aoqi@0 3251 // - house keeping (flushing breakpoints and caches, deoptimizing
aoqi@0 3252 // dependent compiled code)
aoqi@0 3253 // - replacing parts in the_class with parts from scratch_class
aoqi@0 3254 // - adding a weak reference to track the obsolete but interesting
aoqi@0 3255 // parts of the_class
aoqi@0 3256 // - adjusting constant pool caches and vtables in other classes
aoqi@0 3257 // that refer to methods in the_class. These adjustments use the
aoqi@0 3258 // ClassLoaderDataGraph::classes_do() facility which only allows
aoqi@0 3259 // a helper method to be specified. The interesting parameters
aoqi@0 3260 // that we would like to pass to the helper method are saved in
aoqi@0 3261 // static global fields in the VM operation.
aoqi@0 3262 void VM_RedefineClasses::redefine_single_class(jclass the_jclass,
aoqi@0 3263 Klass* scratch_class_oop, TRAPS) {
aoqi@0 3264
aoqi@0 3265 HandleMark hm(THREAD); // make sure handles from this call are freed
aoqi@0 3266 RC_TIMER_START(_timer_rsc_phase1);
aoqi@0 3267
aoqi@0 3268 instanceKlassHandle scratch_class(scratch_class_oop);
aoqi@0 3269
aoqi@0 3270 oop the_class_mirror = JNIHandles::resolve_non_null(the_jclass);
aoqi@0 3271 Klass* the_class_oop = java_lang_Class::as_Klass(the_class_mirror);
aoqi@0 3272 instanceKlassHandle the_class = instanceKlassHandle(THREAD, the_class_oop);
aoqi@0 3273
aoqi@0 3274 // Remove all breakpoints in methods of this class
aoqi@0 3275 JvmtiBreakpoints& jvmti_breakpoints = JvmtiCurrentBreakpoints::get_jvmti_breakpoints();
aoqi@0 3276 jvmti_breakpoints.clearall_in_class_at_safepoint(the_class_oop);
aoqi@0 3277
aoqi@0 3278 // Deoptimize all compiled code that depends on this class
aoqi@0 3279 flush_dependent_code(the_class, THREAD);
aoqi@0 3280
aoqi@0 3281 _old_methods = the_class->methods();
aoqi@0 3282 _new_methods = scratch_class->methods();
aoqi@0 3283 _the_class_oop = the_class_oop;
aoqi@0 3284 compute_added_deleted_matching_methods();
aoqi@0 3285 update_jmethod_ids();
aoqi@0 3286
aoqi@0 3287 // Attach new constant pool to the original klass. The original
aoqi@0 3288 // klass still refers to the old constant pool (for now).
aoqi@0 3289 scratch_class->constants()->set_pool_holder(the_class());
aoqi@0 3290
aoqi@0 3291 #if 0
aoqi@0 3292 // In theory, with constant pool merging in place we should be able
aoqi@0 3293 // to save space by using the new, merged constant pool in place of
aoqi@0 3294 // the old constant pool(s). By "pool(s)" I mean the constant pool in
aoqi@0 3295 // the klass version we are replacing now and any constant pool(s) in
aoqi@0 3296 // previous versions of klass. Nice theory, doesn't work in practice.
aoqi@0 3297 // When this code is enabled, even simple programs throw NullPointer
aoqi@0 3298 // exceptions. I'm guessing that this is caused by some constant pool
aoqi@0 3299 // cache difference between the new, merged constant pool and the
aoqi@0 3300 // constant pool that was just being used by the klass. I'm keeping
aoqi@0 3301 // this code around to archive the idea, but the code has to remain
aoqi@0 3302 // disabled for now.
aoqi@0 3303
aoqi@0 3304 // Attach each old method to the new constant pool. This can be
aoqi@0 3305 // done here since we are past the bytecode verification and
aoqi@0 3306 // constant pool optimization phases.
aoqi@0 3307 for (int i = _old_methods->length() - 1; i >= 0; i--) {
aoqi@0 3308 Method* method = _old_methods->at(i);
aoqi@0 3309 method->set_constants(scratch_class->constants());
aoqi@0 3310 }
aoqi@0 3311
aoqi@0 3312 {
aoqi@0 3313 // walk all previous versions of the klass
aoqi@0 3314 InstanceKlass *ik = (InstanceKlass *)the_class();
aoqi@0 3315 PreviousVersionWalker pvw(ik);
aoqi@0 3316 instanceKlassHandle ikh;
aoqi@0 3317 do {
aoqi@0 3318 ikh = pvw.next_previous_version();
aoqi@0 3319 if (!ikh.is_null()) {
aoqi@0 3320 ik = ikh();
aoqi@0 3321
aoqi@0 3322 // attach previous version of klass to the new constant pool
aoqi@0 3323 ik->set_constants(scratch_class->constants());
aoqi@0 3324
aoqi@0 3325 // Attach each method in the previous version of klass to the
aoqi@0 3326 // new constant pool
aoqi@0 3327 Array<Method*>* prev_methods = ik->methods();
aoqi@0 3328 for (int i = prev_methods->length() - 1; i >= 0; i--) {
aoqi@0 3329 Method* method = prev_methods->at(i);
aoqi@0 3330 method->set_constants(scratch_class->constants());
aoqi@0 3331 }
aoqi@0 3332 }
aoqi@0 3333 } while (!ikh.is_null());
aoqi@0 3334 }
aoqi@0 3335 #endif
aoqi@0 3336
aoqi@0 3337 // Replace methods and constantpool
aoqi@0 3338 the_class->set_methods(_new_methods);
aoqi@0 3339 scratch_class->set_methods(_old_methods); // To prevent potential GCing of the old methods,
aoqi@0 3340 // and to be able to undo operation easily.
aoqi@0 3341
aoqi@0 3342 ConstantPool* old_constants = the_class->constants();
aoqi@0 3343 the_class->set_constants(scratch_class->constants());
aoqi@0 3344 scratch_class->set_constants(old_constants); // See the previous comment.
aoqi@0 3345 #if 0
aoqi@0 3346 // We are swapping the guts of "the new class" with the guts of "the
aoqi@0 3347 // class". Since the old constant pool has just been attached to "the
aoqi@0 3348 // new class", it seems logical to set the pool holder in the old
aoqi@0 3349 // constant pool also. However, doing this will change the observable
aoqi@0 3350 // class hierarchy for any old methods that are still executing. A
aoqi@0 3351 // method can query the identity of its "holder" and this query uses
aoqi@0 3352 // the method's constant pool link to find the holder. The change in
aoqi@0 3353 // holding class from "the class" to "the new class" can confuse
aoqi@0 3354 // things.
aoqi@0 3355 //
aoqi@0 3356 // Setting the old constant pool's holder will also cause
aoqi@0 3357 // verification done during vtable initialization below to fail.
aoqi@0 3358 // During vtable initialization, the vtable's class is verified to be
aoqi@0 3359 // a subtype of the method's holder. The vtable's class is "the
aoqi@0 3360 // class" and the method's holder is gotten from the constant pool
aoqi@0 3361 // link in the method itself. For "the class"'s directly implemented
aoqi@0 3362 // methods, the method holder is "the class" itself (as gotten from
aoqi@0 3363 // the new constant pool). The check works fine in this case. The
aoqi@0 3364 // check also works fine for methods inherited from super classes.
aoqi@0 3365 //
aoqi@0 3366 // Miranda methods are a little more complicated. A miranda method is
aoqi@0 3367 // provided by an interface when the class implementing the interface
aoqi@0 3368 // does not provide its own method. These interfaces are implemented
aoqi@0 3369 // internally as an InstanceKlass. These special instanceKlasses
aoqi@0 3370 // share the constant pool of the class that "implements" the
aoqi@0 3371 // interface. By sharing the constant pool, the method holder of a
aoqi@0 3372 // miranda method is the class that "implements" the interface. In a
aoqi@0 3373 // non-redefine situation, the subtype check works fine. However, if
aoqi@0 3374 // the old constant pool's pool holder is modified, then the check
aoqi@0 3375 // fails because there is no class hierarchy relationship between the
aoqi@0 3376 // vtable's class and "the new class".
aoqi@0 3377
aoqi@0 3378 old_constants->set_pool_holder(scratch_class());
aoqi@0 3379 #endif
aoqi@0 3380
aoqi@0 3381 // track which methods are EMCP for add_previous_version() call below
aoqi@0 3382 BitMap emcp_methods(_old_methods->length());
aoqi@0 3383 int emcp_method_count = 0;
aoqi@0 3384 emcp_methods.clear(); // clears 0..(length() - 1)
aoqi@0 3385 check_methods_and_mark_as_obsolete(&emcp_methods, &emcp_method_count);
aoqi@0 3386 transfer_old_native_function_registrations(the_class);
aoqi@0 3387
aoqi@0 3388 // The class file bytes from before any retransformable agents mucked
aoqi@0 3389 // with them was cached on the scratch class, move to the_class.
aoqi@0 3390 // Note: we still want to do this if nothing needed caching since it
aoqi@0 3391 // should get cleared in the_class too.
aoqi@0 3392 if (the_class->get_cached_class_file_bytes() == 0) {
aoqi@0 3393 // the_class doesn't have a cache yet so copy it
aoqi@0 3394 the_class->set_cached_class_file(scratch_class->get_cached_class_file());
aoqi@0 3395 }
aoqi@0 3396 #ifndef PRODUCT
aoqi@0 3397 else {
aoqi@0 3398 assert(the_class->get_cached_class_file_bytes() ==
aoqi@0 3399 scratch_class->get_cached_class_file_bytes(), "cache ptrs must match");
aoqi@0 3400 assert(the_class->get_cached_class_file_len() ==
aoqi@0 3401 scratch_class->get_cached_class_file_len(), "cache lens must match");
aoqi@0 3402 }
aoqi@0 3403 #endif
aoqi@0 3404
aoqi@0 3405 // NULL out in scratch class to not delete twice. The class to be redefined
aoqi@0 3406 // always owns these bytes.
aoqi@0 3407 scratch_class->set_cached_class_file(NULL);
aoqi@0 3408
aoqi@0 3409 // Replace inner_classes
aoqi@0 3410 Array<u2>* old_inner_classes = the_class->inner_classes();
aoqi@0 3411 the_class->set_inner_classes(scratch_class->inner_classes());
aoqi@0 3412 scratch_class->set_inner_classes(old_inner_classes);
aoqi@0 3413
aoqi@0 3414 // Initialize the vtable and interface table after
aoqi@0 3415 // methods have been rewritten
aoqi@0 3416 {
aoqi@0 3417 ResourceMark rm(THREAD);
aoqi@0 3418 // no exception should happen here since we explicitly
aoqi@0 3419 // do not check loader constraints.
aoqi@0 3420 // compare_and_normalize_class_versions has already checked:
aoqi@0 3421 // - classloaders unchanged, signatures unchanged
aoqi@0 3422 // - all instanceKlasses for redefined classes reused & contents updated
aoqi@0 3423 the_class->vtable()->initialize_vtable(false, THREAD);
aoqi@0 3424 the_class->itable()->initialize_itable(false, THREAD);
aoqi@0 3425 assert(!HAS_PENDING_EXCEPTION || (THREAD->pending_exception()->is_a(SystemDictionary::ThreadDeath_klass())), "redefine exception");
aoqi@0 3426 }
aoqi@0 3427
aoqi@0 3428 // Leave arrays of jmethodIDs and itable index cache unchanged
aoqi@0 3429
aoqi@0 3430 // Copy the "source file name" attribute from new class version
aoqi@0 3431 the_class->set_source_file_name_index(
aoqi@0 3432 scratch_class->source_file_name_index());
aoqi@0 3433
aoqi@0 3434 // Copy the "source debug extension" attribute from new class version
aoqi@0 3435 the_class->set_source_debug_extension(
aoqi@0 3436 scratch_class->source_debug_extension(),
aoqi@0 3437 scratch_class->source_debug_extension() == NULL ? 0 :
aoqi@0 3438 (int)strlen(scratch_class->source_debug_extension()));
aoqi@0 3439
aoqi@0 3440 // Use of javac -g could be different in the old and the new
aoqi@0 3441 if (scratch_class->access_flags().has_localvariable_table() !=
aoqi@0 3442 the_class->access_flags().has_localvariable_table()) {
aoqi@0 3443
aoqi@0 3444 AccessFlags flags = the_class->access_flags();
aoqi@0 3445 if (scratch_class->access_flags().has_localvariable_table()) {
aoqi@0 3446 flags.set_has_localvariable_table();
aoqi@0 3447 } else {
aoqi@0 3448 flags.clear_has_localvariable_table();
aoqi@0 3449 }
aoqi@0 3450 the_class->set_access_flags(flags);
aoqi@0 3451 }
aoqi@0 3452
aoqi@0 3453 swap_annotations(the_class, scratch_class);
aoqi@0 3454
aoqi@0 3455 // Replace minor version number of class file
aoqi@0 3456 u2 old_minor_version = the_class->minor_version();
aoqi@0 3457 the_class->set_minor_version(scratch_class->minor_version());
aoqi@0 3458 scratch_class->set_minor_version(old_minor_version);
aoqi@0 3459
aoqi@0 3460 // Replace major version number of class file
aoqi@0 3461 u2 old_major_version = the_class->major_version();
aoqi@0 3462 the_class->set_major_version(scratch_class->major_version());
aoqi@0 3463 scratch_class->set_major_version(old_major_version);
aoqi@0 3464
aoqi@0 3465 // Replace CP indexes for class and name+type of enclosing method
aoqi@0 3466 u2 old_class_idx = the_class->enclosing_method_class_index();
aoqi@0 3467 u2 old_method_idx = the_class->enclosing_method_method_index();
aoqi@0 3468 the_class->set_enclosing_method_indices(
aoqi@0 3469 scratch_class->enclosing_method_class_index(),
aoqi@0 3470 scratch_class->enclosing_method_method_index());
aoqi@0 3471 scratch_class->set_enclosing_method_indices(old_class_idx, old_method_idx);
aoqi@0 3472
aoqi@0 3473 // keep track of previous versions of this class
aoqi@0 3474 the_class->add_previous_version(scratch_class, &emcp_methods,
aoqi@0 3475 emcp_method_count);
aoqi@0 3476
aoqi@0 3477 RC_TIMER_STOP(_timer_rsc_phase1);
aoqi@0 3478 RC_TIMER_START(_timer_rsc_phase2);
aoqi@0 3479
aoqi@0 3480 // Adjust constantpool caches and vtables for all classes
aoqi@0 3481 // that reference methods of the evolved class.
aoqi@0 3482 AdjustCpoolCacheAndVtable adjust_cpool_cache_and_vtable(THREAD);
aoqi@0 3483 ClassLoaderDataGraph::classes_do(&adjust_cpool_cache_and_vtable);
aoqi@0 3484
aoqi@0 3485 // JSR-292 support
aoqi@0 3486 MemberNameTable* mnt = the_class->member_names();
aoqi@0 3487 if (mnt != NULL) {
aoqi@0 3488 bool trace_name_printed = false;
aoqi@0 3489 mnt->adjust_method_entries(_matching_old_methods,
aoqi@0 3490 _matching_new_methods,
aoqi@0 3491 _matching_methods_length,
aoqi@0 3492 &trace_name_printed);
aoqi@0 3493 }
aoqi@0 3494
aoqi@0 3495 // Fix Resolution Error table also to remove old constant pools
aoqi@0 3496 SystemDictionary::delete_resolution_error(old_constants);
aoqi@0 3497
aoqi@0 3498 if (the_class->oop_map_cache() != NULL) {
aoqi@0 3499 // Flush references to any obsolete methods from the oop map cache
aoqi@0 3500 // so that obsolete methods are not pinned.
aoqi@0 3501 the_class->oop_map_cache()->flush_obsolete_entries();
aoqi@0 3502 }
aoqi@0 3503
aoqi@0 3504 // increment the classRedefinedCount field in the_class and in any
aoqi@0 3505 // direct and indirect subclasses of the_class
aoqi@0 3506 increment_class_counter((InstanceKlass *)the_class(), THREAD);
aoqi@0 3507
aoqi@0 3508 // RC_TRACE macro has an embedded ResourceMark
aoqi@0 3509 RC_TRACE_WITH_THREAD(0x00000001, THREAD,
aoqi@0 3510 ("redefined name=%s, count=%d (avail_mem=" UINT64_FORMAT "K)",
aoqi@0 3511 the_class->external_name(),
aoqi@0 3512 java_lang_Class::classRedefinedCount(the_class_mirror),
aoqi@0 3513 os::available_memory() >> 10));
aoqi@0 3514
aoqi@0 3515 RC_TIMER_STOP(_timer_rsc_phase2);
aoqi@0 3516 } // end redefine_single_class()
aoqi@0 3517
aoqi@0 3518
aoqi@0 3519 // Increment the classRedefinedCount field in the specific InstanceKlass
aoqi@0 3520 // and in all direct and indirect subclasses.
aoqi@0 3521 void VM_RedefineClasses::increment_class_counter(InstanceKlass *ik, TRAPS) {
aoqi@0 3522 oop class_mirror = ik->java_mirror();
aoqi@0 3523 Klass* class_oop = java_lang_Class::as_Klass(class_mirror);
aoqi@0 3524 int new_count = java_lang_Class::classRedefinedCount(class_mirror) + 1;
aoqi@0 3525 java_lang_Class::set_classRedefinedCount(class_mirror, new_count);
aoqi@0 3526
aoqi@0 3527 if (class_oop != _the_class_oop) {
aoqi@0 3528 // _the_class_oop count is printed at end of redefine_single_class()
aoqi@0 3529 RC_TRACE_WITH_THREAD(0x00000008, THREAD,
aoqi@0 3530 ("updated count in subclass=%s to %d", ik->external_name(), new_count));
aoqi@0 3531 }
aoqi@0 3532
aoqi@0 3533 for (Klass *subk = ik->subklass(); subk != NULL;
aoqi@0 3534 subk = subk->next_sibling()) {
aoqi@0 3535 if (subk->oop_is_instance()) {
aoqi@0 3536 // Only update instanceKlasses
aoqi@0 3537 InstanceKlass *subik = (InstanceKlass*)subk;
aoqi@0 3538 // recursively do subclasses of the current subclass
aoqi@0 3539 increment_class_counter(subik, THREAD);
aoqi@0 3540 }
aoqi@0 3541 }
aoqi@0 3542 }
aoqi@0 3543
aoqi@0 3544 void VM_RedefineClasses::CheckClass::do_klass(Klass* k) {
aoqi@0 3545 bool no_old_methods = true; // be optimistic
aoqi@0 3546
aoqi@0 3547 // Both array and instance classes have vtables.
aoqi@0 3548 // a vtable should never contain old or obsolete methods
aoqi@0 3549 ResourceMark rm(_thread);
aoqi@0 3550 if (k->vtable_length() > 0 &&
aoqi@0 3551 !k->vtable()->check_no_old_or_obsolete_entries()) {
aoqi@0 3552 if (RC_TRACE_ENABLED(0x00004000)) {
aoqi@0 3553 RC_TRACE_WITH_THREAD(0x00004000, _thread,
aoqi@0 3554 ("klassVtable::check_no_old_or_obsolete_entries failure"
aoqi@0 3555 " -- OLD or OBSOLETE method found -- class: %s",
aoqi@0 3556 k->signature_name()));
aoqi@0 3557 k->vtable()->dump_vtable();
aoqi@0 3558 }
aoqi@0 3559 no_old_methods = false;
aoqi@0 3560 }
aoqi@0 3561
aoqi@0 3562 if (k->oop_is_instance()) {
aoqi@0 3563 HandleMark hm(_thread);
aoqi@0 3564 InstanceKlass *ik = InstanceKlass::cast(k);
aoqi@0 3565
aoqi@0 3566 // an itable should never contain old or obsolete methods
aoqi@0 3567 if (ik->itable_length() > 0 &&
aoqi@0 3568 !ik->itable()->check_no_old_or_obsolete_entries()) {
aoqi@0 3569 if (RC_TRACE_ENABLED(0x00004000)) {
aoqi@0 3570 RC_TRACE_WITH_THREAD(0x00004000, _thread,
aoqi@0 3571 ("klassItable::check_no_old_or_obsolete_entries failure"
aoqi@0 3572 " -- OLD or OBSOLETE method found -- class: %s",
aoqi@0 3573 ik->signature_name()));
aoqi@0 3574 ik->itable()->dump_itable();
aoqi@0 3575 }
aoqi@0 3576 no_old_methods = false;
aoqi@0 3577 }
aoqi@0 3578
aoqi@0 3579 // the constant pool cache should never contain old or obsolete methods
aoqi@0 3580 if (ik->constants() != NULL &&
aoqi@0 3581 ik->constants()->cache() != NULL &&
aoqi@0 3582 !ik->constants()->cache()->check_no_old_or_obsolete_entries()) {
aoqi@0 3583 if (RC_TRACE_ENABLED(0x00004000)) {
aoqi@0 3584 RC_TRACE_WITH_THREAD(0x00004000, _thread,
aoqi@0 3585 ("cp-cache::check_no_old_or_obsolete_entries failure"
aoqi@0 3586 " -- OLD or OBSOLETE method found -- class: %s",
aoqi@0 3587 ik->signature_name()));
aoqi@0 3588 ik->constants()->cache()->dump_cache();
aoqi@0 3589 }
aoqi@0 3590 no_old_methods = false;
aoqi@0 3591 }
aoqi@0 3592 }
aoqi@0 3593
aoqi@0 3594 // print and fail guarantee if old methods are found.
aoqi@0 3595 if (!no_old_methods) {
aoqi@0 3596 if (RC_TRACE_ENABLED(0x00004000)) {
aoqi@0 3597 dump_methods();
aoqi@0 3598 } else {
aoqi@0 3599 tty->print_cr("INFO: use the '-XX:TraceRedefineClasses=16384' option "
aoqi@0 3600 "to see more info about the following guarantee() failure.");
aoqi@0 3601 }
aoqi@0 3602 guarantee(false, "OLD and/or OBSOLETE method(s) found");
aoqi@0 3603 }
aoqi@0 3604 }
aoqi@0 3605
aoqi@0 3606
aoqi@0 3607 void VM_RedefineClasses::dump_methods() {
aoqi@0 3608 int j;
aoqi@0 3609 RC_TRACE(0x00004000, ("_old_methods --"));
aoqi@0 3610 for (j = 0; j < _old_methods->length(); ++j) {
aoqi@0 3611 Method* m = _old_methods->at(j);
aoqi@0 3612 RC_TRACE_NO_CR(0x00004000, ("%4d (%5d) ", j, m->vtable_index()));
aoqi@0 3613 m->access_flags().print_on(tty);
aoqi@0 3614 tty->print(" -- ");
aoqi@0 3615 m->print_name(tty);
aoqi@0 3616 tty->cr();
aoqi@0 3617 }
aoqi@0 3618 RC_TRACE(0x00004000, ("_new_methods --"));
aoqi@0 3619 for (j = 0; j < _new_methods->length(); ++j) {
aoqi@0 3620 Method* m = _new_methods->at(j);
aoqi@0 3621 RC_TRACE_NO_CR(0x00004000, ("%4d (%5d) ", j, m->vtable_index()));
aoqi@0 3622 m->access_flags().print_on(tty);
aoqi@0 3623 tty->print(" -- ");
aoqi@0 3624 m->print_name(tty);
aoqi@0 3625 tty->cr();
aoqi@0 3626 }
aoqi@0 3627 RC_TRACE(0x00004000, ("_matching_(old/new)_methods --"));
aoqi@0 3628 for (j = 0; j < _matching_methods_length; ++j) {
aoqi@0 3629 Method* m = _matching_old_methods[j];
aoqi@0 3630 RC_TRACE_NO_CR(0x00004000, ("%4d (%5d) ", j, m->vtable_index()));
aoqi@0 3631 m->access_flags().print_on(tty);
aoqi@0 3632 tty->print(" -- ");
aoqi@0 3633 m->print_name(tty);
aoqi@0 3634 tty->cr();
aoqi@0 3635 m = _matching_new_methods[j];
aoqi@0 3636 RC_TRACE_NO_CR(0x00004000, (" (%5d) ", m->vtable_index()));
aoqi@0 3637 m->access_flags().print_on(tty);
aoqi@0 3638 tty->cr();
aoqi@0 3639 }
aoqi@0 3640 RC_TRACE(0x00004000, ("_deleted_methods --"));
aoqi@0 3641 for (j = 0; j < _deleted_methods_length; ++j) {
aoqi@0 3642 Method* m = _deleted_methods[j];
aoqi@0 3643 RC_TRACE_NO_CR(0x00004000, ("%4d (%5d) ", j, m->vtable_index()));
aoqi@0 3644 m->access_flags().print_on(tty);
aoqi@0 3645 tty->print(" -- ");
aoqi@0 3646 m->print_name(tty);
aoqi@0 3647 tty->cr();
aoqi@0 3648 }
aoqi@0 3649 RC_TRACE(0x00004000, ("_added_methods --"));
aoqi@0 3650 for (j = 0; j < _added_methods_length; ++j) {
aoqi@0 3651 Method* m = _added_methods[j];
aoqi@0 3652 RC_TRACE_NO_CR(0x00004000, ("%4d (%5d) ", j, m->vtable_index()));
aoqi@0 3653 m->access_flags().print_on(tty);
aoqi@0 3654 tty->print(" -- ");
aoqi@0 3655 m->print_name(tty);
aoqi@0 3656 tty->cr();
aoqi@0 3657 }
aoqi@0 3658 }

mercurial