src/share/vm/oops/constantPoolOop.cpp

Wed, 09 Jun 2010 18:50:45 -0700

author
jrose
date
Wed, 09 Jun 2010 18:50:45 -0700
changeset 1957
136b78722a08
parent 1934
e9ff18c4ace7
child 2015
083fde3b838e
permissions
-rw-r--r--

6939203: JSR 292 needs method handle constants
Summary: Add new CP types CONSTANT_MethodHandle, CONSTANT_MethodType; extend 'ldc' bytecode.
Reviewed-by: twisti, never

duke@435 1 /*
jrose@1934 2 * Copyright (c) 1997, 2010, 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 # include "incls/_precompiled.incl"
duke@435 26 # include "incls/_constantPoolOop.cpp.incl"
duke@435 27
jrose@866 28 void constantPoolOopDesc::set_flag_at(FlagBit fb) {
jrose@866 29 const int MAX_STATE_CHANGES = 2;
jrose@866 30 for (int i = MAX_STATE_CHANGES + 10; i > 0; i--) {
jrose@866 31 int oflags = _flags;
jrose@866 32 int nflags = oflags | (1 << (int)fb);
jrose@866 33 if (Atomic::cmpxchg(nflags, &_flags, oflags) == oflags)
jrose@866 34 return;
jrose@866 35 }
jrose@866 36 assert(false, "failed to cmpxchg flags");
jrose@866 37 _flags |= (1 << (int)fb); // better than nothing
jrose@866 38 }
jrose@866 39
duke@435 40 klassOop constantPoolOopDesc::klass_at_impl(constantPoolHandle this_oop, int which, TRAPS) {
duke@435 41 // A resolved constantPool entry will contain a klassOop, otherwise a symbolOop.
duke@435 42 // It is not safe to rely on the tag bit's here, since we don't have a lock, and the entry and
duke@435 43 // tag is not updated atomicly.
duke@435 44 oop entry = *(this_oop->obj_at_addr(which));
duke@435 45 if (entry->is_klass()) {
duke@435 46 // Already resolved - return entry.
duke@435 47 return (klassOop)entry;
duke@435 48 }
duke@435 49
duke@435 50 // Acquire lock on constant oop while doing update. After we get the lock, we check if another object
duke@435 51 // already has updated the object
duke@435 52 assert(THREAD->is_Java_thread(), "must be a Java thread");
duke@435 53 bool do_resolve = false;
duke@435 54 bool in_error = false;
duke@435 55
duke@435 56 symbolHandle name;
duke@435 57 Handle loader;
duke@435 58 { ObjectLocker ol(this_oop, THREAD);
duke@435 59
duke@435 60 if (this_oop->tag_at(which).is_unresolved_klass()) {
duke@435 61 if (this_oop->tag_at(which).is_unresolved_klass_in_error()) {
duke@435 62 in_error = true;
duke@435 63 } else {
duke@435 64 do_resolve = true;
duke@435 65 name = symbolHandle(THREAD, this_oop->unresolved_klass_at(which));
duke@435 66 loader = Handle(THREAD, instanceKlass::cast(this_oop->pool_holder())->class_loader());
duke@435 67 }
duke@435 68 }
duke@435 69 } // unlocking constantPool
duke@435 70
duke@435 71
duke@435 72 // The original attempt to resolve this constant pool entry failed so find the
duke@435 73 // original error and throw it again (JVMS 5.4.3).
duke@435 74 if (in_error) {
duke@435 75 symbolOop error = SystemDictionary::find_resolution_error(this_oop, which);
duke@435 76 guarantee(error != (symbolOop)NULL, "tag mismatch with resolution error table");
duke@435 77 ResourceMark rm;
duke@435 78 // exception text will be the class name
duke@435 79 const char* className = this_oop->unresolved_klass_at(which)->as_C_string();
duke@435 80 THROW_MSG_0(error, className);
duke@435 81 }
duke@435 82
duke@435 83 if (do_resolve) {
duke@435 84 // this_oop must be unlocked during resolve_or_fail
duke@435 85 oop protection_domain = Klass::cast(this_oop->pool_holder())->protection_domain();
duke@435 86 Handle h_prot (THREAD, protection_domain);
duke@435 87 klassOop k_oop = SystemDictionary::resolve_or_fail(name, loader, h_prot, true, THREAD);
duke@435 88 KlassHandle k;
duke@435 89 if (!HAS_PENDING_EXCEPTION) {
duke@435 90 k = KlassHandle(THREAD, k_oop);
duke@435 91 // Do access check for klasses
duke@435 92 verify_constant_pool_resolve(this_oop, k, THREAD);
duke@435 93 }
duke@435 94
duke@435 95 // Failed to resolve class. We must record the errors so that subsequent attempts
duke@435 96 // to resolve this constant pool entry fail with the same error (JVMS 5.4.3).
duke@435 97 if (HAS_PENDING_EXCEPTION) {
duke@435 98 ResourceMark rm;
duke@435 99 symbolHandle error(PENDING_EXCEPTION->klass()->klass_part()->name());
duke@435 100
duke@435 101 bool throw_orig_error = false;
duke@435 102 {
duke@435 103 ObjectLocker ol (this_oop, THREAD);
duke@435 104
duke@435 105 // some other thread has beaten us and has resolved the class.
duke@435 106 if (this_oop->tag_at(which).is_klass()) {
duke@435 107 CLEAR_PENDING_EXCEPTION;
duke@435 108 entry = this_oop->resolved_klass_at(which);
duke@435 109 return (klassOop)entry;
duke@435 110 }
duke@435 111
duke@435 112 if (!PENDING_EXCEPTION->
never@1577 113 is_a(SystemDictionary::LinkageError_klass())) {
duke@435 114 // Just throw the exception and don't prevent these classes from
duke@435 115 // being loaded due to virtual machine errors like StackOverflow
duke@435 116 // and OutOfMemoryError, etc, or if the thread was hit by stop()
duke@435 117 // Needs clarification to section 5.4.3 of the VM spec (see 6308271)
duke@435 118 }
duke@435 119 else if (!this_oop->tag_at(which).is_unresolved_klass_in_error()) {
duke@435 120 SystemDictionary::add_resolution_error(this_oop, which, error);
duke@435 121 this_oop->tag_at_put(which, JVM_CONSTANT_UnresolvedClassInError);
duke@435 122 } else {
duke@435 123 // some other thread has put the class in error state.
duke@435 124 error = symbolHandle(SystemDictionary::find_resolution_error(this_oop, which));
duke@435 125 assert(!error.is_null(), "checking");
duke@435 126 throw_orig_error = true;
duke@435 127 }
duke@435 128 } // unlocked
duke@435 129
duke@435 130 if (throw_orig_error) {
duke@435 131 CLEAR_PENDING_EXCEPTION;
duke@435 132 ResourceMark rm;
duke@435 133 const char* className = this_oop->unresolved_klass_at(which)->as_C_string();
duke@435 134 THROW_MSG_0(error, className);
duke@435 135 }
duke@435 136
duke@435 137 return 0;
duke@435 138 }
duke@435 139
duke@435 140 if (TraceClassResolution && !k()->klass_part()->oop_is_array()) {
duke@435 141 // skip resolving the constant pool so that this code get's
duke@435 142 // called the next time some bytecodes refer to this class.
duke@435 143 ResourceMark rm;
duke@435 144 int line_number = -1;
duke@435 145 const char * source_file = NULL;
duke@435 146 if (JavaThread::current()->has_last_Java_frame()) {
duke@435 147 // try to identify the method which called this function.
duke@435 148 vframeStream vfst(JavaThread::current());
duke@435 149 if (!vfst.at_end()) {
duke@435 150 line_number = vfst.method()->line_number_from_bci(vfst.bci());
duke@435 151 symbolOop s = instanceKlass::cast(vfst.method()->method_holder())->source_file_name();
duke@435 152 if (s != NULL) {
duke@435 153 source_file = s->as_C_string();
duke@435 154 }
duke@435 155 }
duke@435 156 }
duke@435 157 if (k() != this_oop->pool_holder()) {
duke@435 158 // only print something if the classes are different
duke@435 159 if (source_file != NULL) {
duke@435 160 tty->print("RESOLVE %s %s %s:%d\n",
duke@435 161 instanceKlass::cast(this_oop->pool_holder())->external_name(),
duke@435 162 instanceKlass::cast(k())->external_name(), source_file, line_number);
duke@435 163 } else {
duke@435 164 tty->print("RESOLVE %s %s\n",
duke@435 165 instanceKlass::cast(this_oop->pool_holder())->external_name(),
duke@435 166 instanceKlass::cast(k())->external_name());
duke@435 167 }
duke@435 168 }
duke@435 169 return k();
duke@435 170 } else {
duke@435 171 ObjectLocker ol (this_oop, THREAD);
duke@435 172 // Only updated constant pool - if it is resolved.
duke@435 173 do_resolve = this_oop->tag_at(which).is_unresolved_klass();
duke@435 174 if (do_resolve) {
duke@435 175 this_oop->klass_at_put(which, k());
duke@435 176 }
duke@435 177 }
duke@435 178 }
duke@435 179
duke@435 180 entry = this_oop->resolved_klass_at(which);
duke@435 181 assert(entry->is_klass(), "must be resolved at this point");
duke@435 182 return (klassOop)entry;
duke@435 183 }
duke@435 184
duke@435 185
duke@435 186 // Does not update constantPoolOop - to avoid any exception throwing. Used
duke@435 187 // by compiler and exception handling. Also used to avoid classloads for
duke@435 188 // instanceof operations. Returns NULL if the class has not been loaded or
duke@435 189 // if the verification of constant pool failed
duke@435 190 klassOop constantPoolOopDesc::klass_at_if_loaded(constantPoolHandle this_oop, int which) {
duke@435 191 oop entry = *this_oop->obj_at_addr(which);
duke@435 192 if (entry->is_klass()) {
duke@435 193 return (klassOop)entry;
duke@435 194 } else {
duke@435 195 assert(entry->is_symbol(), "must be either symbol or klass");
duke@435 196 Thread *thread = Thread::current();
duke@435 197 symbolHandle name (thread, (symbolOop)entry);
duke@435 198 oop loader = instanceKlass::cast(this_oop->pool_holder())->class_loader();
duke@435 199 oop protection_domain = Klass::cast(this_oop->pool_holder())->protection_domain();
duke@435 200 Handle h_prot (thread, protection_domain);
duke@435 201 Handle h_loader (thread, loader);
duke@435 202 klassOop k = SystemDictionary::find(name, h_loader, h_prot, thread);
duke@435 203
duke@435 204 if (k != NULL) {
duke@435 205 // Make sure that resolving is legal
duke@435 206 EXCEPTION_MARK;
duke@435 207 KlassHandle klass(THREAD, k);
duke@435 208 // return NULL if verification fails
duke@435 209 verify_constant_pool_resolve(this_oop, klass, THREAD);
duke@435 210 if (HAS_PENDING_EXCEPTION) {
duke@435 211 CLEAR_PENDING_EXCEPTION;
duke@435 212 return NULL;
duke@435 213 }
duke@435 214 return klass();
duke@435 215 } else {
duke@435 216 return k;
duke@435 217 }
duke@435 218 }
duke@435 219 }
duke@435 220
duke@435 221
duke@435 222 klassOop constantPoolOopDesc::klass_ref_at_if_loaded(constantPoolHandle this_oop, int which) {
duke@435 223 return klass_at_if_loaded(this_oop, this_oop->klass_ref_index_at(which));
duke@435 224 }
duke@435 225
duke@435 226
duke@435 227 // This is an interface for the compiler that allows accessing non-resolved entries
duke@435 228 // in the constant pool - but still performs the validations tests. Must be used
duke@435 229 // in a pre-parse of the compiler - to determine what it can do and not do.
duke@435 230 // Note: We cannot update the ConstantPool from the vm_thread.
duke@435 231 klassOop constantPoolOopDesc::klass_ref_at_if_loaded_check(constantPoolHandle this_oop, int index, TRAPS) {
duke@435 232 int which = this_oop->klass_ref_index_at(index);
duke@435 233 oop entry = *this_oop->obj_at_addr(which);
duke@435 234 if (entry->is_klass()) {
duke@435 235 return (klassOop)entry;
duke@435 236 } else {
duke@435 237 assert(entry->is_symbol(), "must be either symbol or klass");
duke@435 238 symbolHandle name (THREAD, (symbolOop)entry);
duke@435 239 oop loader = instanceKlass::cast(this_oop->pool_holder())->class_loader();
duke@435 240 oop protection_domain = Klass::cast(this_oop->pool_holder())->protection_domain();
duke@435 241 Handle h_loader(THREAD, loader);
duke@435 242 Handle h_prot (THREAD, protection_domain);
duke@435 243 KlassHandle k(THREAD, SystemDictionary::find(name, h_loader, h_prot, THREAD));
duke@435 244
duke@435 245 // Do access check for klasses
duke@435 246 if( k.not_null() ) verify_constant_pool_resolve(this_oop, k, CHECK_NULL);
duke@435 247 return k();
duke@435 248 }
duke@435 249 }
duke@435 250
duke@435 251
jrose@1161 252 symbolOop constantPoolOopDesc::impl_name_ref_at(int which, bool uncached) {
jrose@1161 253 int name_index = name_ref_index_at(impl_name_and_type_ref_index_at(which, uncached));
duke@435 254 return symbol_at(name_index);
duke@435 255 }
duke@435 256
duke@435 257
jrose@1161 258 symbolOop constantPoolOopDesc::impl_signature_ref_at(int which, bool uncached) {
jrose@1161 259 int signature_index = signature_ref_index_at(impl_name_and_type_ref_index_at(which, uncached));
duke@435 260 return symbol_at(signature_index);
duke@435 261 }
duke@435 262
duke@435 263
jrose@1161 264 int constantPoolOopDesc::impl_name_and_type_ref_index_at(int which, bool uncached) {
jrose@1494 265 int i = which;
jrose@1494 266 if (!uncached && cache() != NULL) {
jrose@1494 267 if (constantPoolCacheOopDesc::is_secondary_index(which))
jrose@1494 268 // Invokedynamic indexes are always processed in native order
jrose@1494 269 // so there is no question of reading a native u2 in Java order here.
jrose@1494 270 return cache()->main_entry_at(which)->constant_pool_index();
jrose@1494 271 // change byte-ordering and go via cache
jrose@1494 272 i = remap_instruction_operand_from_cache(which);
jrose@1494 273 } else {
jrose@1494 274 if (tag_at(which).is_name_and_type())
jrose@1494 275 // invokedynamic index is a simple name-and-type
jrose@1494 276 return which;
jrose@1494 277 }
jrose@1494 278 assert(tag_at(i).is_field_or_method(), "Corrupted constant pool");
jrose@1494 279 jint ref_index = *int_at_addr(i);
duke@435 280 return extract_high_short_from_int(ref_index);
duke@435 281 }
duke@435 282
duke@435 283
jrose@1161 284 int constantPoolOopDesc::impl_klass_ref_index_at(int which, bool uncached) {
jrose@1494 285 guarantee(!constantPoolCacheOopDesc::is_secondary_index(which),
jrose@1494 286 "an invokedynamic instruction does not have a klass");
jrose@1494 287 int i = which;
jrose@1494 288 if (!uncached && cache() != NULL) {
jrose@1494 289 // change byte-ordering and go via cache
jrose@1494 290 i = remap_instruction_operand_from_cache(which);
jrose@1494 291 }
jrose@1494 292 assert(tag_at(i).is_field_or_method(), "Corrupted constant pool");
jrose@1494 293 jint ref_index = *int_at_addr(i);
duke@435 294 return extract_low_short_from_int(ref_index);
duke@435 295 }
duke@435 296
duke@435 297
jrose@1161 298
jrose@1494 299 int constantPoolOopDesc::remap_instruction_operand_from_cache(int operand) {
jrose@1920 300 int cpc_index = operand;
jrose@1920 301 DEBUG_ONLY(cpc_index -= CPCACHE_INDEX_TAG);
jrose@1920 302 assert((int)(u2)cpc_index == cpc_index, "clean u2");
jrose@1494 303 int member_index = cache()->entry_at(cpc_index)->constant_pool_index();
jrose@1494 304 return member_index;
jrose@1161 305 }
jrose@1161 306
jrose@1161 307
duke@435 308 void constantPoolOopDesc::verify_constant_pool_resolve(constantPoolHandle this_oop, KlassHandle k, TRAPS) {
duke@435 309 if (k->oop_is_instance() || k->oop_is_objArray()) {
duke@435 310 instanceKlassHandle holder (THREAD, this_oop->pool_holder());
duke@435 311 klassOop elem_oop = k->oop_is_instance() ? k() : objArrayKlass::cast(k())->bottom_klass();
duke@435 312 KlassHandle element (THREAD, elem_oop);
duke@435 313
duke@435 314 // The element type could be a typeArray - we only need the access check if it is
duke@435 315 // an reference to another class
duke@435 316 if (element->oop_is_instance()) {
duke@435 317 LinkResolver::check_klass_accessability(holder, element, CHECK);
duke@435 318 }
duke@435 319 }
duke@435 320 }
duke@435 321
duke@435 322
jrose@1161 323 int constantPoolOopDesc::name_ref_index_at(int which_nt) {
jrose@1161 324 jint ref_index = name_and_type_at(which_nt);
duke@435 325 return extract_low_short_from_int(ref_index);
duke@435 326 }
duke@435 327
duke@435 328
jrose@1161 329 int constantPoolOopDesc::signature_ref_index_at(int which_nt) {
jrose@1161 330 jint ref_index = name_and_type_at(which_nt);
duke@435 331 return extract_high_short_from_int(ref_index);
duke@435 332 }
duke@435 333
duke@435 334
duke@435 335 klassOop constantPoolOopDesc::klass_ref_at(int which, TRAPS) {
duke@435 336 return klass_at(klass_ref_index_at(which), CHECK_NULL);
duke@435 337 }
duke@435 338
duke@435 339
duke@435 340 symbolOop constantPoolOopDesc::klass_name_at(int which) {
duke@435 341 assert(tag_at(which).is_unresolved_klass() || tag_at(which).is_klass(),
duke@435 342 "Corrupted constant pool");
duke@435 343 // A resolved constantPool entry will contain a klassOop, otherwise a symbolOop.
duke@435 344 // It is not safe to rely on the tag bit's here, since we don't have a lock, and the entry and
duke@435 345 // tag is not updated atomicly.
duke@435 346 oop entry = *(obj_at_addr(which));
duke@435 347 if (entry->is_klass()) {
duke@435 348 // Already resolved - return entry's name.
duke@435 349 return klassOop(entry)->klass_part()->name();
duke@435 350 } else {
duke@435 351 assert(entry->is_symbol(), "must be either symbol or klass");
duke@435 352 return (symbolOop)entry;
duke@435 353 }
duke@435 354 }
duke@435 355
duke@435 356 symbolOop constantPoolOopDesc::klass_ref_at_noresolve(int which) {
duke@435 357 jint ref_index = klass_ref_index_at(which);
duke@435 358 return klass_at_noresolve(ref_index);
duke@435 359 }
duke@435 360
jrose@1957 361 symbolOop constantPoolOopDesc::uncached_klass_ref_at_noresolve(int which) {
jrose@1957 362 jint ref_index = uncached_klass_ref_index_at(which);
jrose@1957 363 return klass_at_noresolve(ref_index);
jrose@1957 364 }
jrose@1957 365
duke@435 366 char* constantPoolOopDesc::string_at_noresolve(int which) {
duke@435 367 // Test entry type in case string is resolved while in here.
duke@435 368 oop entry = *(obj_at_addr(which));
duke@435 369 if (entry->is_symbol()) {
duke@435 370 return ((symbolOop)entry)->as_C_string();
jrose@866 371 } else if (java_lang_String::is_instance(entry)) {
jrose@866 372 return java_lang_String::as_utf8_string(entry);
duke@435 373 } else {
jrose@866 374 return (char*)"<pseudo-string>";
duke@435 375 }
duke@435 376 }
duke@435 377
duke@435 378
duke@435 379 BasicType constantPoolOopDesc::basic_type_for_signature_at(int which) {
duke@435 380 return FieldType::basic_type(symbol_at(which));
duke@435 381 }
duke@435 382
duke@435 383
duke@435 384 void constantPoolOopDesc::resolve_string_constants_impl(constantPoolHandle this_oop, TRAPS) {
duke@435 385 for (int index = 1; index < this_oop->length(); index++) { // Index 0 is unused
duke@435 386 if (this_oop->tag_at(index).is_unresolved_string()) {
duke@435 387 this_oop->string_at(index, CHECK);
duke@435 388 }
duke@435 389 }
duke@435 390 }
duke@435 391
jrose@1957 392 oop constantPoolOopDesc::resolve_constant_at_impl(constantPoolHandle this_oop, int index, int cache_index, TRAPS) {
jrose@1957 393 oop result_oop = NULL;
jrose@1957 394 if (cache_index >= 0) {
jrose@1957 395 assert(index < 0, "only one kind of index at a time");
jrose@1957 396 ConstantPoolCacheEntry* cpc_entry = this_oop->cache()->entry_at(cache_index);
jrose@1957 397 result_oop = cpc_entry->f1();
jrose@1957 398 if (result_oop != NULL) {
jrose@1957 399 return result_oop; // that was easy...
jrose@1957 400 }
jrose@1957 401 index = cpc_entry->constant_pool_index();
jrose@1957 402 }
jrose@1957 403
jrose@1957 404 int tag_value = this_oop->tag_at(index).value();
jrose@1957 405 switch (tag_value) {
jrose@1957 406
jrose@1957 407 case JVM_CONSTANT_UnresolvedClass:
jrose@1957 408 case JVM_CONSTANT_UnresolvedClassInError:
jrose@1957 409 case JVM_CONSTANT_Class:
jrose@1957 410 {
jrose@1957 411 klassOop resolved = klass_at_impl(this_oop, index, CHECK_NULL);
jrose@1957 412 // ldc wants the java mirror.
jrose@1957 413 result_oop = resolved->klass_part()->java_mirror();
jrose@1957 414 break;
jrose@1957 415 }
jrose@1957 416
jrose@1957 417 case JVM_CONSTANT_String:
jrose@1957 418 case JVM_CONSTANT_UnresolvedString:
jrose@1957 419 if (this_oop->is_pseudo_string_at(index)) {
jrose@1957 420 result_oop = this_oop->pseudo_string_at(index);
jrose@1957 421 break;
jrose@1957 422 }
jrose@1957 423 result_oop = string_at_impl(this_oop, index, CHECK_NULL);
jrose@1957 424 break;
jrose@1957 425
jrose@1957 426 case JVM_CONSTANT_Object:
jrose@1957 427 result_oop = this_oop->object_at(index);
jrose@1957 428 break;
jrose@1957 429
jrose@1957 430 case JVM_CONSTANT_MethodHandle:
jrose@1957 431 {
jrose@1957 432 int ref_kind = this_oop->method_handle_ref_kind_at(index);
jrose@1957 433 int callee_index = this_oop->method_handle_klass_index_at(index);
jrose@1957 434 symbolHandle name(THREAD, this_oop->method_handle_name_ref_at(index));
jrose@1957 435 symbolHandle signature(THREAD, this_oop->method_handle_signature_ref_at(index));
jrose@1957 436 if (PrintMiscellaneous)
jrose@1957 437 tty->print_cr("resolve JVM_CONSTANT_MethodHandle:%d [%d/%d/%d] %s.%s",
jrose@1957 438 ref_kind, index, this_oop->method_handle_index_at(index),
jrose@1957 439 callee_index, name->as_C_string(), signature->as_C_string());
jrose@1957 440 KlassHandle callee;
jrose@1957 441 { klassOop k = klass_at_impl(this_oop, callee_index, CHECK_NULL);
jrose@1957 442 callee = KlassHandle(THREAD, k);
jrose@1957 443 }
jrose@1957 444 KlassHandle klass(THREAD, this_oop->pool_holder());
jrose@1957 445 Handle value = SystemDictionary::link_method_handle_constant(klass, ref_kind,
jrose@1957 446 callee, name, signature,
jrose@1957 447 CHECK_NULL);
jrose@1957 448 result_oop = value();
jrose@1957 449 // FIXME: Uniquify errors, using SystemDictionary::find_resolution_error.
jrose@1957 450 break;
jrose@1957 451 }
jrose@1957 452
jrose@1957 453 case JVM_CONSTANT_MethodType:
jrose@1957 454 {
jrose@1957 455 symbolHandle signature(THREAD, this_oop->method_type_signature_at(index));
jrose@1957 456 if (PrintMiscellaneous)
jrose@1957 457 tty->print_cr("resolve JVM_CONSTANT_MethodType [%d/%d] %s",
jrose@1957 458 index, this_oop->method_type_index_at(index),
jrose@1957 459 signature->as_C_string());
jrose@1957 460 KlassHandle klass(THREAD, this_oop->pool_holder());
jrose@1957 461 bool ignore_is_on_bcp = false;
jrose@1957 462 Handle value = SystemDictionary::find_method_handle_type(signature,
jrose@1957 463 klass,
jrose@1957 464 ignore_is_on_bcp,
jrose@1957 465 CHECK_NULL);
jrose@1957 466 result_oop = value();
jrose@1957 467 // FIXME: Uniquify errors, using SystemDictionary::find_resolution_error.
jrose@1957 468 break;
jrose@1957 469 }
jrose@1957 470
jrose@1957 471 /* maybe some day
jrose@1957 472 case JVM_CONSTANT_Integer:
jrose@1957 473 case JVM_CONSTANT_Float:
jrose@1957 474 case JVM_CONSTANT_Long:
jrose@1957 475 case JVM_CONSTANT_Double:
jrose@1957 476 result_oop = java_lang_boxing_object::create(...);
jrose@1957 477 break;
jrose@1957 478 */
jrose@1957 479
jrose@1957 480 default:
jrose@1957 481 DEBUG_ONLY( tty->print_cr("*** %p: tag at CP[%d/%d] = %d",
jrose@1957 482 this_oop(), index, cache_index, tag_value) );
jrose@1957 483 assert(false, "unexpected constant tag");
jrose@1957 484 break;
jrose@1957 485 }
jrose@1957 486
jrose@1957 487 if (cache_index >= 0) {
jrose@1957 488 // Cache the oop here also.
jrose@1957 489 Handle result(THREAD, result_oop);
jrose@1957 490 result_oop = NULL; // safety
jrose@1957 491 ObjectLocker ol(this_oop, THREAD);
jrose@1957 492 ConstantPoolCacheEntry* cpc_entry = this_oop->cache()->entry_at(cache_index);
jrose@1957 493 oop result_oop2 = cpc_entry->f1();
jrose@1957 494 if (result_oop2 != NULL) {
jrose@1957 495 // Race condition: May already be filled in while we were trying to lock.
jrose@1957 496 return result_oop2;
jrose@1957 497 }
jrose@1957 498 cpc_entry->set_f1(result());
jrose@1957 499 return result();
jrose@1957 500 } else {
jrose@1957 501 return result_oop;
jrose@1957 502 }
jrose@1957 503 }
jrose@1957 504
duke@435 505 oop constantPoolOopDesc::string_at_impl(constantPoolHandle this_oop, int which, TRAPS) {
duke@435 506 oop entry = *(this_oop->obj_at_addr(which));
duke@435 507 if (entry->is_symbol()) {
duke@435 508 ObjectLocker ol(this_oop, THREAD);
duke@435 509 if (this_oop->tag_at(which).is_unresolved_string()) {
duke@435 510 // Intern string
duke@435 511 symbolOop sym = this_oop->unresolved_string_at(which);
duke@435 512 entry = StringTable::intern(sym, CHECK_(constantPoolOop(NULL)));
duke@435 513 this_oop->string_at_put(which, entry);
duke@435 514 } else {
duke@435 515 // Another thread beat us and interned string, read string from constant pool
duke@435 516 entry = this_oop->resolved_string_at(which);
duke@435 517 }
duke@435 518 }
duke@435 519 assert(java_lang_String::is_instance(entry), "must be string");
duke@435 520 return entry;
duke@435 521 }
duke@435 522
duke@435 523
jrose@866 524 bool constantPoolOopDesc::is_pseudo_string_at(int which) {
jrose@866 525 oop entry = *(obj_at_addr(which));
jrose@866 526 if (entry->is_symbol())
jrose@866 527 // Not yet resolved, but it will resolve to a string.
jrose@866 528 return false;
jrose@866 529 else if (java_lang_String::is_instance(entry))
jrose@866 530 return false; // actually, it might be a non-interned or non-perm string
jrose@866 531 else
jrose@866 532 // truly pseudo
jrose@866 533 return true;
jrose@866 534 }
jrose@866 535
jrose@866 536
duke@435 537 bool constantPoolOopDesc::klass_name_at_matches(instanceKlassHandle k,
duke@435 538 int which) {
duke@435 539 // Names are interned, so we can compare symbolOops directly
duke@435 540 symbolOop cp_name = klass_name_at(which);
duke@435 541 return (cp_name == k->name());
duke@435 542 }
duke@435 543
duke@435 544
duke@435 545 int constantPoolOopDesc::pre_resolve_shared_klasses(TRAPS) {
duke@435 546 ResourceMark rm;
duke@435 547 int count = 0;
duke@435 548 for (int index = 1; index < tags()->length(); index++) { // Index 0 is unused
duke@435 549 if (tag_at(index).is_unresolved_string()) {
duke@435 550 // Intern string
duke@435 551 symbolOop sym = unresolved_string_at(index);
duke@435 552 oop entry = StringTable::intern(sym, CHECK_(-1));
duke@435 553 string_at_put(index, entry);
duke@435 554 }
duke@435 555 }
duke@435 556 return count;
duke@435 557 }
duke@435 558
duke@435 559
duke@435 560 // Iterate over symbols which are used as class, field, method names and
duke@435 561 // signatures (in preparation for writing to the shared archive).
duke@435 562
duke@435 563 void constantPoolOopDesc::shared_symbols_iterate(OopClosure* closure) {
duke@435 564 for (int index = 1; index < length(); index++) { // Index 0 is unused
duke@435 565 switch (tag_at(index).value()) {
duke@435 566
duke@435 567 case JVM_CONSTANT_UnresolvedClass:
duke@435 568 closure->do_oop(obj_at_addr(index));
duke@435 569 break;
duke@435 570
duke@435 571 case JVM_CONSTANT_NameAndType:
duke@435 572 {
duke@435 573 int i = *int_at_addr(index);
duke@435 574 closure->do_oop(obj_at_addr((unsigned)i >> 16));
duke@435 575 closure->do_oop(obj_at_addr((unsigned)i & 0xffff));
duke@435 576 }
duke@435 577 break;
duke@435 578
duke@435 579 case JVM_CONSTANT_Class:
duke@435 580 case JVM_CONSTANT_InterfaceMethodref:
duke@435 581 case JVM_CONSTANT_Fieldref:
duke@435 582 case JVM_CONSTANT_Methodref:
duke@435 583 case JVM_CONSTANT_Integer:
duke@435 584 case JVM_CONSTANT_Float:
duke@435 585 // Do nothing! Not an oop.
duke@435 586 // These constant types do not reference symbols at this point.
duke@435 587 break;
duke@435 588
duke@435 589 case JVM_CONSTANT_String:
duke@435 590 // Do nothing! Not a symbol.
duke@435 591 break;
duke@435 592
duke@435 593 case JVM_CONSTANT_UnresolvedString:
duke@435 594 case JVM_CONSTANT_Utf8:
duke@435 595 // These constants are symbols, but unless these symbols are
duke@435 596 // actually to be used for something, we don't want to mark them.
duke@435 597 break;
duke@435 598
duke@435 599 case JVM_CONSTANT_Long:
duke@435 600 case JVM_CONSTANT_Double:
duke@435 601 // Do nothing! Not an oop. (But takes two pool entries.)
duke@435 602 ++index;
duke@435 603 break;
duke@435 604
duke@435 605 default:
duke@435 606 ShouldNotReachHere();
duke@435 607 break;
duke@435 608 }
duke@435 609 }
duke@435 610 }
duke@435 611
duke@435 612
duke@435 613 // Iterate over the [one] tags array (in preparation for writing to the
duke@435 614 // shared archive).
duke@435 615
duke@435 616 void constantPoolOopDesc::shared_tags_iterate(OopClosure* closure) {
duke@435 617 closure->do_oop(tags_addr());
duke@435 618 }
duke@435 619
duke@435 620
duke@435 621 // Iterate over String objects (in preparation for writing to the shared
duke@435 622 // archive).
duke@435 623
duke@435 624 void constantPoolOopDesc::shared_strings_iterate(OopClosure* closure) {
duke@435 625 for (int index = 1; index < length(); index++) { // Index 0 is unused
duke@435 626 switch (tag_at(index).value()) {
duke@435 627
duke@435 628 case JVM_CONSTANT_UnresolvedClass:
duke@435 629 case JVM_CONSTANT_NameAndType:
duke@435 630 // Do nothing! Not a String.
duke@435 631 break;
duke@435 632
duke@435 633 case JVM_CONSTANT_Class:
duke@435 634 case JVM_CONSTANT_InterfaceMethodref:
duke@435 635 case JVM_CONSTANT_Fieldref:
duke@435 636 case JVM_CONSTANT_Methodref:
duke@435 637 case JVM_CONSTANT_Integer:
duke@435 638 case JVM_CONSTANT_Float:
duke@435 639 // Do nothing! Not an oop.
duke@435 640 // These constant types do not reference symbols at this point.
duke@435 641 break;
duke@435 642
duke@435 643 case JVM_CONSTANT_String:
duke@435 644 closure->do_oop(obj_at_addr(index));
duke@435 645 break;
duke@435 646
duke@435 647 case JVM_CONSTANT_UnresolvedString:
duke@435 648 case JVM_CONSTANT_Utf8:
duke@435 649 // These constants are symbols, but unless these symbols are
duke@435 650 // actually to be used for something, we don't want to mark them.
duke@435 651 break;
duke@435 652
duke@435 653 case JVM_CONSTANT_Long:
duke@435 654 case JVM_CONSTANT_Double:
duke@435 655 // Do nothing! Not an oop. (But takes two pool entries.)
duke@435 656 ++index;
duke@435 657 break;
duke@435 658
duke@435 659 default:
duke@435 660 ShouldNotReachHere();
duke@435 661 break;
duke@435 662 }
duke@435 663 }
duke@435 664 }
duke@435 665
duke@435 666
duke@435 667 // Compare this constant pool's entry at index1 to the constant pool
duke@435 668 // cp2's entry at index2.
duke@435 669 bool constantPoolOopDesc::compare_entry_to(int index1, constantPoolHandle cp2,
duke@435 670 int index2, TRAPS) {
duke@435 671
duke@435 672 jbyte t1 = tag_at(index1).value();
duke@435 673 jbyte t2 = cp2->tag_at(index2).value();
duke@435 674
duke@435 675
duke@435 676 // JVM_CONSTANT_UnresolvedClassInError is equal to JVM_CONSTANT_UnresolvedClass
duke@435 677 // when comparing
duke@435 678 if (t1 == JVM_CONSTANT_UnresolvedClassInError) {
duke@435 679 t1 = JVM_CONSTANT_UnresolvedClass;
duke@435 680 }
duke@435 681 if (t2 == JVM_CONSTANT_UnresolvedClassInError) {
duke@435 682 t2 = JVM_CONSTANT_UnresolvedClass;
duke@435 683 }
duke@435 684
duke@435 685 if (t1 != t2) {
duke@435 686 // Not the same entry type so there is nothing else to check. Note
duke@435 687 // that this style of checking will consider resolved/unresolved
duke@435 688 // class pairs and resolved/unresolved string pairs as different.
duke@435 689 // From the constantPoolOop API point of view, this is correct
duke@435 690 // behavior. See constantPoolKlass::merge() to see how this plays
duke@435 691 // out in the context of constantPoolOop merging.
duke@435 692 return false;
duke@435 693 }
duke@435 694
duke@435 695 switch (t1) {
duke@435 696 case JVM_CONSTANT_Class:
duke@435 697 {
duke@435 698 klassOop k1 = klass_at(index1, CHECK_false);
duke@435 699 klassOop k2 = cp2->klass_at(index2, CHECK_false);
duke@435 700 if (k1 == k2) {
duke@435 701 return true;
duke@435 702 }
duke@435 703 } break;
duke@435 704
duke@435 705 case JVM_CONSTANT_ClassIndex:
duke@435 706 {
duke@435 707 int recur1 = klass_index_at(index1);
duke@435 708 int recur2 = cp2->klass_index_at(index2);
duke@435 709 bool match = compare_entry_to(recur1, cp2, recur2, CHECK_false);
duke@435 710 if (match) {
duke@435 711 return true;
duke@435 712 }
duke@435 713 } break;
duke@435 714
duke@435 715 case JVM_CONSTANT_Double:
duke@435 716 {
duke@435 717 jdouble d1 = double_at(index1);
duke@435 718 jdouble d2 = cp2->double_at(index2);
duke@435 719 if (d1 == d2) {
duke@435 720 return true;
duke@435 721 }
duke@435 722 } break;
duke@435 723
duke@435 724 case JVM_CONSTANT_Fieldref:
duke@435 725 case JVM_CONSTANT_InterfaceMethodref:
duke@435 726 case JVM_CONSTANT_Methodref:
duke@435 727 {
duke@435 728 int recur1 = uncached_klass_ref_index_at(index1);
duke@435 729 int recur2 = cp2->uncached_klass_ref_index_at(index2);
duke@435 730 bool match = compare_entry_to(recur1, cp2, recur2, CHECK_false);
duke@435 731 if (match) {
duke@435 732 recur1 = uncached_name_and_type_ref_index_at(index1);
duke@435 733 recur2 = cp2->uncached_name_and_type_ref_index_at(index2);
duke@435 734 match = compare_entry_to(recur1, cp2, recur2, CHECK_false);
duke@435 735 if (match) {
duke@435 736 return true;
duke@435 737 }
duke@435 738 }
duke@435 739 } break;
duke@435 740
duke@435 741 case JVM_CONSTANT_Float:
duke@435 742 {
duke@435 743 jfloat f1 = float_at(index1);
duke@435 744 jfloat f2 = cp2->float_at(index2);
duke@435 745 if (f1 == f2) {
duke@435 746 return true;
duke@435 747 }
duke@435 748 } break;
duke@435 749
duke@435 750 case JVM_CONSTANT_Integer:
duke@435 751 {
duke@435 752 jint i1 = int_at(index1);
duke@435 753 jint i2 = cp2->int_at(index2);
duke@435 754 if (i1 == i2) {
duke@435 755 return true;
duke@435 756 }
duke@435 757 } break;
duke@435 758
duke@435 759 case JVM_CONSTANT_Long:
duke@435 760 {
duke@435 761 jlong l1 = long_at(index1);
duke@435 762 jlong l2 = cp2->long_at(index2);
duke@435 763 if (l1 == l2) {
duke@435 764 return true;
duke@435 765 }
duke@435 766 } break;
duke@435 767
duke@435 768 case JVM_CONSTANT_NameAndType:
duke@435 769 {
duke@435 770 int recur1 = name_ref_index_at(index1);
duke@435 771 int recur2 = cp2->name_ref_index_at(index2);
duke@435 772 bool match = compare_entry_to(recur1, cp2, recur2, CHECK_false);
duke@435 773 if (match) {
duke@435 774 recur1 = signature_ref_index_at(index1);
duke@435 775 recur2 = cp2->signature_ref_index_at(index2);
duke@435 776 match = compare_entry_to(recur1, cp2, recur2, CHECK_false);
duke@435 777 if (match) {
duke@435 778 return true;
duke@435 779 }
duke@435 780 }
duke@435 781 } break;
duke@435 782
duke@435 783 case JVM_CONSTANT_String:
duke@435 784 {
duke@435 785 oop s1 = string_at(index1, CHECK_false);
duke@435 786 oop s2 = cp2->string_at(index2, CHECK_false);
duke@435 787 if (s1 == s2) {
duke@435 788 return true;
duke@435 789 }
duke@435 790 } break;
duke@435 791
duke@435 792 case JVM_CONSTANT_StringIndex:
duke@435 793 {
duke@435 794 int recur1 = string_index_at(index1);
duke@435 795 int recur2 = cp2->string_index_at(index2);
duke@435 796 bool match = compare_entry_to(recur1, cp2, recur2, CHECK_false);
duke@435 797 if (match) {
duke@435 798 return true;
duke@435 799 }
duke@435 800 } break;
duke@435 801
duke@435 802 case JVM_CONSTANT_UnresolvedClass:
duke@435 803 {
duke@435 804 symbolOop k1 = unresolved_klass_at(index1);
duke@435 805 symbolOop k2 = cp2->unresolved_klass_at(index2);
duke@435 806 if (k1 == k2) {
duke@435 807 return true;
duke@435 808 }
duke@435 809 } break;
duke@435 810
jrose@1957 811 case JVM_CONSTANT_MethodType:
jrose@1957 812 {
jrose@1957 813 int k1 = method_type_index_at(index1);
jrose@1957 814 int k2 = cp2->method_type_index_at(index2);
jrose@1957 815 if (k1 == k2) {
jrose@1957 816 return true;
jrose@1957 817 }
jrose@1957 818 } break;
jrose@1957 819
jrose@1957 820 case JVM_CONSTANT_MethodHandle:
jrose@1957 821 {
jrose@1957 822 int k1 = method_handle_ref_kind_at(index1);
jrose@1957 823 int k2 = cp2->method_handle_ref_kind_at(index2);
jrose@1957 824 if (k1 == k2) {
jrose@1957 825 int i1 = method_handle_index_at(index1);
jrose@1957 826 int i2 = cp2->method_handle_index_at(index2);
jrose@1957 827 if (i1 == i2) {
jrose@1957 828 return true;
jrose@1957 829 }
jrose@1957 830 }
jrose@1957 831 } break;
jrose@1957 832
duke@435 833 case JVM_CONSTANT_UnresolvedString:
duke@435 834 {
duke@435 835 symbolOop s1 = unresolved_string_at(index1);
duke@435 836 symbolOop s2 = cp2->unresolved_string_at(index2);
duke@435 837 if (s1 == s2) {
duke@435 838 return true;
duke@435 839 }
duke@435 840 } break;
duke@435 841
duke@435 842 case JVM_CONSTANT_Utf8:
duke@435 843 {
duke@435 844 symbolOop s1 = symbol_at(index1);
duke@435 845 symbolOop s2 = cp2->symbol_at(index2);
duke@435 846 if (s1 == s2) {
duke@435 847 return true;
duke@435 848 }
duke@435 849 } break;
duke@435 850
duke@435 851 // Invalid is used as the tag for the second constant pool entry
duke@435 852 // occupied by JVM_CONSTANT_Double or JVM_CONSTANT_Long. It should
duke@435 853 // not be seen by itself.
duke@435 854 case JVM_CONSTANT_Invalid: // fall through
duke@435 855
duke@435 856 default:
duke@435 857 ShouldNotReachHere();
duke@435 858 break;
duke@435 859 }
duke@435 860
duke@435 861 return false;
duke@435 862 } // end compare_entry_to()
duke@435 863
duke@435 864
duke@435 865 // Copy this constant pool's entries at start_i to end_i (inclusive)
duke@435 866 // to the constant pool to_cp's entries starting at to_i. A total of
duke@435 867 // (end_i - start_i) + 1 entries are copied.
duke@435 868 void constantPoolOopDesc::copy_cp_to(int start_i, int end_i,
duke@435 869 constantPoolHandle to_cp, int to_i, TRAPS) {
duke@435 870
duke@435 871 int dest_i = to_i; // leave original alone for debug purposes
duke@435 872
duke@435 873 for (int src_i = start_i; src_i <= end_i; /* see loop bottom */ ) {
duke@435 874 copy_entry_to(src_i, to_cp, dest_i, CHECK);
duke@435 875
duke@435 876 switch (tag_at(src_i).value()) {
duke@435 877 case JVM_CONSTANT_Double:
duke@435 878 case JVM_CONSTANT_Long:
duke@435 879 // double and long take two constant pool entries
duke@435 880 src_i += 2;
duke@435 881 dest_i += 2;
duke@435 882 break;
duke@435 883
duke@435 884 default:
duke@435 885 // all others take one constant pool entry
duke@435 886 src_i++;
duke@435 887 dest_i++;
duke@435 888 break;
duke@435 889 }
duke@435 890 }
duke@435 891 } // end copy_cp_to()
duke@435 892
duke@435 893
duke@435 894 // Copy this constant pool's entry at from_i to the constant pool
duke@435 895 // to_cp's entry at to_i.
duke@435 896 void constantPoolOopDesc::copy_entry_to(int from_i, constantPoolHandle to_cp,
duke@435 897 int to_i, TRAPS) {
duke@435 898
duke@435 899 switch (tag_at(from_i).value()) {
duke@435 900 case JVM_CONSTANT_Class:
duke@435 901 {
duke@435 902 klassOop k = klass_at(from_i, CHECK);
duke@435 903 to_cp->klass_at_put(to_i, k);
duke@435 904 } break;
duke@435 905
duke@435 906 case JVM_CONSTANT_ClassIndex:
duke@435 907 {
duke@435 908 jint ki = klass_index_at(from_i);
duke@435 909 to_cp->klass_index_at_put(to_i, ki);
duke@435 910 } break;
duke@435 911
duke@435 912 case JVM_CONSTANT_Double:
duke@435 913 {
duke@435 914 jdouble d = double_at(from_i);
duke@435 915 to_cp->double_at_put(to_i, d);
duke@435 916 // double takes two constant pool entries so init second entry's tag
duke@435 917 to_cp->tag_at_put(to_i + 1, JVM_CONSTANT_Invalid);
duke@435 918 } break;
duke@435 919
duke@435 920 case JVM_CONSTANT_Fieldref:
duke@435 921 {
duke@435 922 int class_index = uncached_klass_ref_index_at(from_i);
duke@435 923 int name_and_type_index = uncached_name_and_type_ref_index_at(from_i);
duke@435 924 to_cp->field_at_put(to_i, class_index, name_and_type_index);
duke@435 925 } break;
duke@435 926
duke@435 927 case JVM_CONSTANT_Float:
duke@435 928 {
duke@435 929 jfloat f = float_at(from_i);
duke@435 930 to_cp->float_at_put(to_i, f);
duke@435 931 } break;
duke@435 932
duke@435 933 case JVM_CONSTANT_Integer:
duke@435 934 {
duke@435 935 jint i = int_at(from_i);
duke@435 936 to_cp->int_at_put(to_i, i);
duke@435 937 } break;
duke@435 938
duke@435 939 case JVM_CONSTANT_InterfaceMethodref:
duke@435 940 {
duke@435 941 int class_index = uncached_klass_ref_index_at(from_i);
duke@435 942 int name_and_type_index = uncached_name_and_type_ref_index_at(from_i);
duke@435 943 to_cp->interface_method_at_put(to_i, class_index, name_and_type_index);
duke@435 944 } break;
duke@435 945
duke@435 946 case JVM_CONSTANT_Long:
duke@435 947 {
duke@435 948 jlong l = long_at(from_i);
duke@435 949 to_cp->long_at_put(to_i, l);
duke@435 950 // long takes two constant pool entries so init second entry's tag
duke@435 951 to_cp->tag_at_put(to_i + 1, JVM_CONSTANT_Invalid);
duke@435 952 } break;
duke@435 953
duke@435 954 case JVM_CONSTANT_Methodref:
duke@435 955 {
duke@435 956 int class_index = uncached_klass_ref_index_at(from_i);
duke@435 957 int name_and_type_index = uncached_name_and_type_ref_index_at(from_i);
duke@435 958 to_cp->method_at_put(to_i, class_index, name_and_type_index);
duke@435 959 } break;
duke@435 960
duke@435 961 case JVM_CONSTANT_NameAndType:
duke@435 962 {
duke@435 963 int name_ref_index = name_ref_index_at(from_i);
duke@435 964 int signature_ref_index = signature_ref_index_at(from_i);
duke@435 965 to_cp->name_and_type_at_put(to_i, name_ref_index, signature_ref_index);
duke@435 966 } break;
duke@435 967
duke@435 968 case JVM_CONSTANT_String:
duke@435 969 {
duke@435 970 oop s = string_at(from_i, CHECK);
duke@435 971 to_cp->string_at_put(to_i, s);
duke@435 972 } break;
duke@435 973
duke@435 974 case JVM_CONSTANT_StringIndex:
duke@435 975 {
duke@435 976 jint si = string_index_at(from_i);
duke@435 977 to_cp->string_index_at_put(to_i, si);
duke@435 978 } break;
duke@435 979
duke@435 980 case JVM_CONSTANT_UnresolvedClass:
duke@435 981 {
duke@435 982 symbolOop k = unresolved_klass_at(from_i);
duke@435 983 to_cp->unresolved_klass_at_put(to_i, k);
duke@435 984 } break;
duke@435 985
duke@435 986 case JVM_CONSTANT_UnresolvedClassInError:
duke@435 987 {
duke@435 988 symbolOop k = unresolved_klass_at(from_i);
duke@435 989 to_cp->unresolved_klass_at_put(to_i, k);
duke@435 990 to_cp->tag_at_put(to_i, JVM_CONSTANT_UnresolvedClassInError);
duke@435 991 } break;
duke@435 992
duke@435 993
duke@435 994 case JVM_CONSTANT_UnresolvedString:
duke@435 995 {
duke@435 996 symbolOop s = unresolved_string_at(from_i);
duke@435 997 to_cp->unresolved_string_at_put(to_i, s);
duke@435 998 } break;
duke@435 999
duke@435 1000 case JVM_CONSTANT_Utf8:
duke@435 1001 {
duke@435 1002 symbolOop s = symbol_at(from_i);
duke@435 1003 to_cp->symbol_at_put(to_i, s);
duke@435 1004 } break;
duke@435 1005
jrose@1957 1006 case JVM_CONSTANT_MethodType:
jrose@1957 1007 {
jrose@1957 1008 jint k = method_type_index_at(from_i);
jrose@1957 1009 to_cp->method_type_index_at_put(to_i, k);
jrose@1957 1010 } break;
jrose@1957 1011
jrose@1957 1012 case JVM_CONSTANT_MethodHandle:
jrose@1957 1013 {
jrose@1957 1014 int k1 = method_handle_ref_kind_at(from_i);
jrose@1957 1015 int k2 = method_handle_index_at(from_i);
jrose@1957 1016 to_cp->method_handle_index_at_put(to_i, k1, k2);
jrose@1957 1017 } break;
jrose@1957 1018
duke@435 1019 // Invalid is used as the tag for the second constant pool entry
duke@435 1020 // occupied by JVM_CONSTANT_Double or JVM_CONSTANT_Long. It should
duke@435 1021 // not be seen by itself.
duke@435 1022 case JVM_CONSTANT_Invalid: // fall through
duke@435 1023
duke@435 1024 default:
duke@435 1025 {
duke@435 1026 jbyte bad_value = tag_at(from_i).value(); // leave a breadcrumb
duke@435 1027 ShouldNotReachHere();
duke@435 1028 } break;
duke@435 1029 }
duke@435 1030 } // end copy_entry_to()
duke@435 1031
duke@435 1032
duke@435 1033 // Search constant pool search_cp for an entry that matches this
duke@435 1034 // constant pool's entry at pattern_i. Returns the index of a
duke@435 1035 // matching entry or zero (0) if there is no matching entry.
duke@435 1036 int constantPoolOopDesc::find_matching_entry(int pattern_i,
duke@435 1037 constantPoolHandle search_cp, TRAPS) {
duke@435 1038
duke@435 1039 // index zero (0) is not used
duke@435 1040 for (int i = 1; i < search_cp->length(); i++) {
duke@435 1041 bool found = compare_entry_to(pattern_i, search_cp, i, CHECK_0);
duke@435 1042 if (found) {
duke@435 1043 return i;
duke@435 1044 }
duke@435 1045 }
duke@435 1046
duke@435 1047 return 0; // entry not found; return unused index zero (0)
duke@435 1048 } // end find_matching_entry()
duke@435 1049
duke@435 1050
duke@435 1051 #ifndef PRODUCT
duke@435 1052
duke@435 1053 const char* constantPoolOopDesc::printable_name_at(int which) {
duke@435 1054
duke@435 1055 constantTag tag = tag_at(which);
duke@435 1056
duke@435 1057 if (tag.is_unresolved_string() || tag.is_string()) {
duke@435 1058 return string_at_noresolve(which);
duke@435 1059 } else if (tag.is_klass() || tag.is_unresolved_klass()) {
duke@435 1060 return klass_name_at(which)->as_C_string();
duke@435 1061 } else if (tag.is_symbol()) {
duke@435 1062 return symbol_at(which)->as_C_string();
duke@435 1063 }
duke@435 1064 return "";
duke@435 1065 }
duke@435 1066
duke@435 1067 #endif // PRODUCT
duke@435 1068
duke@435 1069
duke@435 1070 // JVMTI GetConstantPool support
duke@435 1071
duke@435 1072 // For temporary use until code is stable.
duke@435 1073 #define DBG(code)
duke@435 1074
duke@435 1075 static const char* WARN_MSG = "Must not be such entry!";
duke@435 1076
duke@435 1077 static void print_cpool_bytes(jint cnt, u1 *bytes) {
duke@435 1078 jint size = 0;
duke@435 1079 u2 idx1, idx2;
duke@435 1080
duke@435 1081 for (jint idx = 1; idx < cnt; idx++) {
duke@435 1082 jint ent_size = 0;
duke@435 1083 u1 tag = *bytes++;
duke@435 1084 size++; // count tag
duke@435 1085
duke@435 1086 printf("const #%03d, tag: %02d ", idx, tag);
duke@435 1087 switch(tag) {
duke@435 1088 case JVM_CONSTANT_Invalid: {
duke@435 1089 printf("Invalid");
duke@435 1090 break;
duke@435 1091 }
duke@435 1092 case JVM_CONSTANT_Unicode: {
duke@435 1093 printf("Unicode %s", WARN_MSG);
duke@435 1094 break;
duke@435 1095 }
duke@435 1096 case JVM_CONSTANT_Utf8: {
duke@435 1097 u2 len = Bytes::get_Java_u2(bytes);
duke@435 1098 char str[128];
duke@435 1099 if (len > 127) {
duke@435 1100 len = 127;
duke@435 1101 }
duke@435 1102 strncpy(str, (char *) (bytes+2), len);
duke@435 1103 str[len] = '\0';
duke@435 1104 printf("Utf8 \"%s\"", str);
duke@435 1105 ent_size = 2 + len;
duke@435 1106 break;
duke@435 1107 }
duke@435 1108 case JVM_CONSTANT_Integer: {
duke@435 1109 u4 val = Bytes::get_Java_u4(bytes);
duke@435 1110 printf("int %d", *(int *) &val);
duke@435 1111 ent_size = 4;
duke@435 1112 break;
duke@435 1113 }
duke@435 1114 case JVM_CONSTANT_Float: {
duke@435 1115 u4 val = Bytes::get_Java_u4(bytes);
duke@435 1116 printf("float %5.3ff", *(float *) &val);
duke@435 1117 ent_size = 4;
duke@435 1118 break;
duke@435 1119 }
duke@435 1120 case JVM_CONSTANT_Long: {
duke@435 1121 u8 val = Bytes::get_Java_u8(bytes);
xlu@948 1122 printf("long "INT64_FORMAT, *(jlong *) &val);
duke@435 1123 ent_size = 8;
duke@435 1124 idx++; // Long takes two cpool slots
duke@435 1125 break;
duke@435 1126 }
duke@435 1127 case JVM_CONSTANT_Double: {
duke@435 1128 u8 val = Bytes::get_Java_u8(bytes);
duke@435 1129 printf("double %5.3fd", *(jdouble *)&val);
duke@435 1130 ent_size = 8;
duke@435 1131 idx++; // Double takes two cpool slots
duke@435 1132 break;
duke@435 1133 }
duke@435 1134 case JVM_CONSTANT_Class: {
duke@435 1135 idx1 = Bytes::get_Java_u2(bytes);
duke@435 1136 printf("class #%03d", idx1);
duke@435 1137 ent_size = 2;
duke@435 1138 break;
duke@435 1139 }
duke@435 1140 case JVM_CONSTANT_String: {
duke@435 1141 idx1 = Bytes::get_Java_u2(bytes);
duke@435 1142 printf("String #%03d", idx1);
duke@435 1143 ent_size = 2;
duke@435 1144 break;
duke@435 1145 }
duke@435 1146 case JVM_CONSTANT_Fieldref: {
duke@435 1147 idx1 = Bytes::get_Java_u2(bytes);
duke@435 1148 idx2 = Bytes::get_Java_u2(bytes+2);
duke@435 1149 printf("Field #%03d, #%03d", (int) idx1, (int) idx2);
duke@435 1150 ent_size = 4;
duke@435 1151 break;
duke@435 1152 }
duke@435 1153 case JVM_CONSTANT_Methodref: {
duke@435 1154 idx1 = Bytes::get_Java_u2(bytes);
duke@435 1155 idx2 = Bytes::get_Java_u2(bytes+2);
duke@435 1156 printf("Method #%03d, #%03d", idx1, idx2);
duke@435 1157 ent_size = 4;
duke@435 1158 break;
duke@435 1159 }
duke@435 1160 case JVM_CONSTANT_InterfaceMethodref: {
duke@435 1161 idx1 = Bytes::get_Java_u2(bytes);
duke@435 1162 idx2 = Bytes::get_Java_u2(bytes+2);
duke@435 1163 printf("InterfMethod #%03d, #%03d", idx1, idx2);
duke@435 1164 ent_size = 4;
duke@435 1165 break;
duke@435 1166 }
duke@435 1167 case JVM_CONSTANT_NameAndType: {
duke@435 1168 idx1 = Bytes::get_Java_u2(bytes);
duke@435 1169 idx2 = Bytes::get_Java_u2(bytes+2);
duke@435 1170 printf("NameAndType #%03d, #%03d", idx1, idx2);
duke@435 1171 ent_size = 4;
duke@435 1172 break;
duke@435 1173 }
duke@435 1174 case JVM_CONSTANT_ClassIndex: {
duke@435 1175 printf("ClassIndex %s", WARN_MSG);
duke@435 1176 break;
duke@435 1177 }
duke@435 1178 case JVM_CONSTANT_UnresolvedClass: {
duke@435 1179 printf("UnresolvedClass: %s", WARN_MSG);
duke@435 1180 break;
duke@435 1181 }
duke@435 1182 case JVM_CONSTANT_UnresolvedClassInError: {
duke@435 1183 printf("UnresolvedClassInErr: %s", WARN_MSG);
duke@435 1184 break;
duke@435 1185 }
duke@435 1186 case JVM_CONSTANT_StringIndex: {
duke@435 1187 printf("StringIndex: %s", WARN_MSG);
duke@435 1188 break;
duke@435 1189 }
duke@435 1190 case JVM_CONSTANT_UnresolvedString: {
duke@435 1191 printf("UnresolvedString: %s", WARN_MSG);
duke@435 1192 break;
duke@435 1193 }
duke@435 1194 }
duke@435 1195 printf(";\n");
duke@435 1196 bytes += ent_size;
duke@435 1197 size += ent_size;
duke@435 1198 }
duke@435 1199 printf("Cpool size: %d\n", size);
duke@435 1200 fflush(0);
duke@435 1201 return;
duke@435 1202 } /* end print_cpool_bytes */
duke@435 1203
duke@435 1204
duke@435 1205 // Returns size of constant pool entry.
duke@435 1206 jint constantPoolOopDesc::cpool_entry_size(jint idx) {
duke@435 1207 switch(tag_at(idx).value()) {
duke@435 1208 case JVM_CONSTANT_Invalid:
duke@435 1209 case JVM_CONSTANT_Unicode:
duke@435 1210 return 1;
duke@435 1211
duke@435 1212 case JVM_CONSTANT_Utf8:
duke@435 1213 return 3 + symbol_at(idx)->utf8_length();
duke@435 1214
duke@435 1215 case JVM_CONSTANT_Class:
duke@435 1216 case JVM_CONSTANT_String:
duke@435 1217 case JVM_CONSTANT_ClassIndex:
duke@435 1218 case JVM_CONSTANT_UnresolvedClass:
duke@435 1219 case JVM_CONSTANT_UnresolvedClassInError:
duke@435 1220 case JVM_CONSTANT_StringIndex:
duke@435 1221 case JVM_CONSTANT_UnresolvedString:
jrose@1957 1222 case JVM_CONSTANT_MethodType:
duke@435 1223 return 3;
duke@435 1224
jrose@1957 1225 case JVM_CONSTANT_MethodHandle:
jrose@1957 1226 return 4; //tag, ref_kind, ref_index
jrose@1957 1227
duke@435 1228 case JVM_CONSTANT_Integer:
duke@435 1229 case JVM_CONSTANT_Float:
duke@435 1230 case JVM_CONSTANT_Fieldref:
duke@435 1231 case JVM_CONSTANT_Methodref:
duke@435 1232 case JVM_CONSTANT_InterfaceMethodref:
duke@435 1233 case JVM_CONSTANT_NameAndType:
duke@435 1234 return 5;
duke@435 1235
duke@435 1236 case JVM_CONSTANT_Long:
duke@435 1237 case JVM_CONSTANT_Double:
duke@435 1238 return 9;
duke@435 1239 }
duke@435 1240 assert(false, "cpool_entry_size: Invalid constant pool entry tag");
duke@435 1241 return 1;
duke@435 1242 } /* end cpool_entry_size */
duke@435 1243
duke@435 1244
duke@435 1245 // SymbolHashMap is used to find a constant pool index from a string.
duke@435 1246 // This function fills in SymbolHashMaps, one for utf8s and one for
duke@435 1247 // class names, returns size of the cpool raw bytes.
duke@435 1248 jint constantPoolOopDesc::hash_entries_to(SymbolHashMap *symmap,
duke@435 1249 SymbolHashMap *classmap) {
duke@435 1250 jint size = 0;
duke@435 1251
duke@435 1252 for (u2 idx = 1; idx < length(); idx++) {
duke@435 1253 u2 tag = tag_at(idx).value();
duke@435 1254 size += cpool_entry_size(idx);
duke@435 1255
duke@435 1256 switch(tag) {
duke@435 1257 case JVM_CONSTANT_Utf8: {
duke@435 1258 symbolOop sym = symbol_at(idx);
duke@435 1259 symmap->add_entry(sym, idx);
duke@435 1260 DBG(printf("adding symbol entry %s = %d\n", sym->as_utf8(), idx));
duke@435 1261 break;
duke@435 1262 }
duke@435 1263 case JVM_CONSTANT_Class:
duke@435 1264 case JVM_CONSTANT_UnresolvedClass:
duke@435 1265 case JVM_CONSTANT_UnresolvedClassInError: {
duke@435 1266 symbolOop sym = klass_name_at(idx);
duke@435 1267 classmap->add_entry(sym, idx);
duke@435 1268 DBG(printf("adding class entry %s = %d\n", sym->as_utf8(), idx));
duke@435 1269 break;
duke@435 1270 }
duke@435 1271 case JVM_CONSTANT_Long:
duke@435 1272 case JVM_CONSTANT_Double: {
duke@435 1273 idx++; // Both Long and Double take two cpool slots
duke@435 1274 break;
duke@435 1275 }
duke@435 1276 }
duke@435 1277 }
duke@435 1278 return size;
duke@435 1279 } /* end hash_utf8_entries_to */
duke@435 1280
duke@435 1281
duke@435 1282 // Copy cpool bytes.
duke@435 1283 // Returns:
duke@435 1284 // 0, in case of OutOfMemoryError
duke@435 1285 // -1, in case of internal error
duke@435 1286 // > 0, count of the raw cpool bytes that have been copied
duke@435 1287 int constantPoolOopDesc::copy_cpool_bytes(int cpool_size,
duke@435 1288 SymbolHashMap* tbl,
duke@435 1289 unsigned char *bytes) {
duke@435 1290 u2 idx1, idx2;
duke@435 1291 jint size = 0;
duke@435 1292 jint cnt = length();
duke@435 1293 unsigned char *start_bytes = bytes;
duke@435 1294
duke@435 1295 for (jint idx = 1; idx < cnt; idx++) {
duke@435 1296 u1 tag = tag_at(idx).value();
duke@435 1297 jint ent_size = cpool_entry_size(idx);
duke@435 1298
duke@435 1299 assert(size + ent_size <= cpool_size, "Size mismatch");
duke@435 1300
duke@435 1301 *bytes = tag;
duke@435 1302 DBG(printf("#%03hd tag=%03hd, ", idx, tag));
duke@435 1303 switch(tag) {
duke@435 1304 case JVM_CONSTANT_Invalid: {
duke@435 1305 DBG(printf("JVM_CONSTANT_Invalid"));
duke@435 1306 break;
duke@435 1307 }
duke@435 1308 case JVM_CONSTANT_Unicode: {
duke@435 1309 assert(false, "Wrong constant pool tag: JVM_CONSTANT_Unicode");
duke@435 1310 DBG(printf("JVM_CONSTANT_Unicode"));
duke@435 1311 break;
duke@435 1312 }
duke@435 1313 case JVM_CONSTANT_Utf8: {
duke@435 1314 symbolOop sym = symbol_at(idx);
duke@435 1315 char* str = sym->as_utf8();
duke@435 1316 // Warning! It's crashing on x86 with len = sym->utf8_length()
duke@435 1317 int len = (int) strlen(str);
duke@435 1318 Bytes::put_Java_u2((address) (bytes+1), (u2) len);
duke@435 1319 for (int i = 0; i < len; i++) {
duke@435 1320 bytes[3+i] = (u1) str[i];
duke@435 1321 }
duke@435 1322 DBG(printf("JVM_CONSTANT_Utf8: %s ", str));
duke@435 1323 break;
duke@435 1324 }
duke@435 1325 case JVM_CONSTANT_Integer: {
duke@435 1326 jint val = int_at(idx);
duke@435 1327 Bytes::put_Java_u4((address) (bytes+1), *(u4*)&val);
duke@435 1328 break;
duke@435 1329 }
duke@435 1330 case JVM_CONSTANT_Float: {
duke@435 1331 jfloat val = float_at(idx);
duke@435 1332 Bytes::put_Java_u4((address) (bytes+1), *(u4*)&val);
duke@435 1333 break;
duke@435 1334 }
duke@435 1335 case JVM_CONSTANT_Long: {
duke@435 1336 jlong val = long_at(idx);
duke@435 1337 Bytes::put_Java_u8((address) (bytes+1), *(u8*)&val);
duke@435 1338 idx++; // Long takes two cpool slots
duke@435 1339 break;
duke@435 1340 }
duke@435 1341 case JVM_CONSTANT_Double: {
duke@435 1342 jdouble val = double_at(idx);
duke@435 1343 Bytes::put_Java_u8((address) (bytes+1), *(u8*)&val);
duke@435 1344 idx++; // Double takes two cpool slots
duke@435 1345 break;
duke@435 1346 }
duke@435 1347 case JVM_CONSTANT_Class:
duke@435 1348 case JVM_CONSTANT_UnresolvedClass:
duke@435 1349 case JVM_CONSTANT_UnresolvedClassInError: {
duke@435 1350 *bytes = JVM_CONSTANT_Class;
duke@435 1351 symbolOop sym = klass_name_at(idx);
duke@435 1352 idx1 = tbl->symbol_to_value(sym);
duke@435 1353 assert(idx1 != 0, "Have not found a hashtable entry");
duke@435 1354 Bytes::put_Java_u2((address) (bytes+1), idx1);
duke@435 1355 DBG(printf("JVM_CONSTANT_Class: idx=#%03hd, %s", idx1, sym->as_utf8()));
duke@435 1356 break;
duke@435 1357 }
duke@435 1358 case JVM_CONSTANT_String: {
duke@435 1359 unsigned int hash;
duke@435 1360 char *str = string_at_noresolve(idx);
duke@435 1361 symbolOop sym = SymbolTable::lookup_only(str, (int) strlen(str), hash);
thurka@1208 1362 if (sym == NULL) {
thurka@1208 1363 // sym can be NULL if string refers to incorrectly encoded JVM_CONSTANT_Utf8
thurka@1208 1364 // this can happen with JVM TI; see CR 6839599 for more details
thurka@1208 1365 oop string = *(obj_at_addr(idx));
thurka@1208 1366 assert(java_lang_String::is_instance(string),"Not a String");
thurka@1208 1367 DBG(printf("Error #%03hd tag=%03hd\n", idx, tag));
thurka@1208 1368 idx1 = 0;
thurka@1208 1369 for (int j = 0; j < tbl->table_size() && idx1 == 0; j++) {
thurka@1208 1370 for (SymbolHashMapEntry* cur = tbl->bucket(j); cur != NULL; cur = cur->next()) {
thurka@1208 1371 int length;
thurka@1208 1372 sym = cur->symbol();
thurka@1208 1373 jchar* chars = sym->as_unicode(length);
thurka@1208 1374 if (java_lang_String::equals(string, chars, length)) {
thurka@1208 1375 idx1 = cur->value();
thurka@1208 1376 DBG(printf("Index found: %d\n",idx1));
thurka@1208 1377 break;
thurka@1208 1378 }
thurka@1208 1379 }
thurka@1208 1380 }
thurka@1208 1381 } else {
thurka@1208 1382 idx1 = tbl->symbol_to_value(sym);
thurka@1208 1383 }
duke@435 1384 assert(idx1 != 0, "Have not found a hashtable entry");
duke@435 1385 Bytes::put_Java_u2((address) (bytes+1), idx1);
duke@435 1386 DBG(printf("JVM_CONSTANT_String: idx=#%03hd, %s", idx1, str));
duke@435 1387 break;
duke@435 1388 }
duke@435 1389 case JVM_CONSTANT_UnresolvedString: {
duke@435 1390 *bytes = JVM_CONSTANT_String;
duke@435 1391 symbolOop sym = unresolved_string_at(idx);
duke@435 1392 idx1 = tbl->symbol_to_value(sym);
duke@435 1393 assert(idx1 != 0, "Have not found a hashtable entry");
duke@435 1394 Bytes::put_Java_u2((address) (bytes+1), idx1);
duke@435 1395 DBG(char *str = sym->as_utf8());
duke@435 1396 DBG(printf("JVM_CONSTANT_UnresolvedString: idx=#%03hd, %s", idx1, str));
duke@435 1397 break;
duke@435 1398 }
duke@435 1399 case JVM_CONSTANT_Fieldref:
duke@435 1400 case JVM_CONSTANT_Methodref:
duke@435 1401 case JVM_CONSTANT_InterfaceMethodref: {
duke@435 1402 idx1 = uncached_klass_ref_index_at(idx);
duke@435 1403 idx2 = uncached_name_and_type_ref_index_at(idx);
duke@435 1404 Bytes::put_Java_u2((address) (bytes+1), idx1);
duke@435 1405 Bytes::put_Java_u2((address) (bytes+3), idx2);
duke@435 1406 DBG(printf("JVM_CONSTANT_Methodref: %hd %hd", idx1, idx2));
duke@435 1407 break;
duke@435 1408 }
duke@435 1409 case JVM_CONSTANT_NameAndType: {
duke@435 1410 idx1 = name_ref_index_at(idx);
duke@435 1411 idx2 = signature_ref_index_at(idx);
duke@435 1412 Bytes::put_Java_u2((address) (bytes+1), idx1);
duke@435 1413 Bytes::put_Java_u2((address) (bytes+3), idx2);
duke@435 1414 DBG(printf("JVM_CONSTANT_NameAndType: %hd %hd", idx1, idx2));
duke@435 1415 break;
duke@435 1416 }
duke@435 1417 case JVM_CONSTANT_ClassIndex: {
duke@435 1418 *bytes = JVM_CONSTANT_Class;
duke@435 1419 idx1 = klass_index_at(idx);
duke@435 1420 Bytes::put_Java_u2((address) (bytes+1), idx1);
duke@435 1421 DBG(printf("JVM_CONSTANT_ClassIndex: %hd", idx1));
duke@435 1422 break;
duke@435 1423 }
duke@435 1424 case JVM_CONSTANT_StringIndex: {
duke@435 1425 *bytes = JVM_CONSTANT_String;
duke@435 1426 idx1 = string_index_at(idx);
duke@435 1427 Bytes::put_Java_u2((address) (bytes+1), idx1);
duke@435 1428 DBG(printf("JVM_CONSTANT_StringIndex: %hd", idx1));
duke@435 1429 break;
duke@435 1430 }
jrose@1957 1431 case JVM_CONSTANT_MethodHandle: {
jrose@1957 1432 *bytes = JVM_CONSTANT_MethodHandle;
jrose@1957 1433 int kind = method_handle_ref_kind_at(idx);
jrose@1957 1434 idx1 = method_handle_index_at(idx);
jrose@1957 1435 *(bytes+1) = (unsigned char) kind;
jrose@1957 1436 Bytes::put_Java_u2((address) (bytes+2), idx1);
jrose@1957 1437 DBG(printf("JVM_CONSTANT_MethodHandle: %d %hd", kind, idx1));
jrose@1957 1438 break;
jrose@1957 1439 }
jrose@1957 1440 case JVM_CONSTANT_MethodType: {
jrose@1957 1441 *bytes = JVM_CONSTANT_MethodType;
jrose@1957 1442 idx1 = method_type_index_at(idx);
jrose@1957 1443 Bytes::put_Java_u2((address) (bytes+1), idx1);
jrose@1957 1444 DBG(printf("JVM_CONSTANT_MethodType: %hd", idx1));
jrose@1957 1445 break;
jrose@1957 1446 }
duke@435 1447 }
duke@435 1448 DBG(printf("\n"));
duke@435 1449 bytes += ent_size;
duke@435 1450 size += ent_size;
duke@435 1451 }
duke@435 1452 assert(size == cpool_size, "Size mismatch");
duke@435 1453
duke@435 1454 // Keep temorarily for debugging until it's stable.
duke@435 1455 DBG(print_cpool_bytes(cnt, start_bytes));
duke@435 1456 return (int)(bytes - start_bytes);
duke@435 1457 } /* end copy_cpool_bytes */
duke@435 1458
duke@435 1459
duke@435 1460 void SymbolHashMap::add_entry(symbolOop sym, u2 value) {
duke@435 1461 char *str = sym->as_utf8();
duke@435 1462 unsigned int hash = compute_hash(str, sym->utf8_length());
duke@435 1463 unsigned int index = hash % table_size();
duke@435 1464
duke@435 1465 // check if already in map
duke@435 1466 // we prefer the first entry since it is more likely to be what was used in
duke@435 1467 // the class file
duke@435 1468 for (SymbolHashMapEntry *en = bucket(index); en != NULL; en = en->next()) {
duke@435 1469 assert(en->symbol() != NULL, "SymbolHashMapEntry symbol is NULL");
duke@435 1470 if (en->hash() == hash && en->symbol() == sym) {
duke@435 1471 return; // already there
duke@435 1472 }
duke@435 1473 }
duke@435 1474
duke@435 1475 SymbolHashMapEntry* entry = new SymbolHashMapEntry(hash, sym, value);
duke@435 1476 entry->set_next(bucket(index));
duke@435 1477 _buckets[index].set_entry(entry);
duke@435 1478 assert(entry->symbol() != NULL, "SymbolHashMapEntry symbol is NULL");
duke@435 1479 }
duke@435 1480
duke@435 1481 SymbolHashMapEntry* SymbolHashMap::find_entry(symbolOop sym) {
duke@435 1482 assert(sym != NULL, "SymbolHashMap::find_entry - symbol is NULL");
duke@435 1483 char *str = sym->as_utf8();
duke@435 1484 int len = sym->utf8_length();
duke@435 1485 unsigned int hash = SymbolHashMap::compute_hash(str, len);
duke@435 1486 unsigned int index = hash % table_size();
duke@435 1487 for (SymbolHashMapEntry *en = bucket(index); en != NULL; en = en->next()) {
duke@435 1488 assert(en->symbol() != NULL, "SymbolHashMapEntry symbol is NULL");
duke@435 1489 if (en->hash() == hash && en->symbol() == sym) {
duke@435 1490 return en;
duke@435 1491 }
duke@435 1492 }
duke@435 1493 return NULL;
duke@435 1494 }

mercurial