Home | History | Annotate | Download | only in arm

Lines Matching refs:dstL

1582 void Assembler::smlal(Register dstL,
1588 DCHECK(!dstL.is(pc) && !dstH.is(pc) && !src1.is(pc) && !src2.is(pc));
1589 DCHECK(!dstL.is(dstH));
1590 emit(cond | B23 | B22 | A | s | dstH.code()*B16 | dstL.code()*B12 |
1595 void Assembler::smull(Register dstL,
1601 DCHECK(!dstL.is(pc) && !dstH.is(pc) && !src1.is(pc) && !src2.is(pc));
1602 DCHECK(!dstL.is(dstH));
1603 emit(cond | B23 | B22 | s | dstH.code()*B16 | dstL.code()*B12 |
1608 void Assembler::umlal(Register dstL,
1614 DCHECK(!dstL.is(pc) && !dstH.is(pc) && !src1.is(pc) && !src2.is(pc));
1615 DCHECK(!dstL.is(dstH));
1616 emit(cond | B23 | A | s | dstH.code()*B16 | dstL.code()*B12 |
1621 void Assembler::umull(Register dstL,
1627 DCHECK(!dstL.is(pc) && !dstH.is(pc) && !src1.is(pc) && !src2.is(pc));
1628 DCHECK(!dstL.is(dstH));
1629 emit(cond | B23 | s | dstH.code()*B16 | dstL.code()*B12 |