Home
last modified time | relevance | path

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

/external/llvm/lib/Target/X86/AsmParser/
DX86AsmParser.cpp89 SmallVector<ICToken, 4> PostfixStack; member in __anon720aab8e0111::X86AsmParser::InfixCalculator
93 assert (!PostfixStack.empty() && "Poped an empty stack!"); in popOperand()
94 ICToken Op = PostfixStack.pop_back_val(); in popOperand()
102 PostfixStack.push_back(std::make_pair(Op, Val)); in pushOperand()
149 PostfixStack.push_back(std::make_pair(StackOp, 0)); in pushOperator()
160 PostfixStack.push_back(std::make_pair(StackOp, 0)); in execute()
163 if (PostfixStack.empty()) in execute()
167 for (unsigned i = 0, e = PostfixStack.size(); i != e; ++i) { in execute()
168 ICToken Op = PostfixStack[i]; in execute()