Changeset 8e7c9fe in mainline for kernel/arch/amd64/src/asm.S
- Timestamp:
- 2014-09-12T03:45:25Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c53b58e
- Parents:
- 3eb0c85 (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/amd64/src/asm.S
r3eb0c85 r8e7c9fe 29 29 #include <arch/pm.h> 30 30 #include <arch/mm/page.h> 31 #include <arch/istate_struct.h> 31 32 32 33 .text … … 142 143 ret 143 144 144 #define ISTATE_OFFSET_RAX 0145 #define ISTATE_OFFSET_RBX 8146 #define ISTATE_OFFSET_RCX 16147 #define ISTATE_OFFSET_RDX 24148 #define ISTATE_OFFSET_RSI 32149 #define ISTATE_OFFSET_RDI 40150 #define ISTATE_OFFSET_RBP 48151 #define ISTATE_OFFSET_R8 56152 #define ISTATE_OFFSET_R9 64153 #define ISTATE_OFFSET_R10 72154 #define ISTATE_OFFSET_R11 80155 #define ISTATE_OFFSET_R12 88156 #define ISTATE_OFFSET_R13 96157 #define ISTATE_OFFSET_R14 104158 #define ISTATE_OFFSET_R15 112159 #define ISTATE_OFFSET_ALIGNMENT 120160 #define ISTATE_OFFSET_RBP_FRAME 128161 #define ISTATE_OFFSET_RIP_FRAME 136162 #define ISTATE_OFFSET_ERROR_WORD 144163 #define ISTATE_OFFSET_RIP 152164 #define ISTATE_OFFSET_CS 160165 #define ISTATE_OFFSET_RFLAGS 168166 #define ISTATE_OFFSET_RSP 176167 #define ISTATE_OFFSET_SS 184168 169 145 /* 170 146 * Size of the istate structure without the hardware-saved part and without the 171 147 * error word. 172 148 */ 173 #define ISTATE_SOFT_SIZE 144149 #define ISTATE_SOFT_SIZE ISTATE_SIZE - (6 * 8) 174 150 175 151 /**
Note:
See TracChangeset
for help on using the changeset viewer.