src/share/vm/prims/jvmtiRedefineClasses.cpp

Wed, 31 Jan 2018 19:24:57 -0500

author
dbuck
date
Wed, 31 Jan 2018 19:24:57 -0500
changeset 9289
427b2fb1944f
parent 9184
fbcbfd2753b5
child 9203
53eec13fbaa5
child 9745
0e3d6188f198
permissions
-rw-r--r--

8189170: Add option to disable stack overflow checking in primordial thread for use with JNI_CreateJavaJVM
Reviewed-by: dcubed

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

mercurial