Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
c02b63fb
Commit
c02b63fb
authored
Jul 02, 2020
by
Paul Gofman
Committed by
Alexandre Julliard
Jul 02, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Add PE frame handling to KiUserExceptionDispatcher() on x64.
Signed-off-by:
Paul Gofman
<
pgofman@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
69b65723
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
6 deletions
+13
-6
signal_x86_64.c
dlls/ntdll/signal_x86_64.c
+13
-6
No files found.
dlls/ntdll/signal_x86_64.c
View file @
c02b63fb
...
...
@@ -588,15 +588,22 @@ __ASM_GLOBAL_FUNC( KiUserExceptionDispatcher,
"mov %rbp,-0x10(%rcx)
\n\t
"
"mov %rdi,-0x18(%rcx)
\n\t
"
"mov %rsi,-0x20(%rcx)
\n\t
"
"
mov %rcx
,%rbp
\n\t
"
"
lea -0x10(%rcx)
,%rbp
\n\t
"
"mov %rsp,%rdx
\n\t
"
/* context */
"lea 0x4f0(%rsp),%rcx
\n\t
"
/* rec */
__ASM_SEH
(
".seh_pushreg %rbp
\n\t
"
)
__ASM_SEH
(
".seh_setframe %rbp,0
\n\t
"
)
__ASM_SEH
(
".seh_pushreg %rdi
\n\t
"
)
__ASM_SEH
(
".seh_pushreg %rsi
\n\t
"
)
__ASM_SEH
(
".seh_endprologue
\n\t
"
)
__ASM_CFI
(
".cfi_signal_frame
\n\t
"
)
__ASM_CFI
(
".cfi_def_cfa %rbp,0
\n\t
"
)
__ASM_CFI
(
".cfi_rel_offset %rip,-0x8
\n\t
"
)
__ASM_CFI
(
".cfi_rel_offset %rbp,-0x10
\n\t
"
)
__ASM_CFI
(
".cfi_rel_offset %rdi,-0x18
\n\t
"
)
__ASM_CFI
(
".cfi_rel_offset %rsi,-0x20
\n\t
"
)
__ASM_CFI
(
".cfi_adjust_cfa_offset 0x10
\n\t
"
)
__ASM_CFI
(
".cfi_def_cfa %rbp,0x10
\n\t
"
)
__ASM_CFI
(
".cfi_rel_offset %rip,0x8
\n\t
"
)
__ASM_CFI
(
".cfi_rel_offset %rbp,0x0
\n\t
"
)
__ASM_CFI
(
".cfi_rel_offset %rdi,-0x8
\n\t
"
)
__ASM_CFI
(
".cfi_rel_offset %rsi,-0x10
\n\t
"
)
"call "
__ASM_NAME
(
"dispatch_exception"
)
"
\n\t
"
"int3"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment