Lines Matching refs:PrintF
78 PrintF("Simulator hit stop %u: %s\n", code, msg); in Stop()
80 PrintF("Simulator hit %s\n", msg); in Stop()
203 PrintF(" 0x%08" V8PRIxPTR " %s\n", sim_->get_pc(), buffer.start()); in Debug()
244 PrintF(" 0x%08" V8PRIxPTR " %s\n", sim_->get_pc(), in Debug()
269 PrintF(" %3s: %08" V8PRIxPTR, in Debug()
274 PrintF(" (%f)\n", dvalue); in Debug()
276 PrintF("\n"); in Debug()
279 PrintF(" pc: %08" V8PRIxPTR " lr: %08" V8PRIxPTR in Debug()
288 PrintF(" %3s: %08" V8PRIxPTR " %11" V8PRIdPTR, in Debug()
293 PrintF(" (%f)\n", dvalue); in Debug()
295 PrintF("\n"); in Debug()
298 PrintF(" pc: %08" V8PRIxPTR " lr: %08" V8PRIxPTR in Debug()
308 PrintF("%3s: %f 0x%08x %08x\n", in Debug()
320 PrintF("%s: 0x%08" V8PRIxPTR " %" V8PRIdPTR "\n", arg1, value, in Debug()
323 PrintF("%s unrecognized\n", arg1); in Debug()
327 PrintF("%s: 0x%08" V8PRIxPTR " %" V8PRIdPTR "\n", arg1, value, in Debug()
331 PrintF("%s: %f 0x%08x %08x\n", arg1, dvalue, in Debug()
335 PrintF("%s unrecognized\n", arg1); in Debug()
339 PrintF("print <register>\n"); in Debug()
359 PrintF("printobject <value>\n"); in Debug()
365 PrintF("%s unrecognized\n", arg1); in Debug()
379 PrintF("%s unrecognized\n", arg1); in Debug()
397 PrintF(" 0x%08" V8PRIxPTR ": 0x%08" V8PRIxPTR " %10" V8PRIdPTR, in Debug()
404 PrintF(" ("); in Debug()
406 PrintF("smi %d", PlatformSmiTagging::SmiToInt(obj)); in Debug()
410 PrintF(")"); in Debug()
412 PrintF("\n"); in Debug()
459 PrintF(" 0x%08" V8PRIxPTR " %s\n", reinterpret_cast<intptr_t>(prev), in Debug()
463 PrintF("relinquishing control to gdb\n"); in Debug()
465 PrintF("regaining control from gdb\n"); in Debug()
471 PrintF("setting breakpoint failed\n"); in Debug()
474 PrintF("%s unrecognized\n", arg1); in Debug()
477 PrintF("break <address>\n"); in Debug()
481 PrintF("deleting breakpoint failed\n"); in Debug()
484 PrintF("Condition reg: %08x\n", sim_->condition_reg_); in Debug()
486 PrintF("Link reg: %08" V8PRIxPTR "\n", sim_->special_reg_lr_); in Debug()
488 PrintF("Ctr reg: %08" V8PRIxPTR "\n", sim_->special_reg_ctr_); in Debug()
490 PrintF("XER: %08x\n", sim_->special_reg_xer_); in Debug()
492 PrintF("FPSCR: %08x\n", sim_->fp_condition_reg_); in Debug()
506 PrintF("Not at debugger stop.\n"); in Debug()
512 PrintF("Stop information:\n"); in Debug()
519 PrintF("Unrecognized argument.\n"); in Debug()
530 PrintF("Unrecognized argument.\n"); in Debug()
541 PrintF("Unrecognized argument.\n"); in Debug()
545 PrintF("Wrong usage. Use help command for more information.\n"); in Debug()
549 PrintF("Trace of executed instructions is %s\n", in Debug()
552 PrintF("cont\n"); in Debug()
553 PrintF(" continue execution (alias 'c')\n"); in Debug()
554 PrintF("stepi [num instructions]\n"); in Debug()
555 PrintF(" step one/num instruction(s) (alias 'si')\n"); in Debug()
556 PrintF("print <register>\n"); in Debug()
557 PrintF(" print register content (alias 'p')\n"); in Debug()
558 PrintF(" use register name 'all' to display all integer registers\n"); in Debug()
559 PrintF( in Debug()
562 PrintF(" use register name 'rN' to display register number 'N'\n"); in Debug()
563 PrintF(" add argument 'fp' to print register pair double values\n"); in Debug()
564 PrintF( in Debug()
567 PrintF("printobject <register>\n"); in Debug()
568 PrintF(" print an object from a register (alias 'po')\n"); in Debug()
569 PrintF("cr\n"); in Debug()
570 PrintF(" print condition register\n"); in Debug()
571 PrintF("lr\n"); in Debug()
572 PrintF(" print link register\n"); in Debug()
573 PrintF("ctr\n"); in Debug()
574 PrintF(" print ctr register\n"); in Debug()
575 PrintF("xer\n"); in Debug()
576 PrintF(" print XER\n"); in Debug()
577 PrintF("fpscr\n"); in Debug()
578 PrintF(" print FPSCR\n"); in Debug()
579 PrintF("stack [<num words>]\n"); in Debug()
580 PrintF(" dump stack content, default dump 10 words)\n"); in Debug()
581 PrintF("mem <address> [<num words>]\n"); in Debug()
582 PrintF(" dump memory content, default dump 10 words)\n"); in Debug()
583 PrintF("disasm [<instructions>]\n"); in Debug()
584 PrintF("disasm [<address/register>]\n"); in Debug()
585 PrintF("disasm [[<address/register>] <instructions>]\n"); in Debug()
586 PrintF(" disassemble code, default is 10 instructions\n"); in Debug()
587 PrintF(" from pc (alias 'di')\n"); in Debug()
588 PrintF("gdb\n"); in Debug()
589 PrintF(" enter gdb\n"); in Debug()
590 PrintF("break <address>\n"); in Debug()
591 PrintF(" set a break point on the address\n"); in Debug()
592 PrintF("del\n"); in Debug()
593 PrintF(" delete the breakpoint\n"); in Debug()
594 PrintF("trace (alias 't')\n"); in Debug()
595 PrintF(" toogle the tracing of all executed statements\n"); in Debug()
596 PrintF("stop feature:\n"); in Debug()
597 PrintF(" Description:\n"); in Debug()
598 PrintF(" Stops are debug instructions inserted by\n"); in Debug()
599 PrintF(" the Assembler::stop() function.\n"); in Debug()
600 PrintF(" When hitting a stop, the Simulator will\n"); in Debug()
601 PrintF(" stop and and give control to the PPCDebugger.\n"); in Debug()
602 PrintF(" The first %d stop codes are watched:\n", in Debug()
604 PrintF(" - They can be enabled / disabled: the Simulator\n"); in Debug()
605 PrintF(" will / won't stop when hitting them.\n"); in Debug()
606 PrintF(" - The Simulator keeps track of how many times they \n"); in Debug()
607 PrintF(" are met. (See the info command.) Going over a\n"); in Debug()
608 PrintF(" disabled stop still increases its counter. \n"); in Debug()
609 PrintF(" Commands:\n"); in Debug()
610 PrintF(" stop info all/<code> : print infos about number <code>\n"); in Debug()
611 PrintF(" or all stop(s).\n"); in Debug()
612 PrintF(" stop enable/disable all/<code> : enables / disables\n"); in Debug()
613 PrintF(" all or number <code> stop(s)\n"); in Debug()
614 PrintF(" stop unstop\n"); in Debug()
615 PrintF(" ignore the stop instruction at the current location\n"); in Debug()
616 PrintF(" from now on\n"); in Debug()
618 PrintF("Unknown command: %s\n", cmd); in Debug()
1094 PrintF("Simulator found unsupported instruction:\n 0x%08" V8PRIxPTR ": %s\n", in Format()
1235 PrintF("Call to host function at %p with args %f, %f", in SoftwareInterrupt()
1240 PrintF("Call to host function at %p with arg %f", in SoftwareInterrupt()
1245 PrintF("Call to host function at %p with args %f, %" V8PRIdPTR, in SoftwareInterrupt()
1254 PrintF(" with unaligned stack %08" V8PRIxPTR "\n", in SoftwareInterrupt()
1257 PrintF("\n"); in SoftwareInterrupt()
1296 PrintF("Returned %08x\n", iresult); in SoftwareInterrupt()
1301 PrintF("Returned %f\n", dresult); in SoftwareInterrupt()
1312 PrintF("Call to host function at %p args %08" V8PRIxPTR, in SoftwareInterrupt()
1315 PrintF(" with unaligned stack %08" V8PRIxPTR "\n", in SoftwareInterrupt()
1318 PrintF("\n"); in SoftwareInterrupt()
1328 PrintF("Call to host function at %p args %08" V8PRIxPTR in SoftwareInterrupt()
1332 PrintF(" with unaligned stack %08" V8PRIxPTR "\n", in SoftwareInterrupt()
1335 PrintF("\n"); in SoftwareInterrupt()
1345 PrintF("Call to host function at %p args %08" V8PRIxPTR in SoftwareInterrupt()
1349 PrintF(" with unaligned stack %08" V8PRIxPTR "\n", in SoftwareInterrupt()
1352 PrintF("\n"); in SoftwareInterrupt()
1364 PrintF("Call to host function at %p args %08" V8PRIxPTR in SoftwareInterrupt()
1368 PrintF(" with unaligned stack %08" V8PRIxPTR "\n", in SoftwareInterrupt()
1371 PrintF("\n"); in SoftwareInterrupt()
1385 PrintF( in SoftwareInterrupt()
1392 PrintF(" with unaligned stack %08" V8PRIxPTR "\n", in SoftwareInterrupt()
1395 PrintF("\n"); in SoftwareInterrupt()
1404 PrintF("Returned {%08" V8PRIxPTR ", %08" V8PRIxPTR ", %08" V8PRIxPTR in SoftwareInterrupt()
1423 PrintF("Returned {%08" V8PRIxPTR ", %08" V8PRIxPTR "}\n", x, y); in SoftwareInterrupt()
1440 PrintF("Returned %08" V8PRIxPTR "\n", result); in SoftwareInterrupt()
1519 PrintF( in IncreaseStopCounter()
1535 PrintF("Stop not watched."); in PrintStopInfo()
1542 PrintF("stop %i - 0x%x: \t%s, \tcounter = %i, \t%s\n", code, code, in PrintStopInfo()
1545 PrintF("stop %i - 0x%x: \t%s, \tcounter = %i\n", code, code, state, in PrintStopInfo()
2716 PrintF("Unimplemented: %08x\n", instr->InstructionBits()); in ExecuteExt2_5bit()
3828 PrintF("%05d %08" V8PRIxPTR " %s\n", icount_, in Trace()