Lines Matching refs:stack
87 // Traversing the dominator tree we keep a stack (implemented as a singly
352 // Allocate the stack.
353 HBoundsCheckEliminationState* stack =
357 stack[0].block_ = entry;
358 stack[0].bb_data_list_ = PreProcessBlock(entry);
359 stack[0].index_ = 0;
362 // Implement depth-first traversal with a stack.
365 HBoundsCheckEliminationState* state = &stack[current];
372 stack[next].block_ = child;
373 stack[next].bb_data_list_ = PreProcessBlock(child);
374 stack[next].index_ = 0;