OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/debug/stack_trace.h" | 5 #include "base/debug/stack_trace.h" |
6 | 6 |
7 #include <android/log.h> | 7 #include <android/log.h> |
8 #include <unwind.h> | 8 #include <unwind.h> |
9 | 9 |
10 #include "base/debug/proc_maps_linux.h" | 10 #include "base/debug/proc_maps_linux.h" |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
110 ++iter; | 110 ++iter; |
111 } | 111 } |
112 | 112 |
113 *os << base::StringPrintf("#%02zd " FMT_ADDR " ", i, address); | 113 *os << base::StringPrintf("#%02zd " FMT_ADDR " ", i, address); |
114 | 114 |
115 if (iter != regions.end()) { | 115 if (iter != regions.end()) { |
116 uintptr_t rel_pc = address - iter->start + iter->offset; | 116 uintptr_t rel_pc = address - iter->start + iter->offset; |
117 const char* path = iter->path.c_str(); | 117 const char* path = iter->path.c_str(); |
118 *os << base::StringPrintf("%s+" FMT_ADDR, path, rel_pc); | 118 *os << base::StringPrintf("%s+" FMT_ADDR, path, rel_pc); |
119 } else { | 119 } else { |
120 *os << "<unknown>"; | 120 *os << std::string("<unknown>"); |
Nico
2014/10/31 14:30:08
Out of interest, what happens without this? Writin
Fabrice (no longer in Chrome)
2014/10/31 15:45:23
Maybe it works with Clang and not GCC? I noticed t
Nico
2014/10/31 16:10:03
Oh, that's a good point. Works with gcc on my mac
Fabrice (no longer in Chrome)
2014/10/31 17:01:15
Yes, that was it, thanks!
| |
121 } | 121 } |
122 | 122 |
123 *os << "\n"; | 123 *os << std::string("\n"); |
124 } | 124 } |
125 } | 125 } |
126 | 126 |
127 } // namespace debug | 127 } // namespace debug |
128 } // namespace base | 128 } // namespace base |
OLD | NEW |