Changes in kernel/arch/amd64/src/asm.S [45f7449:4236b18] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/src/asm.S
r45f7449 r4236b18 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.