src/share/vm/oops/constantPool.cpp

Fri, 25 Jan 2013 15:06:18 -0500

author
acorn
date
Fri, 25 Jan 2013 15:06:18 -0500
changeset 4497
16fb9f942703
parent 4490
5daaddd917a1
child 4498
0d26ce8e9251
permissions
-rw-r--r--

6479360: PrintClassHistogram improvements
Summary: jcmd <pid> GC.class_stats (UnlockDiagnosticVMOptions)
Reviewed-by: coleenp, hseigel, sla, acorn
Contributed-by: ioi.lam@oracle.com

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

mercurial