Changeset 1f7cb3a in mainline for kernel/arch/mips32


Ignore:
Timestamp:
2009-02-14T20:14:38Z (17 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/mips32
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/mips32/include/context_offset.h

    r6c1f763 r1f7cb3a  
    7777#define EOFFSET_T6     0x34
    7878#define EOFFSET_T7     0x38
    79 #define EOFFSET_S0     0x3c
    80 #define EOFFSET_S1     0x40
    81 #define EOFFSET_S2     0x44
    82 #define EOFFSET_S3     0x48
    83 #define EOFFSET_S4     0x4c
    84 #define EOFFSET_S5     0x50
    85 #define EOFFSET_S6     0x54
    86 #define EOFFSET_S7     0x58
    87 #define EOFFSET_T8     0x5c
    88 #define EOFFSET_T9     0x60
    89 #define EOFFSET_GP     0x64
    90 #define EOFFSET_SP     0x68
    91 #define EOFFSET_S8     0x6c
    92 #define EOFFSET_RA     0x70
    93 #define EOFFSET_LO     0x74
    94 #define EOFFSET_HI     0x78
    95 #define EOFFSET_STATUS 0x7c
    96 #define EOFFSET_EPC    0x80
    97 #define EOFFSET_K1     0x84
    98 #define REGISTER_SPACE 136
     79#define EOFFSET_T8     0x3c
     80#define EOFFSET_T9     0x40
     81#define EOFFSET_GP     0x44
     82#define EOFFSET_SP     0x48
     83#define EOFFSET_RA     0x4c
     84#define EOFFSET_LO     0x50
     85#define EOFFSET_HI     0x54
     86#define EOFFSET_STATUS 0x58
     87#define EOFFSET_EPC    0x5c
     88#define EOFFSET_K1     0x60
     89#define REGISTER_SPACE 100
    9990
    10091#ifdef __ASM__
  • kernel/arch/mips32/include/exception.h

    r6c1f763 r1f7cb3a  
    7474        uint32_t t6;
    7575        uint32_t t7;
    76         uint32_t s0;
    77         uint32_t s1;
    78         uint32_t s2;
    79         uint32_t s3;
    80         uint32_t s4;
    81         uint32_t s5;
    82         uint32_t s6;
    83         uint32_t s7;
    8476        uint32_t t8;
    8577        uint32_t t9;
    8678        uint32_t gp;
    8779        uint32_t sp;
    88         uint32_t s8;
    8980        uint32_t ra;
    9081       
  • kernel/arch/mips32/src/start.S

    r6c1f763 r1f7cb3a  
    7676        sw $at, EOFFSET_HI(\r)
    7777       
    78 #ifdef CONFIG_DEBUG_ALLREGS     
    79         sw $s0, EOFFSET_S0(\r)
    80         sw $s1, EOFFSET_S1(\r)
    81         sw $s2, EOFFSET_S2(\r)
    82         sw $s3, EOFFSET_S3(\r)
    83         sw $s4, EOFFSET_S4(\r)
    84         sw $s5, EOFFSET_S5(\r)
    85         sw $s6, EOFFSET_S6(\r)
    86         sw $s7, EOFFSET_S7(\r)
    87         sw $s8, EOFFSET_S8(\r)
    88 #endif
    89        
    9078        sw $gp, EOFFSET_GP(\r)
    9179        sw $ra, EOFFSET_RA(\r)
     
    133121        lw $t9, EOFFSET_T9(\r)
    134122       
    135 #ifdef CONFIG_DEBUG_ALLREGS     
    136         lw $s0, EOFFSET_S0(\r)
    137         lw $s1, EOFFSET_S1(\r)
    138         lw $s2, EOFFSET_S2(\r)
    139         lw $s3, EOFFSET_S3(\r)
    140         lw $s4, EOFFSET_S4(\r)
    141         lw $s5, EOFFSET_S5(\r)
    142         lw $s6, EOFFSET_S6(\r)
    143         lw $s7, EOFFSET_S7(\r)
    144         lw $s8, EOFFSET_S8(\r)
    145 #endif
    146123        lw $gp, EOFFSET_GP(\r)
    147124        lw $ra, EOFFSET_RA(\r)
Note: See TracChangeset for help on using the changeset viewer.