Searched defs:TickSample (Results 1 – 1 of 1) sorted by relevance
32 struct TickSample { struct33 TickSample() in TickSample() argument41 StateTag state; // The state of the VM.42 Address pc; // Instruction pointer.43 union {47 static const unsigned kMaxFramesCountLog2 = 8;48 static const unsigned kMaxFramesCount = (1 << kMaxFramesCountLog2) - 1;49 Address stack[kMaxFramesCount]; // Call stack.50 base::TimeTicks timestamp;51 unsigned frames_count : kMaxFramesCountLog2; // Number of captured frames.[all …]