Lines Matching refs:IC_IMM
82 IC_IMM, enumerator
95 assert ((Op.first == IC_IMM || Op.first == IC_REGISTER) in popOperand()
100 assert ((Op == IC_IMM || Op == IC_REGISTER) && in pushOperand()
169 if (Op.first == IC_IMM || Op.first == IC_REGISTER) { 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()
189 assert (Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
192 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
195 assert (Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
199 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
202 assert (Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
205 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
208 assert (Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
211 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
214 assert (Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
217 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
220 assert (Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
223 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
441 IC.pushOperand(IC_IMM); in onRegister()
462 IC.pushOperand(IC_IMM); in onIdentifierExpr()
503 IC.pushOperand(IC_IMM, -TmpInt); // Push -Imm. in onInteger()
513 IC.pushOperand(IC_IMM, ~TmpInt); // Push ~Imm. in onInteger()
515 IC.pushOperand(IC_IMM, TmpInt); in onInteger()