Home
last modified time | relevance | path

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

/external/v8/include/
Dv8-profiler.h65 struct TickSample { struct
71 TickSample() in TickSample() function
119 StateTag state; // The state of the VM.
120 void* pc; // Instruction pointer.
121 union {
125 static const unsigned kMaxFramesCountLog2 = 8;
126 static const unsigned kMaxFramesCount = (1 << kMaxFramesCountLog2) - 1;
127 void* stack[kMaxFramesCount]; // Call stack.
128 unsigned frames_count : kMaxFramesCountLog2; // Number of captured frames.
129 bool has_external_callback : 1;
[all …]
/external/v8/src/profiler/
Dtick-sample.h17 struct TickSample : public v8::TickSample { struct
21 base::TimeTicks timestamp;