Lines Matching defs:TickSample
28 struct TickSample { struct
34 TickSample() in TickSample() function
47 StateTag state; // The state of the VM.
48 Address pc; // Instruction pointer.
49 union {
53 static const unsigned kMaxFramesCountLog2 = 8;
54 static const unsigned kMaxFramesCount = (1 << kMaxFramesCountLog2) - 1;
55 Address stack[kMaxFramesCount]; // Call stack.
56 base::TimeTicks timestamp;
57 unsigned frames_count : kMaxFramesCountLog2; // Number of captured frames.
58 bool has_external_callback : 1;
59 StackFrame::Type top_frame_type : 4;