Home | History | Annotate | Download | only in profiler

Lines Matching refs:stack

185     info.stack.push_back(CpuProfileDeoptFrame(
189 // Copy stack of inlined frames where the deopt happened.
192 info.stack.push_back(CpuProfileDeoptFrame(
274 indent + 10, "", info.stack[0].script_id,
275 info.stack[0].position, info.deopt_reason);
276 for (size_t index = 1; index < info.stack.size(); ++index) {
279 indent + 10, "", info.stack[index].script_id,
280 info.stack[index].position);
382 List<Position> stack(10);
383 stack.Add(Position(root_));
384 while (stack.length() > 0) {
385 Position& current = stack.last();
388 stack.Add(Position(current.current_child()));
391 if (stack.length() > 1) {
392 Position& parent = stack[stack.length() - 2];
396 // Remove child from the stack.
397 stack.RemoveLast();
564 // Conservatively reserve space for stack frames + pc + function + vm-state.
585 // Find out, if top of stack was pointing inside a JS function
590 // If pc is in the function code before it set up stack frame or after the
619 for (const Address *stack_pos = sample.stack,
625 // Find out if the entry has an inlining stack associated.