Lines Matching refs:lhs_x
544 Register lhs_x = lhs.gp().X(); in emit_i64_divs() local
546 bool can_use_dst = !dst_x.Aliases(lhs_x) && !dst_x.Aliases(rhs_x); in emit_i64_divs()
549 Sdiv(dst_x, lhs_x, rhs_x); in emit_i64_divs()
555 Ccmp(lhs_x, 1, NoFlag, eq); in emit_i64_divs()
559 Sdiv(dst_x, lhs_x, rhs_x); in emit_i64_divs()
578 Register lhs_x = lhs.gp().X(); in emit_i64_rems() local
585 Sdiv(scratch, lhs_x, rhs_x); in emit_i64_rems()
589 Msub(dst_x, scratch, rhs_x, lhs_x); in emit_i64_rems()
597 Register lhs_x = lhs.gp().X(); in emit_i64_remu() local
602 Udiv(scratch, lhs_x, rhs_x); in emit_i64_remu()
606 Msub(dst_x, scratch, rhs_x, lhs_x); in emit_i64_remu()