Home
last modified time | relevance | path

Searched defs:TickSample (Results 1 – 1 of 1) sorted by relevance

/external/v8/src/profiler/
Dtick-sample.h18 struct V8_EXPORT TickSample { struct
24 TickSample() in TickSample() argument
76 StateTag state; // The state of the VM.
77 void* pc; // Instruction pointer.
78 union {
82 static const unsigned kMaxFramesCountLog2 = 8;
83 static const unsigned kMaxFramesCount = (1 << kMaxFramesCountLog2) - 1;
84 void* stack[kMaxFramesCount]; // Call stack.
85 unsigned frames_count : kMaxFramesCountLog2; // Number of captured frames.
86 bool has_external_callback : 1;
[all …]