Skip to content

Commit

Permalink
Speeding up write_significand()
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman-Koshelev committed Sep 13, 2021
1 parent e47e99b commit ef667e7
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions include/fmt/format.h
Original file line number Diff line number Diff line change
Expand Up @@ -1708,14 +1708,20 @@ inline auto write_significand(Char* out, UInt significand, int significand_size,
int integral_size, Char decimal_point) -> Char* {
if (!decimal_point)
return format_decimal(out, significand, significand_size).end;
auto end = format_decimal(out + 1, significand, significand_size).end;
if (integral_size == 1) {
out[0] = out[1];
} else {
std::uninitialized_copy_n(out + 1, integral_size,
make_checked(out, to_unsigned(integral_size)));
out += significand_size + 1;
Char* end = out;
int floating_size = significand_size - integral_size;
for(int i = floating_size / 2; i > 0; --i) {
out -= 2;
copy2(out, digits2(significand % 100));
significand /= 100;
}
if (floating_size % 2 != 0) {
*--out = static_cast<Char>('0' + significand % 10);
significand /= 10;
}
out[integral_size] = decimal_point;
*--out = decimal_point;
format_decimal(out - integral_size, significand, integral_size);
return end;
}

Expand Down

0 comments on commit ef667e7

Please sign in to comment.