mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-22 20:45:14 +00:00
Kernel: Fix struct layout for interrupt entries on x86_64
This commit is contained in:
parent
5afec84cc2
commit
36ce2a2b76
Notes:
sideshowbarker
2024-07-18 11:20:17 +09:00
Author: https://github.com/gunnarbeutner Commit: https://github.com/SerenityOS/serenity/commit/36ce2a2b765 Pull-request: https://github.com/SerenityOS/serenity/pull/8317
2 changed files with 7 additions and 3 deletions
|
@ -47,11 +47,11 @@ struct [[gnu::packed]] RegisterState {
|
|||
FlatPtr r14;
|
||||
FlatPtr r15;
|
||||
#endif
|
||||
u16 exception_code;
|
||||
u16 isr_number;
|
||||
#if ARCH(X86_64)
|
||||
u32 padding;
|
||||
#endif
|
||||
u16 exception_code;
|
||||
u16 isr_number;
|
||||
#if ARCH(I386)
|
||||
FlatPtr eip;
|
||||
#else
|
||||
|
|
|
@ -14,7 +14,11 @@ asm(
|
|||
"interrupt_common_asm_entry: \n"
|
||||
// add the padding field in RegisterState
|
||||
" subq $4, %rsp\n"
|
||||
" movl $0, 0(%rsp)\n"
|
||||
" pushq %rax\n"
|
||||
" movl 12(%rsp), %eax\n"
|
||||
" movl $0, 12(%rsp)\n"
|
||||
" movl %eax, 8(%rsp)\n"
|
||||
" popq %rax\n"
|
||||
// save all the other registers
|
||||
" pushq %r15\n"
|
||||
" pushq %r14\n"
|
||||
|
|
Loading…
Add table
Reference in a new issue