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
c80f5181
Commit
c80f5181
authored
Oct 24, 2006
by
David Anderson
Committed by
Alexandre Julliard
Oct 26, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Avoid printing too many "What the heck" messages from winedbg.
parent
3bc442dc
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
dwarf.c
dlls/dbghelp/dwarf.c
+10
-2
No files found.
dlls/dbghelp/dwarf.c
View file @
c80f5181
...
...
@@ -1095,7 +1095,7 @@ static unsigned dwarf2_map_register(int regno)
switch
(
regno
)
{
case
Wine_DW_no_register
:
FIXME
(
"What the heck
\n
"
);
reg
=
0
;
break
;
case
Wine_DW_no_register
:
FIXME
(
"What the heck
map reg 0x%x
\n
"
,
regno
);
reg
=
0
;
break
;
/* FIXME: this is a dirty hack */
case
Wine_DW_frame_register
:
reg
=
0
;
break
;
case
0
:
reg
=
CV_REG_EAX
;
break
;
...
...
@@ -1394,8 +1394,16 @@ static struct symt* dwarf2_parse_subprogram(dwarf2_parse_context_t* ctx,
subpgm
.
ctx
=
ctx
;
subpgm
.
compiland
=
compiland
;
if
(
dwarf2_compute_location
(
ctx
,
di
,
DW_AT_frame_base
,
&
subpgm
.
frame_offset
,
&
subpgm
.
frame_reg
))
if
(
dwarf2_compute_location
(
ctx
,
di
,
DW_AT_frame_base
,
&
subpgm
.
frame_offset
,
&
subpgm
.
frame_reg
))
{
TRACE
(
"For %s got %ld/%d
\n
"
,
name
.
u
.
string
,
subpgm
.
frame_offset
,
subpgm
.
frame_reg
);
if
(
subpgm
.
frame_reg
==
Wine_DW_no_register
)
{
/* Likely a constant, meaning a location list offset.
We do not handle those yet. */
/*FIXME("need to handle location lists\n"); */
subpgm
.
frame_reg
=
0
;
subpgm
.
frame_offset
=
0
;
}
}
else
/* on stack !! */
{
subpgm
.
frame_reg
=
0
;
...
...
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