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
b816a8e6
Commit
b816a8e6
authored
Mar 14, 2014
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Mar 26, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Improve dwarf support.
parent
83b6b22f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
1 deletion
+16
-1
dwarf.c
dlls/dbghelp/dwarf.c
+16
-1
No files found.
dlls/dbghelp/dwarf.c
View file @
b816a8e6
...
...
@@ -1440,6 +1440,9 @@ static struct symt* dwarf2_parse_udt_type(dwarf2_parse_context_t* ctx,
switch
(
child
->
abbrev
->
tag
)
{
case
DW_TAG_array_type
:
dwarf2_parse_array_type
(
ctx
,
di
);
break
;
case
DW_TAG_member
:
/* FIXME: should I follow the sibling stuff ?? */
dwarf2_parse_udt_member
(
ctx
,
child
,
(
struct
symt_udt
*
)
di
->
symt
);
...
...
@@ -1710,7 +1713,10 @@ static void dwarf2_parse_subprogram_label(dwarf2_subprogram_t* subpgm,
static
void
dwarf2_parse_subprogram_block
(
dwarf2_subprogram_t
*
subpgm
,
struct
symt_block
*
parent_block
,
dwarf2_debug_info_t
*
di
);
dwarf2_debug_info_t
*
di
);
static
struct
symt
*
dwarf2_parse_subroutine_type
(
dwarf2_parse_context_t
*
ctx
,
dwarf2_debug_info_t
*
di
);
static
void
dwarf2_parse_inlined_subroutine
(
dwarf2_subprogram_t
*
subpgm
,
struct
symt_block
*
parent_block
,
...
...
@@ -1801,6 +1807,12 @@ static void dwarf2_parse_subprogram_block(dwarf2_subprogram_t* subpgm,
case
DW_TAG_variable
:
dwarf2_parse_variable
(
subpgm
,
block
,
child
);
break
;
case
DW_TAG_pointer_type
:
dwarf2_parse_pointer_type
(
subpgm
->
ctx
,
di
);
break
;
case
DW_TAG_subroutine_type
:
dwarf2_parse_subroutine_type
(
subpgm
->
ctx
,
di
);
break
;
case
DW_TAG_lexical_block
:
dwarf2_parse_subprogram_block
(
subpgm
,
block
,
child
);
break
;
...
...
@@ -1930,6 +1942,9 @@ static struct symt* dwarf2_parse_subprogram(dwarf2_parse_context_t* ctx,
case
DW_TAG_inlined_subroutine
:
dwarf2_parse_inlined_subroutine
(
&
subpgm
,
NULL
,
child
);
break
;
case
DW_TAG_pointer_type
:
dwarf2_parse_pointer_type
(
subpgm
.
ctx
,
di
);
break
;
case
DW_TAG_subprogram
:
/* FIXME: likely a declaration (to be checked)
* skip it for now
...
...
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