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

Unified Diff: runtime/vm/native_symbol_linux.cc

Issue 100103011: Changes to support dprof and Observatory profiler UIs (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 12 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 | « runtime/vm/native_symbol_android.cc ('k') | runtime/vm/native_symbol_macos.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/native_symbol_linux.cc
diff --git a/runtime/vm/native_symbol_linux.cc b/runtime/vm/native_symbol_linux.cc
index 4a0e12fad2d21bd177234fe9be13ece7a65b161b..93fdcbe0967f91397c24c4573e4779b65e546f8e 100644
--- a/runtime/vm/native_symbol_linux.cc
+++ b/runtime/vm/native_symbol_linux.cc
@@ -21,7 +21,7 @@ void NativeSymbolResolver::ShutdownOnce() {
}
-char* NativeSymbolResolver::LookupSymbolName(uintptr_t pc) {
+char* NativeSymbolResolver::LookupSymbolName(uintptr_t pc, uintptr_t* start) {
Dl_info info;
int r = dladdr(reinterpret_cast<void*>(pc), &info);
if (r == 0) {
@@ -30,6 +30,9 @@ char* NativeSymbolResolver::LookupSymbolName(uintptr_t pc) {
if (info.dli_sname == NULL) {
return NULL;
}
+ if (start != NULL) {
+ *start = reinterpret_cast<uintptr_t>(info.dli_saddr);
+ }
int status;
char* demangled = abi::__cxa_demangle(info.dli_sname, NULL, NULL, &status);
if (status == 0) {
« no previous file with comments | « runtime/vm/native_symbol_android.cc ('k') | runtime/vm/native_symbol_macos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698