Home | History | Annotate | Download | only in AsmParser

Lines Matching defs:StackOp

118       InfixCalculatorTok StackOp = InfixOperatorStack[Idx];
119 if (OpPrecedence[Op] > OpPrecedence[StackOp] || StackOp == IC_LPAREN) {
133 StackOp = InfixOperatorStack[Idx];
134 if (!(OpPrecedence[StackOp] >= OpPrecedence[Op] || ParenCount))
139 if (!ParenCount && StackOp == IC_LPAREN)
142 if (StackOp == IC_RPAREN) {
145 } else if (StackOp == IC_LPAREN) {
150 PostfixStack.push_back(std::make_pair(StackOp, 0));
160 InfixCalculatorTok StackOp = InfixOperatorStack.pop_back_val();
161 if (StackOp != IC_LPAREN && StackOp != IC_RPAREN)
162 PostfixStack.push_back(std::make_pair(StackOp, 0));