Changes in kernel/arch/amd64/src/interrupt.c [9171f12:acc7ce4] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/src/interrupt.c
r9171f12 racc7ce4 62 62 void (* enable_irqs_function)(uint16_t irqmask) = NULL; 63 63 void (* eoi_function)(void) = NULL; 64 const char *irqs_info = NULL; 64 65 65 66 void istate_decode(istate_t *istate) 66 67 { 67 printf("cs =%p\trip=%p\trfl=%p\terr=%p\n", 68 istate->cs, istate->rip, istate->rflags, istate->error_word); 69 68 printf("cs =%#0" PRIx64 "\trip=%p\t" 69 "rfl=%#0" PRIx64 "\terr=%#0" PRIx64 "\n", 70 istate->cs, (void *) istate->rip, 71 istate->rflags, istate->error_word); 72 70 73 if (istate_from_uspace(istate)) 71 printf("ss =%p\n", istate->ss); 72 73 printf("rax=%p\trbx=%p\trcx=%p\trdx=%p\n", 74 printf("ss =%#0" PRIx64 "\n", istate->ss); 75 76 printf("rax=%#0" PRIx64 "\trbx=%#0" PRIx64 "\t" 77 "rcx=%#0" PRIx64 "\trdx=%#0" PRIx64 "\n", 74 78 istate->rax, istate->rbx, istate->rcx, istate->rdx); 79 75 80 printf("rsi=%p\trdi=%p\trbp=%p\trsp=%p\n", 76 istate->rsi, istate->rdi, istate->rbp, 77 istate_from_uspace(istate) ? istate->rsp : (uintptr_t)&istate->rsp); 78 printf("r8 =%p\tr9 =%p\tr10=%p\tr11=%p\n", 81 (void *) istate->rsi, (void *) istate->rdi, 82 (void *) istate->rbp, 83 istate_from_uspace(istate) ? ((void *) istate->rsp) : 84 &istate->rsp); 85 86 printf("r8 =%#0" PRIx64 "\tr9 =%#0" PRIx64 "\t" 87 "r10=%#0" PRIx64 "\tr11=%#0" PRIx64 "\n", 79 88 istate->r8, istate->r9, istate->r10, istate->r11); 80 printf("r12=%p\tr13=%p\tr14=%p\tr15=%p\n", 89 90 printf("r12=%#0" PRIx64 "\tr13=%#0" PRIx64 "\t" 91 "r14=%#0" PRIx64 "\tr15=%#0" PRIx64 "\n", 81 92 istate->r12, istate->r13, istate->r14, istate->r15); 82 93 }
Note:
See TracChangeset
for help on using the changeset viewer.