src/share/vm/oops/constantPool.cpp

Sat, 24 Oct 2020 16:43:47 +0800

author
aoqi
date
Sat, 24 Oct 2020 16:43:47 +0800
changeset 10015
eb7ce841ccec
parent 9572
624a0741915c
parent 10013
7ab1cd9c7843
permissions
-rw-r--r--

Merge

duke@435 1 /*
fmatte@9344 2 * Copyright (c) 1997, 2018, 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@4037 26 #include "classfile/classLoaderData.hpp"
stefank@2314 27 #include "classfile/javaClasses.hpp"
coleenp@4490 28 #include "classfile/metadataOnStackMark.hpp"
stefank@2314 29 #include "classfile/symbolTable.hpp"
stefank@2314 30 #include "classfile/systemDictionary.hpp"
stefank@2314 31 #include "classfile/vmSymbols.hpp"
stefank@2314 32 #include "interpreter/linkResolver.hpp"
acorn@4497 33 #include "memory/heapInspection.hpp"
coleenp@4037 34 #include "memory/metadataFactory.hpp"
stefank@2314 35 #include "memory/oopFactory.hpp"
coleenp@4037 36 #include "oops/constantPool.hpp"
stefank@2314 37 #include "oops/instanceKlass.hpp"
stefank@2314 38 #include "oops/objArrayKlass.hpp"
stefank@2314 39 #include "runtime/fieldType.hpp"
stefank@2314 40 #include "runtime/init.hpp"
coleenp@4037 41 #include "runtime/javaCalls.hpp"
stefank@2314 42 #include "runtime/signature.hpp"
stefank@2314 43 #include "runtime/vframe.hpp"
duke@435 44
drchase@6680 45 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
drchase@6680 46
coleenp@4037 47 ConstantPool* ConstantPool::allocate(ClassLoaderData* loader_data, int length, TRAPS) {
coleenp@4037 48 // Tags are RW but comment below applies to tags also.
coleenp@4037 49 Array<u1>* tags = MetadataFactory::new_writeable_array<u1>(loader_data, length, 0, CHECK_NULL);
coleenp@4037 50
coleenp@4037 51 int size = ConstantPool::size(length);
coleenp@4037 52
coleenp@4037 53 // CDS considerations:
coleenp@4037 54 // Allocate read-write but may be able to move to read-only at dumping time
coleenp@4037 55 // if all the klasses are resolved. The only other field that is writable is
coleenp@4037 56 // the resolved_references array, which is recreated at startup time.
coleenp@4037 57 // But that could be moved to InstanceKlass (although a pain to access from
coleenp@4037 58 // assembly code). Maybe it could be moved to the cpCache which is RW.
iklam@5208 59 return new (loader_data, size, false, MetaspaceObj::ConstantPoolType, THREAD) ConstantPool(tags);
coleenp@4037 60 }
coleenp@4037 61
coleenp@4037 62 ConstantPool::ConstantPool(Array<u1>* tags) {
coleenp@4037 63 set_length(tags->length());
coleenp@4037 64 set_tags(NULL);
coleenp@4037 65 set_cache(NULL);
coleenp@4037 66 set_reference_map(NULL);
coleenp@4037 67 set_resolved_references(NULL);
coleenp@4037 68 set_operands(NULL);
coleenp@4037 69 set_pool_holder(NULL);
coleenp@4037 70 set_flags(0);
coleenp@4490 71
coleenp@4037 72 // only set to non-zero if constant pool is merged by RedefineClasses
coleenp@4466 73 set_version(0);
iklam@5971 74 set_lock(new Monitor(Monitor::nonleaf + 2, "A constant pool lock"));
coleenp@4037 75
coleenp@4037 76 // initialize tag array
coleenp@4037 77 int length = tags->length();
coleenp@4037 78 for (int index = 0; index < length; index++) {
coleenp@4037 79 tags->at_put(index, JVM_CONSTANT_Invalid);
coleenp@4037 80 }
coleenp@4037 81 set_tags(tags);
coleenp@4037 82 }
coleenp@4037 83
coleenp@4037 84 void ConstantPool::deallocate_contents(ClassLoaderData* loader_data) {
coleenp@4037 85 MetadataFactory::free_metadata(loader_data, cache());
coleenp@4037 86 set_cache(NULL);
coleenp@6307 87 MetadataFactory::free_array<u2>(loader_data, reference_map());
coleenp@6307 88 set_reference_map(NULL);
coleenp@6307 89
coleenp@4037 90 MetadataFactory::free_array<jushort>(loader_data, operands());
coleenp@4037 91 set_operands(NULL);
coleenp@4037 92
coleenp@4037 93 release_C_heap_structures();
coleenp@4037 94
coleenp@4037 95 // free tag array
coleenp@4037 96 MetadataFactory::free_array<u1>(loader_data, tags());
coleenp@4037 97 set_tags(NULL);
coleenp@4037 98 }
coleenp@4037 99
coleenp@4037 100 void ConstantPool::release_C_heap_structures() {
coleenp@4037 101 // walk constant pool and decrement symbol reference counts
coleenp@4037 102 unreference_symbols();
iklam@5971 103
iklam@5971 104 delete _lock;
iklam@5971 105 set_lock(NULL);
coleenp@4037 106 }
coleenp@4037 107
coleenp@4037 108 objArrayOop ConstantPool::resolved_references() const {
coleenp@4037 109 return (objArrayOop)JNIHandles::resolve(_resolved_references);
coleenp@4037 110 }
coleenp@4037 111
fmatte@9344 112 // Called from outside constant pool resolution where a resolved_reference array
fmatte@9344 113 // may not be present.
fmatte@9344 114 objArrayOop ConstantPool::resolved_references_or_null() const {
fmatte@9344 115 if (_cache == NULL) {
fmatte@9344 116 return NULL;
fmatte@9344 117 } else {
fmatte@9344 118 return (objArrayOop)JNIHandles::resolve(_resolved_references);
fmatte@9344 119 }
fmatte@9344 120 }
fmatte@9344 121
coleenp@4037 122 // Create resolved_references array and mapping array for original cp indexes
coleenp@4037 123 // The ldc bytecode was rewritten to have the resolved reference array index so need a way
coleenp@4037 124 // to map it back for resolving and some unlikely miscellaneous uses.
coleenp@4037 125 // The objects created by invokedynamic are appended to this list.
coleenp@4037 126 void ConstantPool::initialize_resolved_references(ClassLoaderData* loader_data,
coleenp@4037 127 intStack reference_map,
coleenp@4037 128 int constant_pool_map_length,
coleenp@5753 129 TRAPS) {
coleenp@4037 130 // Initialized the resolved object cache.
coleenp@4037 131 int map_length = reference_map.length();
coleenp@4037 132 if (map_length > 0) {
coleenp@4037 133 // Only need mapping back to constant pool entries. The map isn't used for
coleenp@5753 134 // invokedynamic resolved_reference entries. For invokedynamic entries,
coleenp@5753 135 // the constant pool cache index has the mapping back to both the constant
coleenp@5753 136 // pool and to the resolved reference index.
coleenp@4037 137 if (constant_pool_map_length > 0) {
coleenp@5753 138 Array<u2>* om = MetadataFactory::new_array<u2>(loader_data, constant_pool_map_length, CHECK);
coleenp@4037 139
coleenp@4037 140 for (int i = 0; i < constant_pool_map_length; i++) {
coleenp@4037 141 int x = reference_map.at(i);
coleenp@4037 142 assert(x == (int)(jushort) x, "klass index is too big");
coleenp@4037 143 om->at_put(i, (jushort)x);
coleenp@4037 144 }
coleenp@4037 145 set_reference_map(om);
coleenp@4037 146 }
coleenp@4037 147
coleenp@4037 148 // Create Java array for holding resolved strings, methodHandles,
coleenp@4037 149 // methodTypes, invokedynamic and invokehandle appendix objects, etc.
coleenp@4037 150 objArrayOop stom = oopFactory::new_objArray(SystemDictionary::Object_klass(), map_length, CHECK);
coleenp@4037 151 Handle refs_handle (THREAD, (oop)stom); // must handleize.
coleenp@4037 152 set_resolved_references(loader_data->add_handle(refs_handle));
coleenp@4037 153 }
coleenp@4037 154 }
coleenp@4037 155
coleenp@4037 156 // CDS support. Create a new resolved_references array.
coleenp@4037 157 void ConstantPool::restore_unshareable_info(TRAPS) {
coleenp@4045 158
coleenp@6626 159 // Only create the new resolved references array and lock if it hasn't been
coleenp@6626 160 // attempted before
coleenp@6626 161 if (resolved_references() != NULL) return;
coleenp@6626 162
coleenp@4045 163 // restore the C++ vtable from the shared archive
coleenp@4045 164 restore_vtable();
coleenp@4045 165
coleenp@4037 166 if (SystemDictionary::Object_klass_loaded()) {
coleenp@4037 167 // Recreate the object array and add to ClassLoaderData.
coleenp@4037 168 int map_length = resolved_reference_length();
coleenp@4037 169 if (map_length > 0) {
coleenp@4037 170 objArrayOop stom = oopFactory::new_objArray(SystemDictionary::Object_klass(), map_length, CHECK);
coleenp@4037 171 Handle refs_handle (THREAD, (oop)stom); // must handleize.
coleenp@4037 172
coleenp@4037 173 ClassLoaderData* loader_data = pool_holder()->class_loader_data();
coleenp@4037 174 set_resolved_references(loader_data->add_handle(refs_handle));
coleenp@4037 175 }
iklam@5971 176
iklam@5971 177 // Also need to recreate the mutex. Make sure this matches the constructor
iklam@5971 178 set_lock(new Monitor(Monitor::nonleaf + 2, "A constant pool lock"));
coleenp@4037 179 }
coleenp@4037 180 }
coleenp@4037 181
coleenp@4037 182 void ConstantPool::remove_unshareable_info() {
coleenp@4037 183 // Resolved references are not in the shared archive.
coleenp@4037 184 // Save the length for restoration. It is not necessarily the same length
coleenp@4037 185 // as reference_map.length() if invokedynamic is saved.
coleenp@4037 186 set_resolved_reference_length(
coleenp@4037 187 resolved_references() != NULL ? resolved_references()->length() : 0);
coleenp@4037 188 set_resolved_references(NULL);
iklam@5971 189 set_lock(NULL);
coleenp@4037 190 }
coleenp@4037 191
coleenp@4037 192 int ConstantPool::cp_to_object_index(int cp_index) {
coleenp@4037 193 // this is harder don't do this so much.
coleenp@5753 194 int i = reference_map()->find(cp_index);
coleenp@5753 195 // We might not find the index for jsr292 call.
coleenp@5753 196 return (i < 0) ? _no_index_sentinel : i;
coleenp@4037 197 }
coleenp@4037 198
coleenp@4037 199 Klass* ConstantPool::klass_at_impl(constantPoolHandle this_oop, int which, TRAPS) {
coleenp@4037 200 // A resolved constantPool entry will contain a Klass*, otherwise a Symbol*.
duke@435 201 // It is not safe to rely on the tag bit's here, since we don't have a lock, and the entry and
duke@435 202 // tag is not updated atomicly.
coleenp@4037 203
coleenp@2497 204 CPSlot entry = this_oop->slot_at(which);
coleenp@4037 205 if (entry.is_resolved()) {
coleenp@4037 206 assert(entry.get_klass()->is_klass(), "must be");
duke@435 207 // Already resolved - return entry.
coleenp@4037 208 return entry.get_klass();
duke@435 209 }
duke@435 210
duke@435 211 // Acquire lock on constant oop while doing update. After we get the lock, we check if another object
duke@435 212 // already has updated the object
duke@435 213 assert(THREAD->is_Java_thread(), "must be a Java thread");
duke@435 214 bool do_resolve = false;
duke@435 215 bool in_error = false;
duke@435 216
coleenp@4037 217 // Create a handle for the mirror. This will preserve the resolved class
coleenp@4037 218 // until the loader_data is registered.
coleenp@4037 219 Handle mirror_handle;
coleenp@4037 220
coleenp@2497 221 Symbol* name = NULL;
duke@435 222 Handle loader;
iklam@5971 223 { MonitorLockerEx ml(this_oop->lock());
duke@435 224
duke@435 225 if (this_oop->tag_at(which).is_unresolved_klass()) {
duke@435 226 if (this_oop->tag_at(which).is_unresolved_klass_in_error()) {
duke@435 227 in_error = true;
duke@435 228 } else {
duke@435 229 do_resolve = true;
coleenp@2497 230 name = this_oop->unresolved_klass_at(which);
coleenp@4251 231 loader = Handle(THREAD, this_oop->pool_holder()->class_loader());
duke@435 232 }
duke@435 233 }
duke@435 234 } // unlocking constantPool
duke@435 235
duke@435 236
duke@435 237 // The original attempt to resolve this constant pool entry failed so find the
coleenp@9966 238 // class of the original error and throw another error of the same class (JVMS 5.4.3).
coleenp@9966 239 // If there is a detail message, pass that detail message to the error constructor.
coleenp@9966 240 // The JVMS does not strictly require us to duplicate the same detail message,
coleenp@9966 241 // or any internal exception fields such as cause or stacktrace. But since the
coleenp@9966 242 // detail message is often a class name or other literal string, we will repeat it if
coleenp@9966 243 // we can find it in the symbol table.
duke@435 244 if (in_error) {
coleenp@9966 245 throw_resolution_error(this_oop, which, CHECK_0);
duke@435 246 }
duke@435 247
duke@435 248 if (do_resolve) {
duke@435 249 // this_oop must be unlocked during resolve_or_fail
coleenp@4251 250 oop protection_domain = this_oop->pool_holder()->protection_domain();
duke@435 251 Handle h_prot (THREAD, protection_domain);
coleenp@4037 252 Klass* k_oop = SystemDictionary::resolve_or_fail(name, loader, h_prot, true, THREAD);
duke@435 253 KlassHandle k;
duke@435 254 if (!HAS_PENDING_EXCEPTION) {
duke@435 255 k = KlassHandle(THREAD, k_oop);
coleenp@4037 256 // preserve the resolved klass.
coleenp@4037 257 mirror_handle = Handle(THREAD, k_oop->java_mirror());
duke@435 258 // Do access check for klasses
duke@435 259 verify_constant_pool_resolve(this_oop, k, THREAD);
duke@435 260 }
duke@435 261
duke@435 262 // Failed to resolve class. We must record the errors so that subsequent attempts
duke@435 263 // to resolve this constant pool entry fail with the same error (JVMS 5.4.3).
duke@435 264 if (HAS_PENDING_EXCEPTION) {
iklam@5971 265 MonitorLockerEx ml(this_oop->lock());
duke@435 266
duke@435 267 // some other thread has beaten us and has resolved the class.
duke@435 268 if (this_oop->tag_at(which).is_klass()) {
duke@435 269 CLEAR_PENDING_EXCEPTION;
duke@435 270 entry = this_oop->resolved_klass_at(which);
coleenp@4037 271 return entry.get_klass();
duke@435 272 }
duke@435 273
coleenp@9966 274 // The tag could have changed to in-error before the lock but we have to
coleenp@9966 275 // handle that here for the class case.
coleenp@9966 276 save_and_throw_exception(this_oop, which, constantTag(JVM_CONSTANT_UnresolvedClass), CHECK_0);
duke@435 277 }
duke@435 278
coleenp@4037 279 if (TraceClassResolution && !k()->oop_is_array()) {
duke@435 280 // skip resolving the constant pool so that this code get's
duke@435 281 // called the next time some bytecodes refer to this class.
duke@435 282 ResourceMark rm;
duke@435 283 int line_number = -1;
duke@435 284 const char * source_file = NULL;
duke@435 285 if (JavaThread::current()->has_last_Java_frame()) {
duke@435 286 // try to identify the method which called this function.
duke@435 287 vframeStream vfst(JavaThread::current());
duke@435 288 if (!vfst.at_end()) {
duke@435 289 line_number = vfst.method()->line_number_from_bci(vfst.bci());
coleenp@4251 290 Symbol* s = vfst.method()->method_holder()->source_file_name();
duke@435 291 if (s != NULL) {
duke@435 292 source_file = s->as_C_string();
duke@435 293 }
duke@435 294 }
duke@435 295 }
duke@435 296 if (k() != this_oop->pool_holder()) {
duke@435 297 // only print something if the classes are different
duke@435 298 if (source_file != NULL) {
duke@435 299 tty->print("RESOLVE %s %s %s:%d\n",
coleenp@4251 300 this_oop->pool_holder()->external_name(),
coleenp@4037 301 InstanceKlass::cast(k())->external_name(), source_file, line_number);
duke@435 302 } else {
duke@435 303 tty->print("RESOLVE %s %s\n",
coleenp@4251 304 this_oop->pool_holder()->external_name(),
coleenp@4037 305 InstanceKlass::cast(k())->external_name());
duke@435 306 }
duke@435 307 }
duke@435 308 return k();
duke@435 309 } else {
iklam@5971 310 MonitorLockerEx ml(this_oop->lock());
duke@435 311 // Only updated constant pool - if it is resolved.
duke@435 312 do_resolve = this_oop->tag_at(which).is_unresolved_klass();
duke@435 313 if (do_resolve) {
duke@435 314 this_oop->klass_at_put(which, k());
duke@435 315 }
duke@435 316 }
duke@435 317 }
duke@435 318
duke@435 319 entry = this_oop->resolved_klass_at(which);
coleenp@4037 320 assert(entry.is_resolved() && entry.get_klass()->is_klass(), "must be resolved at this point");
coleenp@4037 321 return entry.get_klass();
duke@435 322 }
duke@435 323
duke@435 324
coleenp@4037 325 // Does not update ConstantPool* - to avoid any exception throwing. Used
duke@435 326 // by compiler and exception handling. Also used to avoid classloads for
duke@435 327 // instanceof operations. Returns NULL if the class has not been loaded or
duke@435 328 // if the verification of constant pool failed
coleenp@4037 329 Klass* ConstantPool::klass_at_if_loaded(constantPoolHandle this_oop, int which) {
coleenp@2497 330 CPSlot entry = this_oop->slot_at(which);
coleenp@4037 331 if (entry.is_resolved()) {
coleenp@4037 332 assert(entry.get_klass()->is_klass(), "must be");
coleenp@4037 333 return entry.get_klass();
duke@435 334 } else {
coleenp@4037 335 assert(entry.is_unresolved(), "must be either symbol or klass");
duke@435 336 Thread *thread = Thread::current();
coleenp@2497 337 Symbol* name = entry.get_symbol();
coleenp@4251 338 oop loader = this_oop->pool_holder()->class_loader();
coleenp@4251 339 oop protection_domain = this_oop->pool_holder()->protection_domain();
duke@435 340 Handle h_prot (thread, protection_domain);
duke@435 341 Handle h_loader (thread, loader);
coleenp@4037 342 Klass* k = SystemDictionary::find(name, h_loader, h_prot, thread);
duke@435 343
duke@435 344 if (k != NULL) {
duke@435 345 // Make sure that resolving is legal
duke@435 346 EXCEPTION_MARK;
duke@435 347 KlassHandle klass(THREAD, k);
duke@435 348 // return NULL if verification fails
duke@435 349 verify_constant_pool_resolve(this_oop, klass, THREAD);
duke@435 350 if (HAS_PENDING_EXCEPTION) {
duke@435 351 CLEAR_PENDING_EXCEPTION;
duke@435 352 return NULL;
duke@435 353 }
duke@435 354 return klass();
duke@435 355 } else {
duke@435 356 return k;
duke@435 357 }
duke@435 358 }
duke@435 359 }
duke@435 360
duke@435 361
coleenp@4037 362 Klass* ConstantPool::klass_ref_at_if_loaded(constantPoolHandle this_oop, int which) {
duke@435 363 return klass_at_if_loaded(this_oop, this_oop->klass_ref_index_at(which));
duke@435 364 }
duke@435 365
duke@435 366
coleenp@4037 367 Method* ConstantPool::method_at_if_loaded(constantPoolHandle cpool,
twisti@3969 368 int which) {
brutisso@3489 369 if (cpool->cache() == NULL) return NULL; // nothing to load yet
coleenp@4037 370 int cache_index = decode_cpcache_index(which, true);
jrose@2982 371 if (!(cache_index >= 0 && cache_index < cpool->cache()->length())) {
coleenp@4037 372 // FIXME: should be an assert
jrose@2982 373 if (PrintMiscellaneous && (Verbose||WizardMode)) {
twisti@3969 374 tty->print_cr("bad operand %d in:", which); cpool->print();
jrose@2982 375 }
jrose@2982 376 return NULL;
jrose@2982 377 }
jrose@2982 378 ConstantPoolCacheEntry* e = cpool->cache()->entry_at(cache_index);
twisti@3969 379 return e->method_if_resolved(cpool);
twisti@3969 380 }
twisti@3969 381
twisti@3969 382
coleenp@4037 383 bool ConstantPool::has_appendix_at_if_loaded(constantPoolHandle cpool, int which) {
twisti@3969 384 if (cpool->cache() == NULL) return false; // nothing to load yet
coleenp@4037 385 int cache_index = decode_cpcache_index(which, true);
coleenp@4037 386 ConstantPoolCacheEntry* e = cpool->cache()->entry_at(cache_index);
twisti@3969 387 return e->has_appendix();
twisti@3969 388 }
twisti@3969 389
coleenp@4037 390 oop ConstantPool::appendix_at_if_loaded(constantPoolHandle cpool, int which) {
twisti@3969 391 if (cpool->cache() == NULL) return NULL; // nothing to load yet
coleenp@4037 392 int cache_index = decode_cpcache_index(which, true);
coleenp@4037 393 ConstantPoolCacheEntry* e = cpool->cache()->entry_at(cache_index);
coleenp@4037 394 return e->appendix_if_resolved(cpool);
jrose@2982 395 }
jrose@2982 396
jrose@2982 397
twisti@4133 398 bool ConstantPool::has_method_type_at_if_loaded(constantPoolHandle cpool, int which) {
twisti@4133 399 if (cpool->cache() == NULL) return false; // nothing to load yet
twisti@4133 400 int cache_index = decode_cpcache_index(which, true);
twisti@4133 401 ConstantPoolCacheEntry* e = cpool->cache()->entry_at(cache_index);
twisti@4133 402 return e->has_method_type();
twisti@4133 403 }
twisti@4133 404
twisti@4133 405 oop ConstantPool::method_type_at_if_loaded(constantPoolHandle cpool, int which) {
twisti@4133 406 if (cpool->cache() == NULL) return NULL; // nothing to load yet
twisti@4133 407 int cache_index = decode_cpcache_index(which, true);
twisti@4133 408 ConstantPoolCacheEntry* e = cpool->cache()->entry_at(cache_index);
twisti@4133 409 return e->method_type_if_resolved(cpool);
twisti@4133 410 }
twisti@4133 411
twisti@4133 412
coleenp@4037 413 Symbol* ConstantPool::impl_name_ref_at(int which, bool uncached) {
jrose@1161 414 int name_index = name_ref_index_at(impl_name_and_type_ref_index_at(which, uncached));
duke@435 415 return symbol_at(name_index);
duke@435 416 }
duke@435 417
duke@435 418
coleenp@4037 419 Symbol* ConstantPool::impl_signature_ref_at(int which, bool uncached) {
jrose@1161 420 int signature_index = signature_ref_index_at(impl_name_and_type_ref_index_at(which, uncached));
duke@435 421 return symbol_at(signature_index);
duke@435 422 }
duke@435 423
duke@435 424
coleenp@4037 425 int ConstantPool::impl_name_and_type_ref_index_at(int which, bool uncached) {
jrose@1494 426 int i = which;
jrose@1494 427 if (!uncached && cache() != NULL) {
coleenp@4037 428 if (ConstantPool::is_invokedynamic_index(which)) {
coleenp@4037 429 // Invokedynamic index is index into resolved_references
coleenp@4037 430 int pool_index = invokedynamic_cp_cache_entry_at(which)->constant_pool_index();
jrose@2742 431 pool_index = invoke_dynamic_name_and_type_ref_index_at(pool_index);
jrose@2015 432 assert(tag_at(pool_index).is_name_and_type(), "");
jrose@2015 433 return pool_index;
jrose@2015 434 }
jrose@1494 435 // change byte-ordering and go via cache
jrose@1494 436 i = remap_instruction_operand_from_cache(which);
jrose@1494 437 } else {
jrose@2268 438 if (tag_at(which).is_invoke_dynamic()) {
jrose@2268 439 int pool_index = invoke_dynamic_name_and_type_ref_index_at(which);
jrose@2268 440 assert(tag_at(pool_index).is_name_and_type(), "");
jrose@2268 441 return pool_index;
jrose@2268 442 }
jrose@1494 443 }
jrose@1494 444 assert(tag_at(i).is_field_or_method(), "Corrupted constant pool");
jrose@2268 445 assert(!tag_at(i).is_invoke_dynamic(), "Must be handled above");
jrose@1494 446 jint ref_index = *int_at_addr(i);
duke@435 447 return extract_high_short_from_int(ref_index);
duke@435 448 }
duke@435 449
duke@435 450
coleenp@4037 451 int ConstantPool::impl_klass_ref_index_at(int which, bool uncached) {
coleenp@4037 452 guarantee(!ConstantPool::is_invokedynamic_index(which),
jrose@1494 453 "an invokedynamic instruction does not have a klass");
jrose@1494 454 int i = which;
jrose@1494 455 if (!uncached && cache() != NULL) {
jrose@1494 456 // change byte-ordering and go via cache
jrose@1494 457 i = remap_instruction_operand_from_cache(which);
jrose@1494 458 }
jrose@1494 459 assert(tag_at(i).is_field_or_method(), "Corrupted constant pool");
jrose@1494 460 jint ref_index = *int_at_addr(i);
duke@435 461 return extract_low_short_from_int(ref_index);
duke@435 462 }
duke@435 463
duke@435 464
jrose@1161 465
coleenp@4037 466 int ConstantPool::remap_instruction_operand_from_cache(int operand) {
jrose@1920 467 int cpc_index = operand;
jrose@1920 468 DEBUG_ONLY(cpc_index -= CPCACHE_INDEX_TAG);
jrose@1920 469 assert((int)(u2)cpc_index == cpc_index, "clean u2");
jrose@1494 470 int member_index = cache()->entry_at(cpc_index)->constant_pool_index();
jrose@1494 471 return member_index;
jrose@1161 472 }
jrose@1161 473
jrose@1161 474
coleenp@4037 475 void ConstantPool::verify_constant_pool_resolve(constantPoolHandle this_oop, KlassHandle k, TRAPS) {
duke@435 476 if (k->oop_is_instance() || k->oop_is_objArray()) {
duke@435 477 instanceKlassHandle holder (THREAD, this_oop->pool_holder());
coleenp@4142 478 Klass* elem_oop = k->oop_is_instance() ? k() : ObjArrayKlass::cast(k())->bottom_klass();
duke@435 479 KlassHandle element (THREAD, elem_oop);
duke@435 480
duke@435 481 // The element type could be a typeArray - we only need the access check if it is
duke@435 482 // an reference to another class
duke@435 483 if (element->oop_is_instance()) {
duke@435 484 LinkResolver::check_klass_accessability(holder, element, CHECK);
duke@435 485 }
duke@435 486 }
duke@435 487 }
duke@435 488
duke@435 489
coleenp@4037 490 int ConstantPool::name_ref_index_at(int which_nt) {
jrose@1161 491 jint ref_index = name_and_type_at(which_nt);
duke@435 492 return extract_low_short_from_int(ref_index);
duke@435 493 }
duke@435 494
duke@435 495
coleenp@4037 496 int ConstantPool::signature_ref_index_at(int which_nt) {
jrose@1161 497 jint ref_index = name_and_type_at(which_nt);
duke@435 498 return extract_high_short_from_int(ref_index);
duke@435 499 }
duke@435 500
duke@435 501
coleenp@4037 502 Klass* ConstantPool::klass_ref_at(int which, TRAPS) {
phh@9507 503 return klass_at(klass_ref_index_at(which), THREAD);
duke@435 504 }
duke@435 505
duke@435 506
dcherepanov@10013 507 Symbol* ConstantPool::klass_name_at(int which) const {
duke@435 508 assert(tag_at(which).is_unresolved_klass() || tag_at(which).is_klass(),
duke@435 509 "Corrupted constant pool");
coleenp@4037 510 // A resolved constantPool entry will contain a Klass*, otherwise a Symbol*.
duke@435 511 // It is not safe to rely on the tag bit's here, since we don't have a lock, and the entry and
duke@435 512 // tag is not updated atomicly.
coleenp@2497 513 CPSlot entry = slot_at(which);
coleenp@4037 514 if (entry.is_resolved()) {
duke@435 515 // Already resolved - return entry's name.
coleenp@4037 516 assert(entry.get_klass()->is_klass(), "must be");
coleenp@4037 517 return entry.get_klass()->name();
duke@435 518 } else {
coleenp@4037 519 assert(entry.is_unresolved(), "must be either symbol or klass");
coleenp@2497 520 return entry.get_symbol();
duke@435 521 }
duke@435 522 }
duke@435 523
coleenp@4037 524 Symbol* ConstantPool::klass_ref_at_noresolve(int which) {
duke@435 525 jint ref_index = klass_ref_index_at(which);
duke@435 526 return klass_at_noresolve(ref_index);
duke@435 527 }
duke@435 528
coleenp@4037 529 Symbol* ConstantPool::uncached_klass_ref_at_noresolve(int which) {
jrose@1957 530 jint ref_index = uncached_klass_ref_index_at(which);
jrose@1957 531 return klass_at_noresolve(ref_index);
jrose@1957 532 }
jrose@1957 533
coleenp@4037 534 char* ConstantPool::string_at_noresolve(int which) {
coleenp@4037 535 Symbol* s = unresolved_string_at(which);
coleenp@4037 536 if (s == NULL) {
coleenp@4037 537 return (char*)"<pseudo-string>";
duke@435 538 } else {
coleenp@4037 539 return unresolved_string_at(which)->as_C_string();
duke@435 540 }
duke@435 541 }
duke@435 542
coleenp@4037 543 BasicType ConstantPool::basic_type_for_signature_at(int which) {
duke@435 544 return FieldType::basic_type(symbol_at(which));
duke@435 545 }
duke@435 546
duke@435 547
coleenp@4037 548 void ConstantPool::resolve_string_constants_impl(constantPoolHandle this_oop, TRAPS) {
duke@435 549 for (int index = 1; index < this_oop->length(); index++) { // Index 0 is unused
coleenp@4037 550 if (this_oop->tag_at(index).is_string()) {
duke@435 551 this_oop->string_at(index, CHECK);
duke@435 552 }
duke@435 553 }
duke@435 554 }
duke@435 555
coleenp@4037 556 // Resolve all the classes in the constant pool. If they are all resolved,
coleenp@4037 557 // the constant pool is read-only. Enhancement: allocate cp entries to
coleenp@4037 558 // another metaspace, and copy to read-only or read-write space if this
coleenp@4037 559 // bit is set.
coleenp@4037 560 bool ConstantPool::resolve_class_constants(TRAPS) {
coleenp@4037 561 constantPoolHandle cp(THREAD, this);
coleenp@4037 562 for (int index = 1; index < length(); index++) { // Index 0 is unused
coleenp@4037 563 if (tag_at(index).is_unresolved_klass() &&
coleenp@4037 564 klass_at_if_loaded(cp, index) == NULL) {
coleenp@4037 565 return false;
jrose@2268 566 }
coleenp@4037 567 }
coleenp@4037 568 // set_preresolution(); or some bit for future use
coleenp@4037 569 return true;
jrose@2268 570 }
jrose@2268 571
coleenp@9966 572 Symbol* ConstantPool::exception_message(constantPoolHandle this_oop, int which, constantTag tag, oop pending_exception) {
coleenp@9966 573 // Dig out the detailed message to reuse if possible
coleenp@9970 574 Symbol* message = java_lang_Throwable::detail_message(pending_exception);
coleenp@9970 575 if (message != NULL) {
coleenp@9970 576 return message;
coleenp@9966 577 }
coleenp@9966 578
coleenp@9966 579 // Return specific message for the tag
coleenp@9966 580 switch (tag.value()) {
coleenp@9966 581 case JVM_CONSTANT_UnresolvedClass:
coleenp@9966 582 // return the class name in the error message
coleenp@9966 583 message = this_oop->unresolved_klass_at(which);
coleenp@9966 584 break;
coleenp@9966 585 case JVM_CONSTANT_MethodHandle:
coleenp@9966 586 // return the method handle name in the error message
coleenp@9966 587 message = this_oop->method_handle_name_ref_at(which);
coleenp@9966 588 break;
coleenp@9966 589 case JVM_CONSTANT_MethodType:
coleenp@9966 590 // return the method type signature in the error message
coleenp@9966 591 message = this_oop->method_type_signature_at(which);
coleenp@9966 592 break;
coleenp@9966 593 default:
coleenp@9966 594 ShouldNotReachHere();
coleenp@9966 595 }
coleenp@9966 596
coleenp@9966 597 return message;
coleenp@9966 598 }
coleenp@9966 599
coleenp@9966 600 void ConstantPool::throw_resolution_error(constantPoolHandle this_oop, int which, TRAPS) {
coleenp@9966 601 Symbol* message = NULL;
coleenp@9966 602 Symbol* error = SystemDictionary::find_resolution_error(this_oop, which, &message);
coleenp@9966 603 assert(error != NULL && message != NULL, "checking");
coleenp@9966 604 CLEAR_PENDING_EXCEPTION;
coleenp@9966 605 ResourceMark rm;
coleenp@9966 606 THROW_MSG(error, message->as_C_string());
coleenp@9966 607 }
coleenp@9966 608
coleenp@9966 609 // If resolution for Class, MethodHandle or MethodType fails, save the exception
coleenp@4037 610 // in the resolution error table, so that the same exception is thrown again.
coleenp@4037 611 void ConstantPool::save_and_throw_exception(constantPoolHandle this_oop, int which,
coleenp@9966 612 constantTag tag, TRAPS) {
coleenp@9966 613 assert(this_oop->lock()->is_locked(), "constant pool lock should be held");
coleenp@4037 614 Symbol* error = PENDING_EXCEPTION->klass()->name();
coleenp@4037 615
coleenp@9966 616 int error_tag = tag.error_value();
coleenp@4037 617
coleenp@4037 618 if (!PENDING_EXCEPTION->
coleenp@4037 619 is_a(SystemDictionary::LinkageError_klass())) {
coleenp@4037 620 // Just throw the exception and don't prevent these classes from
coleenp@4037 621 // being loaded due to virtual machine errors like StackOverflow
coleenp@4037 622 // and OutOfMemoryError, etc, or if the thread was hit by stop()
coleenp@4037 623 // Needs clarification to section 5.4.3 of the VM spec (see 6308271)
coleenp@4037 624 } else if (this_oop->tag_at(which).value() != error_tag) {
coleenp@9966 625 Symbol* message = exception_message(this_oop, which, tag, PENDING_EXCEPTION);
coleenp@9966 626 SystemDictionary::add_resolution_error(this_oop, which, error, message);
coleenp@4037 627 this_oop->tag_at_put(which, error_tag);
coleenp@4037 628 } else {
coleenp@9966 629 // some other thread put this in error state
coleenp@9966 630 throw_resolution_error(this_oop, which, CHECK);
coleenp@4037 631 }
coleenp@9966 632
coleenp@9966 633 // This exits with some pending exception
coleenp@9966 634 assert(HAS_PENDING_EXCEPTION, "should not be cleared");
coleenp@4037 635 }
coleenp@4037 636
coleenp@4037 637
coleenp@9966 638
coleenp@4037 639 // Called to resolve constants in the constant pool and return an oop.
coleenp@4037 640 // Some constant pool entries cache their resolved oop. This is also
coleenp@4037 641 // called to create oops from constants to use in arguments for invokedynamic
coleenp@4037 642 oop ConstantPool::resolve_constant_at_impl(constantPoolHandle this_oop, int index, int cache_index, TRAPS) {
jrose@1957 643 oop result_oop = NULL;
jrose@2268 644 Handle throw_exception;
jrose@2268 645
jrose@2268 646 if (cache_index == _possible_index_sentinel) {
coleenp@4037 647 // It is possible that this constant is one which is cached in the objects.
jrose@2268 648 // We'll do a linear search. This should be OK because this usage is rare.
jrose@2268 649 assert(index > 0, "valid index");
coleenp@4037 650 cache_index = this_oop->cp_to_object_index(index);
jrose@2268 651 }
jrose@2268 652 assert(cache_index == _no_index_sentinel || cache_index >= 0, "");
jrose@2268 653 assert(index == _no_index_sentinel || index >= 0, "");
jrose@2268 654
jrose@1957 655 if (cache_index >= 0) {
coleenp@4037 656 result_oop = this_oop->resolved_references()->obj_at(cache_index);
jrose@1957 657 if (result_oop != NULL) {
coleenp@4037 658 return result_oop;
jrose@2268 659 // That was easy...
jrose@1957 660 }
coleenp@4037 661 index = this_oop->object_to_cp_index(cache_index);
jrose@1957 662 }
jrose@1957 663
jrose@2268 664 jvalue prim_value; // temp used only in a few cases below
jrose@2268 665
coleenp@9966 666 constantTag tag = this_oop->tag_at(index);
coleenp@4037 667
coleenp@9966 668 switch (tag.value()) {
jrose@1957 669
jrose@1957 670 case JVM_CONSTANT_UnresolvedClass:
jrose@1957 671 case JVM_CONSTANT_UnresolvedClassInError:
jrose@1957 672 case JVM_CONSTANT_Class:
jrose@1957 673 {
coleenp@4037 674 assert(cache_index == _no_index_sentinel, "should not have been set");
coleenp@4037 675 Klass* resolved = klass_at_impl(this_oop, index, CHECK_NULL);
jrose@1957 676 // ldc wants the java mirror.
never@2658 677 result_oop = resolved->java_mirror();
jrose@1957 678 break;
jrose@1957 679 }
jrose@1957 680
jrose@1957 681 case JVM_CONSTANT_String:
coleenp@4037 682 assert(cache_index != _no_index_sentinel, "should have been set");
jrose@1957 683 if (this_oop->is_pseudo_string_at(index)) {
coleenp@4037 684 result_oop = this_oop->pseudo_string_at(index, cache_index);
jrose@1957 685 break;
jrose@1957 686 }
coleenp@4037 687 result_oop = string_at_impl(this_oop, index, cache_index, CHECK_NULL);
jrose@1957 688 break;
jrose@1957 689
coleenp@4037 690 case JVM_CONSTANT_MethodHandleInError:
coleenp@4037 691 case JVM_CONSTANT_MethodTypeInError:
coleenp@4037 692 {
coleenp@9966 693 throw_resolution_error(this_oop, index, CHECK_NULL);
coleenp@4037 694 break;
coleenp@4037 695 }
coleenp@4037 696
jrose@1957 697 case JVM_CONSTANT_MethodHandle:
jrose@1957 698 {
jrose@1957 699 int ref_kind = this_oop->method_handle_ref_kind_at(index);
jrose@1957 700 int callee_index = this_oop->method_handle_klass_index_at(index);
coleenp@2497 701 Symbol* name = this_oop->method_handle_name_ref_at(index);
coleenp@2497 702 Symbol* signature = this_oop->method_handle_signature_ref_at(index);
jrose@1957 703 if (PrintMiscellaneous)
jrose@1957 704 tty->print_cr("resolve JVM_CONSTANT_MethodHandle:%d [%d/%d/%d] %s.%s",
jrose@1957 705 ref_kind, index, this_oop->method_handle_index_at(index),
jrose@1957 706 callee_index, name->as_C_string(), signature->as_C_string());
jrose@1957 707 KlassHandle callee;
coleenp@4037 708 { Klass* k = klass_at_impl(this_oop, callee_index, CHECK_NULL);
jrose@1957 709 callee = KlassHandle(THREAD, k);
jrose@1957 710 }
jrose@1957 711 KlassHandle klass(THREAD, this_oop->pool_holder());
jrose@1957 712 Handle value = SystemDictionary::link_method_handle_constant(klass, ref_kind,
jrose@1957 713 callee, name, signature,
jrose@2268 714 THREAD);
coleenp@4037 715 result_oop = value();
jrose@2268 716 if (HAS_PENDING_EXCEPTION) {
coleenp@9966 717 MonitorLockerEx ml(this_oop->lock()); // lock cpool to change tag.
coleenp@9966 718 save_and_throw_exception(this_oop, index, tag, CHECK_NULL);
jrose@2268 719 }
jrose@1957 720 break;
jrose@1957 721 }
jrose@1957 722
jrose@1957 723 case JVM_CONSTANT_MethodType:
jrose@1957 724 {
coleenp@2497 725 Symbol* signature = this_oop->method_type_signature_at(index);
jrose@1957 726 if (PrintMiscellaneous)
jrose@1957 727 tty->print_cr("resolve JVM_CONSTANT_MethodType [%d/%d] %s",
jrose@1957 728 index, this_oop->method_type_index_at(index),
jrose@1957 729 signature->as_C_string());
jrose@1957 730 KlassHandle klass(THREAD, this_oop->pool_holder());
twisti@3969 731 Handle value = SystemDictionary::find_method_handle_type(signature, klass, THREAD);
coleenp@4037 732 result_oop = value();
jrose@2268 733 if (HAS_PENDING_EXCEPTION) {
coleenp@9966 734 MonitorLockerEx ml(this_oop->lock()); // lock cpool to change tag.
coleenp@9966 735 save_and_throw_exception(this_oop, index, tag, CHECK_NULL);
jrose@2268 736 }
jrose@1957 737 break;
jrose@1957 738 }
jrose@1957 739
jrose@1957 740 case JVM_CONSTANT_Integer:
coleenp@4037 741 assert(cache_index == _no_index_sentinel, "should not have been set");
jrose@2268 742 prim_value.i = this_oop->int_at(index);
jrose@2268 743 result_oop = java_lang_boxing_object::create(T_INT, &prim_value, CHECK_NULL);
jrose@2268 744 break;
jrose@2268 745
jrose@1957 746 case JVM_CONSTANT_Float:
coleenp@4037 747 assert(cache_index == _no_index_sentinel, "should not have been set");
jrose@2268 748 prim_value.f = this_oop->float_at(index);
jrose@2268 749 result_oop = java_lang_boxing_object::create(T_FLOAT, &prim_value, CHECK_NULL);
jrose@2268 750 break;
jrose@2268 751
jrose@1957 752 case JVM_CONSTANT_Long:
coleenp@4037 753 assert(cache_index == _no_index_sentinel, "should not have been set");
jrose@2268 754 prim_value.j = this_oop->long_at(index);
jrose@2268 755 result_oop = java_lang_boxing_object::create(T_LONG, &prim_value, CHECK_NULL);
jrose@2268 756 break;
jrose@2268 757
jrose@1957 758 case JVM_CONSTANT_Double:
coleenp@4037 759 assert(cache_index == _no_index_sentinel, "should not have been set");
jrose@2268 760 prim_value.d = this_oop->double_at(index);
jrose@2268 761 result_oop = java_lang_boxing_object::create(T_DOUBLE, &prim_value, CHECK_NULL);
jrose@1957 762 break;
jrose@1957 763
jrose@1957 764 default:
jrose@1957 765 DEBUG_ONLY( tty->print_cr("*** %p: tag at CP[%d/%d] = %d",
coleenp@9966 766 this_oop(), index, cache_index, tag.value()));
jrose@1957 767 assert(false, "unexpected constant tag");
jrose@1957 768 break;
jrose@1957 769 }
jrose@1957 770
jrose@1957 771 if (cache_index >= 0) {
jrose@1957 772 // Cache the oop here also.
jrose@2268 773 Handle result_handle(THREAD, result_oop);
iklam@5971 774 MonitorLockerEx ml(this_oop->lock()); // don't know if we really need this
coleenp@4037 775 oop result = this_oop->resolved_references()->obj_at(cache_index);
coleenp@4037 776 // Benign race condition: resolved_references may already be filled in while we were trying to lock.
jrose@2268 777 // The important thing here is that all threads pick up the same result.
jrose@2268 778 // It doesn't matter which racing thread wins, as long as only one
jrose@2268 779 // result is used by all threads, and all future queries.
jrose@2268 780 // That result may be either a resolved constant or a failure exception.
coleenp@4037 781 if (result == NULL) {
coleenp@4037 782 this_oop->resolved_references()->obj_at_put(cache_index, result_handle());
coleenp@4037 783 return result_handle();
coleenp@4037 784 } else {
coleenp@4037 785 // Return the winning thread's result. This can be different than
coleenp@4037 786 // result_handle() for MethodHandles.
coleenp@4037 787 return result;
jrose@1957 788 }
jrose@1957 789 } else {
jrose@1957 790 return result_oop;
jrose@1957 791 }
jrose@1957 792 }
jrose@1957 793
coleenp@4037 794 oop ConstantPool::uncached_string_at(int which, TRAPS) {
coleenp@4037 795 Symbol* sym = unresolved_string_at(which);
coleenp@4037 796 oop str = StringTable::intern(sym, CHECK_(NULL));
coleenp@4037 797 assert(java_lang_String::is_instance(str), "must be string");
coleenp@4037 798 return str;
coleenp@4037 799 }
twisti@3969 800
coleenp@4037 801
coleenp@4037 802 oop ConstantPool::resolve_bootstrap_specifier_at_impl(constantPoolHandle this_oop, int index, TRAPS) {
twisti@3969 803 assert(this_oop->tag_at(index).is_invoke_dynamic(), "Corrupted constant pool");
twisti@3969 804
twisti@3969 805 Handle bsm;
twisti@3969 806 int argc;
twisti@3969 807 {
twisti@3969 808 // JVM_CONSTANT_InvokeDynamic is an ordered pair of [bootm, name&type], plus optional arguments
twisti@3969 809 // The bootm, being a JVM_CONSTANT_MethodHandle, has its own cache entry.
twisti@3969 810 // It is accompanied by the optional arguments.
twisti@3969 811 int bsm_index = this_oop->invoke_dynamic_bootstrap_method_ref_index_at(index);
twisti@3969 812 oop bsm_oop = this_oop->resolve_possibly_cached_constant_at(bsm_index, CHECK_NULL);
twisti@3969 813 if (!java_lang_invoke_MethodHandle::is_instance(bsm_oop)) {
twisti@3969 814 THROW_MSG_NULL(vmSymbols::java_lang_LinkageError(), "BSM not an MethodHandle");
twisti@3969 815 }
twisti@3969 816
twisti@3969 817 // Extract the optional static arguments.
twisti@3969 818 argc = this_oop->invoke_dynamic_argument_count_at(index);
twisti@3969 819 if (argc == 0) return bsm_oop;
twisti@3969 820
twisti@3969 821 bsm = Handle(THREAD, bsm_oop);
twisti@3969 822 }
twisti@3969 823
twisti@3969 824 objArrayHandle info;
twisti@3969 825 {
twisti@3969 826 objArrayOop info_oop = oopFactory::new_objArray(SystemDictionary::Object_klass(), 1+argc, CHECK_NULL);
twisti@3969 827 info = objArrayHandle(THREAD, info_oop);
twisti@3969 828 }
twisti@3969 829
twisti@3969 830 info->obj_at_put(0, bsm());
twisti@3969 831 for (int i = 0; i < argc; i++) {
twisti@3969 832 int arg_index = this_oop->invoke_dynamic_argument_index_at(index, i);
twisti@3969 833 oop arg_oop = this_oop->resolve_possibly_cached_constant_at(arg_index, CHECK_NULL);
twisti@3969 834 info->obj_at_put(1+i, arg_oop);
twisti@3969 835 }
twisti@3969 836
twisti@3969 837 return info();
twisti@3969 838 }
twisti@3969 839
coleenp@4037 840 oop ConstantPool::string_at_impl(constantPoolHandle this_oop, int which, int obj_index, TRAPS) {
coleenp@4037 841 // If the string has already been interned, this entry will be non-null
coleenp@4037 842 oop str = this_oop->resolved_references()->obj_at(obj_index);
coleenp@4037 843 if (str != NULL) return str;
coleenp@5753 844 Symbol* sym = this_oop->unresolved_string_at(which);
coleenp@4037 845 str = StringTable::intern(sym, CHECK_(NULL));
coleenp@4037 846 this_oop->string_at_put(which, obj_index, str);
coleenp@2497 847 assert(java_lang_String::is_instance(str), "must be string");
coleenp@2497 848 return str;
duke@435 849 }
duke@435 850
duke@435 851
coleenp@4037 852 bool ConstantPool::klass_name_at_matches(instanceKlassHandle k,
duke@435 853 int which) {
coleenp@2497 854 // Names are interned, so we can compare Symbol*s directly
coleenp@2497 855 Symbol* cp_name = klass_name_at(which);
duke@435 856 return (cp_name == k->name());
duke@435 857 }
duke@435 858
duke@435 859
coleenp@2497 860 // Iterate over symbols and decrement ones which are Symbol*s.
coleenp@2497 861 // This is done during GC so do not need to lock constantPool unless we
coleenp@2497 862 // have per-thread safepoints.
coleenp@2497 863 // Only decrement the UTF8 symbols. Unresolved classes and strings point to
coleenp@2497 864 // these symbols but didn't increment the reference count.
coleenp@4037 865 void ConstantPool::unreference_symbols() {
coleenp@2497 866 for (int index = 1; index < length(); index++) { // Index 0 is unused
coleenp@2497 867 constantTag tag = tag_at(index);
coleenp@2497 868 if (tag.is_symbol()) {
coleenp@2497 869 symbol_at(index)->decrement_refcount();
coleenp@2497 870 }
coleenp@2497 871 }
coleenp@2497 872 }
duke@435 873
duke@435 874
duke@435 875 // Compare this constant pool's entry at index1 to the constant pool
duke@435 876 // cp2's entry at index2.
coleenp@4037 877 bool ConstantPool::compare_entry_to(int index1, constantPoolHandle cp2,
duke@435 878 int index2, TRAPS) {
duke@435 879
coleenp@5889 880 // The error tags are equivalent to non-error tags when comparing
coleenp@5889 881 jbyte t1 = tag_at(index1).non_error_value();
coleenp@5889 882 jbyte t2 = cp2->tag_at(index2).non_error_value();
duke@435 883
duke@435 884 if (t1 != t2) {
duke@435 885 // Not the same entry type so there is nothing else to check. Note
duke@435 886 // that this style of checking will consider resolved/unresolved
coleenp@4037 887 // class pairs as different.
coleenp@4037 888 // From the ConstantPool* API point of view, this is correct
coleenp@4037 889 // behavior. See VM_RedefineClasses::merge_constant_pools() to see how this
coleenp@4037 890 // plays out in the context of ConstantPool* merging.
duke@435 891 return false;
duke@435 892 }
duke@435 893
duke@435 894 switch (t1) {
duke@435 895 case JVM_CONSTANT_Class:
duke@435 896 {
coleenp@4037 897 Klass* k1 = klass_at(index1, CHECK_false);
coleenp@4037 898 Klass* k2 = cp2->klass_at(index2, CHECK_false);
duke@435 899 if (k1 == k2) {
duke@435 900 return true;
duke@435 901 }
duke@435 902 } break;
duke@435 903
duke@435 904 case JVM_CONSTANT_ClassIndex:
duke@435 905 {
duke@435 906 int recur1 = klass_index_at(index1);
duke@435 907 int recur2 = cp2->klass_index_at(index2);
duke@435 908 bool match = compare_entry_to(recur1, cp2, recur2, CHECK_false);
duke@435 909 if (match) {
duke@435 910 return true;
duke@435 911 }
duke@435 912 } break;
duke@435 913
duke@435 914 case JVM_CONSTANT_Double:
duke@435 915 {
duke@435 916 jdouble d1 = double_at(index1);
duke@435 917 jdouble d2 = cp2->double_at(index2);
duke@435 918 if (d1 == d2) {
duke@435 919 return true;
duke@435 920 }
duke@435 921 } break;
duke@435 922
duke@435 923 case JVM_CONSTANT_Fieldref:
duke@435 924 case JVM_CONSTANT_InterfaceMethodref:
duke@435 925 case JVM_CONSTANT_Methodref:
duke@435 926 {
duke@435 927 int recur1 = uncached_klass_ref_index_at(index1);
duke@435 928 int recur2 = cp2->uncached_klass_ref_index_at(index2);
duke@435 929 bool match = compare_entry_to(recur1, cp2, recur2, CHECK_false);
duke@435 930 if (match) {
duke@435 931 recur1 = uncached_name_and_type_ref_index_at(index1);
duke@435 932 recur2 = cp2->uncached_name_and_type_ref_index_at(index2);
duke@435 933 match = compare_entry_to(recur1, cp2, recur2, CHECK_false);
duke@435 934 if (match) {
duke@435 935 return true;
duke@435 936 }
duke@435 937 }
duke@435 938 } break;
duke@435 939
duke@435 940 case JVM_CONSTANT_Float:
duke@435 941 {
duke@435 942 jfloat f1 = float_at(index1);
duke@435 943 jfloat f2 = cp2->float_at(index2);
duke@435 944 if (f1 == f2) {
duke@435 945 return true;
duke@435 946 }
duke@435 947 } break;
duke@435 948
duke@435 949 case JVM_CONSTANT_Integer:
duke@435 950 {
duke@435 951 jint i1 = int_at(index1);
duke@435 952 jint i2 = cp2->int_at(index2);
duke@435 953 if (i1 == i2) {
duke@435 954 return true;
duke@435 955 }
duke@435 956 } break;
duke@435 957
duke@435 958 case JVM_CONSTANT_Long:
duke@435 959 {
duke@435 960 jlong l1 = long_at(index1);
duke@435 961 jlong l2 = cp2->long_at(index2);
duke@435 962 if (l1 == l2) {
duke@435 963 return true;
duke@435 964 }
duke@435 965 } break;
duke@435 966
duke@435 967 case JVM_CONSTANT_NameAndType:
duke@435 968 {
duke@435 969 int recur1 = name_ref_index_at(index1);
duke@435 970 int recur2 = cp2->name_ref_index_at(index2);
duke@435 971 bool match = compare_entry_to(recur1, cp2, recur2, CHECK_false);
duke@435 972 if (match) {
duke@435 973 recur1 = signature_ref_index_at(index1);
duke@435 974 recur2 = cp2->signature_ref_index_at(index2);
duke@435 975 match = compare_entry_to(recur1, cp2, recur2, CHECK_false);
duke@435 976 if (match) {
duke@435 977 return true;
duke@435 978 }
duke@435 979 }
duke@435 980 } break;
duke@435 981
duke@435 982 case JVM_CONSTANT_StringIndex:
duke@435 983 {
duke@435 984 int recur1 = string_index_at(index1);
duke@435 985 int recur2 = cp2->string_index_at(index2);
duke@435 986 bool match = compare_entry_to(recur1, cp2, recur2, CHECK_false);
duke@435 987 if (match) {
duke@435 988 return true;
duke@435 989 }
duke@435 990 } break;
duke@435 991
duke@435 992 case JVM_CONSTANT_UnresolvedClass:
duke@435 993 {
coleenp@2497 994 Symbol* k1 = unresolved_klass_at(index1);
coleenp@2497 995 Symbol* k2 = cp2->unresolved_klass_at(index2);
duke@435 996 if (k1 == k2) {
duke@435 997 return true;
duke@435 998 }
duke@435 999 } break;
duke@435 1000
jrose@1957 1001 case JVM_CONSTANT_MethodType:
jrose@1957 1002 {
coleenp@5884 1003 int k1 = method_type_index_at_error_ok(index1);
coleenp@5884 1004 int k2 = cp2->method_type_index_at_error_ok(index2);
jrose@2353 1005 bool match = compare_entry_to(k1, cp2, k2, CHECK_false);
jrose@2353 1006 if (match) {
jrose@1957 1007 return true;
jrose@1957 1008 }
jrose@1957 1009 } break;
jrose@1957 1010
jrose@1957 1011 case JVM_CONSTANT_MethodHandle:
jrose@1957 1012 {
coleenp@5884 1013 int k1 = method_handle_ref_kind_at_error_ok(index1);
coleenp@5884 1014 int k2 = cp2->method_handle_ref_kind_at_error_ok(index2);
jrose@1957 1015 if (k1 == k2) {
coleenp@5884 1016 int i1 = method_handle_index_at_error_ok(index1);
coleenp@5884 1017 int i2 = cp2->method_handle_index_at_error_ok(index2);
jrose@2353 1018 bool match = compare_entry_to(i1, cp2, i2, CHECK_false);
jrose@2353 1019 if (match) {
jrose@1957 1020 return true;
jrose@1957 1021 }
jrose@1957 1022 }
jrose@1957 1023 } break;
jrose@1957 1024
jrose@2015 1025 case JVM_CONSTANT_InvokeDynamic:
jrose@2015 1026 {
sspitsyn@4983 1027 int k1 = invoke_dynamic_name_and_type_ref_index_at(index1);
sspitsyn@4983 1028 int k2 = cp2->invoke_dynamic_name_and_type_ref_index_at(index2);
sspitsyn@4983 1029 int i1 = invoke_dynamic_bootstrap_specifier_index(index1);
sspitsyn@4983 1030 int i2 = cp2->invoke_dynamic_bootstrap_specifier_index(index2);
ccheung@5183 1031 // separate statements and variables because CHECK_false is used
ccheung@5183 1032 bool match_entry = compare_entry_to(k1, cp2, k2, CHECK_false);
ccheung@5183 1033 bool match_operand = compare_operand_to(i1, cp2, i2, CHECK_false);
ccheung@5183 1034 return (match_entry && match_operand);
jrose@2015 1035 } break;
jrose@2015 1036
coleenp@4037 1037 case JVM_CONSTANT_String:
duke@435 1038 {
coleenp@2497 1039 Symbol* s1 = unresolved_string_at(index1);
coleenp@2497 1040 Symbol* s2 = cp2->unresolved_string_at(index2);
duke@435 1041 if (s1 == s2) {
duke@435 1042 return true;
duke@435 1043 }
duke@435 1044 } break;
duke@435 1045
duke@435 1046 case JVM_CONSTANT_Utf8:
duke@435 1047 {
coleenp@2497 1048 Symbol* s1 = symbol_at(index1);
coleenp@2497 1049 Symbol* s2 = cp2->symbol_at(index2);
duke@435 1050 if (s1 == s2) {
duke@435 1051 return true;
duke@435 1052 }
duke@435 1053 } break;
duke@435 1054
duke@435 1055 // Invalid is used as the tag for the second constant pool entry
duke@435 1056 // occupied by JVM_CONSTANT_Double or JVM_CONSTANT_Long. It should
duke@435 1057 // not be seen by itself.
duke@435 1058 case JVM_CONSTANT_Invalid: // fall through
duke@435 1059
duke@435 1060 default:
duke@435 1061 ShouldNotReachHere();
duke@435 1062 break;
duke@435 1063 }
duke@435 1064
duke@435 1065 return false;
duke@435 1066 } // end compare_entry_to()
duke@435 1067
duke@435 1068
sspitsyn@4983 1069 // Resize the operands array with delta_len and delta_size.
sspitsyn@4983 1070 // Used in RedefineClasses for CP merge.
sspitsyn@4983 1071 void ConstantPool::resize_operands(int delta_len, int delta_size, TRAPS) {
sspitsyn@4983 1072 int old_len = operand_array_length(operands());
sspitsyn@4983 1073 int new_len = old_len + delta_len;
sspitsyn@4983 1074 int min_len = (delta_len > 0) ? old_len : new_len;
sspitsyn@4983 1075
sspitsyn@4983 1076 int old_size = operands()->length();
sspitsyn@4983 1077 int new_size = old_size + delta_size;
sspitsyn@4983 1078 int min_size = (delta_size > 0) ? old_size : new_size;
sspitsyn@4983 1079
sspitsyn@4983 1080 ClassLoaderData* loader_data = pool_holder()->class_loader_data();
sspitsyn@4983 1081 Array<u2>* new_ops = MetadataFactory::new_array<u2>(loader_data, new_size, CHECK);
sspitsyn@4983 1082
sspitsyn@4983 1083 // Set index in the resized array for existing elements only
sspitsyn@4983 1084 for (int idx = 0; idx < min_len; idx++) {
sspitsyn@4983 1085 int offset = operand_offset_at(idx); // offset in original array
sspitsyn@4983 1086 operand_offset_at_put(new_ops, idx, offset + 2*delta_len); // offset in resized array
sspitsyn@4983 1087 }
sspitsyn@4983 1088 // Copy the bootstrap specifiers only
sspitsyn@4983 1089 Copy::conjoint_memory_atomic(operands()->adr_at(2*old_len),
sspitsyn@4983 1090 new_ops->adr_at(2*new_len),
sspitsyn@4983 1091 (min_size - 2*min_len) * sizeof(u2));
sspitsyn@4983 1092 // Explicitly deallocate old operands array.
sspitsyn@4983 1093 // Note, it is not needed for 7u backport.
sspitsyn@4983 1094 if ( operands() != NULL) { // the safety check
sspitsyn@4983 1095 MetadataFactory::free_array<u2>(loader_data, operands());
sspitsyn@4983 1096 }
sspitsyn@4983 1097 set_operands(new_ops);
sspitsyn@4983 1098 } // end resize_operands()
sspitsyn@4983 1099
sspitsyn@4983 1100
sspitsyn@4983 1101 // Extend the operands array with the length and size of the ext_cp operands.
sspitsyn@4983 1102 // Used in RedefineClasses for CP merge.
sspitsyn@4983 1103 void ConstantPool::extend_operands(constantPoolHandle ext_cp, TRAPS) {
sspitsyn@4983 1104 int delta_len = operand_array_length(ext_cp->operands());
sspitsyn@4983 1105 if (delta_len == 0) {
sspitsyn@4983 1106 return; // nothing to do
sspitsyn@4983 1107 }
sspitsyn@4983 1108 int delta_size = ext_cp->operands()->length();
sspitsyn@4983 1109
sspitsyn@4983 1110 assert(delta_len > 0 && delta_size > 0, "extended operands array must be bigger");
sspitsyn@4983 1111
sspitsyn@4983 1112 if (operand_array_length(operands()) == 0) {
sspitsyn@4983 1113 ClassLoaderData* loader_data = pool_holder()->class_loader_data();
sspitsyn@4983 1114 Array<u2>* new_ops = MetadataFactory::new_array<u2>(loader_data, delta_size, CHECK);
sspitsyn@4983 1115 // The first element index defines the offset of second part
sspitsyn@4983 1116 operand_offset_at_put(new_ops, 0, 2*delta_len); // offset in new array
sspitsyn@4983 1117 set_operands(new_ops);
sspitsyn@4983 1118 } else {
sspitsyn@4983 1119 resize_operands(delta_len, delta_size, CHECK);
sspitsyn@4983 1120 }
sspitsyn@4983 1121
sspitsyn@4983 1122 } // end extend_operands()
sspitsyn@4983 1123
sspitsyn@4983 1124
sspitsyn@4983 1125 // Shrink the operands array to a smaller array with new_len length.
sspitsyn@4983 1126 // Used in RedefineClasses for CP merge.
sspitsyn@4983 1127 void ConstantPool::shrink_operands(int new_len, TRAPS) {
sspitsyn@4983 1128 int old_len = operand_array_length(operands());
sspitsyn@4983 1129 if (new_len == old_len) {
sspitsyn@4983 1130 return; // nothing to do
sspitsyn@4983 1131 }
sspitsyn@4983 1132 assert(new_len < old_len, "shrunken operands array must be smaller");
sspitsyn@4983 1133
sspitsyn@4983 1134 int free_base = operand_next_offset_at(new_len - 1);
sspitsyn@4983 1135 int delta_len = new_len - old_len;
sspitsyn@4983 1136 int delta_size = 2*delta_len + free_base - operands()->length();
sspitsyn@4983 1137
sspitsyn@4983 1138 resize_operands(delta_len, delta_size, CHECK);
sspitsyn@4983 1139
sspitsyn@4983 1140 } // end shrink_operands()
sspitsyn@4983 1141
sspitsyn@4983 1142
sspitsyn@4493 1143 void ConstantPool::copy_operands(constantPoolHandle from_cp,
sspitsyn@4493 1144 constantPoolHandle to_cp,
sspitsyn@4493 1145 TRAPS) {
jrose@2353 1146
jrose@2353 1147 int from_oplen = operand_array_length(from_cp->operands());
jrose@2353 1148 int old_oplen = operand_array_length(to_cp->operands());
jrose@2353 1149 if (from_oplen != 0) {
kamg@4245 1150 ClassLoaderData* loader_data = to_cp->pool_holder()->class_loader_data();
jrose@2353 1151 // append my operands to the target's operands array
jrose@2353 1152 if (old_oplen == 0) {
kamg@4245 1153 // Can't just reuse from_cp's operand list because of deallocation issues
kamg@4245 1154 int len = from_cp->operands()->length();
kamg@4245 1155 Array<u2>* new_ops = MetadataFactory::new_array<u2>(loader_data, len, CHECK);
kamg@4245 1156 Copy::conjoint_memory_atomic(
kamg@4245 1157 from_cp->operands()->adr_at(0), new_ops->adr_at(0), len * sizeof(u2));
kamg@4245 1158 to_cp->set_operands(new_ops);
jrose@2353 1159 } else {
jrose@2353 1160 int old_len = to_cp->operands()->length();
jrose@2353 1161 int from_len = from_cp->operands()->length();
jrose@2353 1162 int old_off = old_oplen * sizeof(u2);
jrose@2353 1163 int from_off = from_oplen * sizeof(u2);
coleenp@4037 1164 // Use the metaspace for the destination constant pool
coleenp@4037 1165 Array<u2>* new_operands = MetadataFactory::new_array<u2>(loader_data, old_len + from_len, CHECK);
jrose@2353 1166 int fillp = 0, len = 0;
jrose@2353 1167 // first part of dest
coleenp@4037 1168 Copy::conjoint_memory_atomic(to_cp->operands()->adr_at(0),
coleenp@4037 1169 new_operands->adr_at(fillp),
jrose@2353 1170 (len = old_off) * sizeof(u2));
jrose@2353 1171 fillp += len;
jrose@2353 1172 // first part of src
sspitsyn@4505 1173 Copy::conjoint_memory_atomic(from_cp->operands()->adr_at(0),
coleenp@4037 1174 new_operands->adr_at(fillp),
jrose@2353 1175 (len = from_off) * sizeof(u2));
jrose@2353 1176 fillp += len;
jrose@2353 1177 // second part of dest
coleenp@4037 1178 Copy::conjoint_memory_atomic(to_cp->operands()->adr_at(old_off),
coleenp@4037 1179 new_operands->adr_at(fillp),
jrose@2353 1180 (len = old_len - old_off) * sizeof(u2));
jrose@2353 1181 fillp += len;
jrose@2353 1182 // second part of src
sspitsyn@4505 1183 Copy::conjoint_memory_atomic(from_cp->operands()->adr_at(from_off),
coleenp@4037 1184 new_operands->adr_at(fillp),
jrose@2353 1185 (len = from_len - from_off) * sizeof(u2));
jrose@2353 1186 fillp += len;
jrose@2353 1187 assert(fillp == new_operands->length(), "");
jrose@2353 1188
jrose@2353 1189 // Adjust indexes in the first part of the copied operands array.
jrose@2353 1190 for (int j = 0; j < from_oplen; j++) {
coleenp@4037 1191 int offset = operand_offset_at(new_operands, old_oplen + j);
jrose@2353 1192 assert(offset == operand_offset_at(from_cp->operands(), j), "correct copy");
jrose@2353 1193 offset += old_len; // every new tuple is preceded by old_len extra u2's
coleenp@4037 1194 operand_offset_at_put(new_operands, old_oplen + j, offset);
jrose@2353 1195 }
jrose@2353 1196
jrose@2353 1197 // replace target operands array with combined array
coleenp@4037 1198 to_cp->set_operands(new_operands);
jrose@2353 1199 }
jrose@2353 1200 }
sspitsyn@4493 1201 } // end copy_operands()
jrose@2353 1202
sspitsyn@4493 1203
sspitsyn@4493 1204 // Copy this constant pool's entries at start_i to end_i (inclusive)
sspitsyn@4493 1205 // to the constant pool to_cp's entries starting at to_i. A total of
sspitsyn@4493 1206 // (end_i - start_i) + 1 entries are copied.
sspitsyn@4493 1207 void ConstantPool::copy_cp_to_impl(constantPoolHandle from_cp, int start_i, int end_i,
sspitsyn@4493 1208 constantPoolHandle to_cp, int to_i, TRAPS) {
sspitsyn@4493 1209
sspitsyn@4493 1210
sspitsyn@4493 1211 int dest_i = to_i; // leave original alone for debug purposes
sspitsyn@4493 1212
sspitsyn@4493 1213 for (int src_i = start_i; src_i <= end_i; /* see loop bottom */ ) {
sspitsyn@4493 1214 copy_entry_to(from_cp, src_i, to_cp, dest_i, CHECK);
sspitsyn@4493 1215
sspitsyn@4493 1216 switch (from_cp->tag_at(src_i).value()) {
sspitsyn@4493 1217 case JVM_CONSTANT_Double:
sspitsyn@4493 1218 case JVM_CONSTANT_Long:
sspitsyn@4493 1219 // double and long take two constant pool entries
sspitsyn@4493 1220 src_i += 2;
sspitsyn@4493 1221 dest_i += 2;
sspitsyn@4493 1222 break;
sspitsyn@4493 1223
sspitsyn@4493 1224 default:
sspitsyn@4493 1225 // all others take one constant pool entry
sspitsyn@4493 1226 src_i++;
sspitsyn@4493 1227 dest_i++;
sspitsyn@4493 1228 break;
sspitsyn@4493 1229 }
sspitsyn@4493 1230 }
sspitsyn@4493 1231 copy_operands(from_cp, to_cp, CHECK);
sspitsyn@4493 1232
sspitsyn@4493 1233 } // end copy_cp_to_impl()
duke@435 1234
duke@435 1235
duke@435 1236 // Copy this constant pool's entry at from_i to the constant pool
duke@435 1237 // to_cp's entry at to_i.
coleenp@4037 1238 void ConstantPool::copy_entry_to(constantPoolHandle from_cp, int from_i,
jrose@2353 1239 constantPoolHandle to_cp, int to_i,
jrose@2353 1240 TRAPS) {
duke@435 1241
jrose@2353 1242 int tag = from_cp->tag_at(from_i).value();
jrose@2353 1243 switch (tag) {
duke@435 1244 case JVM_CONSTANT_Class:
duke@435 1245 {
coleenp@4037 1246 Klass* k = from_cp->klass_at(from_i, CHECK);
duke@435 1247 to_cp->klass_at_put(to_i, k);
duke@435 1248 } break;
duke@435 1249
duke@435 1250 case JVM_CONSTANT_ClassIndex:
duke@435 1251 {
jrose@2353 1252 jint ki = from_cp->klass_index_at(from_i);
duke@435 1253 to_cp->klass_index_at_put(to_i, ki);
duke@435 1254 } break;
duke@435 1255
duke@435 1256 case JVM_CONSTANT_Double:
duke@435 1257 {
jrose@2353 1258 jdouble d = from_cp->double_at(from_i);
duke@435 1259 to_cp->double_at_put(to_i, d);
duke@435 1260 // double takes two constant pool entries so init second entry's tag
duke@435 1261 to_cp->tag_at_put(to_i + 1, JVM_CONSTANT_Invalid);
duke@435 1262 } break;
duke@435 1263
duke@435 1264 case JVM_CONSTANT_Fieldref:
duke@435 1265 {
jrose@2353 1266 int class_index = from_cp->uncached_klass_ref_index_at(from_i);
jrose@2353 1267 int name_and_type_index = from_cp->uncached_name_and_type_ref_index_at(from_i);
duke@435 1268 to_cp->field_at_put(to_i, class_index, name_and_type_index);
duke@435 1269 } break;
duke@435 1270
duke@435 1271 case JVM_CONSTANT_Float:
duke@435 1272 {
jrose@2353 1273 jfloat f = from_cp->float_at(from_i);
duke@435 1274 to_cp->float_at_put(to_i, f);
duke@435 1275 } break;
duke@435 1276
duke@435 1277 case JVM_CONSTANT_Integer:
duke@435 1278 {
jrose@2353 1279 jint i = from_cp->int_at(from_i);
duke@435 1280 to_cp->int_at_put(to_i, i);
duke@435 1281 } break;
duke@435 1282
duke@435 1283 case JVM_CONSTANT_InterfaceMethodref:
duke@435 1284 {
jrose@2353 1285 int class_index = from_cp->uncached_klass_ref_index_at(from_i);
jrose@2353 1286 int name_and_type_index = from_cp->uncached_name_and_type_ref_index_at(from_i);
duke@435 1287 to_cp->interface_method_at_put(to_i, class_index, name_and_type_index);
duke@435 1288 } break;
duke@435 1289
duke@435 1290 case JVM_CONSTANT_Long:
duke@435 1291 {
jrose@2353 1292 jlong l = from_cp->long_at(from_i);
duke@435 1293 to_cp->long_at_put(to_i, l);
duke@435 1294 // long takes two constant pool entries so init second entry's tag
duke@435 1295 to_cp->tag_at_put(to_i + 1, JVM_CONSTANT_Invalid);
duke@435 1296 } break;
duke@435 1297
duke@435 1298 case JVM_CONSTANT_Methodref:
duke@435 1299 {
jrose@2353 1300 int class_index = from_cp->uncached_klass_ref_index_at(from_i);
jrose@2353 1301 int name_and_type_index = from_cp->uncached_name_and_type_ref_index_at(from_i);
duke@435 1302 to_cp->method_at_put(to_i, class_index, name_and_type_index);
duke@435 1303 } break;
duke@435 1304
duke@435 1305 case JVM_CONSTANT_NameAndType:
duke@435 1306 {
jrose@2353 1307 int name_ref_index = from_cp->name_ref_index_at(from_i);
jrose@2353 1308 int signature_ref_index = from_cp->signature_ref_index_at(from_i);
duke@435 1309 to_cp->name_and_type_at_put(to_i, name_ref_index, signature_ref_index);
duke@435 1310 } break;
duke@435 1311
duke@435 1312 case JVM_CONSTANT_StringIndex:
duke@435 1313 {
jrose@2353 1314 jint si = from_cp->string_index_at(from_i);
duke@435 1315 to_cp->string_index_at_put(to_i, si);
duke@435 1316 } break;
duke@435 1317
duke@435 1318 case JVM_CONSTANT_UnresolvedClass:
sla@6338 1319 case JVM_CONSTANT_UnresolvedClassInError:
duke@435 1320 {
coleenp@2614 1321 // Can be resolved after checking tag, so check the slot first.
coleenp@2614 1322 CPSlot entry = from_cp->slot_at(from_i);
coleenp@4037 1323 if (entry.is_resolved()) {
coleenp@4037 1324 assert(entry.get_klass()->is_klass(), "must be");
coleenp@2614 1325 // Already resolved
coleenp@4037 1326 to_cp->klass_at_put(to_i, entry.get_klass());
coleenp@2614 1327 } else {
coleenp@2614 1328 to_cp->unresolved_klass_at_put(to_i, entry.get_symbol());
coleenp@2614 1329 }
duke@435 1330 } break;
duke@435 1331
coleenp@4037 1332 case JVM_CONSTANT_String:
duke@435 1333 {
coleenp@4037 1334 Symbol* s = from_cp->unresolved_string_at(from_i);
coleenp@4037 1335 to_cp->unresolved_string_at_put(to_i, s);
duke@435 1336 } break;
duke@435 1337
duke@435 1338 case JVM_CONSTANT_Utf8:
duke@435 1339 {
coleenp@2497 1340 Symbol* s = from_cp->symbol_at(from_i);
coleenp@4037 1341 // Need to increase refcount, the old one will be thrown away and deferenced
coleenp@4037 1342 s->increment_refcount();
duke@435 1343 to_cp->symbol_at_put(to_i, s);
duke@435 1344 } break;
duke@435 1345
jrose@1957 1346 case JVM_CONSTANT_MethodType:
coleenp@5884 1347 case JVM_CONSTANT_MethodTypeInError:
jrose@1957 1348 {
coleenp@5884 1349 jint k = from_cp->method_type_index_at_error_ok(from_i);
jrose@1957 1350 to_cp->method_type_index_at_put(to_i, k);
jrose@1957 1351 } break;
jrose@1957 1352
jrose@1957 1353 case JVM_CONSTANT_MethodHandle:
coleenp@5884 1354 case JVM_CONSTANT_MethodHandleInError:
jrose@1957 1355 {
coleenp@5884 1356 int k1 = from_cp->method_handle_ref_kind_at_error_ok(from_i);
coleenp@5884 1357 int k2 = from_cp->method_handle_index_at_error_ok(from_i);
jrose@1957 1358 to_cp->method_handle_index_at_put(to_i, k1, k2);
jrose@1957 1359 } break;
jrose@1957 1360
jrose@2015 1361 case JVM_CONSTANT_InvokeDynamic:
jrose@2015 1362 {
jrose@2353 1363 int k1 = from_cp->invoke_dynamic_bootstrap_specifier_index(from_i);
jrose@2353 1364 int k2 = from_cp->invoke_dynamic_name_and_type_ref_index_at(from_i);
jrose@2353 1365 k1 += operand_array_length(to_cp->operands()); // to_cp might already have operands
jrose@2353 1366 to_cp->invoke_dynamic_at_put(to_i, k1, k2);
jrose@2015 1367 } break;
jrose@2015 1368
duke@435 1369 // Invalid is used as the tag for the second constant pool entry
duke@435 1370 // occupied by JVM_CONSTANT_Double or JVM_CONSTANT_Long. It should
duke@435 1371 // not be seen by itself.
duke@435 1372 case JVM_CONSTANT_Invalid: // fall through
duke@435 1373
duke@435 1374 default:
duke@435 1375 {
duke@435 1376 ShouldNotReachHere();
duke@435 1377 } break;
duke@435 1378 }
duke@435 1379 } // end copy_entry_to()
duke@435 1380
duke@435 1381
duke@435 1382 // Search constant pool search_cp for an entry that matches this
duke@435 1383 // constant pool's entry at pattern_i. Returns the index of a
duke@435 1384 // matching entry or zero (0) if there is no matching entry.
coleenp@4037 1385 int ConstantPool::find_matching_entry(int pattern_i,
duke@435 1386 constantPoolHandle search_cp, TRAPS) {
duke@435 1387
duke@435 1388 // index zero (0) is not used
duke@435 1389 for (int i = 1; i < search_cp->length(); i++) {
duke@435 1390 bool found = compare_entry_to(pattern_i, search_cp, i, CHECK_0);
duke@435 1391 if (found) {
duke@435 1392 return i;
duke@435 1393 }
duke@435 1394 }
duke@435 1395
duke@435 1396 return 0; // entry not found; return unused index zero (0)
duke@435 1397 } // end find_matching_entry()
duke@435 1398
duke@435 1399
sspitsyn@4983 1400 // Compare this constant pool's bootstrap specifier at idx1 to the constant pool
sspitsyn@4983 1401 // cp2's bootstrap specifier at idx2.
sspitsyn@4983 1402 bool ConstantPool::compare_operand_to(int idx1, constantPoolHandle cp2, int idx2, TRAPS) {
sspitsyn@4983 1403 int k1 = operand_bootstrap_method_ref_index_at(idx1);
sspitsyn@4983 1404 int k2 = cp2->operand_bootstrap_method_ref_index_at(idx2);
sspitsyn@4983 1405 bool match = compare_entry_to(k1, cp2, k2, CHECK_false);
sspitsyn@4983 1406
sspitsyn@4983 1407 if (!match) {
sspitsyn@4983 1408 return false;
sspitsyn@4983 1409 }
sspitsyn@4983 1410 int argc = operand_argument_count_at(idx1);
sspitsyn@4983 1411 if (argc == cp2->operand_argument_count_at(idx2)) {
sspitsyn@4983 1412 for (int j = 0; j < argc; j++) {
sspitsyn@4983 1413 k1 = operand_argument_index_at(idx1, j);
sspitsyn@4983 1414 k2 = cp2->operand_argument_index_at(idx2, j);
sspitsyn@4983 1415 match = compare_entry_to(k1, cp2, k2, CHECK_false);
sspitsyn@4983 1416 if (!match) {
sspitsyn@4983 1417 return false;
sspitsyn@4983 1418 }
sspitsyn@4983 1419 }
sspitsyn@4983 1420 return true; // got through loop; all elements equal
sspitsyn@4983 1421 }
sspitsyn@4983 1422 return false;
sspitsyn@4983 1423 } // end compare_operand_to()
sspitsyn@4983 1424
sspitsyn@4983 1425 // Search constant pool search_cp for a bootstrap specifier that matches
sspitsyn@4983 1426 // this constant pool's bootstrap specifier at pattern_i index.
sspitsyn@4983 1427 // Return the index of a matching bootstrap specifier or (-1) if there is no match.
sspitsyn@4983 1428 int ConstantPool::find_matching_operand(int pattern_i,
sspitsyn@4983 1429 constantPoolHandle search_cp, int search_len, TRAPS) {
sspitsyn@4983 1430 for (int i = 0; i < search_len; i++) {
sspitsyn@4983 1431 bool found = compare_operand_to(pattern_i, search_cp, i, CHECK_(-1));
sspitsyn@4983 1432 if (found) {
sspitsyn@4983 1433 return i;
sspitsyn@4983 1434 }
sspitsyn@4983 1435 }
sspitsyn@4983 1436 return -1; // bootstrap specifier not found; return unused index (-1)
sspitsyn@4983 1437 } // end find_matching_operand()
sspitsyn@4983 1438
sspitsyn@4983 1439
duke@435 1440 #ifndef PRODUCT
duke@435 1441
coleenp@4037 1442 const char* ConstantPool::printable_name_at(int which) {
duke@435 1443
duke@435 1444 constantTag tag = tag_at(which);
duke@435 1445
coleenp@4037 1446 if (tag.is_string()) {
duke@435 1447 return string_at_noresolve(which);
duke@435 1448 } else if (tag.is_klass() || tag.is_unresolved_klass()) {
duke@435 1449 return klass_name_at(which)->as_C_string();
duke@435 1450 } else if (tag.is_symbol()) {
duke@435 1451 return symbol_at(which)->as_C_string();
duke@435 1452 }
duke@435 1453 return "";
duke@435 1454 }
duke@435 1455
duke@435 1456 #endif // PRODUCT
duke@435 1457
duke@435 1458
duke@435 1459 // JVMTI GetConstantPool support
duke@435 1460
mikael@4889 1461 // For debugging of constant pool
mikael@4889 1462 const bool debug_cpool = false;
duke@435 1463
mikael@4889 1464 #define DBG(code) do { if (debug_cpool) { (code); } } while(0)
duke@435 1465
duke@435 1466 static void print_cpool_bytes(jint cnt, u1 *bytes) {
mikael@4889 1467 const char* WARN_MSG = "Must not be such entry!";
duke@435 1468 jint size = 0;
duke@435 1469 u2 idx1, idx2;
duke@435 1470
duke@435 1471 for (jint idx = 1; idx < cnt; idx++) {
duke@435 1472 jint ent_size = 0;
duke@435 1473 u1 tag = *bytes++;
duke@435 1474 size++; // count tag
duke@435 1475
duke@435 1476 printf("const #%03d, tag: %02d ", idx, tag);
duke@435 1477 switch(tag) {
duke@435 1478 case JVM_CONSTANT_Invalid: {
duke@435 1479 printf("Invalid");
duke@435 1480 break;
duke@435 1481 }
duke@435 1482 case JVM_CONSTANT_Unicode: {
duke@435 1483 printf("Unicode %s", WARN_MSG);
duke@435 1484 break;
duke@435 1485 }
duke@435 1486 case JVM_CONSTANT_Utf8: {
duke@435 1487 u2 len = Bytes::get_Java_u2(bytes);
duke@435 1488 char str[128];
duke@435 1489 if (len > 127) {
duke@435 1490 len = 127;
duke@435 1491 }
duke@435 1492 strncpy(str, (char *) (bytes+2), len);
duke@435 1493 str[len] = '\0';
duke@435 1494 printf("Utf8 \"%s\"", str);
duke@435 1495 ent_size = 2 + len;
duke@435 1496 break;
duke@435 1497 }
duke@435 1498 case JVM_CONSTANT_Integer: {
duke@435 1499 u4 val = Bytes::get_Java_u4(bytes);
duke@435 1500 printf("int %d", *(int *) &val);
duke@435 1501 ent_size = 4;
duke@435 1502 break;
duke@435 1503 }
duke@435 1504 case JVM_CONSTANT_Float: {
duke@435 1505 u4 val = Bytes::get_Java_u4(bytes);
duke@435 1506 printf("float %5.3ff", *(float *) &val);
duke@435 1507 ent_size = 4;
duke@435 1508 break;
duke@435 1509 }
duke@435 1510 case JVM_CONSTANT_Long: {
duke@435 1511 u8 val = Bytes::get_Java_u8(bytes);
kevinw@9327 1512 printf("long " INT64_FORMAT, (int64_t) *(jlong *) &val);
duke@435 1513 ent_size = 8;
duke@435 1514 idx++; // Long takes two cpool slots
duke@435 1515 break;
duke@435 1516 }
duke@435 1517 case JVM_CONSTANT_Double: {
duke@435 1518 u8 val = Bytes::get_Java_u8(bytes);
duke@435 1519 printf("double %5.3fd", *(jdouble *)&val);
duke@435 1520 ent_size = 8;
duke@435 1521 idx++; // Double takes two cpool slots
duke@435 1522 break;
duke@435 1523 }
duke@435 1524 case JVM_CONSTANT_Class: {
duke@435 1525 idx1 = Bytes::get_Java_u2(bytes);
duke@435 1526 printf("class #%03d", idx1);
duke@435 1527 ent_size = 2;
duke@435 1528 break;
duke@435 1529 }
duke@435 1530 case JVM_CONSTANT_String: {
duke@435 1531 idx1 = Bytes::get_Java_u2(bytes);
duke@435 1532 printf("String #%03d", idx1);
duke@435 1533 ent_size = 2;
duke@435 1534 break;
duke@435 1535 }
duke@435 1536 case JVM_CONSTANT_Fieldref: {
duke@435 1537 idx1 = Bytes::get_Java_u2(bytes);
duke@435 1538 idx2 = Bytes::get_Java_u2(bytes+2);
duke@435 1539 printf("Field #%03d, #%03d", (int) idx1, (int) idx2);
duke@435 1540 ent_size = 4;
duke@435 1541 break;
duke@435 1542 }
duke@435 1543 case JVM_CONSTANT_Methodref: {
duke@435 1544 idx1 = Bytes::get_Java_u2(bytes);
duke@435 1545 idx2 = Bytes::get_Java_u2(bytes+2);
duke@435 1546 printf("Method #%03d, #%03d", idx1, idx2);
duke@435 1547 ent_size = 4;
duke@435 1548 break;
duke@435 1549 }
duke@435 1550 case JVM_CONSTANT_InterfaceMethodref: {
duke@435 1551 idx1 = Bytes::get_Java_u2(bytes);
duke@435 1552 idx2 = Bytes::get_Java_u2(bytes+2);
duke@435 1553 printf("InterfMethod #%03d, #%03d", idx1, idx2);
duke@435 1554 ent_size = 4;
duke@435 1555 break;
duke@435 1556 }
duke@435 1557 case JVM_CONSTANT_NameAndType: {
duke@435 1558 idx1 = Bytes::get_Java_u2(bytes);
duke@435 1559 idx2 = Bytes::get_Java_u2(bytes+2);
duke@435 1560 printf("NameAndType #%03d, #%03d", idx1, idx2);
duke@435 1561 ent_size = 4;
duke@435 1562 break;
duke@435 1563 }
duke@435 1564 case JVM_CONSTANT_ClassIndex: {
duke@435 1565 printf("ClassIndex %s", WARN_MSG);
duke@435 1566 break;
duke@435 1567 }
duke@435 1568 case JVM_CONSTANT_UnresolvedClass: {
duke@435 1569 printf("UnresolvedClass: %s", WARN_MSG);
duke@435 1570 break;
duke@435 1571 }
duke@435 1572 case JVM_CONSTANT_UnresolvedClassInError: {
duke@435 1573 printf("UnresolvedClassInErr: %s", WARN_MSG);
duke@435 1574 break;
duke@435 1575 }
duke@435 1576 case JVM_CONSTANT_StringIndex: {
duke@435 1577 printf("StringIndex: %s", WARN_MSG);
duke@435 1578 break;
duke@435 1579 }
duke@435 1580 }
duke@435 1581 printf(";\n");
duke@435 1582 bytes += ent_size;
duke@435 1583 size += ent_size;
duke@435 1584 }
duke@435 1585 printf("Cpool size: %d\n", size);
duke@435 1586 fflush(0);
duke@435 1587 return;
duke@435 1588 } /* end print_cpool_bytes */
duke@435 1589
duke@435 1590
duke@435 1591 // Returns size of constant pool entry.
coleenp@4037 1592 jint ConstantPool::cpool_entry_size(jint idx) {
duke@435 1593 switch(tag_at(idx).value()) {
duke@435 1594 case JVM_CONSTANT_Invalid:
duke@435 1595 case JVM_CONSTANT_Unicode:
duke@435 1596 return 1;
duke@435 1597
duke@435 1598 case JVM_CONSTANT_Utf8:
duke@435 1599 return 3 + symbol_at(idx)->utf8_length();
duke@435 1600
duke@435 1601 case JVM_CONSTANT_Class:
duke@435 1602 case JVM_CONSTANT_String:
duke@435 1603 case JVM_CONSTANT_ClassIndex:
duke@435 1604 case JVM_CONSTANT_UnresolvedClass:
duke@435 1605 case JVM_CONSTANT_UnresolvedClassInError:
duke@435 1606 case JVM_CONSTANT_StringIndex:
jrose@1957 1607 case JVM_CONSTANT_MethodType:
iklam@5760 1608 case JVM_CONSTANT_MethodTypeInError:
duke@435 1609 return 3;
duke@435 1610
jrose@1957 1611 case JVM_CONSTANT_MethodHandle:
iklam@5760 1612 case JVM_CONSTANT_MethodHandleInError:
jrose@1957 1613 return 4; //tag, ref_kind, ref_index
jrose@1957 1614
duke@435 1615 case JVM_CONSTANT_Integer:
duke@435 1616 case JVM_CONSTANT_Float:
duke@435 1617 case JVM_CONSTANT_Fieldref:
duke@435 1618 case JVM_CONSTANT_Methodref:
duke@435 1619 case JVM_CONSTANT_InterfaceMethodref:
duke@435 1620 case JVM_CONSTANT_NameAndType:
jrose@2268 1621 return 5;
jrose@2268 1622
jrose@2015 1623 case JVM_CONSTANT_InvokeDynamic:
jrose@2353 1624 // u1 tag, u2 bsm, u2 nt
jrose@2353 1625 return 5;
duke@435 1626
duke@435 1627 case JVM_CONSTANT_Long:
duke@435 1628 case JVM_CONSTANT_Double:
duke@435 1629 return 9;
duke@435 1630 }
duke@435 1631 assert(false, "cpool_entry_size: Invalid constant pool entry tag");
duke@435 1632 return 1;
duke@435 1633 } /* end cpool_entry_size */
duke@435 1634
duke@435 1635
duke@435 1636 // SymbolHashMap is used to find a constant pool index from a string.
duke@435 1637 // This function fills in SymbolHashMaps, one for utf8s and one for
duke@435 1638 // class names, returns size of the cpool raw bytes.
coleenp@4037 1639 jint ConstantPool::hash_entries_to(SymbolHashMap *symmap,
duke@435 1640 SymbolHashMap *classmap) {
duke@435 1641 jint size = 0;
duke@435 1642
duke@435 1643 for (u2 idx = 1; idx < length(); idx++) {
duke@435 1644 u2 tag = tag_at(idx).value();
duke@435 1645 size += cpool_entry_size(idx);
duke@435 1646
duke@435 1647 switch(tag) {
duke@435 1648 case JVM_CONSTANT_Utf8: {
coleenp@2497 1649 Symbol* sym = symbol_at(idx);
duke@435 1650 symmap->add_entry(sym, idx);
duke@435 1651 DBG(printf("adding symbol entry %s = %d\n", sym->as_utf8(), idx));
duke@435 1652 break;
duke@435 1653 }
duke@435 1654 case JVM_CONSTANT_Class:
duke@435 1655 case JVM_CONSTANT_UnresolvedClass:
duke@435 1656 case JVM_CONSTANT_UnresolvedClassInError: {
coleenp@2497 1657 Symbol* sym = klass_name_at(idx);
duke@435 1658 classmap->add_entry(sym, idx);
duke@435 1659 DBG(printf("adding class entry %s = %d\n", sym->as_utf8(), idx));
duke@435 1660 break;
duke@435 1661 }
duke@435 1662 case JVM_CONSTANT_Long:
duke@435 1663 case JVM_CONSTANT_Double: {
duke@435 1664 idx++; // Both Long and Double take two cpool slots
duke@435 1665 break;
duke@435 1666 }
duke@435 1667 }
duke@435 1668 }
duke@435 1669 return size;
duke@435 1670 } /* end hash_utf8_entries_to */
duke@435 1671
duke@435 1672
duke@435 1673 // Copy cpool bytes.
duke@435 1674 // Returns:
duke@435 1675 // 0, in case of OutOfMemoryError
duke@435 1676 // -1, in case of internal error
duke@435 1677 // > 0, count of the raw cpool bytes that have been copied
coleenp@4037 1678 int ConstantPool::copy_cpool_bytes(int cpool_size,
duke@435 1679 SymbolHashMap* tbl,
duke@435 1680 unsigned char *bytes) {
duke@435 1681 u2 idx1, idx2;
duke@435 1682 jint size = 0;
duke@435 1683 jint cnt = length();
duke@435 1684 unsigned char *start_bytes = bytes;
duke@435 1685
duke@435 1686 for (jint idx = 1; idx < cnt; idx++) {
duke@435 1687 u1 tag = tag_at(idx).value();
duke@435 1688 jint ent_size = cpool_entry_size(idx);
duke@435 1689
duke@435 1690 assert(size + ent_size <= cpool_size, "Size mismatch");
duke@435 1691
duke@435 1692 *bytes = tag;
duke@435 1693 DBG(printf("#%03hd tag=%03hd, ", idx, tag));
duke@435 1694 switch(tag) {
duke@435 1695 case JVM_CONSTANT_Invalid: {
duke@435 1696 DBG(printf("JVM_CONSTANT_Invalid"));
duke@435 1697 break;
duke@435 1698 }
duke@435 1699 case JVM_CONSTANT_Unicode: {
duke@435 1700 assert(false, "Wrong constant pool tag: JVM_CONSTANT_Unicode");
duke@435 1701 DBG(printf("JVM_CONSTANT_Unicode"));
duke@435 1702 break;
duke@435 1703 }
duke@435 1704 case JVM_CONSTANT_Utf8: {
coleenp@2497 1705 Symbol* sym = symbol_at(idx);
duke@435 1706 char* str = sym->as_utf8();
duke@435 1707 // Warning! It's crashing on x86 with len = sym->utf8_length()
duke@435 1708 int len = (int) strlen(str);
duke@435 1709 Bytes::put_Java_u2((address) (bytes+1), (u2) len);
duke@435 1710 for (int i = 0; i < len; i++) {
duke@435 1711 bytes[3+i] = (u1) str[i];
duke@435 1712 }
duke@435 1713 DBG(printf("JVM_CONSTANT_Utf8: %s ", str));
duke@435 1714 break;
duke@435 1715 }
duke@435 1716 case JVM_CONSTANT_Integer: {
duke@435 1717 jint val = int_at(idx);
duke@435 1718 Bytes::put_Java_u4((address) (bytes+1), *(u4*)&val);
duke@435 1719 break;
duke@435 1720 }
duke@435 1721 case JVM_CONSTANT_Float: {
duke@435 1722 jfloat val = float_at(idx);
duke@435 1723 Bytes::put_Java_u4((address) (bytes+1), *(u4*)&val);
duke@435 1724 break;
duke@435 1725 }
duke@435 1726 case JVM_CONSTANT_Long: {
duke@435 1727 jlong val = long_at(idx);
duke@435 1728 Bytes::put_Java_u8((address) (bytes+1), *(u8*)&val);
duke@435 1729 idx++; // Long takes two cpool slots
duke@435 1730 break;
duke@435 1731 }
duke@435 1732 case JVM_CONSTANT_Double: {
duke@435 1733 jdouble val = double_at(idx);
duke@435 1734 Bytes::put_Java_u8((address) (bytes+1), *(u8*)&val);
duke@435 1735 idx++; // Double takes two cpool slots
duke@435 1736 break;
duke@435 1737 }
duke@435 1738 case JVM_CONSTANT_Class:
duke@435 1739 case JVM_CONSTANT_UnresolvedClass:
duke@435 1740 case JVM_CONSTANT_UnresolvedClassInError: {
duke@435 1741 *bytes = JVM_CONSTANT_Class;
coleenp@2497 1742 Symbol* sym = klass_name_at(idx);
duke@435 1743 idx1 = tbl->symbol_to_value(sym);
duke@435 1744 assert(idx1 != 0, "Have not found a hashtable entry");
duke@435 1745 Bytes::put_Java_u2((address) (bytes+1), idx1);
duke@435 1746 DBG(printf("JVM_CONSTANT_Class: idx=#%03hd, %s", idx1, sym->as_utf8()));
duke@435 1747 break;
duke@435 1748 }
duke@435 1749 case JVM_CONSTANT_String: {
duke@435 1750 *bytes = JVM_CONSTANT_String;
coleenp@2497 1751 Symbol* sym = unresolved_string_at(idx);
duke@435 1752 idx1 = tbl->symbol_to_value(sym);
duke@435 1753 assert(idx1 != 0, "Have not found a hashtable entry");
duke@435 1754 Bytes::put_Java_u2((address) (bytes+1), idx1);
mikael@4889 1755 DBG(printf("JVM_CONSTANT_String: idx=#%03hd, %s", idx1, sym->as_utf8()));
duke@435 1756 break;
duke@435 1757 }
duke@435 1758 case JVM_CONSTANT_Fieldref:
duke@435 1759 case JVM_CONSTANT_Methodref:
duke@435 1760 case JVM_CONSTANT_InterfaceMethodref: {
duke@435 1761 idx1 = uncached_klass_ref_index_at(idx);
duke@435 1762 idx2 = uncached_name_and_type_ref_index_at(idx);
duke@435 1763 Bytes::put_Java_u2((address) (bytes+1), idx1);
duke@435 1764 Bytes::put_Java_u2((address) (bytes+3), idx2);
duke@435 1765 DBG(printf("JVM_CONSTANT_Methodref: %hd %hd", idx1, idx2));
duke@435 1766 break;
duke@435 1767 }
duke@435 1768 case JVM_CONSTANT_NameAndType: {
duke@435 1769 idx1 = name_ref_index_at(idx);
duke@435 1770 idx2 = signature_ref_index_at(idx);
duke@435 1771 Bytes::put_Java_u2((address) (bytes+1), idx1);
duke@435 1772 Bytes::put_Java_u2((address) (bytes+3), idx2);
duke@435 1773 DBG(printf("JVM_CONSTANT_NameAndType: %hd %hd", idx1, idx2));
duke@435 1774 break;
duke@435 1775 }
duke@435 1776 case JVM_CONSTANT_ClassIndex: {
duke@435 1777 *bytes = JVM_CONSTANT_Class;
duke@435 1778 idx1 = klass_index_at(idx);
duke@435 1779 Bytes::put_Java_u2((address) (bytes+1), idx1);
duke@435 1780 DBG(printf("JVM_CONSTANT_ClassIndex: %hd", idx1));
duke@435 1781 break;
duke@435 1782 }
duke@435 1783 case JVM_CONSTANT_StringIndex: {
duke@435 1784 *bytes = JVM_CONSTANT_String;
duke@435 1785 idx1 = string_index_at(idx);
duke@435 1786 Bytes::put_Java_u2((address) (bytes+1), idx1);
duke@435 1787 DBG(printf("JVM_CONSTANT_StringIndex: %hd", idx1));
duke@435 1788 break;
duke@435 1789 }
coleenp@4037 1790 case JVM_CONSTANT_MethodHandle:
coleenp@4037 1791 case JVM_CONSTANT_MethodHandleInError: {
jrose@1957 1792 *bytes = JVM_CONSTANT_MethodHandle;
iklam@5760 1793 int kind = method_handle_ref_kind_at_error_ok(idx);
iklam@5760 1794 idx1 = method_handle_index_at_error_ok(idx);
jrose@1957 1795 *(bytes+1) = (unsigned char) kind;
jrose@1957 1796 Bytes::put_Java_u2((address) (bytes+2), idx1);
jrose@1957 1797 DBG(printf("JVM_CONSTANT_MethodHandle: %d %hd", kind, idx1));
jrose@1957 1798 break;
jrose@1957 1799 }
coleenp@4037 1800 case JVM_CONSTANT_MethodType:
coleenp@4037 1801 case JVM_CONSTANT_MethodTypeInError: {
jrose@1957 1802 *bytes = JVM_CONSTANT_MethodType;
iklam@5760 1803 idx1 = method_type_index_at_error_ok(idx);
jrose@1957 1804 Bytes::put_Java_u2((address) (bytes+1), idx1);
jrose@1957 1805 DBG(printf("JVM_CONSTANT_MethodType: %hd", idx1));
jrose@1957 1806 break;
jrose@1957 1807 }
jrose@2015 1808 case JVM_CONSTANT_InvokeDynamic: {
jrose@2353 1809 *bytes = tag;
jrose@2353 1810 idx1 = extract_low_short_from_int(*int_at_addr(idx));
jrose@2353 1811 idx2 = extract_high_short_from_int(*int_at_addr(idx));
jrose@2353 1812 assert(idx2 == invoke_dynamic_name_and_type_ref_index_at(idx), "correct half of u4");
jrose@2015 1813 Bytes::put_Java_u2((address) (bytes+1), idx1);
jrose@2015 1814 Bytes::put_Java_u2((address) (bytes+3), idx2);
jrose@2353 1815 DBG(printf("JVM_CONSTANT_InvokeDynamic: %hd %hd", idx1, idx2));
jrose@2015 1816 break;
jrose@2015 1817 }
duke@435 1818 }
duke@435 1819 DBG(printf("\n"));
duke@435 1820 bytes += ent_size;
duke@435 1821 size += ent_size;
duke@435 1822 }
duke@435 1823 assert(size == cpool_size, "Size mismatch");
duke@435 1824
duke@435 1825 // Keep temorarily for debugging until it's stable.
duke@435 1826 DBG(print_cpool_bytes(cnt, start_bytes));
duke@435 1827 return (int)(bytes - start_bytes);
duke@435 1828 } /* end copy_cpool_bytes */
duke@435 1829
mikael@4889 1830 #undef DBG
mikael@4889 1831
duke@435 1832
coleenp@4037 1833 void ConstantPool::set_on_stack(const bool value) {
coleenp@4490 1834 if (value) {
stefank@7333 1835 int old_flags = *const_cast<volatile int *>(&_flags);
stefank@7333 1836 while ((old_flags & _on_stack) == 0) {
stefank@7333 1837 int new_flags = old_flags | _on_stack;
stefank@7333 1838 int result = Atomic::cmpxchg(new_flags, &_flags, old_flags);
stefank@7333 1839
stefank@7333 1840 if (result == old_flags) {
stefank@7333 1841 // Succeeded.
stefank@7333 1842 MetadataOnStackMark::record(this, Thread::current());
stefank@7333 1843 return;
stefank@7333 1844 }
stefank@7333 1845 old_flags = result;
stefank@7333 1846 }
coleenp@4490 1847 } else {
stefank@7333 1848 // Clearing is done single-threadedly.
coleenp@4490 1849 _flags &= ~_on_stack;
coleenp@4490 1850 }
coleenp@4037 1851 }
coleenp@4037 1852
coleenp@4037 1853 // JSR 292 support for patching constant pool oops after the class is linked and
coleenp@4037 1854 // the oop array for resolved references are created.
coleenp@4037 1855 // We can't do this during classfile parsing, which is how the other indexes are
coleenp@4037 1856 // patched. The other patches are applied early for some error checking
coleenp@4037 1857 // so only defer the pseudo_strings.
coleenp@4037 1858 void ConstantPool::patch_resolved_references(
coleenp@4037 1859 GrowableArray<Handle>* cp_patches) {
coleenp@4037 1860 assert(EnableInvokeDynamic, "");
coleenp@4037 1861 for (int index = 1; index < cp_patches->length(); index++) { // Index 0 is unused
coleenp@4037 1862 Handle patch = cp_patches->at(index);
coleenp@4037 1863 if (patch.not_null()) {
coleenp@4037 1864 assert (tag_at(index).is_string(), "should only be string left");
coleenp@4037 1865 // Patching a string means pre-resolving it.
coleenp@4037 1866 // The spelling in the constant pool is ignored.
coleenp@4037 1867 // The constant reference may be any object whatever.
coleenp@4037 1868 // If it is not a real interned string, the constant is referred
coleenp@4037 1869 // to as a "pseudo-string", and must be presented to the CP
coleenp@4037 1870 // explicitly, because it may require scavenging.
coleenp@4037 1871 int obj_index = cp_to_object_index(index);
coleenp@4037 1872 pseudo_string_at_put(index, obj_index, patch());
coleenp@4037 1873 DEBUG_ONLY(cp_patches->at_put(index, Handle());)
coleenp@4037 1874 }
coleenp@4037 1875 }
coleenp@4037 1876 #ifdef ASSERT
coleenp@4037 1877 // Ensure that all the patches have been used.
coleenp@4037 1878 for (int index = 0; index < cp_patches->length(); index++) {
coleenp@4037 1879 assert(cp_patches->at(index).is_null(),
coleenp@4037 1880 err_msg("Unused constant pool patch at %d in class file %s",
coleenp@4037 1881 index,
coleenp@4251 1882 pool_holder()->external_name()));
coleenp@4037 1883 }
coleenp@4037 1884 #endif // ASSERT
coleenp@4037 1885 }
coleenp@4037 1886
coleenp@4037 1887 #ifndef PRODUCT
coleenp@4037 1888
coleenp@4037 1889 // CompileTheWorld support. Preload all classes loaded references in the passed in constantpool
coleenp@4037 1890 void ConstantPool::preload_and_initialize_all_classes(ConstantPool* obj, TRAPS) {
coleenp@4037 1891 guarantee(obj->is_constantPool(), "object must be constant pool");
coleenp@4037 1892 constantPoolHandle cp(THREAD, (ConstantPool*)obj);
coleenp@4037 1893 guarantee(cp->pool_holder() != NULL, "must be fully loaded");
coleenp@4037 1894
coleenp@4037 1895 for (int i = 0; i< cp->length(); i++) {
coleenp@4037 1896 if (cp->tag_at(i).is_unresolved_klass()) {
coleenp@4037 1897 // This will force loading of the class
coleenp@4037 1898 Klass* klass = cp->klass_at(i, CHECK);
coleenp@4037 1899 if (klass->oop_is_instance()) {
coleenp@4037 1900 // Force initialization of class
coleenp@4037 1901 InstanceKlass::cast(klass)->initialize(CHECK);
coleenp@4037 1902 }
coleenp@4037 1903 }
coleenp@4037 1904 }
coleenp@4037 1905 }
coleenp@4037 1906
coleenp@4037 1907 #endif
coleenp@4037 1908
coleenp@4037 1909
coleenp@4037 1910 // Printing
coleenp@4037 1911
coleenp@4037 1912 void ConstantPool::print_on(outputStream* st) const {
coleenp@4037 1913 EXCEPTION_MARK;
coleenp@4037 1914 assert(is_constantPool(), "must be constantPool");
drchase@6680 1915 st->print_cr("%s", internal_name());
coleenp@4037 1916 if (flags() != 0) {
coleenp@4037 1917 st->print(" - flags: 0x%x", flags());
coleenp@4037 1918 if (has_preresolution()) st->print(" has_preresolution");
coleenp@4490 1919 if (on_stack()) st->print(" on_stack");
coleenp@4037 1920 st->cr();
coleenp@4037 1921 }
coleenp@4037 1922 if (pool_holder() != NULL) {
coleenp@4037 1923 st->print_cr(" - holder: " INTPTR_FORMAT, pool_holder());
coleenp@4037 1924 }
coleenp@4037 1925 st->print_cr(" - cache: " INTPTR_FORMAT, cache());
hseigel@5784 1926 st->print_cr(" - resolved_references: " INTPTR_FORMAT, (void *)resolved_references());
coleenp@4037 1927 st->print_cr(" - reference_map: " INTPTR_FORMAT, reference_map());
coleenp@4037 1928
coleenp@4037 1929 for (int index = 1; index < length(); index++) { // Index 0 is unused
coleenp@4037 1930 ((ConstantPool*)this)->print_entry_on(index, st);
coleenp@4037 1931 switch (tag_at(index).value()) {
coleenp@4037 1932 case JVM_CONSTANT_Long :
coleenp@4037 1933 case JVM_CONSTANT_Double :
coleenp@4037 1934 index++; // Skip entry following eigth-byte constant
coleenp@4037 1935 }
coleenp@4037 1936
coleenp@4037 1937 }
coleenp@4037 1938 st->cr();
coleenp@4037 1939 }
coleenp@4037 1940
coleenp@4037 1941 // Print one constant pool entry
coleenp@4037 1942 void ConstantPool::print_entry_on(const int index, outputStream* st) {
coleenp@4037 1943 EXCEPTION_MARK;
coleenp@4037 1944 st->print(" - %3d : ", index);
coleenp@4037 1945 tag_at(index).print_on(st);
coleenp@4037 1946 st->print(" : ");
coleenp@4037 1947 switch (tag_at(index).value()) {
coleenp@4037 1948 case JVM_CONSTANT_Class :
coleenp@4037 1949 { Klass* k = klass_at(index, CATCH);
morris@4782 1950 guarantee(k != NULL, "need klass");
coleenp@4037 1951 k->print_value_on(st);
coleenp@4037 1952 st->print(" {0x%lx}", (address)k);
coleenp@4037 1953 }
coleenp@4037 1954 break;
coleenp@4037 1955 case JVM_CONSTANT_Fieldref :
coleenp@4037 1956 case JVM_CONSTANT_Methodref :
coleenp@4037 1957 case JVM_CONSTANT_InterfaceMethodref :
coleenp@4037 1958 st->print("klass_index=%d", uncached_klass_ref_index_at(index));
coleenp@4037 1959 st->print(" name_and_type_index=%d", uncached_name_and_type_ref_index_at(index));
coleenp@4037 1960 break;
coleenp@4037 1961 case JVM_CONSTANT_String :
coleenp@4643 1962 if (is_pseudo_string_at(index)) {
coleenp@4643 1963 oop anObj = pseudo_string_at(index);
coleenp@4643 1964 anObj->print_value_on(st);
coleenp@4643 1965 st->print(" {0x%lx}", (address)anObj);
coleenp@4643 1966 } else {
coleenp@4643 1967 unresolved_string_at(index)->print_value_on(st);
coleenp@4643 1968 }
coleenp@4037 1969 break;
coleenp@4037 1970 case JVM_CONSTANT_Integer :
coleenp@4037 1971 st->print("%d", int_at(index));
coleenp@4037 1972 break;
coleenp@4037 1973 case JVM_CONSTANT_Float :
coleenp@4037 1974 st->print("%f", float_at(index));
coleenp@4037 1975 break;
coleenp@4037 1976 case JVM_CONSTANT_Long :
coleenp@4037 1977 st->print_jlong(long_at(index));
coleenp@4037 1978 break;
coleenp@4037 1979 case JVM_CONSTANT_Double :
coleenp@4037 1980 st->print("%lf", double_at(index));
coleenp@4037 1981 break;
coleenp@4037 1982 case JVM_CONSTANT_NameAndType :
coleenp@4037 1983 st->print("name_index=%d", name_ref_index_at(index));
coleenp@4037 1984 st->print(" signature_index=%d", signature_ref_index_at(index));
coleenp@4037 1985 break;
coleenp@4037 1986 case JVM_CONSTANT_Utf8 :
coleenp@4037 1987 symbol_at(index)->print_value_on(st);
coleenp@4037 1988 break;
coleenp@4037 1989 case JVM_CONSTANT_UnresolvedClass : // fall-through
coleenp@4037 1990 case JVM_CONSTANT_UnresolvedClassInError: {
coleenp@4037 1991 // unresolved_klass_at requires lock or safe world.
coleenp@4037 1992 CPSlot entry = slot_at(index);
coleenp@4037 1993 if (entry.is_resolved()) {
coleenp@4037 1994 entry.get_klass()->print_value_on(st);
coleenp@4037 1995 } else {
coleenp@4037 1996 entry.get_symbol()->print_value_on(st);
coleenp@4037 1997 }
coleenp@4037 1998 }
coleenp@4037 1999 break;
coleenp@4037 2000 case JVM_CONSTANT_MethodHandle :
coleenp@4037 2001 case JVM_CONSTANT_MethodHandleInError :
iklam@5760 2002 st->print("ref_kind=%d", method_handle_ref_kind_at_error_ok(index));
iklam@5760 2003 st->print(" ref_index=%d", method_handle_index_at_error_ok(index));
coleenp@4037 2004 break;
coleenp@4037 2005 case JVM_CONSTANT_MethodType :
coleenp@4037 2006 case JVM_CONSTANT_MethodTypeInError :
iklam@5760 2007 st->print("signature_index=%d", method_type_index_at_error_ok(index));
coleenp@4037 2008 break;
coleenp@4037 2009 case JVM_CONSTANT_InvokeDynamic :
coleenp@4037 2010 {
coleenp@4037 2011 st->print("bootstrap_method_index=%d", invoke_dynamic_bootstrap_method_ref_index_at(index));
coleenp@4037 2012 st->print(" name_and_type_index=%d", invoke_dynamic_name_and_type_ref_index_at(index));
coleenp@4037 2013 int argc = invoke_dynamic_argument_count_at(index);
coleenp@4037 2014 if (argc > 0) {
coleenp@4037 2015 for (int arg_i = 0; arg_i < argc; arg_i++) {
coleenp@4037 2016 int arg = invoke_dynamic_argument_index_at(index, arg_i);
coleenp@4037 2017 st->print((arg_i == 0 ? " arguments={%d" : ", %d"), arg);
coleenp@4037 2018 }
coleenp@4037 2019 st->print("}");
coleenp@4037 2020 }
coleenp@4037 2021 }
coleenp@4037 2022 break;
coleenp@4037 2023 default:
coleenp@4037 2024 ShouldNotReachHere();
coleenp@4037 2025 break;
coleenp@4037 2026 }
coleenp@4037 2027 st->cr();
coleenp@4037 2028 }
coleenp@4037 2029
coleenp@4037 2030 void ConstantPool::print_value_on(outputStream* st) const {
coleenp@4037 2031 assert(is_constantPool(), "must be constantPool");
coleenp@4037 2032 st->print("constant pool [%d]", length());
coleenp@4037 2033 if (has_preresolution()) st->print("/preresolution");
coleenp@4037 2034 if (operands() != NULL) st->print("/operands[%d]", operands()->length());
coleenp@4037 2035 print_address_on(st);
coleenp@4037 2036 st->print(" for ");
coleenp@4037 2037 pool_holder()->print_value_on(st);
coleenp@4037 2038 if (pool_holder() != NULL) {
coleenp@4251 2039 bool extra = (pool_holder()->constants() != this);
coleenp@4037 2040 if (extra) st->print(" (extra)");
coleenp@4037 2041 }
coleenp@4037 2042 if (cache() != NULL) {
coleenp@4037 2043 st->print(" cache=" PTR_FORMAT, cache());
coleenp@4037 2044 }
coleenp@4037 2045 }
coleenp@4037 2046
acorn@4497 2047 #if INCLUDE_SERVICES
acorn@4497 2048 // Size Statistics
acorn@4497 2049 void ConstantPool::collect_statistics(KlassSizeStats *sz) const {
acorn@4497 2050 sz->_cp_all_bytes += (sz->_cp_bytes = sz->count(this));
acorn@4497 2051 sz->_cp_all_bytes += (sz->_cp_tags_bytes = sz->count_array(tags()));
acorn@4497 2052 sz->_cp_all_bytes += (sz->_cp_cache_bytes = sz->count(cache()));
acorn@4497 2053 sz->_cp_all_bytes += (sz->_cp_operands_bytes = sz->count_array(operands()));
acorn@4497 2054 sz->_cp_all_bytes += (sz->_cp_refmap_bytes = sz->count_array(reference_map()));
acorn@4497 2055
acorn@4497 2056 sz->_ro_bytes += sz->_cp_operands_bytes + sz->_cp_tags_bytes +
acorn@4497 2057 sz->_cp_refmap_bytes;
acorn@4497 2058 sz->_rw_bytes += sz->_cp_bytes + sz->_cp_cache_bytes;
acorn@4497 2059 }
acorn@4497 2060 #endif // INCLUDE_SERVICES
coleenp@4037 2061
coleenp@4037 2062 // Verification
coleenp@4037 2063
coleenp@4037 2064 void ConstantPool::verify_on(outputStream* st) {
coleenp@4037 2065 guarantee(is_constantPool(), "object must be constant pool");
coleenp@4037 2066 for (int i = 0; i< length(); i++) {
coleenp@4037 2067 constantTag tag = tag_at(i);
coleenp@4037 2068 CPSlot entry = slot_at(i);
coleenp@4037 2069 if (tag.is_klass()) {
coleenp@4037 2070 if (entry.is_resolved()) {
coleenp@4037 2071 guarantee(entry.get_klass()->is_klass(), "should be klass");
coleenp@4037 2072 }
coleenp@4037 2073 } else if (tag.is_unresolved_klass()) {
coleenp@4037 2074 if (entry.is_resolved()) {
coleenp@4037 2075 guarantee(entry.get_klass()->is_klass(), "should be klass");
coleenp@4037 2076 }
coleenp@4037 2077 } else if (tag.is_symbol()) {
coleenp@4037 2078 guarantee(entry.get_symbol()->refcount() != 0, "should have nonzero reference count");
coleenp@4037 2079 } else if (tag.is_string()) {
coleenp@4037 2080 guarantee(entry.get_symbol()->refcount() != 0, "should have nonzero reference count");
coleenp@4037 2081 }
coleenp@4037 2082 }
coleenp@4037 2083 if (cache() != NULL) {
coleenp@4037 2084 // Note: cache() can be NULL before a class is completely setup or
coleenp@4037 2085 // in temporary constant pools used during constant pool merging
coleenp@4037 2086 guarantee(cache()->is_constantPoolCache(), "should be constant pool cache");
coleenp@4037 2087 }
coleenp@4037 2088 if (pool_holder() != NULL) {
coleenp@4037 2089 // Note: pool_holder() can be NULL in temporary constant pools
coleenp@4037 2090 // used during constant pool merging
coleenp@4037 2091 guarantee(pool_holder()->is_klass(), "should be klass");
coleenp@4037 2092 }
coleenp@4037 2093 }
coleenp@4037 2094
coleenp@4037 2095
coleenp@2497 2096 void SymbolHashMap::add_entry(Symbol* sym, u2 value) {
duke@435 2097 char *str = sym->as_utf8();
duke@435 2098 unsigned int hash = compute_hash(str, sym->utf8_length());
duke@435 2099 unsigned int index = hash % table_size();
duke@435 2100
duke@435 2101 // check if already in map
duke@435 2102 // we prefer the first entry since it is more likely to be what was used in
duke@435 2103 // the class file
duke@435 2104 for (SymbolHashMapEntry *en = bucket(index); en != NULL; en = en->next()) {
duke@435 2105 assert(en->symbol() != NULL, "SymbolHashMapEntry symbol is NULL");
duke@435 2106 if (en->hash() == hash && en->symbol() == sym) {
duke@435 2107 return; // already there
duke@435 2108 }
duke@435 2109 }
duke@435 2110
duke@435 2111 SymbolHashMapEntry* entry = new SymbolHashMapEntry(hash, sym, value);
duke@435 2112 entry->set_next(bucket(index));
duke@435 2113 _buckets[index].set_entry(entry);
duke@435 2114 assert(entry->symbol() != NULL, "SymbolHashMapEntry symbol is NULL");
duke@435 2115 }
duke@435 2116
coleenp@2497 2117 SymbolHashMapEntry* SymbolHashMap::find_entry(Symbol* sym) {
duke@435 2118 assert(sym != NULL, "SymbolHashMap::find_entry - symbol is NULL");
duke@435 2119 char *str = sym->as_utf8();
duke@435 2120 int len = sym->utf8_length();
duke@435 2121 unsigned int hash = SymbolHashMap::compute_hash(str, len);
duke@435 2122 unsigned int index = hash % table_size();
duke@435 2123 for (SymbolHashMapEntry *en = bucket(index); en != NULL; en = en->next()) {
duke@435 2124 assert(en->symbol() != NULL, "SymbolHashMapEntry symbol is NULL");
duke@435 2125 if (en->hash() == hash && en->symbol() == sym) {
duke@435 2126 return en;
duke@435 2127 }
duke@435 2128 }
duke@435 2129 return NULL;
duke@435 2130 }

mercurial