src/share/vm/oops/constantPoolOop.hpp

Thu, 27 May 2010 19:08:38 -0700

author
trims
date
Thu, 27 May 2010 19:08:38 -0700
changeset 1907
c18cbe5936b8
parent 1573
dd57230ba8fe
child 1934
e9ff18c4ace7
permissions
-rw-r--r--

6941466: Oracle rebranding changes for Hotspot repositories
Summary: Change all the Sun copyrights to Oracle copyright
Reviewed-by: ohair

duke@435 1 /*
trims@1907 2 * Copyright (c) 1997, 2009, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
duke@435 25 // A constantPool is an array containing class constants as described in the
duke@435 26 // class file.
duke@435 27 //
duke@435 28 // Most of the constant pool entries are written during class parsing, which
duke@435 29 // is safe. For klass and string types, the constant pool entry is
duke@435 30 // modified when the entry is resolved. If a klass or string constant pool
duke@435 31 // entry is read without a lock, only the resolved state guarantees that
duke@435 32 // the entry in the constant pool is a klass or String object and
duke@435 33 // not a symbolOop.
duke@435 34
duke@435 35 class SymbolHashMap;
duke@435 36
coleenp@548 37 class constantPoolOopDesc : public oopDesc {
duke@435 38 friend class VMStructs;
duke@435 39 friend class BytecodeInterpreter; // Directly extracts an oop in the pool for fast instanceof/checkcast
duke@435 40 private:
duke@435 41 typeArrayOop _tags; // the tag array describing the constant pool's contents
duke@435 42 constantPoolCacheOop _cache; // the cache holding interpreter runtime information
duke@435 43 klassOop _pool_holder; // the corresponding class
jrose@866 44 int _flags; // a few header bits to describe contents for GC
coleenp@548 45 int _length; // number of elements in the array
jmasa@953 46 volatile bool _is_conc_safe; // if true, safe for concurrent
jmasa@953 47 // GC processing
duke@435 48 // only set to non-zero if constant pool is merged by RedefineClasses
duke@435 49 int _orig_length;
duke@435 50
duke@435 51 void set_tags(typeArrayOop tags) { oop_store_without_check((oop*)&_tags, tags); }
duke@435 52 void tag_at_put(int which, jbyte t) { tags()->byte_at_put(which, t); }
duke@435 53 void release_tag_at_put(int which, jbyte t) { tags()->release_byte_at_put(which, t); }
duke@435 54
jrose@866 55 enum FlagBit {
jrose@1161 56 FB_has_invokedynamic = 1,
jrose@866 57 FB_has_pseudo_string = 2
jrose@866 58 };
jrose@866 59
jrose@866 60 int flags() const { return _flags; }
jrose@866 61 void set_flags(int f) { _flags = f; }
jrose@866 62 bool flag_at(FlagBit fb) const { return (_flags & (1 << (int)fb)) != 0; }
jrose@866 63 void set_flag_at(FlagBit fb);
jrose@866 64 // no clear_flag_at function; they only increase
jrose@866 65
duke@435 66 private:
duke@435 67 intptr_t* base() const { return (intptr_t*) (((char*) this) + sizeof(constantPoolOopDesc)); }
duke@435 68 oop* tags_addr() { return (oop*)&_tags; }
duke@435 69 oop* cache_addr() { return (oop*)&_cache; }
duke@435 70
duke@435 71 oop* obj_at_addr(int which) const {
duke@435 72 assert(is_within_bounds(which), "index out of bounds");
duke@435 73 return (oop*) &base()[which];
duke@435 74 }
duke@435 75
duke@435 76 jint* int_at_addr(int which) const {
duke@435 77 assert(is_within_bounds(which), "index out of bounds");
duke@435 78 return (jint*) &base()[which];
duke@435 79 }
duke@435 80
duke@435 81 jlong* long_at_addr(int which) const {
duke@435 82 assert(is_within_bounds(which), "index out of bounds");
duke@435 83 return (jlong*) &base()[which];
duke@435 84 }
duke@435 85
duke@435 86 jfloat* float_at_addr(int which) const {
duke@435 87 assert(is_within_bounds(which), "index out of bounds");
duke@435 88 return (jfloat*) &base()[which];
duke@435 89 }
duke@435 90
duke@435 91 jdouble* double_at_addr(int which) const {
duke@435 92 assert(is_within_bounds(which), "index out of bounds");
duke@435 93 return (jdouble*) &base()[which];
duke@435 94 }
duke@435 95
duke@435 96 public:
duke@435 97 typeArrayOop tags() const { return _tags; }
duke@435 98
jrose@866 99 bool has_pseudo_string() const { return flag_at(FB_has_pseudo_string); }
jrose@1161 100 bool has_invokedynamic() const { return flag_at(FB_has_invokedynamic); }
jrose@866 101 void set_pseudo_string() { set_flag_at(FB_has_pseudo_string); }
jrose@1161 102 void set_invokedynamic() { set_flag_at(FB_has_invokedynamic); }
jrose@866 103
duke@435 104 // Klass holding pool
duke@435 105 klassOop pool_holder() const { return _pool_holder; }
duke@435 106 void set_pool_holder(klassOop k) { oop_store_without_check((oop*)&_pool_holder, (oop) k); }
duke@435 107 oop* pool_holder_addr() { return (oop*)&_pool_holder; }
duke@435 108
duke@435 109 // Interpreter runtime support
duke@435 110 constantPoolCacheOop cache() const { return _cache; }
duke@435 111 void set_cache(constantPoolCacheOop cache){ oop_store((oop*)&_cache, cache); }
duke@435 112
duke@435 113 // Assembly code support
duke@435 114 static int tags_offset_in_bytes() { return offset_of(constantPoolOopDesc, _tags); }
duke@435 115 static int cache_offset_in_bytes() { return offset_of(constantPoolOopDesc, _cache); }
duke@435 116 static int pool_holder_offset_in_bytes() { return offset_of(constantPoolOopDesc, _pool_holder); }
duke@435 117
duke@435 118 // Storing constants
duke@435 119
duke@435 120 void klass_at_put(int which, klassOop k) {
duke@435 121 oop_store_without_check((volatile oop *)obj_at_addr(which), oop(k));
duke@435 122 // The interpreter assumes when the tag is stored, the klass is resolved
duke@435 123 // and the klassOop is a klass rather than a symbolOop, so we need
duke@435 124 // hardware store ordering here.
duke@435 125 release_tag_at_put(which, JVM_CONSTANT_Class);
duke@435 126 if (UseConcMarkSweepGC) {
duke@435 127 // In case the earlier card-mark was consumed by a concurrent
duke@435 128 // marking thread before the tag was updated, redirty the card.
duke@435 129 oop_store_without_check((volatile oop *)obj_at_addr(which), oop(k));
duke@435 130 }
duke@435 131 }
duke@435 132
duke@435 133 // For temporary use while constructing constant pool
duke@435 134 void klass_index_at_put(int which, int name_index) {
duke@435 135 tag_at_put(which, JVM_CONSTANT_ClassIndex);
duke@435 136 *int_at_addr(which) = name_index;
duke@435 137 }
duke@435 138
duke@435 139 // Temporary until actual use
duke@435 140 void unresolved_klass_at_put(int which, symbolOop s) {
duke@435 141 // Overwrite the old index with a GC friendly value so
duke@435 142 // that if GC looks during the transition it won't try
duke@435 143 // to treat a small integer as oop.
duke@435 144 *obj_at_addr(which) = NULL;
duke@435 145 release_tag_at_put(which, JVM_CONSTANT_UnresolvedClass);
duke@435 146 oop_store_without_check(obj_at_addr(which), oop(s));
duke@435 147 }
duke@435 148
duke@435 149 // Temporary until actual use
duke@435 150 void unresolved_string_at_put(int which, symbolOop s) {
duke@435 151 *obj_at_addr(which) = NULL;
duke@435 152 release_tag_at_put(which, JVM_CONSTANT_UnresolvedString);
duke@435 153 oop_store_without_check(obj_at_addr(which), oop(s));
duke@435 154 }
duke@435 155
duke@435 156 void int_at_put(int which, jint i) {
duke@435 157 tag_at_put(which, JVM_CONSTANT_Integer);
duke@435 158 *int_at_addr(which) = i;
duke@435 159 }
duke@435 160
duke@435 161 void long_at_put(int which, jlong l) {
duke@435 162 tag_at_put(which, JVM_CONSTANT_Long);
duke@435 163 // *long_at_addr(which) = l;
duke@435 164 Bytes::put_native_u8((address)long_at_addr(which), *((u8*) &l));
duke@435 165 }
duke@435 166
duke@435 167 void float_at_put(int which, jfloat f) {
duke@435 168 tag_at_put(which, JVM_CONSTANT_Float);
duke@435 169 *float_at_addr(which) = f;
duke@435 170 }
duke@435 171
duke@435 172 void double_at_put(int which, jdouble d) {
duke@435 173 tag_at_put(which, JVM_CONSTANT_Double);
duke@435 174 // *double_at_addr(which) = d;
duke@435 175 // u8 temp = *(u8*) &d;
duke@435 176 Bytes::put_native_u8((address) double_at_addr(which), *((u8*) &d));
duke@435 177 }
duke@435 178
duke@435 179 void symbol_at_put(int which, symbolOop s) {
duke@435 180 tag_at_put(which, JVM_CONSTANT_Utf8);
duke@435 181 oop_store_without_check(obj_at_addr(which), oop(s));
duke@435 182 }
duke@435 183
duke@435 184 void string_at_put(int which, oop str) {
duke@435 185 oop_store((volatile oop*)obj_at_addr(which), str);
duke@435 186 release_tag_at_put(which, JVM_CONSTANT_String);
duke@435 187 if (UseConcMarkSweepGC) {
duke@435 188 // In case the earlier card-mark was consumed by a concurrent
duke@435 189 // marking thread before the tag was updated, redirty the card.
duke@435 190 oop_store_without_check((volatile oop *)obj_at_addr(which), str);
duke@435 191 }
duke@435 192 }
duke@435 193
twisti@1573 194 void object_at_put(int which, oop str) {
twisti@1573 195 oop_store((volatile oop*) obj_at_addr(which), str);
twisti@1573 196 release_tag_at_put(which, JVM_CONSTANT_Object);
twisti@1573 197 if (UseConcMarkSweepGC) {
twisti@1573 198 // In case the earlier card-mark was consumed by a concurrent
twisti@1573 199 // marking thread before the tag was updated, redirty the card.
twisti@1573 200 oop_store_without_check((volatile oop*) obj_at_addr(which), str);
twisti@1573 201 }
twisti@1573 202 }
twisti@1573 203
duke@435 204 // For temporary use while constructing constant pool
duke@435 205 void string_index_at_put(int which, int string_index) {
duke@435 206 tag_at_put(which, JVM_CONSTANT_StringIndex);
duke@435 207 *int_at_addr(which) = string_index;
duke@435 208 }
duke@435 209
duke@435 210 void field_at_put(int which, int class_index, int name_and_type_index) {
duke@435 211 tag_at_put(which, JVM_CONSTANT_Fieldref);
duke@435 212 *int_at_addr(which) = ((jint) name_and_type_index<<16) | class_index;
duke@435 213 }
duke@435 214
duke@435 215 void method_at_put(int which, int class_index, int name_and_type_index) {
duke@435 216 tag_at_put(which, JVM_CONSTANT_Methodref);
duke@435 217 *int_at_addr(which) = ((jint) name_and_type_index<<16) | class_index;
duke@435 218 }
duke@435 219
duke@435 220 void interface_method_at_put(int which, int class_index, int name_and_type_index) {
duke@435 221 tag_at_put(which, JVM_CONSTANT_InterfaceMethodref);
duke@435 222 *int_at_addr(which) = ((jint) name_and_type_index<<16) | class_index; // Not so nice
duke@435 223 }
duke@435 224
duke@435 225 void name_and_type_at_put(int which, int name_index, int signature_index) {
duke@435 226 tag_at_put(which, JVM_CONSTANT_NameAndType);
duke@435 227 *int_at_addr(which) = ((jint) signature_index<<16) | name_index; // Not so nice
duke@435 228 }
duke@435 229
duke@435 230 // Tag query
duke@435 231
duke@435 232 constantTag tag_at(int which) const { return (constantTag)tags()->byte_at_acquire(which); }
duke@435 233
duke@435 234 // Whether the entry is a pointer that must be GC'd.
duke@435 235 bool is_pointer_entry(int which) {
duke@435 236 constantTag tag = tag_at(which);
duke@435 237 return tag.is_klass() ||
duke@435 238 tag.is_unresolved_klass() ||
duke@435 239 tag.is_symbol() ||
duke@435 240 tag.is_unresolved_string() ||
twisti@1573 241 tag.is_string() ||
twisti@1573 242 tag.is_object();
duke@435 243 }
duke@435 244
duke@435 245 // Fetching constants
duke@435 246
duke@435 247 klassOop klass_at(int which, TRAPS) {
duke@435 248 constantPoolHandle h_this(THREAD, this);
duke@435 249 return klass_at_impl(h_this, which, CHECK_NULL);
duke@435 250 }
duke@435 251
duke@435 252 symbolOop klass_name_at(int which); // Returns the name, w/o resolving.
duke@435 253
duke@435 254 klassOop resolved_klass_at(int which) { // Used by Compiler
duke@435 255 guarantee(tag_at(which).is_klass(), "Corrupted constant pool");
duke@435 256 // Must do an acquire here in case another thread resolved the klass
duke@435 257 // behind our back, lest we later load stale values thru the oop.
duke@435 258 return klassOop((oop)OrderAccess::load_ptr_acquire(obj_at_addr(which)));
duke@435 259 }
duke@435 260
duke@435 261 // This method should only be used with a cpool lock or during parsing or gc
duke@435 262 symbolOop unresolved_klass_at(int which) { // Temporary until actual use
duke@435 263 symbolOop s = symbolOop((oop)OrderAccess::load_ptr_acquire(obj_at_addr(which)));
duke@435 264 // check that the klass is still unresolved.
duke@435 265 assert(tag_at(which).is_unresolved_klass(), "Corrupted constant pool");
duke@435 266 return s;
duke@435 267 }
duke@435 268
duke@435 269 // RedefineClasses() API support:
duke@435 270 symbolOop klass_at_noresolve(int which) { return klass_name_at(which); }
duke@435 271
duke@435 272 jint int_at(int which) {
duke@435 273 assert(tag_at(which).is_int(), "Corrupted constant pool");
duke@435 274 return *int_at_addr(which);
duke@435 275 }
duke@435 276
duke@435 277 jlong long_at(int which) {
duke@435 278 assert(tag_at(which).is_long(), "Corrupted constant pool");
duke@435 279 // return *long_at_addr(which);
duke@435 280 u8 tmp = Bytes::get_native_u8((address)&base()[which]);
duke@435 281 return *((jlong*)&tmp);
duke@435 282 }
duke@435 283
duke@435 284 jfloat float_at(int which) {
duke@435 285 assert(tag_at(which).is_float(), "Corrupted constant pool");
duke@435 286 return *float_at_addr(which);
duke@435 287 }
duke@435 288
duke@435 289 jdouble double_at(int which) {
duke@435 290 assert(tag_at(which).is_double(), "Corrupted constant pool");
duke@435 291 u8 tmp = Bytes::get_native_u8((address)&base()[which]);
duke@435 292 return *((jdouble*)&tmp);
duke@435 293 }
duke@435 294
duke@435 295 symbolOop symbol_at(int which) {
duke@435 296 assert(tag_at(which).is_utf8(), "Corrupted constant pool");
duke@435 297 return symbolOop(*obj_at_addr(which));
duke@435 298 }
duke@435 299
duke@435 300 oop string_at(int which, TRAPS) {
duke@435 301 constantPoolHandle h_this(THREAD, this);
duke@435 302 return string_at_impl(h_this, which, CHECK_NULL);
duke@435 303 }
duke@435 304
twisti@1573 305 oop object_at(int which) {
twisti@1573 306 assert(tag_at(which).is_object(), "Corrupted constant pool");
twisti@1573 307 return *obj_at_addr(which);
twisti@1573 308 }
twisti@1573 309
jrose@866 310 // A "pseudo-string" is an non-string oop that has found is way into
jrose@866 311 // a String entry.
jrose@866 312 // Under AnonymousClasses this can happen if the user patches a live
jrose@866 313 // object into a CONSTANT_String entry of an anonymous class.
jrose@866 314 // Method oops internally created for method handles may also
jrose@866 315 // use pseudo-strings to link themselves to related metaobjects.
jrose@866 316
jrose@866 317 bool is_pseudo_string_at(int which);
jrose@866 318
jrose@866 319 oop pseudo_string_at(int which) {
jrose@866 320 assert(tag_at(which).is_string(), "Corrupted constant pool");
jrose@866 321 return *obj_at_addr(which);
jrose@866 322 }
jrose@866 323
jrose@866 324 void pseudo_string_at_put(int which, oop x) {
jrose@866 325 assert(AnonymousClasses, "");
jrose@866 326 set_pseudo_string(); // mark header
jrose@866 327 assert(tag_at(which).is_string() || tag_at(which).is_unresolved_string(), "Corrupted constant pool");
jrose@866 328 string_at_put(which, x); // this works just fine
jrose@866 329 }
jrose@866 330
duke@435 331 // only called when we are sure a string entry is already resolved (via an
duke@435 332 // earlier string_at call.
duke@435 333 oop resolved_string_at(int which) {
duke@435 334 assert(tag_at(which).is_string(), "Corrupted constant pool");
duke@435 335 // Must do an acquire here in case another thread resolved the klass
duke@435 336 // behind our back, lest we later load stale values thru the oop.
duke@435 337 return (oop)OrderAccess::load_ptr_acquire(obj_at_addr(which));
duke@435 338 }
duke@435 339
duke@435 340 // This method should only be used with a cpool lock or during parsing or gc
duke@435 341 symbolOop unresolved_string_at(int which) { // Temporary until actual use
duke@435 342 symbolOop s = symbolOop((oop)OrderAccess::load_ptr_acquire(obj_at_addr(which)));
duke@435 343 // check that the string is still unresolved.
duke@435 344 assert(tag_at(which).is_unresolved_string(), "Corrupted constant pool");
duke@435 345 return s;
duke@435 346 }
duke@435 347
duke@435 348 // Returns an UTF8 for a CONSTANT_String entry at a given index.
duke@435 349 // UTF8 char* representation was chosen to avoid conversion of
duke@435 350 // java_lang_Strings at resolved entries into symbolOops
duke@435 351 // or vice versa.
jrose@866 352 // Caller is responsible for checking for pseudo-strings.
duke@435 353 char* string_at_noresolve(int which);
duke@435 354
duke@435 355 jint name_and_type_at(int which) {
duke@435 356 assert(tag_at(which).is_name_and_type(), "Corrupted constant pool");
duke@435 357 return *int_at_addr(which);
duke@435 358 }
duke@435 359
jrose@1161 360 // The following methods (name/signature/klass_ref_at, klass_ref_at_noresolve,
jrose@1494 361 // name_and_type_ref_index_at) all expect to be passed indices obtained
jrose@1494 362 // directly from the bytecode, and extracted according to java byte order.
jrose@1494 363 // If the indices are meant to refer to fields or methods, they are
jrose@1494 364 // actually potentially byte-swapped, rewritten constant pool cache indices.
jrose@1494 365 // The routine remap_instruction_operand_from_cache manages the adjustment
jrose@1494 366 // of these values back to constant pool indices.
jrose@1161 367
jrose@1494 368 // There are also "uncached" versions which do not adjust the operand index; see below.
duke@435 369
duke@435 370 // Lookup for entries consisting of (klass_index, name_and_type index)
duke@435 371 klassOop klass_ref_at(int which, TRAPS);
duke@435 372 symbolOop klass_ref_at_noresolve(int which);
jrose@1161 373 symbolOop name_ref_at(int which) { return impl_name_ref_at(which, false); }
jrose@1161 374 symbolOop signature_ref_at(int which) { return impl_signature_ref_at(which, false); }
duke@435 375
jrose@1161 376 int klass_ref_index_at(int which) { return impl_klass_ref_index_at(which, false); }
jrose@1161 377 int name_and_type_ref_index_at(int which) { return impl_name_and_type_ref_index_at(which, false); }
duke@435 378
duke@435 379 // Lookup for entries consisting of (name_index, signature_index)
jrose@1161 380 int name_ref_index_at(int which_nt); // == low-order jshort of name_and_type_at(which_nt)
jrose@1161 381 int signature_ref_index_at(int which_nt); // == high-order jshort of name_and_type_at(which_nt)
duke@435 382
duke@435 383 BasicType basic_type_for_signature_at(int which);
duke@435 384
duke@435 385 // Resolve string constants (to prevent allocation during compilation)
duke@435 386 void resolve_string_constants(TRAPS) {
duke@435 387 constantPoolHandle h_this(THREAD, this);
duke@435 388 resolve_string_constants_impl(h_this, CHECK);
duke@435 389 }
duke@435 390
duke@435 391 // Klass name matches name at offset
duke@435 392 bool klass_name_at_matches(instanceKlassHandle k, int which);
duke@435 393
duke@435 394 // Sizing
coleenp@548 395 int length() const { return _length; }
coleenp@548 396 void set_length(int length) { _length = length; }
coleenp@548 397
coleenp@548 398 // Tells whether index is within bounds.
coleenp@548 399 bool is_within_bounds(int index) const {
coleenp@548 400 return 0 <= index && index < length();
coleenp@548 401 }
coleenp@548 402
duke@435 403 static int header_size() { return sizeof(constantPoolOopDesc)/HeapWordSize; }
duke@435 404 static int object_size(int length) { return align_object_size(header_size() + length); }
duke@435 405 int object_size() { return object_size(length()); }
duke@435 406
jmasa@953 407 bool is_conc_safe() { return _is_conc_safe; }
jmasa@953 408 void set_is_conc_safe(bool v) { _is_conc_safe = v; }
jmasa@953 409
duke@435 410 friend class constantPoolKlass;
duke@435 411 friend class ClassFileParser;
duke@435 412 friend class SystemDictionary;
duke@435 413
duke@435 414 // Used by compiler to prevent classloading.
duke@435 415 static klassOop klass_at_if_loaded (constantPoolHandle this_oop, int which);
duke@435 416 static klassOop klass_ref_at_if_loaded (constantPoolHandle this_oop, int which);
duke@435 417 // Same as above - but does LinkResolving.
duke@435 418 static klassOop klass_ref_at_if_loaded_check(constantPoolHandle this_oop, int which, TRAPS);
duke@435 419
duke@435 420 // Routines currently used for annotations (only called by jvm.cpp) but which might be used in the
duke@435 421 // future by other Java code. These take constant pool indices rather than possibly-byte-swapped
duke@435 422 // constant pool cache indices as do the peer methods above.
jrose@1161 423 symbolOop uncached_name_ref_at(int which) { return impl_name_ref_at(which, true); }
jrose@1161 424 symbolOop uncached_signature_ref_at(int which) { return impl_signature_ref_at(which, true); }
jrose@1161 425 int uncached_klass_ref_index_at(int which) { return impl_klass_ref_index_at(which, true); }
jrose@1161 426 int uncached_name_and_type_ref_index_at(int which) { return impl_name_and_type_ref_index_at(which, true); }
duke@435 427
duke@435 428 // Sharing
duke@435 429 int pre_resolve_shared_klasses(TRAPS);
duke@435 430 void shared_symbols_iterate(OopClosure* closure0);
duke@435 431 void shared_tags_iterate(OopClosure* closure0);
duke@435 432 void shared_strings_iterate(OopClosure* closure0);
duke@435 433
duke@435 434 // Debugging
duke@435 435 const char* printable_name_at(int which) PRODUCT_RETURN0;
duke@435 436
duke@435 437 private:
duke@435 438
jrose@1161 439 symbolOop impl_name_ref_at(int which, bool uncached);
jrose@1161 440 symbolOop impl_signature_ref_at(int which, bool uncached);
jrose@1161 441 int impl_klass_ref_index_at(int which, bool uncached);
jrose@1161 442 int impl_name_and_type_ref_index_at(int which, bool uncached);
jrose@1161 443
jrose@1494 444 int remap_instruction_operand_from_cache(int operand);
duke@435 445
duke@435 446 // Used while constructing constant pool (only by ClassFileParser)
duke@435 447 jint klass_index_at(int which) {
duke@435 448 assert(tag_at(which).is_klass_index(), "Corrupted constant pool");
duke@435 449 return *int_at_addr(which);
duke@435 450 }
duke@435 451
duke@435 452 jint string_index_at(int which) {
duke@435 453 assert(tag_at(which).is_string_index(), "Corrupted constant pool");
duke@435 454 return *int_at_addr(which);
duke@435 455 }
duke@435 456
duke@435 457 // Performs the LinkResolver checks
duke@435 458 static void verify_constant_pool_resolve(constantPoolHandle this_oop, KlassHandle klass, TRAPS);
duke@435 459
duke@435 460 // Implementation of methods that needs an exposed 'this' pointer, in order to
duke@435 461 // handle GC while executing the method
duke@435 462 static klassOop klass_at_impl(constantPoolHandle this_oop, int which, TRAPS);
duke@435 463 static oop string_at_impl(constantPoolHandle this_oop, int which, TRAPS);
duke@435 464
duke@435 465 // Resolve string constants (to prevent allocation during compilation)
duke@435 466 static void resolve_string_constants_impl(constantPoolHandle this_oop, TRAPS);
duke@435 467
duke@435 468 public:
duke@435 469 // Merging constantPoolOop support:
duke@435 470 bool compare_entry_to(int index1, constantPoolHandle cp2, int index2, TRAPS);
duke@435 471 void copy_cp_to(int start_i, int end_i, constantPoolHandle to_cp, int to_i,
duke@435 472 TRAPS);
duke@435 473 void copy_entry_to(int from_i, constantPoolHandle to_cp, int to_i, TRAPS);
duke@435 474 int find_matching_entry(int pattern_i, constantPoolHandle search_cp, TRAPS);
duke@435 475 int orig_length() const { return _orig_length; }
duke@435 476 void set_orig_length(int orig_length) { _orig_length = orig_length; }
duke@435 477
duke@435 478
duke@435 479 // JVMTI accesss - GetConstantPool, RetransformClasses, ...
duke@435 480 friend class JvmtiConstantPoolReconstituter;
duke@435 481
duke@435 482 private:
duke@435 483 jint cpool_entry_size(jint idx);
duke@435 484 jint hash_entries_to(SymbolHashMap *symmap, SymbolHashMap *classmap);
duke@435 485
duke@435 486 // Copy cpool bytes into byte array.
duke@435 487 // Returns:
duke@435 488 // int > 0, count of the raw cpool bytes that have been copied
duke@435 489 // 0, OutOfMemory error
duke@435 490 // -1, Internal error
duke@435 491 int copy_cpool_bytes(int cpool_size,
duke@435 492 SymbolHashMap* tbl,
duke@435 493 unsigned char *bytes);
duke@435 494 };
duke@435 495
duke@435 496 class SymbolHashMapEntry : public CHeapObj {
duke@435 497 private:
duke@435 498 unsigned int _hash; // 32-bit hash for item
duke@435 499 SymbolHashMapEntry* _next; // Next element in the linked list for this bucket
duke@435 500 symbolOop _symbol; // 1-st part of the mapping: symbol => value
duke@435 501 u2 _value; // 2-nd part of the mapping: symbol => value
duke@435 502
duke@435 503 public:
duke@435 504 unsigned int hash() const { return _hash; }
duke@435 505 void set_hash(unsigned int hash) { _hash = hash; }
duke@435 506
duke@435 507 SymbolHashMapEntry* next() const { return _next; }
duke@435 508 void set_next(SymbolHashMapEntry* next) { _next = next; }
duke@435 509
duke@435 510 symbolOop symbol() const { return _symbol; }
duke@435 511 void set_symbol(symbolOop sym) { _symbol = sym; }
duke@435 512
duke@435 513 u2 value() const { return _value; }
duke@435 514 void set_value(u2 value) { _value = value; }
duke@435 515
duke@435 516 SymbolHashMapEntry(unsigned int hash, symbolOop symbol, u2 value)
duke@435 517 : _hash(hash), _symbol(symbol), _value(value), _next(NULL) {}
duke@435 518
duke@435 519 }; // End SymbolHashMapEntry class
duke@435 520
duke@435 521
duke@435 522 class SymbolHashMapBucket : public CHeapObj {
duke@435 523
duke@435 524 private:
duke@435 525 SymbolHashMapEntry* _entry;
duke@435 526
duke@435 527 public:
duke@435 528 SymbolHashMapEntry* entry() const { return _entry; }
duke@435 529 void set_entry(SymbolHashMapEntry* entry) { _entry = entry; }
duke@435 530 void clear() { _entry = NULL; }
duke@435 531
duke@435 532 }; // End SymbolHashMapBucket class
duke@435 533
duke@435 534
duke@435 535 class SymbolHashMap: public CHeapObj {
duke@435 536
duke@435 537 private:
duke@435 538 // Default number of entries in the table
duke@435 539 enum SymbolHashMap_Constants {
duke@435 540 _Def_HashMap_Size = 256
duke@435 541 };
duke@435 542
duke@435 543 int _table_size;
duke@435 544 SymbolHashMapBucket* _buckets;
duke@435 545
duke@435 546 void initialize_table(int table_size) {
duke@435 547 _table_size = table_size;
duke@435 548 _buckets = NEW_C_HEAP_ARRAY(SymbolHashMapBucket, table_size);
duke@435 549 for (int index = 0; index < table_size; index++) {
duke@435 550 _buckets[index].clear();
duke@435 551 }
duke@435 552 }
duke@435 553
duke@435 554 public:
duke@435 555
duke@435 556 int table_size() const { return _table_size; }
duke@435 557
duke@435 558 SymbolHashMap() { initialize_table(_Def_HashMap_Size); }
duke@435 559 SymbolHashMap(int table_size) { initialize_table(table_size); }
duke@435 560
duke@435 561 // hash P(31) from Kernighan & Ritchie
duke@435 562 static unsigned int compute_hash(const char* str, int len) {
duke@435 563 unsigned int hash = 0;
duke@435 564 while (len-- > 0) {
duke@435 565 hash = 31*hash + (unsigned) *str;
duke@435 566 str++;
duke@435 567 }
duke@435 568 return hash;
duke@435 569 }
duke@435 570
duke@435 571 SymbolHashMapEntry* bucket(int i) {
duke@435 572 return _buckets[i].entry();
duke@435 573 }
duke@435 574
duke@435 575 void add_entry(symbolOop sym, u2 value);
duke@435 576 SymbolHashMapEntry* find_entry(symbolOop sym);
duke@435 577
duke@435 578 u2 symbol_to_value(symbolOop sym) {
duke@435 579 SymbolHashMapEntry *entry = find_entry(sym);
duke@435 580 return (entry == NULL) ? 0 : entry->value();
duke@435 581 }
duke@435 582
duke@435 583 ~SymbolHashMap() {
duke@435 584 SymbolHashMapEntry* next;
duke@435 585 for (int i = 0; i < _table_size; i++) {
duke@435 586 for (SymbolHashMapEntry* cur = bucket(i); cur != NULL; cur = next) {
duke@435 587 next = cur->next();
duke@435 588 delete(cur);
duke@435 589 }
duke@435 590 }
duke@435 591 delete _buckets;
duke@435 592 }
duke@435 593 }; // End SymbolHashMap class

mercurial