Handle frame pointer omission, (#21), part 4 (final part!): FPO stackwalker.
r=bryner
- This change allows Airbag to properly walk win32 stacks produced by code
built with MSVC's frame pointer omission optimization (/Oy). This
optimization is enabled at /O1 and /O2.
- There too many interface and file format changes to list here.
85ce85bfa8
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@42 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
5afd60b067
commit
246f406828
33 changed files with 2643 additions and 1744 deletions
|
@ -45,7 +45,7 @@ MinidumpProcessor::~MinidumpProcessor() {
|
|||
}
|
||||
|
||||
bool MinidumpProcessor::Process(const string &minidump_file,
|
||||
StackFrames *stack_frames) {
|
||||
CallStack *stack) {
|
||||
Minidump dump(minidump_file);
|
||||
if (!dump.Read()) {
|
||||
return false;
|
||||
|
@ -79,7 +79,7 @@ bool MinidumpProcessor::Process(const string &minidump_file,
|
|||
return false;
|
||||
}
|
||||
|
||||
walker->Walk(stack_frames);
|
||||
walker->Walk(stack);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue