Lines Matching refs:Stack
16 /// "push" and "pop" from the stack.
64 // expression stack ordering constraints needed for an instruction which is
65 // consumed by an instruction using the expression stack.
75 // expression stack ordering constraints for an instruction which is on
76 // the expression stack.
87 // instruction on the expression stack.
149 // operands off the stack in LIFO order.
159 // an expression stack input so that it isn't reordered with anything
160 // in an expression stack which might use it (physical registers
234 SmallVector<unsigned, 0> Stack;
248 Stack.push_back(VReg);
250 assert(Stack.pop_back_val() == VReg);
254 // TODO: Generalize this code to support keeping values on the stack across
256 assert(Stack.empty());