OLD | NEW |
---|---|
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 #include "lib/stacktrace.h" | 5 #include "lib/stacktrace.h" |
6 #include "vm/bootstrap_natives.h" | 6 #include "vm/bootstrap_natives.h" |
7 #include "vm/exceptions.h" | 7 #include "vm/exceptions.h" |
8 #include "vm/object_store.h" | 8 #include "vm/object_store.h" |
9 #include "vm/runtime_entry.h" | 9 #include "vm/runtime_entry.h" |
10 #include "vm/stack_frame.h" | 10 #include "vm/stack_frame.h" |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
54 // An utility method for convenient printing of dart stack traces when | 54 // An utility method for convenient printing of dart stack traces when |
55 // inside 'gdb'. Note: This function will only work when there is a | 55 // inside 'gdb'. Note: This function will only work when there is a |
56 // valid exit frame information. It will not work when a breakpoint is | 56 // valid exit frame information. It will not work when a breakpoint is |
57 // set in dart code and control is got inside 'gdb' without going through | 57 // set in dart code and control is got inside 'gdb' without going through |
58 // the runtime or native transition stub. | 58 // the runtime or native transition stub. |
59 void _printCurrentStacktrace() { | 59 void _printCurrentStacktrace() { |
60 const Stacktrace& stacktrace = GetCurrentStacktrace(0); | 60 const Stacktrace& stacktrace = GetCurrentStacktrace(0); |
61 OS::PrintErr("=== Current Trace:\n%s===\n", stacktrace.ToCString()); | 61 OS::PrintErr("=== Current Trace:\n%s===\n", stacktrace.ToCString()); |
62 } | 62 } |
63 | 63 |
64 void _printCurrentStacktrace2() { | |
65 StackFrameIterator frames(StackFrameIterator::kDontValidateFrames); | |
66 StackFrame* frame = frames.NextFrame(); | |
67 while (frame != NULL) { | |
68 OS::Print("%s\n", frame->ToCString()); | |
69 frame = frames.NextFrame(); | |
70 } | |
71 } | |
siva
2016/06/21 23:51:42
Is this another utility method for use from gdb, i
rmacnak
2016/06/22 19:42:17
Renamed to _printCurrentStacktraceNoSafepoint.
| |
72 | |
64 DEFINE_NATIVE_ENTRY(StackTrace_current, 0) { | 73 DEFINE_NATIVE_ENTRY(StackTrace_current, 0) { |
65 const Stacktrace& stacktrace = GetCurrentStacktrace(1); | 74 const Stacktrace& stacktrace = GetCurrentStacktrace(1); |
66 return stacktrace.raw(); | 75 return stacktrace.raw(); |
67 } | 76 } |
68 | 77 |
69 } // namespace dart | 78 } // namespace dart |
OLD | NEW |