Lines Matching refs:OperandStack
166 SmallVector<ICToken, 16> OperandStack; in execute() local
170 OperandStack.push_back(Op); in execute()
172 assert (OperandStack.size() > 1 && "Too few operands."); in execute()
174 ICToken Op2 = OperandStack.pop_back_val(); in execute()
175 ICToken Op1 = OperandStack.pop_back_val(); in execute()
182 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
186 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
192 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
199 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
205 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
211 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
217 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
223 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
228 assert (OperandStack.size() == 1 && "Expected a single result."); in execute()
229 return OperandStack.pop_back_val().second; in execute()