Lines Matching refs:PrintF
123 PrintF("Simulator hit stop %u: %s\n", code, msg); in Stop()
125 PrintF("Simulator hit %s\n", msg); in Stop()
250 PrintF(" 0x%08" V8PRIxPTR " %s\n", sim_->get_pc(), buffer.start()); in Debug()
291 PrintF(" 0x%08" V8PRIxPTR " %s\n", sim_->get_pc(), in Debug()
316 PrintF(" %3s: %08" V8PRIxPTR, in Debug()
321 PrintF(" (%f)\n", dvalue); in Debug()
323 PrintF("\n"); in Debug()
326 PrintF(" pc: %08" V8PRIxPTR " lr: %08" V8PRIxPTR in Debug()
335 PrintF(" %3s: %08" V8PRIxPTR " %11" V8PRIdPTR, in Debug()
340 PrintF(" (%f)\n", dvalue); in Debug()
342 PrintF("\n"); in Debug()
345 PrintF(" pc: %08" V8PRIxPTR " lr: %08" V8PRIxPTR in Debug()
355 PrintF("%3s: %f 0x%08x %08x\n", in Debug()
367 PrintF("%s: 0x%08" V8PRIxPTR " %" V8PRIdPTR "\n", arg1, value, in Debug()
370 PrintF("%s unrecognized\n", arg1); in Debug()
374 PrintF("%s: 0x%08" V8PRIxPTR " %" V8PRIdPTR "\n", arg1, value, in Debug()
378 PrintF("%s: %f 0x%08x %08x\n", arg1, dvalue, in Debug()
382 PrintF("%s unrecognized\n", arg1); in Debug()
386 PrintF("print <register>\n"); in Debug()
406 PrintF("printobject <value>\n"); in Debug()
412 PrintF("%s unrecognized\n", arg1); in Debug()
426 PrintF("%s unrecognized\n", arg1); in Debug()
444 PrintF(" 0x%08" V8PRIxPTR ": 0x%08" V8PRIxPTR " %10" V8PRIdPTR, in Debug()
450 PrintF(" ("); in Debug()
452 PrintF("smi %d", PlatformSmiTagging::SmiToInt(obj)); in Debug()
456 PrintF(")"); in Debug()
458 PrintF("\n"); in Debug()
505 PrintF(" 0x%08" V8PRIxPTR " %s\n", reinterpret_cast<intptr_t>(prev), in Debug()
509 PrintF("relinquishing control to gdb\n"); in Debug()
511 PrintF("regaining control from gdb\n"); in Debug()
517 PrintF("setting breakpoint failed\n"); in Debug()
520 PrintF("%s unrecognized\n", arg1); in Debug()
523 PrintF("break <address>\n"); in Debug()
527 PrintF("deleting breakpoint failed\n"); in Debug()
530 PrintF("Condition reg: %08x\n", sim_->condition_reg_); in Debug()
532 PrintF("Link reg: %08" V8PRIxPTR "\n", sim_->special_reg_lr_); in Debug()
534 PrintF("Ctr reg: %08" V8PRIxPTR "\n", sim_->special_reg_ctr_); in Debug()
536 PrintF("XER: %08x\n", sim_->special_reg_xer_); in Debug()
538 PrintF("FPSCR: %08x\n", sim_->fp_condition_reg_); in Debug()
552 PrintF("Not at debugger stop.\n"); in Debug()
558 PrintF("Stop information:\n"); in Debug()
565 PrintF("Unrecognized argument.\n"); in Debug()
576 PrintF("Unrecognized argument.\n"); in Debug()
587 PrintF("Unrecognized argument.\n"); in Debug()
591 PrintF("Wrong usage. Use help command for more information.\n"); in Debug()
595 PrintF("Trace of executed instructions is %s\n", in Debug()
598 PrintF("cont\n"); in Debug()
599 PrintF(" continue execution (alias 'c')\n"); in Debug()
600 PrintF("stepi [num instructions]\n"); in Debug()
601 PrintF(" step one/num instruction(s) (alias 'si')\n"); in Debug()
602 PrintF("print <register>\n"); in Debug()
603 PrintF(" print register content (alias 'p')\n"); in Debug()
604 PrintF(" use register name 'all' to display all integer registers\n"); in Debug()
605 PrintF( in Debug()
608 PrintF(" use register name 'rN' to display register number 'N'\n"); in Debug()
609 PrintF(" add argument 'fp' to print register pair double values\n"); in Debug()
610 PrintF( in Debug()
613 PrintF("printobject <register>\n"); in Debug()
614 PrintF(" print an object from a register (alias 'po')\n"); in Debug()
615 PrintF("cr\n"); in Debug()
616 PrintF(" print condition register\n"); in Debug()
617 PrintF("lr\n"); in Debug()
618 PrintF(" print link register\n"); in Debug()
619 PrintF("ctr\n"); in Debug()
620 PrintF(" print ctr register\n"); in Debug()
621 PrintF("xer\n"); in Debug()
622 PrintF(" print XER\n"); in Debug()
623 PrintF("fpscr\n"); in Debug()
624 PrintF(" print FPSCR\n"); in Debug()
625 PrintF("stack [<num words>]\n"); in Debug()
626 PrintF(" dump stack content, default dump 10 words)\n"); in Debug()
627 PrintF("mem <address> [<num words>]\n"); in Debug()
628 PrintF(" dump memory content, default dump 10 words)\n"); in Debug()
629 PrintF("disasm [<instructions>]\n"); in Debug()
630 PrintF("disasm [<address/register>]\n"); in Debug()
631 PrintF("disasm [[<address/register>] <instructions>]\n"); in Debug()
632 PrintF(" disassemble code, default is 10 instructions\n"); in Debug()
633 PrintF(" from pc (alias 'di')\n"); in Debug()
634 PrintF("gdb\n"); in Debug()
635 PrintF(" enter gdb\n"); in Debug()
636 PrintF("break <address>\n"); in Debug()
637 PrintF(" set a break point on the address\n"); in Debug()
638 PrintF("del\n"); in Debug()
639 PrintF(" delete the breakpoint\n"); in Debug()
640 PrintF("trace (alias 't')\n"); in Debug()
641 PrintF(" toogle the tracing of all executed statements\n"); in Debug()
642 PrintF("stop feature:\n"); in Debug()
643 PrintF(" Description:\n"); in Debug()
644 PrintF(" Stops are debug instructions inserted by\n"); in Debug()
645 PrintF(" the Assembler::stop() function.\n"); in Debug()
646 PrintF(" When hitting a stop, the Simulator will\n"); in Debug()
647 PrintF(" stop and and give control to the PPCDebugger.\n"); in Debug()
648 PrintF(" The first %d stop codes are watched:\n", in Debug()
650 PrintF(" - They can be enabled / disabled: the Simulator\n"); in Debug()
651 PrintF(" will / won't stop when hitting them.\n"); in Debug()
652 PrintF(" - The Simulator keeps track of how many times they \n"); in Debug()
653 PrintF(" are met. (See the info command.) Going over a\n"); in Debug()
654 PrintF(" disabled stop still increases its counter. \n"); in Debug()
655 PrintF(" Commands:\n"); in Debug()
656 PrintF(" stop info all/<code> : print infos about number <code>\n"); in Debug()
657 PrintF(" or all stop(s).\n"); in Debug()
658 PrintF(" stop enable/disable all/<code> : enables / disables\n"); in Debug()
659 PrintF(" all or number <code> stop(s)\n"); in Debug()
660 PrintF(" stop unstop\n"); in Debug()
661 PrintF(" ignore the stop instruction at the current location\n"); in Debug()
662 PrintF(" from now on\n"); in Debug()
664 PrintF("Unknown command: %s\n", cmd); in Debug()
1126 PrintF("Simulator found unsupported instruction:\n 0x%08" V8PRIxPTR ": %s\n", in Format()
1273 PrintF("Call to host function at %p with args %f, %f", in SoftwareInterrupt()
1277 PrintF("Call to host function at %p with arg %f", in SoftwareInterrupt()
1281 PrintF("Call to host function at %p with args %f, %" V8PRIdPTR, in SoftwareInterrupt()
1289 PrintF(" with unaligned stack %08" V8PRIxPTR "\n", in SoftwareInterrupt()
1292 PrintF("\n"); in SoftwareInterrupt()
1331 PrintF("Returned %08x\n", iresult); in SoftwareInterrupt()
1336 PrintF("Returned %f\n", dresult); in SoftwareInterrupt()
1347 PrintF("Call to host function at %p args %08" V8PRIxPTR, in SoftwareInterrupt()
1350 PrintF(" with unaligned stack %08" V8PRIxPTR "\n", in SoftwareInterrupt()
1353 PrintF("\n"); in SoftwareInterrupt()
1363 PrintF("Call to host function at %p args %08" V8PRIxPTR in SoftwareInterrupt()
1367 PrintF(" with unaligned stack %08" V8PRIxPTR "\n", in SoftwareInterrupt()
1370 PrintF("\n"); in SoftwareInterrupt()
1380 PrintF("Call to host function at %p args %08" V8PRIxPTR in SoftwareInterrupt()
1384 PrintF(" with unaligned stack %08" V8PRIxPTR "\n", in SoftwareInterrupt()
1387 PrintF("\n"); in SoftwareInterrupt()
1399 PrintF("Call to host function at %p args %08" V8PRIxPTR in SoftwareInterrupt()
1403 PrintF(" with unaligned stack %08" V8PRIxPTR "\n", in SoftwareInterrupt()
1406 PrintF("\n"); in SoftwareInterrupt()
1420 PrintF( in SoftwareInterrupt()
1427 PrintF(" with unaligned stack %08" V8PRIxPTR "\n", in SoftwareInterrupt()
1430 PrintF("\n"); in SoftwareInterrupt()
1442 PrintF("Returned {%08" V8PRIxPTR ", %08" V8PRIxPTR "}\n", x, y); in SoftwareInterrupt()
1520 PrintF( in IncreaseStopCounter()
1536 PrintF("Stop not watched."); in PrintStopInfo()
1543 PrintF("stop %i - 0x%x: \t%s, \tcounter = %i, \t%s\n", code, code, in PrintStopInfo()
1546 PrintF("stop %i - 0x%x: \t%s, \tcounter = %i\n", code, code, state, in PrintStopInfo()
2681 PrintF("Unimplemented: %08x\n", instr->InstructionBits()); in ExecuteExt2_5bit()
3793 PrintF("%05d %08" V8PRIxPTR " %s\n", icount_, in Trace()