src/share/vm/oops/constantPool.cpp

Tue, 30 Apr 2013 11:56:52 -0700

author
ccheung
date
Tue, 30 Apr 2013 11:56:52 -0700
changeset 4993
746b070f5022
parent 4984
c115fac239eb
child 5183
51af5fae397d
permissions
-rw-r--r--

8011661: Insufficient memory message says "malloc" when sometimes it should say "mmap"
Reviewed-by: coleenp, zgu, hseigel

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

mercurial