Lines Matching refs:Op2
296 ICToken Op2 = OperandStack.pop_back_val(); in execute() local
303 Val = Op1.second + Op2.second; in execute()
307 Val = Op1.second - Op2.second; in execute()
311 assert (Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
313 Val = Op1.second * Op2.second; in execute()
317 assert (Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
319 assert (Op2.second != 0 && "Division by zero!"); in execute()
320 Val = Op1.second / Op2.second; in execute()
324 assert (Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
326 Val = Op1.second % Op2.second; in execute()
330 assert (Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
332 Val = Op1.second | Op2.second; in execute()
336 assert(Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
338 Val = Op1.second ^ Op2.second; in execute()
342 assert (Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
344 Val = Op1.second & Op2.second; in execute()
348 assert (Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
350 Val = Op1.second << Op2.second; in execute()
354 assert (Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
356 Val = Op1.second >> Op2.second; in execute()
360 assert(Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
362 Val = (Op1.second == Op2.second) ? -1 : 0; in execute()
366 assert(Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
368 Val = (Op1.second != Op2.second) ? -1 : 0; in execute()
372 assert(Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
374 Val = (Op1.second < Op2.second) ? -1 : 0; in execute()
378 assert(Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
381 Val = (Op1.second <= Op2.second) ? -1 : 0; in execute()
385 assert(Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
387 Val = (Op1.second > Op2.second) ? -1 : 0; in execute()
391 assert(Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
394 Val = (Op1.second >= Op2.second) ? -1 : 0; in execute()
3606 X86Operand &Op2 = (X86Operand &)*Operands[2]; in ParseInstruction() local
3610 if (Op1.isReg() && Op2.isReg() && in ParseInstruction()
3612 Op2.getReg()) && in ParseInstruction()