Lines Matching refs:stack
22 ZoneStack<RpoNumber>& stack;
27 stack.push(num);
32 RpoNumber from = stack.top();
40 stack.push(to);
52 if (pop) stack.pop();
64 ZoneStack<RpoNumber> stack(local_zone);
65 JumpThreadingState state = {false, *result, stack};
72 // Iterate over the blocks forward, pushing the blocks onto the stack.
77 // Process the stack, which implements DFS through empty blocks.
78 while (!state.stack.empty()) {
79 InstructionBlock* block = code->InstructionBlockAt(state.stack.top());
81 TRACE("jt [%d] B%d\n", static_cast<int>(stack.size()),