Lines Matching refs:OperandStack

260       SmallVector<ICToken, 16> OperandStack;  in execute()  local
264 OperandStack.push_back(Op); in execute()
266 assert (OperandStack.size() > 0 && "Too few operands."); in execute()
267 ICToken Operand = OperandStack.pop_back_val(); in execute()
275 OperandStack.push_back(std::make_pair(IC_IMM, -Operand.second)); in execute()
278 OperandStack.push_back(std::make_pair(IC_IMM, ~Operand.second)); in execute()
282 assert (OperandStack.size() > 1 && "Too few operands."); in execute()
284 ICToken Op2 = OperandStack.pop_back_val(); in execute()
285 ICToken Op1 = OperandStack.pop_back_val(); in execute()
292 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
296 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
302 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
309 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
315 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
321 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
327 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
333 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
339 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
345 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
351 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
357 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
363 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
370 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
376 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
383 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
388 assert (OperandStack.size() == 1 && "Expected a single result."); in execute()
389 return OperandStack.pop_back_val().second; in execute()