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
45d4021f
Commit
45d4021f
authored
Aug 24, 2021
by
Eric Pouech
Committed by
Alexandre Julliard
Aug 24, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedump: Add support for buildinfo codeview record.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f5800a78
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
mscvpdb.h
include/wine/mscvpdb.h
+7
-0
msc.c
tools/winedump/msc.c
+4
-0
No files found.
include/wine/mscvpdb.h
View file @
45d4021f
...
@@ -1825,6 +1825,13 @@ union codeview_symbol
...
@@ -1825,6 +1825,13 @@ union codeview_symbol
{
{
unsigned
short
int
len
;
unsigned
short
int
len
;
unsigned
short
int
id
;
unsigned
short
int
id
;
cv_itemid_t
itemid
;
}
build_info_v3
;
struct
{
unsigned
short
int
len
;
unsigned
short
int
id
;
unsigned
int
pParent
;
unsigned
int
pParent
;
unsigned
int
pEnd
;
unsigned
int
pEnd
;
cv_itemid_t
inlinee
;
cv_itemid_t
inlinee
;
...
...
tools/winedump/msc.c
View file @
45d4021f
...
@@ -1743,6 +1743,10 @@ BOOL codeview_dump_symbols(const void* root, unsigned long size)
...
@@ -1743,6 +1743,10 @@ BOOL codeview_dump_symbols(const void* root, unsigned long size)
sym
->
callsiteinfo_v3
.
sect
,
sym
->
callsiteinfo_v3
.
off
,
sym
->
callsiteinfo_v3
.
typind
);
sym
->
callsiteinfo_v3
.
sect
,
sym
->
callsiteinfo_v3
.
off
,
sym
->
callsiteinfo_v3
.
typind
);
break
;
break
;
case
S_BUILDINFO
:
printf
(
"Build-info V3 item:%04x
\n
"
,
sym
->
build_info_v3
.
itemid
);
break
;
case
S_INLINESITE
:
case
S_INLINESITE
:
printf
(
"Inline-site V3 parent:%x end:%x inlinee:%x
\n
"
,
printf
(
"Inline-site V3 parent:%x end:%x inlinee:%x
\n
"
,
sym
->
inline_site_v3
.
pParent
,
sym
->
inline_site_v3
.
pEnd
,
sym
->
inline_site_v3
.
inlinee
);
sym
->
inline_site_v3
.
pParent
,
sym
->
inline_site_v3
.
pEnd
,
sym
->
inline_site_v3
.
inlinee
);
...
...
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