Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
500df921
Commit
500df921
authored
Jun 24, 2015
by
Ken Thomases
Committed by
Alexandre Julliard
Jun 25, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Add partial support for version 3 of DWARF CIEs which are generated by Clang/LLVM.
parent
0bfa1145
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
dwarf.c
dlls/dbghelp/dwarf.c
+5
-2
No files found.
dlls/dbghelp/dwarf.c
View file @
500df921
...
@@ -2629,7 +2629,7 @@ static BOOL parse_cie_details(dwarf2_traverse_context_t* ctx, struct frame_info*
...
@@ -2629,7 +2629,7 @@ static BOOL parse_cie_details(dwarf2_traverse_context_t* ctx, struct frame_info*
/* parse the CIE first */
/* parse the CIE first */
version
=
dwarf2_parse_byte
(
ctx
);
version
=
dwarf2_parse_byte
(
ctx
);
if
(
version
!=
1
)
if
(
version
!=
1
&&
version
!=
3
)
{
{
FIXME
(
"unknown CIE version %u at %p
\n
"
,
version
,
ctx
->
data
-
1
);
FIXME
(
"unknown CIE version %u at %p
\n
"
,
version
,
ctx
->
data
-
1
);
return
FALSE
;
return
FALSE
;
...
@@ -2639,7 +2639,10 @@ static BOOL parse_cie_details(dwarf2_traverse_context_t* ctx, struct frame_info*
...
@@ -2639,7 +2639,10 @@ static BOOL parse_cie_details(dwarf2_traverse_context_t* ctx, struct frame_info*
info
->
code_align
=
dwarf2_leb128_as_unsigned
(
ctx
);
info
->
code_align
=
dwarf2_leb128_as_unsigned
(
ctx
);
info
->
data_align
=
dwarf2_leb128_as_signed
(
ctx
);
info
->
data_align
=
dwarf2_leb128_as_signed
(
ctx
);
info
->
retaddr_reg
=
dwarf2_parse_byte
(
ctx
);
if
(
version
==
1
)
info
->
retaddr_reg
=
dwarf2_parse_byte
(
ctx
);
else
info
->
retaddr_reg
=
dwarf2_leb128_as_unsigned
(
ctx
);
info
->
state
.
cfa_rule
=
RULE_CFA_OFFSET
;
info
->
state
.
cfa_rule
=
RULE_CFA_OFFSET
;
end
=
NULL
;
end
=
NULL
;
...
...
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