Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Unified Diff: trunk/src/base/debug/stack_trace_android.cc

Issue 26145004: Revert 226920 "Roll Clang 188423:191856." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | trunk/src/base/security_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/base/debug/stack_trace_android.cc
===================================================================
--- trunk/src/base/debug/stack_trace_android.cc (revision 227218)
+++ trunk/src/base/debug/stack_trace_android.cc (working copy)
@@ -26,6 +26,16 @@
bool have_skipped_self;
};
+// Clang's unwind.h doesn't provide _Unwind_GetIP on ARM, refer to
+// http://llvm.org/bugs/show_bug.cgi?id=16564 for details.
+#if defined(__clang__)
+uintptr_t _Unwind_GetIP(_Unwind_Context* context) {
+ uintptr_t ip = 0;
+ _Unwind_VRS_Get(context, _UVRSC_CORE, 15, _UVRSD_UINT32, &ip);
+ return ip & ~static_cast<uintptr_t>(0x1); // Remove thumb mode bit.
+}
+#endif
+
_Unwind_Reason_Code TraceStackFrame(_Unwind_Context* context, void* arg) {
StackCrawlState* state = static_cast<StackCrawlState*>(arg);
uintptr_t ip = _Unwind_GetIP(context);
« no previous file with comments | « no previous file | trunk/src/base/security_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698