Lines Matching refs:OperandStack

261       SmallVector<ICToken, 16> OperandStack;  in execute()  local
265 OperandStack.push_back(Op); in execute()
267 assert (OperandStack.size() > 0 && "Too few operands."); in execute()
268 ICToken Operand = OperandStack.pop_back_val(); in execute()
276 OperandStack.push_back(std::make_pair(IC_IMM, -Operand.second)); in execute()
279 OperandStack.push_back(std::make_pair(IC_IMM, ~Operand.second)); in execute()
283 assert (OperandStack.size() > 1 && "Too few operands."); in execute()
285 ICToken Op2 = OperandStack.pop_back_val(); in execute()
286 ICToken Op1 = OperandStack.pop_back_val(); in execute()
293 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
297 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
303 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
310 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
316 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
322 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
328 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
334 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
340 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
346 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
352 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
358 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
364 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
371 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
377 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
384 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
389 assert (OperandStack.size() == 1 && "Expected a single result."); in execute()
390 return OperandStack.pop_back_val().second; in execute()