Lines Matching refs:st

203     outputStream* st = output();
207 _nm->print_code_comment_on(st, COMMENT_COLUMN, pc0, pc);
217 st->bol();
218 st->print_cr("%3.1f%% [%d]", bucket_count*100.0/total_ticks(), bucket_count);
296 outputStream* st = _output;
299 st->print("NULL");
306 st->print("%d", small_num);
316 st->print("Stub::%s", desc->name());
318 st->print("%+d 0x%p",adr - desc->begin(), adr);
319 else if (WizardMode) st->print(" " PTR_FORMAT, adr);
322 st->print("Stub::<unknown> " PTR_FORMAT, adr);
329 st->print("word_map_base");
330 if (WizardMode) st->print(" " INTPTR_FORMAT, (intptr_t)adr);
340 julong c = st->count();
341 obj->print_value_on(st);
342 if (st->count() == c) {
344 st->print("(a %s)", Klass::cast(obj->klass())->external_name());
351 st->print(PTR_FORMAT, adr);
356 outputStream* st = output();
359 cb->print_block_comment(st, p);
361 _strings.print_block_comment(st, (intptr_t)(p - _start));
363 st->print(" " PTR_FORMAT ": ", p);
368 outputStream* st = output();
379 st->move_to(COMMENT_COLUMN);
385 st->print(BYTES_COMMENT);
387 st->print(" "); // put out a space on word boundaries
389 st->print("%08lx", *(int*)pc);
390 else st->print("%02x", (*pc)&0xFF);
392 st->cr();
404 outputStream* st = env->output();
408 if (flen == 1 && format[0] == '\n') { st->bol(); return 1; }
419 st->print_raw(raw, (int) flen);
424 julong cnt0 = st->count();
425 st->vprint(format, ap);
426 julong cnt1 = st->count();
466 void Disassembler::decode(CodeBlob* cb, outputStream* st) {
468 decode_env env(cb, st);
473 void Disassembler::decode(address start, address end, outputStream* st, CodeStrings c) {
475 decode_env env(CodeCache::find_blob_unsafe(start), st, c);
479 void Disassembler::decode(nmethod* nm, outputStream* st) {
481 decode_env env(nm, st);