src/share/vm/oops/constantPoolOop.hpp

Sat, 30 Oct 2010 11:45:35 -0700

author
jrose
date
Sat, 30 Oct 2010 11:45:35 -0700
changeset 2265
d1896d1dda3e
parent 2015
083fde3b838e
child 2268
3b2dea75431e
permissions
-rw-r--r--

6981788: GC map generator sometimes picks up the wrong kind of instruction operand
Summary: Distinguish pool indexes from cache indexes in recently changed code.
Reviewed-by: never

     1 /*
     2  * Copyright (c) 1997, 2010, 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 // A constantPool is an array containing class constants as described in the
    26 // class file.
    27 //
    28 // Most of the constant pool entries are written during class parsing, which
    29 // is safe.  For klass and string types, the constant pool entry is
    30 // modified when the entry is resolved.  If a klass or string constant pool
    31 // entry is read without a lock, only the resolved state guarantees that
    32 // the entry in the constant pool is a klass or String object and
    33 // not a symbolOop.
    35 class SymbolHashMap;
    37 class constantPoolOopDesc : public oopDesc {
    38   friend class VMStructs;
    39   friend class BytecodeInterpreter;  // Directly extracts an oop in the pool for fast instanceof/checkcast
    40  private:
    41   typeArrayOop         _tags; // the tag array describing the constant pool's contents
    42   constantPoolCacheOop _cache;         // the cache holding interpreter runtime information
    43   klassOop             _pool_holder;   // the corresponding class
    44   int                  _flags;         // a few header bits to describe contents for GC
    45   int                  _length; // number of elements in the array
    46   volatile bool        _is_conc_safe; // if true, safe for concurrent
    47                                       // GC processing
    48   // only set to non-zero if constant pool is merged by RedefineClasses
    49   int                  _orig_length;
    51   void set_tags(typeArrayOop tags)             { oop_store_without_check((oop*)&_tags, tags); }
    52   void tag_at_put(int which, jbyte t)          { tags()->byte_at_put(which, t); }
    53   void release_tag_at_put(int which, jbyte t)  { tags()->release_byte_at_put(which, t); }
    55   enum FlagBit {
    56     FB_has_invokedynamic = 1,
    57     FB_has_pseudo_string = 2
    58   };
    60   int flags() const                         { return _flags; }
    61   void set_flags(int f)                     { _flags = f; }
    62   bool flag_at(FlagBit fb) const            { return (_flags & (1 << (int)fb)) != 0; }
    63   void set_flag_at(FlagBit fb);
    64   // no clear_flag_at function; they only increase
    66  private:
    67   intptr_t* base() const { return (intptr_t*) (((char*) this) + sizeof(constantPoolOopDesc)); }
    68   oop* tags_addr()       { return (oop*)&_tags; }
    69   oop* cache_addr()      { return (oop*)&_cache; }
    71   oop* obj_at_addr(int which) const {
    72     assert(is_within_bounds(which), "index out of bounds");
    73     return (oop*) &base()[which];
    74   }
    76   jint* int_at_addr(int which) const {
    77     assert(is_within_bounds(which), "index out of bounds");
    78     return (jint*) &base()[which];
    79   }
    81   jlong* long_at_addr(int which) const {
    82     assert(is_within_bounds(which), "index out of bounds");
    83     return (jlong*) &base()[which];
    84   }
    86   jfloat* float_at_addr(int which) const {
    87     assert(is_within_bounds(which), "index out of bounds");
    88     return (jfloat*) &base()[which];
    89   }
    91   jdouble* double_at_addr(int which) const {
    92     assert(is_within_bounds(which), "index out of bounds");
    93     return (jdouble*) &base()[which];
    94   }
    96  public:
    97   typeArrayOop tags() const                 { return _tags; }
    99   bool has_pseudo_string() const            { return flag_at(FB_has_pseudo_string); }
   100   bool has_invokedynamic() const            { return flag_at(FB_has_invokedynamic); }
   101   void set_pseudo_string()                  {    set_flag_at(FB_has_pseudo_string); }
   102   void set_invokedynamic()                  {    set_flag_at(FB_has_invokedynamic); }
   104   // Klass holding pool
   105   klassOop pool_holder() const              { return _pool_holder; }
   106   void set_pool_holder(klassOop k)          { oop_store_without_check((oop*)&_pool_holder, (oop) k); }
   107   oop* pool_holder_addr()                   { return (oop*)&_pool_holder; }
   109   // Interpreter runtime support
   110   constantPoolCacheOop cache() const        { return _cache; }
   111   void set_cache(constantPoolCacheOop cache){ oop_store((oop*)&_cache, cache); }
   113   // Assembly code support
   114   static int tags_offset_in_bytes()         { return offset_of(constantPoolOopDesc, _tags); }
   115   static int cache_offset_in_bytes()        { return offset_of(constantPoolOopDesc, _cache); }
   116   static int pool_holder_offset_in_bytes()  { return offset_of(constantPoolOopDesc, _pool_holder); }
   118   // Storing constants
   120   void klass_at_put(int which, klassOop k) {
   121     oop_store_without_check((volatile oop *)obj_at_addr(which), oop(k));
   122     // The interpreter assumes when the tag is stored, the klass is resolved
   123     // and the klassOop is a klass rather than a symbolOop, so we need
   124     // hardware store ordering here.
   125     release_tag_at_put(which, JVM_CONSTANT_Class);
   126     if (UseConcMarkSweepGC) {
   127       // In case the earlier card-mark was consumed by a concurrent
   128       // marking thread before the tag was updated, redirty the card.
   129       oop_store_without_check((volatile oop *)obj_at_addr(which), oop(k));
   130     }
   131   }
   133   // For temporary use while constructing constant pool
   134   void klass_index_at_put(int which, int name_index) {
   135     tag_at_put(which, JVM_CONSTANT_ClassIndex);
   136     *int_at_addr(which) = name_index;
   137   }
   139   // Temporary until actual use
   140   void unresolved_klass_at_put(int which, symbolOop s) {
   141     // Overwrite the old index with a GC friendly value so
   142     // that if GC looks during the transition it won't try
   143     // to treat a small integer as oop.
   144     *obj_at_addr(which) = NULL;
   145     release_tag_at_put(which, JVM_CONSTANT_UnresolvedClass);
   146     oop_store_without_check(obj_at_addr(which), oop(s));
   147   }
   149   void method_handle_index_at_put(int which, int ref_kind, int ref_index) {
   150     tag_at_put(which, JVM_CONSTANT_MethodHandle);
   151     *int_at_addr(which) = ((jint) ref_index<<16) | ref_kind;
   152   }
   154   void method_type_index_at_put(int which, int ref_index) {
   155     tag_at_put(which, JVM_CONSTANT_MethodType);
   156     *int_at_addr(which) = ref_index;
   157   }
   159   void invoke_dynamic_at_put(int which, int bootstrap_method_index, int name_and_type_index) {
   160     tag_at_put(which, JVM_CONSTANT_InvokeDynamic);
   161     *int_at_addr(which) = ((jint) name_and_type_index<<16) | bootstrap_method_index;
   162   }
   164   // Temporary until actual use
   165   void unresolved_string_at_put(int which, symbolOop s) {
   166     *obj_at_addr(which) = NULL;
   167     release_tag_at_put(which, JVM_CONSTANT_UnresolvedString);
   168     oop_store_without_check(obj_at_addr(which), oop(s));
   169   }
   171   void int_at_put(int which, jint i) {
   172     tag_at_put(which, JVM_CONSTANT_Integer);
   173     *int_at_addr(which) = i;
   174   }
   176   void long_at_put(int which, jlong l) {
   177     tag_at_put(which, JVM_CONSTANT_Long);
   178     // *long_at_addr(which) = l;
   179     Bytes::put_native_u8((address)long_at_addr(which), *((u8*) &l));
   180   }
   182   void float_at_put(int which, jfloat f) {
   183     tag_at_put(which, JVM_CONSTANT_Float);
   184     *float_at_addr(which) = f;
   185   }
   187   void double_at_put(int which, jdouble d) {
   188     tag_at_put(which, JVM_CONSTANT_Double);
   189     // *double_at_addr(which) = d;
   190     // u8 temp = *(u8*) &d;
   191     Bytes::put_native_u8((address) double_at_addr(which), *((u8*) &d));
   192   }
   194   void symbol_at_put(int which, symbolOop s) {
   195     tag_at_put(which, JVM_CONSTANT_Utf8);
   196     oop_store_without_check(obj_at_addr(which), oop(s));
   197   }
   199   void string_at_put(int which, oop str) {
   200     oop_store((volatile oop*)obj_at_addr(which), str);
   201     release_tag_at_put(which, JVM_CONSTANT_String);
   202     if (UseConcMarkSweepGC) {
   203       // In case the earlier card-mark was consumed by a concurrent
   204       // marking thread before the tag was updated, redirty the card.
   205       oop_store_without_check((volatile oop *)obj_at_addr(which), str);
   206     }
   207   }
   209   void object_at_put(int which, oop str) {
   210     oop_store((volatile oop*) obj_at_addr(which), str);
   211     release_tag_at_put(which, JVM_CONSTANT_Object);
   212     if (UseConcMarkSweepGC) {
   213       // In case the earlier card-mark was consumed by a concurrent
   214       // marking thread before the tag was updated, redirty the card.
   215       oop_store_without_check((volatile oop*) obj_at_addr(which), str);
   216     }
   217   }
   219   // For temporary use while constructing constant pool
   220   void string_index_at_put(int which, int string_index) {
   221     tag_at_put(which, JVM_CONSTANT_StringIndex);
   222     *int_at_addr(which) = string_index;
   223   }
   225   void field_at_put(int which, int class_index, int name_and_type_index) {
   226     tag_at_put(which, JVM_CONSTANT_Fieldref);
   227     *int_at_addr(which) = ((jint) name_and_type_index<<16) | class_index;
   228   }
   230   void method_at_put(int which, int class_index, int name_and_type_index) {
   231     tag_at_put(which, JVM_CONSTANT_Methodref);
   232     *int_at_addr(which) = ((jint) name_and_type_index<<16) | class_index;
   233   }
   235   void interface_method_at_put(int which, int class_index, int name_and_type_index) {
   236     tag_at_put(which, JVM_CONSTANT_InterfaceMethodref);
   237     *int_at_addr(which) = ((jint) name_and_type_index<<16) | class_index;  // Not so nice
   238   }
   240   void name_and_type_at_put(int which, int name_index, int signature_index) {
   241     tag_at_put(which, JVM_CONSTANT_NameAndType);
   242     *int_at_addr(which) = ((jint) signature_index<<16) | name_index;  // Not so nice
   243   }
   245   // Tag query
   247   constantTag tag_at(int which) const { return (constantTag)tags()->byte_at_acquire(which); }
   249   // Whether the entry is a pointer that must be GC'd.
   250   bool is_pointer_entry(int which) {
   251     constantTag tag = tag_at(which);
   252     return tag.is_klass() ||
   253       tag.is_unresolved_klass() ||
   254       tag.is_symbol() ||
   255       tag.is_unresolved_string() ||
   256       tag.is_string() ||
   257       tag.is_object();
   258   }
   260   // Fetching constants
   262   klassOop klass_at(int which, TRAPS) {
   263     constantPoolHandle h_this(THREAD, this);
   264     return klass_at_impl(h_this, which, CHECK_NULL);
   265   }
   267   symbolOop klass_name_at(int which);  // Returns the name, w/o resolving.
   269   klassOop resolved_klass_at(int which) {  // Used by Compiler
   270     guarantee(tag_at(which).is_klass(), "Corrupted constant pool");
   271     // Must do an acquire here in case another thread resolved the klass
   272     // behind our back, lest we later load stale values thru the oop.
   273     return klassOop((oop)OrderAccess::load_ptr_acquire(obj_at_addr(which)));
   274   }
   276   // This method should only be used with a cpool lock or during parsing or gc
   277   symbolOop unresolved_klass_at(int which) {     // Temporary until actual use
   278     symbolOop s = symbolOop((oop)OrderAccess::load_ptr_acquire(obj_at_addr(which)));
   279     // check that the klass is still unresolved.
   280     assert(tag_at(which).is_unresolved_klass(), "Corrupted constant pool");
   281     return s;
   282   }
   284   // RedefineClasses() API support:
   285   symbolOop klass_at_noresolve(int which) { return klass_name_at(which); }
   287   jint int_at(int which) {
   288     assert(tag_at(which).is_int(), "Corrupted constant pool");
   289     return *int_at_addr(which);
   290   }
   292   jlong long_at(int which) {
   293     assert(tag_at(which).is_long(), "Corrupted constant pool");
   294     // return *long_at_addr(which);
   295     u8 tmp = Bytes::get_native_u8((address)&base()[which]);
   296     return *((jlong*)&tmp);
   297   }
   299   jfloat float_at(int which) {
   300     assert(tag_at(which).is_float(), "Corrupted constant pool");
   301     return *float_at_addr(which);
   302   }
   304   jdouble double_at(int which) {
   305     assert(tag_at(which).is_double(), "Corrupted constant pool");
   306     u8 tmp = Bytes::get_native_u8((address)&base()[which]);
   307     return *((jdouble*)&tmp);
   308   }
   310   symbolOop symbol_at(int which) {
   311     assert(tag_at(which).is_utf8(), "Corrupted constant pool");
   312     return symbolOop(*obj_at_addr(which));
   313   }
   315   oop string_at(int which, TRAPS) {
   316     constantPoolHandle h_this(THREAD, this);
   317     return string_at_impl(h_this, which, CHECK_NULL);
   318   }
   320   oop object_at(int which) {
   321     assert(tag_at(which).is_object(), "Corrupted constant pool");
   322     return *obj_at_addr(which);
   323   }
   325   // A "pseudo-string" is an non-string oop that has found is way into
   326   // a String entry.
   327   // Under AnonymousClasses this can happen if the user patches a live
   328   // object into a CONSTANT_String entry of an anonymous class.
   329   // Method oops internally created for method handles may also
   330   // use pseudo-strings to link themselves to related metaobjects.
   332   bool is_pseudo_string_at(int which);
   334   oop pseudo_string_at(int which) {
   335     assert(tag_at(which).is_string(), "Corrupted constant pool");
   336     return *obj_at_addr(which);
   337   }
   339   void pseudo_string_at_put(int which, oop x) {
   340     assert(AnonymousClasses, "");
   341     set_pseudo_string();        // mark header
   342     assert(tag_at(which).is_string() || tag_at(which).is_unresolved_string(), "Corrupted constant pool");
   343     string_at_put(which, x);    // this works just fine
   344   }
   346   // only called when we are sure a string entry is already resolved (via an
   347   // earlier string_at call.
   348   oop resolved_string_at(int which) {
   349     assert(tag_at(which).is_string(), "Corrupted constant pool");
   350     // Must do an acquire here in case another thread resolved the klass
   351     // behind our back, lest we later load stale values thru the oop.
   352     return (oop)OrderAccess::load_ptr_acquire(obj_at_addr(which));
   353   }
   355   // This method should only be used with a cpool lock or during parsing or gc
   356   symbolOop unresolved_string_at(int which) {    // Temporary until actual use
   357     symbolOop s = symbolOop((oop)OrderAccess::load_ptr_acquire(obj_at_addr(which)));
   358     // check that the string is still unresolved.
   359     assert(tag_at(which).is_unresolved_string(), "Corrupted constant pool");
   360     return s;
   361   }
   363   // Returns an UTF8 for a CONSTANT_String entry at a given index.
   364   // UTF8 char* representation was chosen to avoid conversion of
   365   // java_lang_Strings at resolved entries into symbolOops
   366   // or vice versa.
   367   // Caller is responsible for checking for pseudo-strings.
   368   char* string_at_noresolve(int which);
   370   jint name_and_type_at(int which) {
   371     assert(tag_at(which).is_name_and_type(), "Corrupted constant pool");
   372     return *int_at_addr(which);
   373   }
   375   int method_handle_ref_kind_at(int which) {
   376     assert(tag_at(which).is_method_handle(), "Corrupted constant pool");
   377     return extract_low_short_from_int(*int_at_addr(which));  // mask out unwanted ref_index bits
   378   }
   379   int method_handle_index_at(int which) {
   380     assert(tag_at(which).is_method_handle(), "Corrupted constant pool");
   381     return extract_high_short_from_int(*int_at_addr(which));  // shift out unwanted ref_kind bits
   382   }
   383   int method_type_index_at(int which) {
   384     assert(tag_at(which).is_method_type(), "Corrupted constant pool");
   385     return *int_at_addr(which);
   386   }
   387   // Derived queries:
   388   symbolOop method_handle_name_ref_at(int which) {
   389     int member = method_handle_index_at(which);
   390     return impl_name_ref_at(member, true);
   391   }
   392   symbolOop method_handle_signature_ref_at(int which) {
   393     int member = method_handle_index_at(which);
   394     return impl_signature_ref_at(member, true);
   395   }
   396   int method_handle_klass_index_at(int which) {
   397     int member = method_handle_index_at(which);
   398     return impl_klass_ref_index_at(member, true);
   399   }
   400   symbolOop method_type_signature_at(int which) {
   401     int sym = method_type_index_at(which);
   402     return symbol_at(sym);
   403   }
   404   int invoke_dynamic_bootstrap_method_ref_index_at(int which) {
   405     assert(tag_at(which).is_invoke_dynamic(), "Corrupted constant pool");
   406     jint ref_index = *int_at_addr(which);
   407     return extract_low_short_from_int(ref_index);
   408   }
   409   int invoke_dynamic_name_and_type_ref_index_at(int which) {
   410     assert(tag_at(which).is_invoke_dynamic(), "Corrupted constant pool");
   411     jint ref_index = *int_at_addr(which);
   412     return extract_high_short_from_int(ref_index);
   413   }
   415   // The following methods (name/signature/klass_ref_at, klass_ref_at_noresolve,
   416   // name_and_type_ref_index_at) all expect to be passed indices obtained
   417   // directly from the bytecode.
   418   // If the indices are meant to refer to fields or methods, they are
   419   // actually rewritten constant pool cache indices.
   420   // The routine remap_instruction_operand_from_cache manages the adjustment
   421   // of these values back to constant pool indices.
   423   // There are also "uncached" versions which do not adjust the operand index; see below.
   425   // FIXME: Consider renaming these with a prefix "cached_" to make the distinction clear.
   426   // In a few cases (the verifier) there are uses before a cpcache has been built,
   427   // which are handled by a dynamic check in remap_instruction_operand_from_cache.
   428   // FIXME: Remove the dynamic check, and adjust all callers to specify the correct mode.
   430   // Lookup for entries consisting of (klass_index, name_and_type index)
   431   klassOop klass_ref_at(int which, TRAPS);
   432   symbolOop klass_ref_at_noresolve(int which);
   433   symbolOop name_ref_at(int which)                { return impl_name_ref_at(which, false); }
   434   symbolOop signature_ref_at(int which)           { return impl_signature_ref_at(which, false); }
   436   int klass_ref_index_at(int which)               { return impl_klass_ref_index_at(which, false); }
   437   int name_and_type_ref_index_at(int which)       { return impl_name_and_type_ref_index_at(which, false); }
   439   // Lookup for entries consisting of (name_index, signature_index)
   440   int name_ref_index_at(int which_nt);            // ==  low-order jshort of name_and_type_at(which_nt)
   441   int signature_ref_index_at(int which_nt);       // == high-order jshort of name_and_type_at(which_nt)
   443   BasicType basic_type_for_signature_at(int which);
   445   // Resolve string constants (to prevent allocation during compilation)
   446   void resolve_string_constants(TRAPS) {
   447     constantPoolHandle h_this(THREAD, this);
   448     resolve_string_constants_impl(h_this, CHECK);
   449   }
   451   // Resolve late bound constants.
   452   oop resolve_constant_at(int index, TRAPS) {
   453     constantPoolHandle h_this(THREAD, this);
   454     return resolve_constant_at_impl(h_this, index, -1, THREAD);
   455   }
   457   oop resolve_cached_constant_at(int cache_index, TRAPS) {
   458     constantPoolHandle h_this(THREAD, this);
   459     return resolve_constant_at_impl(h_this, -1, cache_index, THREAD);
   460   }
   462   // Klass name matches name at offset
   463   bool klass_name_at_matches(instanceKlassHandle k, int which);
   465   // Sizing
   466   int length() const                   { return _length; }
   467   void set_length(int length)          { _length = length; }
   469   // Tells whether index is within bounds.
   470   bool is_within_bounds(int index) const {
   471     return 0 <= index && index < length();
   472   }
   474   static int header_size()             { return sizeof(constantPoolOopDesc)/HeapWordSize; }
   475   static int object_size(int length)   { return align_object_size(header_size() + length); }
   476   int object_size()                    { return object_size(length()); }
   478   bool is_conc_safe()                  { return _is_conc_safe; }
   479   void set_is_conc_safe(bool v)        { _is_conc_safe = v; }
   481   friend class constantPoolKlass;
   482   friend class ClassFileParser;
   483   friend class SystemDictionary;
   485   // Used by compiler to prevent classloading.
   486   static klassOop klass_at_if_loaded          (constantPoolHandle this_oop, int which);
   487   static klassOop klass_ref_at_if_loaded      (constantPoolHandle this_oop, int which);
   488   // Same as above - but does LinkResolving.
   489   static klassOop klass_ref_at_if_loaded_check(constantPoolHandle this_oop, int which, TRAPS);
   491   // Routines currently used for annotations (only called by jvm.cpp) but which might be used in the
   492   // future by other Java code. These take constant pool indices rather than
   493   // constant pool cache indices as do the peer methods above.
   494   symbolOop uncached_klass_ref_at_noresolve(int which);
   495   symbolOop uncached_name_ref_at(int which)                 { return impl_name_ref_at(which, true); }
   496   symbolOop uncached_signature_ref_at(int which)            { return impl_signature_ref_at(which, true); }
   497   int       uncached_klass_ref_index_at(int which)          { return impl_klass_ref_index_at(which, true); }
   498   int       uncached_name_and_type_ref_index_at(int which)  { return impl_name_and_type_ref_index_at(which, true); }
   500   // Sharing
   501   int pre_resolve_shared_klasses(TRAPS);
   502   void shared_symbols_iterate(OopClosure* closure0);
   503   void shared_tags_iterate(OopClosure* closure0);
   504   void shared_strings_iterate(OopClosure* closure0);
   506   // Debugging
   507   const char* printable_name_at(int which) PRODUCT_RETURN0;
   509 #ifdef ASSERT
   510   enum { CPCACHE_INDEX_TAG = 0x10000 };  // helps keep CP cache indices distinct from CP indices
   511 #else
   512   enum { CPCACHE_INDEX_TAG = 0 };        // in product mode, this zero value is a no-op
   513 #endif //ASSERT
   515  private:
   517   symbolOop impl_name_ref_at(int which, bool uncached);
   518   symbolOop impl_signature_ref_at(int which, bool uncached);
   519   int       impl_klass_ref_index_at(int which, bool uncached);
   520   int       impl_name_and_type_ref_index_at(int which, bool uncached);
   522   int remap_instruction_operand_from_cache(int operand);  // operand must be biased by CPCACHE_INDEX_TAG
   524   // Used while constructing constant pool (only by ClassFileParser)
   525   jint klass_index_at(int which) {
   526     assert(tag_at(which).is_klass_index(), "Corrupted constant pool");
   527     return *int_at_addr(which);
   528   }
   530   jint string_index_at(int which) {
   531     assert(tag_at(which).is_string_index(), "Corrupted constant pool");
   532     return *int_at_addr(which);
   533   }
   535   // Performs the LinkResolver checks
   536   static void verify_constant_pool_resolve(constantPoolHandle this_oop, KlassHandle klass, TRAPS);
   538   // Implementation of methods that needs an exposed 'this' pointer, in order to
   539   // handle GC while executing the method
   540   static klassOop klass_at_impl(constantPoolHandle this_oop, int which, TRAPS);
   541   static oop string_at_impl(constantPoolHandle this_oop, int which, TRAPS);
   543   // Resolve string constants (to prevent allocation during compilation)
   544   static void resolve_string_constants_impl(constantPoolHandle this_oop, TRAPS);
   546   static oop resolve_constant_at_impl(constantPoolHandle this_oop, int index, int cache_index, TRAPS);
   548  public:
   549   // Merging constantPoolOop support:
   550   bool compare_entry_to(int index1, constantPoolHandle cp2, int index2, TRAPS);
   551   void copy_cp_to(int start_i, int end_i, constantPoolHandle to_cp, int to_i,
   552     TRAPS);
   553   void copy_entry_to(int from_i, constantPoolHandle to_cp, int to_i, TRAPS);
   554   int  find_matching_entry(int pattern_i, constantPoolHandle search_cp, TRAPS);
   555   int  orig_length() const                { return _orig_length; }
   556   void set_orig_length(int orig_length)   { _orig_length = orig_length; }
   559   // JVMTI accesss - GetConstantPool, RetransformClasses, ...
   560   friend class JvmtiConstantPoolReconstituter;
   562  private:
   563   jint cpool_entry_size(jint idx);
   564   jint hash_entries_to(SymbolHashMap *symmap, SymbolHashMap *classmap);
   566   // Copy cpool bytes into byte array.
   567   // Returns:
   568   //  int > 0, count of the raw cpool bytes that have been copied
   569   //        0, OutOfMemory error
   570   //       -1, Internal error
   571   int  copy_cpool_bytes(int cpool_size,
   572                         SymbolHashMap* tbl,
   573                         unsigned char *bytes);
   574 };
   576 class SymbolHashMapEntry : public CHeapObj {
   577  private:
   578   unsigned int        _hash;   // 32-bit hash for item
   579   SymbolHashMapEntry* _next;   // Next element in the linked list for this bucket
   580   symbolOop           _symbol; // 1-st part of the mapping: symbol => value
   581   u2                  _value;  // 2-nd part of the mapping: symbol => value
   583  public:
   584   unsigned   int hash() const             { return _hash;   }
   585   void       set_hash(unsigned int hash)  { _hash = hash;   }
   587   SymbolHashMapEntry* next() const        { return _next;   }
   588   void set_next(SymbolHashMapEntry* next) { _next = next;   }
   590   symbolOop  symbol() const               { return _symbol; }
   591   void       set_symbol(symbolOop sym)    { _symbol = sym;  }
   593   u2         value() const                {  return _value; }
   594   void       set_value(u2 value)          { _value = value; }
   596   SymbolHashMapEntry(unsigned int hash, symbolOop symbol, u2 value)
   597     : _hash(hash), _symbol(symbol), _value(value), _next(NULL) {}
   599 }; // End SymbolHashMapEntry class
   602 class SymbolHashMapBucket : public CHeapObj {
   604 private:
   605   SymbolHashMapEntry*    _entry;
   607 public:
   608   SymbolHashMapEntry* entry() const         {  return _entry; }
   609   void set_entry(SymbolHashMapEntry* entry) { _entry = entry; }
   610   void clear()                              { _entry = NULL;  }
   612 }; // End SymbolHashMapBucket class
   615 class SymbolHashMap: public CHeapObj {
   617  private:
   618   // Default number of entries in the table
   619   enum SymbolHashMap_Constants {
   620     _Def_HashMap_Size = 256
   621   };
   623   int                   _table_size;
   624   SymbolHashMapBucket*  _buckets;
   626   void initialize_table(int table_size) {
   627     _table_size = table_size;
   628     _buckets = NEW_C_HEAP_ARRAY(SymbolHashMapBucket, table_size);
   629     for (int index = 0; index < table_size; index++) {
   630       _buckets[index].clear();
   631     }
   632   }
   634  public:
   636   int table_size() const        { return _table_size; }
   638   SymbolHashMap()               { initialize_table(_Def_HashMap_Size); }
   639   SymbolHashMap(int table_size) { initialize_table(table_size); }
   641   // hash P(31) from Kernighan & Ritchie
   642   static unsigned int compute_hash(const char* str, int len) {
   643     unsigned int hash = 0;
   644     while (len-- > 0) {
   645       hash = 31*hash + (unsigned) *str;
   646       str++;
   647     }
   648     return hash;
   649   }
   651   SymbolHashMapEntry* bucket(int i) {
   652     return _buckets[i].entry();
   653   }
   655   void add_entry(symbolOop sym, u2 value);
   656   SymbolHashMapEntry* find_entry(symbolOop sym);
   658   u2 symbol_to_value(symbolOop sym) {
   659     SymbolHashMapEntry *entry = find_entry(sym);
   660     return (entry == NULL) ? 0 : entry->value();
   661   }
   663   ~SymbolHashMap() {
   664     SymbolHashMapEntry* next;
   665     for (int i = 0; i < _table_size; i++) {
   666       for (SymbolHashMapEntry* cur = bucket(i); cur != NULL; cur = next) {
   667         next = cur->next();
   668         delete(cur);
   669       }
   670     }
   671     delete _buckets;
   672   }
   673 }; // End SymbolHashMap class

mercurial