Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp178 SmallVector<ICToken, 4> PostfixStack; member in __anon301d74170111::X86AsmParser::InfixCalculator
186 assert (!PostfixStack.empty() && "Poped an empty stack!"); in popOperand()
187 ICToken Op = PostfixStack.pop_back_val(); in popOperand()
195 PostfixStack.push_back(std::make_pair(Op, Val)); in pushOperand()
242 PostfixStack.push_back(std::make_pair(StackOp, 0)); in pushOperator()
254 PostfixStack.push_back(std::make_pair(StackOp, 0)); in execute()
257 if (PostfixStack.empty()) in execute()
261 for (unsigned i = 0, e = PostfixStack.size(); i != e; ++i) { in execute()
262 ICToken Op = PostfixStack[i]; in execute()