Changeset 15d0046 in mainline for kernel/arch/ia32/src/asm.S
- Timestamp:
- 2014-09-12T13:22:33Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9b20126
- Parents:
- 8db09e4 (diff), 105d8d6 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/src/asm.S
r8db09e4 r15d0046 34 34 #include <arch/cpu.h> 35 35 #include <arch/mm/page.h> 36 #include <arch/istate_struct.h> 36 37 37 38 .text … … 136 137 ret 137 138 138 #define ISTATE_OFFSET_EDX 0139 #define ISTATE_OFFSET_ECX 4140 #define ISTATE_OFFSET_EBX 8141 #define ISTATE_OFFSET_ESI 12142 #define ISTATE_OFFSET_EDI 16143 #define ISTATE_OFFSET_EBP 20144 #define ISTATE_OFFSET_EAX 24145 #define ISTATE_OFFSET_EBP_FRAME 28146 #define ISTATE_OFFSET_EIP_FRAME 32147 #define ISTATE_OFFSET_GS 36148 #define ISTATE_OFFSET_FS 40149 #define ISTATE_OFFSET_ES 44150 #define ISTATE_OFFSET_DS 48151 #define ISTATE_OFFSET_ERROR_WORD 52152 #define ISTATE_OFFSET_EIP 56153 #define ISTATE_OFFSET_CS 60154 #define ISTATE_OFFSET_EFLAGS 64155 #define ISTATE_OFFSET_ESP 68156 #define ISTATE_OFFSET_SS 72157 158 139 /* 159 140 * Size of the istate structure without the hardware-saved part 160 141 * and without the error word. 161 142 */ 162 #define ISTATE_SOFT_SIZE 52143 #define ISTATE_SOFT_SIZE ISTATE_SIZE - (6 * 4) 163 144 164 145 /*
Note:
See TracChangeset
for help on using the changeset viewer.