Lines Matching refs:st

306 void constantPoolKlass::oop_print_on(oop obj, outputStream* st) {
310 Klass::oop_print_on(obj, st);
313 st->print(" - flags: 0x%x", cp->flags());
314 if (cp->has_pseudo_string()) st->print(" has_pseudo_string");
315 if (cp->has_invokedynamic()) st->print(" has_invokedynamic");
316 if (cp->has_preresolution()) st->print(" has_preresolution");
317 st->cr();
321 st->print_cr(" - holder: " INTPTR_FORMAT "%s", cp->pool_holder(), (extra? " (extra)" : ""));
323 st->print_cr(" - cache: " INTPTR_FORMAT, cp->cache());
325 st->print(" - %3d : ", index);
326 cp->tag_at(index).print_on(st);
327 st->print(" : ");
331 anObj->print_value_on(st);
332 st->print(" {0x%lx}", (address)anObj);
338 st->print("klass_index=%d", cp->uncached_klass_ref_index_at(index));
339 st->print(" name_and_type_index=%d", cp->uncached_name_and_type_ref_index_at(index));
348 anObj->print_value_on(st);
349 st->print(" {0x%lx}", (address)anObj);
353 anObj->print_value_on(st);
354 st->print(" {0x%lx}", (address)anObj);
357 st->print("%d", cp->int_at(index));
360 st->print("%f", cp->float_at(index));
363 st->print_jlong(cp->long_at(index));
367 st->print("%lf", cp->double_at(index));
371 st->print("name_index=%d", cp->name_ref_index_at(index));
372 st->print(" signature_index=%d", cp->signature_ref_index_at(index));
375 cp->symbol_at(index)->print_value_on(st);
382 entry.get_oop()->print_value_on(st);
384 entry.get_symbol()->print_value_on(st);
389 st->print("ref_kind=%d", cp->method_handle_ref_kind_at(index));
390 st->print(" ref_index=%d", cp->method_handle_index_at(index));
393 st->print("signature_index=%d", cp->method_type_index_at(index));
397 st->print("bootstrap_method_index=%d", cp->invoke_dynamic_bootstrap_method_ref_index_at(index));
398 st->print(" name_and_type_index=%d", cp->invoke_dynamic_name_and_type_ref_index_at(index));
403 st->print((arg_i == 0 ? " arguments={%d" : ", %d"), arg);
405 st->print("}");
413 st->cr();
415 st->cr();
418 void constantPoolKlass::oop_print_value_on(oop obj, outputStream* st) {
421 st->print("constant pool [%d]", cp->length());
422 if (cp->has_pseudo_string()) st->print("/pseudo_string");
423 if (cp->has_invokedynamic()) st->print("/invokedynamic");
424 if (cp->has_preresolution()) st->print("/preresolution");
425 if (cp->operands() != NULL) st->print("/operands[%d]", cp->operands()->length());
426 cp->print_address_on(st);
427 st->print(" for ");
428 cp->pool_holder()->print_value_on(st);
431 if (extra) st->print(" (extra)");
434 st->print(" cache=" PTR_FORMAT, cp->cache());
444 void constantPoolKlass::oop_verify_on(oop obj, outputStream* st) {
445 Klass::oop_verify_on(obj, st);