• Home
  • Raw
  • Download

Lines Matching refs:Op1

175           ICToken Op1 = OperandStack.pop_back_val();  in execute()  local
181 Val = Op1.second + Op2.second; in execute()
185 Val = Op1.second - Op2.second; in execute()
189 assert (Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
191 Val = Op1.second * Op2.second; in execute()
195 assert (Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
198 Val = Op1.second / Op2.second; in execute()
202 assert (Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
204 Val = Op1.second | Op2.second; in execute()
208 assert (Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
210 Val = Op1.second & Op2.second; in execute()
214 assert (Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
216 Val = Op1.second << Op2.second; in execute()
220 assert (Op1.first == IC_IMM && Op2.first == IC_IMM && in execute()
222 Val = Op1.second >> Op2.second; in execute()
722 bool doSrcDstMatch(X86Operand &Op1, X86Operand &Op2);
837 bool X86AsmParser::doSrcDstMatch(X86Operand &Op1, X86Operand &Op2) in doSrcDstMatch() argument
840 if (!Op1.isMem() || !Op2.isMem()) in doSrcDstMatch()
845 unsigned diReg = Op1.Mem.BaseReg; in doSrcDstMatch()
2297 X86Operand &Op1 = static_cast<X86Operand &>(*Operands[2]); in ParseInstruction() local
2298 if (Op1.isImm() && isa<MCConstantExpr>(Op1.getImm()) && in ParseInstruction()
2299 cast<MCConstantExpr>(Op1.getImm())->getValue() == 1) in ParseInstruction()
2302 X86Operand &Op1 = static_cast<X86Operand &>(*Operands[1]); in ParseInstruction() local
2303 if (Op1.isImm() && isa<MCConstantExpr>(Op1.getImm()) && in ParseInstruction()
2304 cast<MCConstantExpr>(Op1.getImm())->getValue() == 1) in ParseInstruction()
2312 X86Operand &Op1 = static_cast<X86Operand &>(*Operands[1]); in ParseInstruction() local
2313 if (Op1.isImm() && isa<MCConstantExpr>(Op1.getImm()) && in ParseInstruction()
2314 cast<MCConstantExpr>(Op1.getImm())->getValue() == 3) { in ParseInstruction()