Lines Matching refs:InputOperand
28 Operand InputOperand(int index) { return ToOperand(instr_->InputAt(index)); } in InputOperand() function in v8::internal::compiler::IA32OperandConverter
152 __ add(i.InputOperand(0), i.InputImmediate(1)); in AssembleArchInstruction()
154 __ add(i.InputRegister(0), i.InputOperand(1)); in AssembleArchInstruction()
159 __ and_(i.InputOperand(0), i.InputImmediate(1)); in AssembleArchInstruction()
161 __ and_(i.InputRegister(0), i.InputOperand(1)); in AssembleArchInstruction()
166 __ cmp(i.InputOperand(0), i.InputImmediate(1)); in AssembleArchInstruction()
168 __ cmp(i.InputRegister(0), i.InputOperand(1)); in AssembleArchInstruction()
173 __ test(i.InputOperand(0), i.InputImmediate(1)); in AssembleArchInstruction()
175 __ test(i.InputRegister(0), i.InputOperand(1)); in AssembleArchInstruction()
180 __ imul(i.OutputRegister(), i.InputOperand(0), i.InputInt32(1)); in AssembleArchInstruction()
182 __ imul(i.OutputRegister(), i.InputOperand(1)); in AssembleArchInstruction()
187 __ idiv(i.InputOperand(1)); in AssembleArchInstruction()
191 __ div(i.InputOperand(1)); in AssembleArchInstruction()
201 __ or_(i.InputOperand(0), i.InputImmediate(1)); in AssembleArchInstruction()
203 __ or_(i.InputRegister(0), i.InputOperand(1)); in AssembleArchInstruction()
208 __ xor_(i.InputOperand(0), i.InputImmediate(1)); in AssembleArchInstruction()
210 __ xor_(i.InputRegister(0), i.InputOperand(1)); in AssembleArchInstruction()
215 __ sub(i.InputOperand(0), i.InputImmediate(1)); in AssembleArchInstruction()
217 __ sub(i.InputRegister(0), i.InputOperand(1)); in AssembleArchInstruction()
249 __ ucomisd(i.InputDoubleRegister(0), i.InputOperand(1)); in AssembleArchInstruction()
289 __ sqrtsd(i.OutputDoubleRegister(), i.InputOperand(0)); in AssembleArchInstruction()
292 __ cvttsd2si(i.OutputRegister(), i.InputOperand(0)); in AssembleArchInstruction()
297 __ addsd(scratch, i.InputOperand(0)); in AssembleArchInstruction()
303 __ cvtsi2sd(i.OutputDoubleRegister(), i.InputOperand(0)); in AssembleArchInstruction()
378 __ push(i.InputOperand(0)); in AssembleArchInstruction()