Lines Matching refs:st

422 void os::print_context(outputStream *st, void *context) {
427 st->print_cr("Registers:");
429 st->print( "RAX=" INTPTR_FORMAT, uc->Rax);
430 st->print(", RBX=" INTPTR_FORMAT, uc->Rbx);
431 st->print(", RCX=" INTPTR_FORMAT, uc->Rcx);
432 st->print(", RDX=" INTPTR_FORMAT, uc->Rdx);
433 st->cr();
434 st->print( "RSP=" INTPTR_FORMAT, uc->Rsp);
435 st->print(", RBP=" INTPTR_FORMAT, uc->Rbp);
436 st->print(", RSI=" INTPTR_FORMAT, uc->Rsi);
437 st->print(", RDI=" INTPTR_FORMAT, uc->Rdi);
438 st->cr();
439 st->print( "R8 =" INTPTR_FORMAT, uc->R8);
440 st->print(", R9 =" INTPTR_FORMAT, uc->R9);
441 st->print(", R10=" INTPTR_FORMAT, uc->R10);
442 st->print(", R11=" INTPTR_FORMAT, uc->R11);
443 st->cr();
444 st->print( "R12=" INTPTR_FORMAT, uc->R12);
445 st->print(", R13=" INTPTR_FORMAT, uc->R13);
446 st->print(", R14=" INTPTR_FORMAT, uc->R14);
447 st->print(", R15=" INTPTR_FORMAT, uc->R15);
448 st->cr();
449 st->print( "RIP=" INTPTR_FORMAT, uc->Rip);
450 st->print(", EFLAGS=" INTPTR_FORMAT, uc->EFlags);
452 st->print( "EAX=" INTPTR_FORMAT, uc->Eax);
453 st->print(", EBX=" INTPTR_FORMAT, uc->Ebx);
454 st->print(", ECX=" INTPTR_FORMAT, uc->Ecx);
455 st->print(", EDX=" INTPTR_FORMAT, uc->Edx);
456 st->cr();
457 st->print( "ESP=" INTPTR_FORMAT, uc->Esp);
458 st->print(", EBP=" INTPTR_FORMAT, uc->Ebp);
459 st->print(", ESI=" INTPTR_FORMAT, uc->Esi);
460 st->print(", EDI=" INTPTR_FORMAT, uc->Edi);
461 st->cr();
462 st->print( "EIP=" INTPTR_FORMAT, uc->Eip);
463 st->print(", EFLAGS=" INTPTR_FORMAT, uc->EFlags);
465 st->cr();
466 st->cr();
469 st->print_cr("Top of Stack: (sp=" PTR_FORMAT ")", sp);
470 print_hex_dump(st, (address)sp, (address)(sp + 32), sizeof(intptr_t));
471 st->cr();
477 st->print_cr("Instructions: (pc=" PTR_FORMAT ")", pc);
478 print_hex_dump(st, pc - 32, pc + 32, sizeof(char));
479 st->cr();
483 void os::print_register_info(outputStream *st, void *context) {
488 st->print_cr("Register to memory mapping:");
489 st->cr();
494 st->print("RAX="); print_location(st, uc->Rax);
495 st->print("RBX="); print_location(st, uc->Rbx);
496 st->print("RCX="); print_location(st, uc->Rcx);
497 st->print("RDX="); print_location(st, uc->Rdx);
498 st->print("RSP="); print_location(st, uc->Rsp);
499 st->print("RBP="); print_location(st, uc->Rbp);
500 st->print("RSI="); print_location(st, uc->Rsi);
501 st->print("RDI="); print_location(st, uc->Rdi);
502 st->print("R8 ="); print_location(st, uc->R8);
503 st->print("R9 ="); print_location(st, uc->R9);
504 st->print("R10="); print_location(st, uc->R10);
505 st->print("R11="); print_location(st, uc->R11);
506 st->print("R12="); print_location(st, uc->R12);
507 st->print("R13="); print_location(st, uc->R13);
508 st->print("R14="); print_location(st, uc->R14);
509 st->print("R15="); print_location(st, uc->R15);
511 st->print("EAX="); print_location(st, uc->Eax);
512 st->print("EBX="); print_location(st, uc->Ebx);
513 st->print("ECX="); print_location(st, uc->Ecx);
514 st->print("EDX="); print_location(st, uc->Edx);
515 st->print("ESP="); print_location(st, uc->Esp);
516 st->print("EBP="); print_location(st, uc->Ebp);
517 st->print("ESI="); print_location(st, uc->Esi);
518 st->print("EDI="); print_location(st, uc->Edi);
521 st->cr();