Home
last modified time | relevance | path

Searched refs:PostfixStack (Results 1 – 1 of 1) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp179 SmallVector<ICToken, 4> PostfixStack; member in __anonbe06ec630111::X86AsmParser::InfixCalculator
187 assert (!PostfixStack.empty() && "Poped an empty stack!"); in popOperand()
188 ICToken Op = PostfixStack.pop_back_val(); in popOperand()
196 PostfixStack.push_back(std::make_pair(Op, Val)); in pushOperand()
243 PostfixStack.push_back(std::make_pair(StackOp, 0)); in pushOperator()
255 PostfixStack.push_back(std::make_pair(StackOp, 0)); in execute()
258 if (PostfixStack.empty()) in execute()
262 for (unsigned i = 0, e = PostfixStack.size(); i != e; ++i) { in execute()
263 ICToken Op = PostfixStack[i]; in execute()