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
c22eaccd
Commit
c22eaccd
authored
Jan 08, 2011
by
Eric Pouech
Committed by
Alexandre Julliard
Jan 10, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedbg: Try to detect jump (potentially thunk code) while getting the status.
parent
ae9f8604
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
symbol.c
programs/winedbg/symbol.c
+8
-0
No files found.
programs/winedbg/symbol.c
View file @
c22eaccd
...
...
@@ -535,7 +535,15 @@ enum dbg_line_status symbol_get_function_line_status(const ADDRESS64* addr)
/* do we have some info for lin address ? */
if
(
!
SymFromAddr
(
dbg_curr_process
->
handle
,
lin
,
&
disp64
,
sym
))
{
ADDRESS64
jumpee
;
/* some compilers insert thunks in their code without debug info associated
* take care of this situation
*/
if
(
be_cpu
->
is_jump
((
void
*
)
lin
,
&
jumpee
))
return
symbol_get_function_line_status
(
&
jumpee
);
return
dbg_no_line_info
;
}
switch
(
sym
->
Tag
)
{
...
...
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