Home | History | Annotate | Download | only in optimizing

Lines Matching refs:op2

308   //  out <=? op2
311 // if op2 is min jmp op2_label
317 // out := op2
324 XmmRegister op2 = op2_loc.AsFpuRegister<XmmRegister>();
328 __ ucomisd(out, op2);
330 __ ucomiss(out, op2);
341 __ orpd(out, op2);
343 __ orps(out, op2);
347 __ andpd(out, op2);
349 __ andps(out, op2);
363 // out := op2;
366 __ movsd(out, op2);
368 __ movss(out, op2);
437 CpuRegister op2 = op2_loc.AsRegister<CpuRegister>();
440 // out <=? op2
442 // out := op2
446 __ cmpq(out, op2);
448 __ cmpl(out, op2);
451 __ cmov(is_min ? Condition::kGreater : Condition::kLess, out, op2, is_long);