Add support for CFI based stack walking on Arm64.
This CL adds CFI based stack walking support for Arm64 to BreakPad along with unit tests. The Arm64 CFI stack walker is based on the Arm CFI stack walker BUG=367367,335641,354405 R=blundell@chromium.org, mark@chromium.org Review URL: https://breakpad.appspot.com/1664002 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1325 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
@@ -63,7 +63,9 @@ class StackwalkerARM64 : public Stackwalker {
|
||||
// Change the context validity mask of the frame returned by
|
||||
// GetContextFrame to VALID. This is only for use by unit tests; the
|
||||
// default behavior is correct for all application code.
|
||||
void SetContextFrameValidity(int valid) { context_frame_validity_ = valid; }
|
||||
void SetContextFrameValidity(uint64_t valid) {
|
||||
context_frame_validity_ = valid;
|
||||
}
|
||||
|
||||
private:
|
||||
// Implementation of Stackwalker, using arm64 context and stack conventions.
|
||||
|
||||
Reference in New Issue
Block a user