OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | |
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. | |
4 | |
5 #ifndef RUNTIME_VM_STACK_TRACE_H_ | |
6 #define RUNTIME_VM_STACK_TRACE_H_ | |
7 | |
8 #include "vm/allocation.h" | |
9 #include "vm/flag_list.h" | |
10 #include "vm/object.h" | |
11 | |
12 namespace dart { | |
13 | |
14 DECLARE_FLAG(bool, show_invisible_frames); | |
15 | |
16 class StackTraceUtils : public AllStatic { | |
17 public: | |
18 /// Counts the number of stack frames. | |
19 /// Skips over the first |skip_frames|. | |
20 /// If |async_function| is not null, stops at the function that has | |
21 /// |async_function| as its parent. | |
22 static intptr_t CountFrames( | |
siva
2017/02/08 18:46:29
Thread* thread,
Cutch
2017/02/09 22:45:51
Done.
| |
23 int skip_frames, | |
24 const Function& async_function, | |
25 bool count_invisible_frames = FLAG_show_invisible_frames); | |
26 | |
27 /// Collects |count| frames into |code_array| and |pc_offset_array|. | |
28 /// Writing begins at |array_offset|. | |
29 /// Skips over the first |skip_frames|. | |
30 /// Returns the number of frames collected. | |
31 static intptr_t CollectFrames( | |
32 Thread* thread, | |
33 const Array& code_array, | |
34 const Array& pc_offset_array, | |
35 intptr_t array_offset, | |
36 intptr_t count, | |
37 int skip_frames, | |
38 bool collect_invisible_frames = FLAG_show_invisible_frames); | |
39 | |
40 /// If |thread| has no async_stack_trace, does nothing. | |
41 /// Populates |async_function| with the top function of the async stack | |
42 /// trace. Populates |async_stack_trace|, |async_code_array|, and | |
43 /// |async_pc_offset_array| with the thread's async_stack_trace. | |
44 /// Returns the length of the asynchronous stack trace. | |
45 static intptr_t ExtractAsyncStackTraceInfo(Thread* thread, | |
46 Function* async_function, | |
47 StackTrace* async_stack_trace, | |
48 Array* async_code_array, | |
49 Array* async_pc_offset_array); | |
50 }; | |
51 | |
52 } // namespace dart | |
53 | |
54 #endif // RUNTIME_VM_STACK_TRACE_H_ | |
OLD | NEW |