Lines Matching refs:CounterStack
181 std::stack<StackElem> CounterStack; in evaluate() local
182 CounterStack.push({C}); in evaluate()
186 while (!CounterStack.empty()) { in evaluate()
187 StackElem &Current = CounterStack.top(); in evaluate()
192 CounterStack.pop(); in evaluate()
198 CounterStack.pop(); in evaluate()
205 CounterStack.push(StackElem{E.LHS}); in evaluate()
209 CounterStack.push(StackElem{E.RHS}); in evaluate()
216 CounterStack.pop(); in evaluate()
498 std::stack<StackElem> CounterStack; in getMaxCounterID() local
499 CounterStack.push({C}); in getMaxCounterID()
503 while (!CounterStack.empty()) { in getMaxCounterID()
504 StackElem &Current = CounterStack.top(); in getMaxCounterID()
509 CounterStack.pop(); in getMaxCounterID()
513 CounterStack.pop(); in getMaxCounterID()
518 CounterStack.pop(); in getMaxCounterID()
522 CounterStack.push(StackElem{E.LHS}); in getMaxCounterID()
526 CounterStack.push(StackElem{E.RHS}); in getMaxCounterID()
532 CounterStack.pop(); in getMaxCounterID()