Home
last modified time | relevance | path

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

/external/v8/include/
Dv8-profiler.h51 struct TickSample { struct
57 TickSample() in TickSample() argument
105 StateTag state; // The state of the VM.
106 void* pc; // Instruction pointer.
107 union {
111 static const unsigned kMaxFramesCountLog2 = 8;
112 static const unsigned kMaxFramesCount = (1 << kMaxFramesCountLog2) - 1;
113 void* stack[kMaxFramesCount]; // Call stack.
114 unsigned frames_count : kMaxFramesCountLog2; // Number of captured frames.
115 bool has_external_callback : 1;
[all …]
/external/v8/src/profiler/
Dtick-sample.h17 struct TickSample : public v8::TickSample { struct
21 base::TimeTicks timestamp;