Lines Matching refs:IC_IMM
83 IC_IMM, enumerator
96 assert ((Op.first == IC_IMM || Op.first == IC_REGISTER) in popOperand()
101 assert ((Op == IC_IMM || Op == IC_REGISTER) && in pushOperand()
171 if (Op.first == IC_IMM || Op.first == IC_REGISTER) { in execute()
184 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
188 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
191 assert (Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
194 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
197 assert (Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
201 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
204 assert (Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
207 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
210 assert(Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
213 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
216 assert (Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
219 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
222 assert (Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
225 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
228 assert (Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
231 OperandStack.push_back(std::make_pair(IC_IMM, Val)); in execute()
466 IC.pushOperand(IC_IMM); in onRegister()
487 IC.pushOperand(IC_IMM); in onIdentifierExpr()
529 IC.pushOperand(IC_IMM, -TmpInt); // Push -Imm. in onInteger()
539 IC.pushOperand(IC_IMM, ~TmpInt); // Push ~Imm. in onInteger()
541 IC.pushOperand(IC_IMM, TmpInt); in onInteger()