Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(125)

Unified Diff: src/client/ios/handler/ios_exception_minidump_generator.mm

Issue 583002: Fix minidump generation from exception. (Closed) Base URL: http://google-breakpad.googlecode.com/svn/trunk/
Patch Set: Created 11 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/client/ios/handler/ios_exception_minidump_generator.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/client/ios/handler/ios_exception_minidump_generator.mm
===================================================================
--- src/client/ios/handler/ios_exception_minidump_generator.mm (revision 1168)
+++ src/client/ios/handler/ios_exception_minidump_generator.mm (working copy)
@@ -79,9 +79,8 @@
context_ptr->context_flags = MD_CONTEXT_ARM_FULL;
context_ptr->iregs[7] = kExpectedFinalFp; // FP
context_ptr->iregs[13] = kExpectedFinalSp; // SP
- uint32_t pc = GetPCFromException();
- context_ptr->iregs[14] = pc; // LR
- context_ptr->iregs[15] = pc; // PC
+ context_ptr->iregs[14] = GetLRFromException(); // LR
+ context_ptr->iregs[15] = GetPCFromException(); // PC
return true;
#else
assert(false);
@@ -93,6 +92,10 @@
return [[return_addresses_ objectAtIndex:0] unsignedIntegerValue];
}
+uint32_t IosExceptionMinidumpGenerator::GetLRFromException() {
+ return [[return_addresses_ objectAtIndex:1] unsignedIntegerValue];
+}
+
bool IosExceptionMinidumpGenerator::WriteExceptionStream(
MDRawDirectory *exception_stream) {
#ifdef HAS_ARM_SUPPORT
@@ -135,14 +138,14 @@
scoped_array<uint8_t> stack_memory(new uint8_t[size]);
uint32_t sp = size - 4;
uint32_t fp = 0;
- uint32_t lr = [[return_addresses_ lastObject] unsignedIntegerValue];
- for (int current_frame = frame_count - 2;
- current_frame >= 0;
+ uint32_t lr = 0;
+ for (int current_frame = frame_count - 1;
+ current_frame > 0;
--current_frame) {
+ AppendToMemory(stack_memory.get(), sp, lr);
+ sp -= 4;
AppendToMemory(stack_memory.get(), sp, fp);
- sp -= 4;
fp = sp;
- AppendToMemory(stack_memory.get(), sp, lr);
sp -= 4;
lr = [[return_addresses_ objectAtIndex:current_frame] unsignedIntegerValue];
}
@@ -150,7 +153,7 @@
return false;
assert(sp == kExpectedFinalSp);
assert(fp == kExpectedFinalFp);
- assert(lr == GetPCFromException());
+ assert(lr == GetLRFromException());
thread->stack.start_of_memory_range = sp;
thread->stack.memory = memory.location();
memory_blocks_.push_back(thread->stack);
« no previous file with comments | « src/client/ios/handler/ios_exception_minidump_generator.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld 1004:630ec63f810e-tainted