Changeset 1f7cb3a in mainline for kernel/arch/ia32/src
- Timestamp:
- 2009-02-14T20:14:38Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 74bcf5e
- Parents:
- 6c1f763
- Location:
- kernel/arch/ia32/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/src/asm.S
r6c1f763 r1f7cb3a 269 269 pushl %gs 270 270 271 #ifdef CONFIG_DEBUG_ALLREGS272 pushl %ebx273 pushl %ebp274 pushl %edi275 pushl %esi276 #else277 subl $16, %esp278 #endif279 271 pushl %edx 280 272 pushl %ecx … … 298 290 popl %ecx 299 291 popl %edx 300 #ifdef CONFIG_DEBUG_ALLREGS301 popl %esi302 popl %edi303 popl %ebp304 popl %ebx305 #else306 addl $16, %esp307 #endif308 292 309 293 popl %gs -
kernel/arch/ia32/src/interrupt.c
r6c1f763 r1f7cb3a 78 78 printf("%%cs=%#lx,flags=%#lx\n", istate->cs, istate->eflags); 79 79 printf("%%eax=%#lx, %%ecx=%#lx, %%edx=%#lx, %%esp=%p\n", istate->eax, istate->ecx, istate->edx, &istate->stack[0]); 80 #ifdef CONFIG_DEBUG_ALLREGS81 printf("%%esi=%#lx, %%edi=%#lx, %%ebp=%#lx, %%ebx=%#lx\n", istate->esi, istate->edi, istate->ebp, istate->ebx);82 #endif83 80 printf("stack: %#lx, %#lx, %#lx, %#lx\n", istate->stack[0], istate->stack[1], istate->stack[2], istate->stack[3]); 84 81 printf(" %#lx, %#lx, %#lx, %#lx\n", istate->stack[4], istate->stack[5], istate->stack[6], istate->stack[7]);
Note:
See TracChangeset
for help on using the changeset viewer.