Changeset 1f7cb3a in mainline for kernel/arch/mips32
- Timestamp:
- 2009-02-14T20:14:38Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 74bcf5e
- Parents:
- 6c1f763
- Location:
- kernel/arch/mips32
- Files:
-
- 3 edited
-
include/context_offset.h (modified) (1 diff)
-
include/exception.h (modified) (1 diff)
-
src/start.S (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/include/context_offset.h
r6c1f763 r1f7cb3a 77 77 #define EOFFSET_T6 0x34 78 78 #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 99 90 100 91 #ifdef __ASM__ -
kernel/arch/mips32/include/exception.h
r6c1f763 r1f7cb3a 74 74 uint32_t t6; 75 75 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;84 76 uint32_t t8; 85 77 uint32_t t9; 86 78 uint32_t gp; 87 79 uint32_t sp; 88 uint32_t s8;89 80 uint32_t ra; 90 81 -
kernel/arch/mips32/src/start.S
r6c1f763 r1f7cb3a 76 76 sw $at, EOFFSET_HI(\r) 77 77 78 #ifdef CONFIG_DEBUG_ALLREGS79 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 #endif89 90 78 sw $gp, EOFFSET_GP(\r) 91 79 sw $ra, EOFFSET_RA(\r) … … 133 121 lw $t9, EOFFSET_T9(\r) 134 122 135 #ifdef CONFIG_DEBUG_ALLREGS136 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 #endif146 123 lw $gp, EOFFSET_GP(\r) 147 124 lw $ra, EOFFSET_RA(\r)
Note:
See TracChangeset
for help on using the changeset viewer.
