src/share/vm/oops/constantPool.cpp

Wed, 01 May 2013 08:07:59 -0700

author
bharadwaj
date
Wed, 01 May 2013 08:07:59 -0700
changeset 4998
08236d966eea
parent 4984
c115fac239eb
child 5183
51af5fae397d
permissions
-rw-r--r--

8013418: assert(i == total_args_passed) in AdapterHandlerLibrary::get_adapter since 8-b87
Summary: Do not treat static methods as miranda methods.
Reviewed-by: dholmes, acorn

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

mercurial