Lines Matching refs:OperandStack

267       SmallVector<ICToken, 16> OperandStack;  in execute()  local
270 OperandStack.push_back(Op); in execute()
272 assert (OperandStack.size() > 0 && "Too few operands."); in execute()
273 ICToken Operand = OperandStack.pop_back_val(); in execute()
281 OperandStack.push_back(std::make_pair(IC_IMM, -Operand.second)); in execute()
284 OperandStack.push_back(std::make_pair(IC_IMM, ~Operand.second)); in execute()
288 assert (OperandStack.size() > 1 && "Too few operands."); in execute()
290 ICToken Op2 = OperandStack.pop_back_val(); in execute()
291 ICToken Op1 = OperandStack.pop_back_val(); in execute()
298 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
302 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
308 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()
369 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
376 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
382 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
389 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
394 assert (OperandStack.size() == 1 && "Expected a single result."); in execute()
395 return OperandStack.pop_back_val().second; in execute()