Lines Matching refs:r64p
47 prnt_64regs(struct xg_gdb_regs64 *r64p) in prnt_64regs() argument
49 printf("rip:%016"PRIx64" rsp:%016"PRIx64" flags:%08x\n", r64p->rip, r64p->rsp, in prnt_64regs()
50 r64p->eflags); in prnt_64regs()
51 printf("rax:%016"PRIx64" rbx:%016"PRIx64" rcx:%016"PRIx64"\n", r64p->rax, r64p->rbx, in prnt_64regs()
52 r64p->rcx); in prnt_64regs()
53 printf("rdx:%016"PRIx64" rsi:%016"PRIx64" rdi:%016"PRIx64"\n", r64p->rdx, r64p->rsi, in prnt_64regs()
54 r64p->rdi); in prnt_64regs()
55 printf("r08:%016"PRIx64" r09:%016"PRIx64" r10:%016"PRIx64"\n", r64p->r8, r64p->r9, in prnt_64regs()
56 r64p->r10); in prnt_64regs()
57 printf("r11:%016"PRIx64" r12:%016"PRIx64" r13:%016"PRIx64"\n", r64p->r11, r64p->r12, in prnt_64regs()
58 r64p->r13); in prnt_64regs()
59 printf("r14:%016"PRIx64" r15:%016"PRIx64" rbp:%016"PRIx64"\n", r64p->r14, r64p->r15, in prnt_64regs()
60 r64p->rbp); in prnt_64regs()
61 printf("cs:%08x ds:%08x fs:%08x gs:%08x\n", r64p->cs, in prnt_64regs()
62 r64p->ds, r64p->fs, r64p->gs); in prnt_64regs()