Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp135 SmallVector<ICToken, 4> PostfixStack; member in __anon3be435310111::X86AsmParser::InfixCalculator
143 assert (!PostfixStack.empty() && "Poped an empty stack!"); in popOperand()
144 ICToken Op = PostfixStack.pop_back_val(); in popOperand()
152 PostfixStack.push_back(std::make_pair(Op, Val)); in pushOperand()
199 PostfixStack.push_back(std::make_pair(StackOp, 0)); in pushOperator()
211 PostfixStack.push_back(std::make_pair(StackOp, 0)); in execute()
214 if (PostfixStack.empty()) in execute()
218 for (unsigned i = 0, e = PostfixStack.size(); i != e; ++i) { in execute()
219 ICToken Op = PostfixStack[i]; in execute()