Changeset 53f9821 in mainline for arch/amd64/src/interrupt.c
- Timestamp:
- 2006-03-20T20:32:17Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 018d957e
- Parents:
- 9d3e185
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/amd64/src/interrupt.c
r9d3e185 r53f9821 55 55 printf("ERROR_WORD=%Q\n", istate->error_word); 56 56 printf("%%rcs=%Q, flags=%Q, %%cr0=%Q\n", istate->cs, istate->rflags,read_cr0()); 57 printf("%%rax=%Q, %%rbx=%Q, %%rcx=%Q\n",istate->rax,istate->rbx,istate->rcx); 58 printf("%%rdx=%Q, %%rsi=%Q, %%rdi=%Q\n",istate->rdx,istate->rsi,istate->rdi); 59 printf("%%r8 =%Q, %%r9 =%Q, %%r10=%Q\n",istate->r8,istate->r9,istate->r10); 60 printf("%%r11=%Q, %%r12=%Q, %%r13=%Q\n",istate->r11,istate->r12,istate->r13); 61 printf("%%r14=%Q, %%r15=%Q, %%rsp=%Q\n",istate->r14,istate->r15,&istate->stack[0]); 62 printf("%%rbp=%Q\n",istate->rbp); 63 /* 64 printf("stack: %Q, %Q, %Q\n", x[5], x[6], x[7]); 65 printf(" %Q, %Q, %Q\n", x[8], x[9], x[10]); 66 printf(" %Q, %Q, %Q\n", x[11], x[12], x[13]); 67 printf(" %Q, %Q, %Q\n", x[14], x[15], x[16]); 68 */ 57 printf("%%rax=%Q, %%rcx=%Q, %%rdx=%Q\n",istate->rax,istate->rcx,istate->rdx); 58 printf("%%rsi=%Q, %%rdi=%Q, %%r8 =%Q\n",istate->rsi,istate->rdi,istate->r8); 59 printf("%%r9 =%Q, %%r10 =%Q, %%r11=%Q\n",istate->r9,istate->r10,istate->r11); 60 #ifdef CONFIG_DEBUG_ALLREGS 61 printf("%%r12=%Q, %%r13=%Q, %%r14=%Q\n",istate->r12,istate->r13,istate->r14); 62 printf("%%r15=%Q, %%rbx=%Q, %%rbp=%Q\n",istate->r15,istate->rbx,&istate->rbp); 63 #endif 64 printf("%%rsp=%Q\n",&istate->stack[0]); 69 65 } 70 66
Note:
See TracChangeset
for help on using the changeset viewer.