mirror of
https://github.com/reactos/reactos.git
synced 2025-04-06 05:34:22 +00:00
[ASM:X64] Save GS base MSR in trap frame
This commit is contained in:
parent
8ec888487a
commit
7e6dce6aa1
1 changed files with 7 additions and 0 deletions
|
@ -97,6 +97,13 @@ MACRO(EnterTrap, Flags)
|
|||
mov [rbp + KTRAP_FRAME_SegGs], gs
|
||||
endif
|
||||
|
||||
#if DBG
|
||||
mov ecx, MSR_GS_BASE
|
||||
rdmsr
|
||||
mov [rbp + KTRAP_FRAME_GsBase], eax
|
||||
mov [rbp + KTRAP_FRAME_GsBase + 4], edx
|
||||
#endif
|
||||
|
||||
/* Save previous mode and check if it was user mode */
|
||||
mov ax, [rbp + KTRAP_FRAME_SegCs]
|
||||
and al, 1
|
||||
|
|
Loading…
Reference in a new issue