Lines Matching refs:stack
162 info.stack.push_back(CpuProfileDeoptFrame(
165 info.stack = rare_data_->deopt_inlined_frames_;
244 indent + 10, "", info.stack[0].script_id,
245 info.stack[0].position, info.deopt_reason);
246 for (size_t index = 1; index < info.stack.size(); ++index) {
249 indent + 10, "", info.stack[index].script_id,
250 info.stack[index].position);
367 std::vector<Position> stack;
368 stack.emplace_back(root_);
369 while (stack.size() > 0) {
370 Position& current = stack.back();
373 stack.emplace_back(current.current_child());
376 if (stack.size() > 1) {
377 Position& parent = stack[stack.size() - 2];
381 // Remove child from the stack.
382 stack.pop_back();
691 // Conservatively reserve space for stack frames + pc + function + vm-state.
716 // top of the stack (the return address) was pointing inside a JS
722 // If pc is in the function code before it set up stack frame or after the
754 Address stack_pos = reinterpret_cast<Address>(sample.stack[i]);
758 // Find out if the entry has an inlining stack associated.