Changeset 1f7cb3a in mainline for kernel/arch/ia32/src


Ignore:
Timestamp:
2009-02-14T20:14:38Z (16 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
74bcf5e
Parents:
6c1f763
Message:

Get rid of CONFIG_DEBUG_ALLREGS.

Location:
kernel/arch/ia32/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia32/src/asm.S

    r6c1f763 r1f7cb3a  
    269269        pushl %gs
    270270
    271 #ifdef CONFIG_DEBUG_ALLREGS
    272         pushl %ebx
    273         pushl %ebp
    274         pushl %edi
    275         pushl %esi
    276 #else
    277         subl $16, %esp
    278 #endif
    279271        pushl %edx
    280272        pushl %ecx
     
    298290        popl %ecx
    299291        popl %edx
    300 #ifdef CONFIG_DEBUG_ALLREGS
    301         popl %esi
    302         popl %edi
    303         popl %ebp
    304         popl %ebx
    305 #else
    306         addl $16, %esp
    307 #endif 
    308292       
    309293        popl %gs
  • kernel/arch/ia32/src/interrupt.c

    r6c1f763 r1f7cb3a  
    7878        printf("%%cs=%#lx,flags=%#lx\n", istate->cs, istate->eflags);
    7979        printf("%%eax=%#lx, %%ecx=%#lx, %%edx=%#lx, %%esp=%p\n", istate->eax, istate->ecx, istate->edx, &istate->stack[0]);
    80 #ifdef CONFIG_DEBUG_ALLREGS
    81         printf("%%esi=%#lx, %%edi=%#lx, %%ebp=%#lx, %%ebx=%#lx\n", istate->esi, istate->edi, istate->ebp, istate->ebx);
    82 #endif
    8380        printf("stack: %#lx, %#lx, %#lx, %#lx\n", istate->stack[0], istate->stack[1], istate->stack[2], istate->stack[3]);
    8481        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.