Searched defs:TickSample (Results 1 – 1 of 1) sorted by relevance
18 struct V8_EXPORT TickSample { struct24 TickSample() in TickSample() argument76 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 …]