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

Side by Side Diff: runtime/vm/stack_trace.h

Issue 2646443005: Track async causal stack traces (Closed)
Patch Set: rebase Created 3 years, 10 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 unified diff | Download patch
« no previous file with comments | « runtime/vm/simulator_dbc.cc ('k') | runtime/vm/stack_trace.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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(
23 Thread* thread,
24 int skip_frames,
25 const Function& async_function,
26 bool count_invisible_frames = FLAG_show_invisible_frames);
27
28 /// Collects |count| frames into |code_array| and |pc_offset_array|.
29 /// Writing begins at |array_offset|.
30 /// Skips over the first |skip_frames|.
31 /// Returns the number of frames collected.
32 static intptr_t CollectFrames(
33 Thread* thread,
34 const Array& code_array,
35 const Array& pc_offset_array,
36 intptr_t array_offset,
37 intptr_t count,
38 int skip_frames,
39 bool collect_invisible_frames = FLAG_show_invisible_frames);
40
41 /// If |thread| has no async_stack_trace, does nothing.
42 /// Populates |async_function| with the top function of the async stack
43 /// trace. Populates |async_stack_trace|, |async_code_array|, and
44 /// |async_pc_offset_array| with the thread's async_stack_trace.
45 /// Returns the length of the asynchronous stack trace.
46 static intptr_t ExtractAsyncStackTraceInfo(Thread* thread,
47 Function* async_function,
48 StackTrace* async_stack_trace,
49 Array* async_code_array,
50 Array* async_pc_offset_array);
51 };
52
53 } // namespace dart
54
55 #endif // RUNTIME_VM_STACK_TRACE_H_
OLDNEW
« no previous file with comments | « runtime/vm/simulator_dbc.cc ('k') | runtime/vm/stack_trace.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698