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
1bd693b1
Commit
1bd693b1
authored
Jan 23, 2012
by
Eric Pouech
Committed by
Alexandre Julliard
Jan 24, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedbg: Enhance algorithm to look up for memory data inside a minidump.
parent
a672a51c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
5 deletions
+26
-5
tgt_minidump.c
programs/winedbg/tgt_minidump.c
+26
-5
No files found.
programs/winedbg/tgt_minidump.c
View file @
1bd693b1
...
...
@@ -103,23 +103,44 @@ static BOOL tgt_process_minidump_read(HANDLE hProcess, const void* addr,
{
MINIDUMP_MEMORY_LIST
*
mml
=
stream
;
MINIDUMP_MEMORY_DESCRIPTOR
*
mmd
=
&
mml
->
MemoryRanges
[
0
];
int
i
;
int
i
,
found
=
-
1
;
SIZE_T
ilen
,
prev_len
=
0
;
/* There's no reason that memory ranges inside a minidump do not overlap.
* So be smart when looking for a given memory range (either grab a
* range that covers the whole requested area, or if none, the range that
* has the largest overlap with requested area)
*/
for
(
i
=
0
;
i
<
mml
->
NumberOfMemoryRanges
;
i
++
,
mmd
++
)
{
if
(
get_addr64
(
mmd
->
StartOfMemoryRange
)
<=
(
DWORD_PTR
)
addr
&&
(
DWORD_PTR
)
addr
<
get_addr64
(
mmd
->
StartOfMemoryRange
)
+
mmd
->
Memory
.
DataSize
)
{
len
=
min
(
len
,
i
len
=
min
(
len
,
get_addr64
(
mmd
->
StartOfMemoryRange
)
+
mmd
->
Memory
.
DataSize
-
(
DWORD_PTR
)
addr
);
if
(
ilen
==
len
)
/* whole range is matched */
{
found
=
i
;
prev_len
=
ilen
;
break
;
}
if
(
found
==
-
1
||
ilen
>
prev_len
)
/* partial match, keep largest one */
{
found
=
i
;
prev_len
=
ilen
;
}
}
}
if
(
found
!=
-
1
)
{
mmd
=
&
mml
->
MemoryRanges
[
found
];
memcpy
(
buffer
,
(
char
*
)
private_data
(
dbg_curr_process
)
->
mapping
+
mmd
->
Memory
.
Rva
+
(
DWORD_PTR
)
addr
-
get_addr64
(
mmd
->
StartOfMemoryRange
),
len
);
if
(
rlen
)
*
rlen
=
len
;
prev_
len
);
if
(
rlen
)
*
rlen
=
prev_
len
;
return
TRUE
;
}
}
}
/* FIXME: this is a dirty hack to let the last frame in a bt to work
* However, we need to check who's to blame, this code or the current
* dbghelp!StackWalk implementation
...
...
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