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
ca95533e
Commit
ca95533e
authored
Mar 14, 2024
by
Eric Pouech
Committed by
Alexandre Julliard
Mar 15, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Add support for V2 unwind info (x86_64).
Signed-off-by:
Eric Pouech
<
epouech@codeweavers.com
>
parent
8dd24ad2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
cpu_x86_64.c
dlls/dbghelp/cpu_x86_64.c
+4
-0
No files found.
dlls/dbghelp/cpu_x86_64.c
View file @
ca95533e
...
...
@@ -279,6 +279,7 @@ static int get_opcode_size(UNWIND_CODE op)
return
2
+
(
op
.
OpInfo
!=
0
);
case
UWOP_SAVE_NONVOL
:
case
UWOP_SAVE_XMM128
:
case
UWOP_EPILOG
:
return
2
;
case
UWOP_SAVE_NONVOL_FAR
:
case
UWOP_SAVE_XMM128_FAR
:
...
...
@@ -586,6 +587,9 @@ static BOOL interpret_function_table_entry(struct cpu_stack_walk* csw,
if
(
!
sw_read_mem
(
csw
,
context
->
Rsp
+
24
,
&
context
->
Rsp
,
sizeof
(
DWORD64
)))
return
FALSE
;
mach_frame
=
TRUE
;
break
;
case
UWOP_EPILOG
:
if
(
info
->
Version
==
2
)
break
;
/* nothing to do */
default:
FIXME
(
"unknown code %u
\n
"
,
info
->
UnwindCode
[
i
].
UnwindOp
);
break
;
...
...
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