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
196f8f07
Commit
196f8f07
authored
Apr 06, 2010
by
Eric Pouech
Committed by
Alexandre Julliard
Apr 07, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Added support for DW_CFA_GNU_args_size.
parent
d9c01dcc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
dwarf.c
dlls/dbghelp/dwarf.c
+8
-0
dwarf.h
dlls/dbghelp/dwarf.h
+5
-0
No files found.
dlls/dbghelp/dwarf.c
View file @
196f8f07
...
...
@@ -2672,6 +2672,14 @@ static void execute_cfa_instructions(dwarf2_traverse_context_t* ctx,
ctx
->
data
+=
len
;
break
;
}
case
DW_CFA_GNU_args_size
:
/* FIXME: should check that GCC is the compiler for this CU */
{
ULONG_PTR
args
=
dwarf2_leb128_as_unsigned
(
ctx
);
TRACE
(
"%lx: DW_CFA_GNU_args_size %lu
\n
"
,
info
->
ip
,
args
);
/* ignored */
break
;
}
default:
FIXME
(
"%lx: unknown CFA opcode %02x
\n
"
,
info
->
ip
,
op
);
break
;
...
...
dlls/dbghelp/dwarf.h
View file @
196f8f07
...
...
@@ -449,6 +449,11 @@ enum dwarf_call_frame_info
DW_CFA_val_offset
=
0x14
,
DW_CFA_val_offset_sf
=
0x15
,
DW_CFA_val_expression
=
0x16
,
/* GNU extensions */
DW_CFA_GNU_window_save
=
0x2d
,
DW_CFA_GNU_args_size
=
0x2e
,
DW_CFA_GNU_negative_offset_extended
=
0x2f
,
};
#define DW_EH_PE_native 0x00
...
...
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