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
48a74277
Commit
48a74277
authored
Jun 03, 2019
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Jun 06, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Support S_HEAPALLOCSITE entry.
Signed-off-by:
Alistair Leslie-Hughes
<
leslie_alistair@hotmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e87322e9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
msc.c
dlls/dbghelp/msc.c
+5
-0
mscvpdb.h
include/wine/mscvpdb.h
+10
-0
No files found.
dlls/dbghelp/msc.c
View file @
48a74277
...
...
@@ -2011,6 +2011,11 @@ static BOOL codeview_snarf(const struct msc_debug_info* msc_dbg, const BYTE* roo
case
S_ALIGN_V1
:
TRACE
(
"S-Align V1
\n
"
);
break
;
case
S_HEAPALLOCSITE
:
TRACE
(
"heap site: offset=0x%08x at sect_idx 0x%04x, inst_len 0x%08x, index 0x%08x
\n
"
,
sym
->
heap_alloc_site
.
offset
,
sym
->
heap_alloc_site
.
sect_idx
,
sym
->
heap_alloc_site
.
inst_len
,
sym
->
heap_alloc_site
.
index
);
break
;
/* the symbols we can safely ignore for now */
case
S_TRAMPOLINE
:
...
...
include/wine/mscvpdb.h
View file @
48a74277
...
...
@@ -1644,6 +1644,16 @@ union codeview_symbol
unsigned
short
eh_sect
;
/* section for exception handler */
unsigned
int
flags
;
}
frame_info_v2
;
struct
{
unsigned
short
len
;
unsigned
short
id
;
unsigned
int
offset
;
unsigned
short
sect_idx
;
unsigned
short
inst_len
;
unsigned
int
index
;
}
heap_alloc_site
;
};
#define S_COMPILAND_V1 0x0001
...
...
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