src/share/vm/oops/constantPool.cpp

Thu, 14 Jun 2018 09:15:08 -0700

author
kevinw
date
Thu, 14 Jun 2018 09:15:08 -0700
changeset 9327
f96fcd9e1e1b
parent 7333
b12a2a9b05ca
child 9344
ad057f2e3211
permissions
-rw-r--r--

8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
Summary: Need to add a space between macro identifier and string literal
Reviewed-by: bpittore, stefank, dholmes, kbarrett

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

mercurial