src/share/vm/oops/constantPool.cpp

Wed, 09 Oct 2013 21:45:28 -0400

author
coleenp
date
Wed, 09 Oct 2013 21:45:28 -0400
changeset 5884
b4a4fdc1f464
parent 5784
190899198332
child 5889
28ca974cc21a
permissions
-rw-r--r--

8025185: MethodHandleInError and MethodTypeInError not handled in ConstantPool::compare_entry_to and copy_entry_to
Summary: Add missing cases.
Reviewed-by: sspitsyn, dcubed

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

mercurial