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

Side by Side Diff: runtime/lib/stacktrace.cc

Issue 2468093007: clang-format runtime/lib (Closed)
Patch Set: Created 4 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « runtime/lib/simd128.cc ('k') | runtime/lib/string.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 28 matching lines...) Expand all
39 // Skips the first skip_frames Dart frames. 39 // Skips the first skip_frames Dart frames.
40 const Stacktrace& GetCurrentStacktrace(int skip_frames) { 40 const Stacktrace& GetCurrentStacktrace(int skip_frames) {
41 const GrowableObjectArray& code_list = 41 const GrowableObjectArray& code_list =
42 GrowableObjectArray::Handle(GrowableObjectArray::New()); 42 GrowableObjectArray::Handle(GrowableObjectArray::New());
43 const GrowableObjectArray& pc_offset_list = 43 const GrowableObjectArray& pc_offset_list =
44 GrowableObjectArray::Handle(GrowableObjectArray::New()); 44 GrowableObjectArray::Handle(GrowableObjectArray::New());
45 IterateFrames(code_list, pc_offset_list, skip_frames); 45 IterateFrames(code_list, pc_offset_list, skip_frames);
46 const Array& code_array = Array::Handle(Array::MakeArray(code_list)); 46 const Array& code_array = Array::Handle(Array::MakeArray(code_list));
47 const Array& pc_offset_array = 47 const Array& pc_offset_array =
48 Array::Handle(Array::MakeArray(pc_offset_list)); 48 Array::Handle(Array::MakeArray(pc_offset_list));
49 const Stacktrace& stacktrace = Stacktrace::Handle( 49 const Stacktrace& stacktrace =
50 Stacktrace::New(code_array, pc_offset_array)); 50 Stacktrace::Handle(Stacktrace::New(code_array, pc_offset_array));
51 return stacktrace; 51 return stacktrace;
52 } 52 }
53 53
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 // Like _printCurrentStacktrace, but works in a NoSafepointScope. 64 // Like _printCurrentStacktrace, but works in a NoSafepointScope.
65 void _printCurrentStacktraceNoSafepoint() { 65 void _printCurrentStacktraceNoSafepoint() {
66 StackFrameIterator frames(StackFrameIterator::kDontValidateFrames); 66 StackFrameIterator frames(StackFrameIterator::kDontValidateFrames);
67 StackFrame* frame = frames.NextFrame(); 67 StackFrame* frame = frames.NextFrame();
68 while (frame != NULL) { 68 while (frame != NULL) {
69 OS::Print("%s\n", frame->ToCString()); 69 OS::Print("%s\n", frame->ToCString());
70 frame = frames.NextFrame(); 70 frame = frames.NextFrame();
71 } 71 }
72 } 72 }
73 73
74 DEFINE_NATIVE_ENTRY(StackTrace_current, 0) { 74 DEFINE_NATIVE_ENTRY(StackTrace_current, 0) {
75 const Stacktrace& stacktrace = GetCurrentStacktrace(1); 75 const Stacktrace& stacktrace = GetCurrentStacktrace(1);
76 return stacktrace.raw(); 76 return stacktrace.raw();
77 } 77 }
78 78
79 } // namespace dart 79 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/lib/simd128.cc ('k') | runtime/lib/string.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698