aboutsummaryrefslogtreecommitdiff
path: root/stdio-common/vfprintf-process-arg.c
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2022-12-19 18:56:54 +0100
committerFlorian Weimer <fweimer@redhat.com>2022-12-19 18:56:54 +0100
commite88b9f0e5cc50cab57a299dc7efe1a4eb385161d (patch)
tree2b733d221cc4247e16aef46150c2fc8153ad6db4 /stdio-common/vfprintf-process-arg.c
parent46378560e056300623364669de2405a7182b064f (diff)
downloadglibc-e88b9f0e5cc50cab57a299dc7efe1a4eb385161d.zip
glibc-e88b9f0e5cc50cab57a299dc7efe1a4eb385161d.tar.gz
glibc-e88b9f0e5cc50cab57a299dc7efe1a4eb385161d.tar.bz2
stdio-common: Convert vfprintf and related functions to buffers
vfprintf is entangled with vfwprintf (of course), __printf_fp, __printf_fphex, __vstrfmon_l_internal, and the strfrom family of functions. The latter use the internal snprintf functionality, so vsnprintf is converted as well. The simples conversion is __printf_fphex, followed by __vstrfmon_l_internal and __printf_fp, and finally __vfprintf_internal and __vfwprintf_internal. __vsnprintf_internal and strfrom* are mostly consuming the new interfaces, so they are comparatively simple. __printf_fp is a public symbol, so the FILE *-based interface had to preserved. The __printf_fp rewrite does not change the actual binary-to-decimal conversion algorithm, and digits are still not emitted directly to the target buffer. However, the staging buffer now uses bytes instead of wide characters, and one buffer copy is eliminated. The changes are at least performance-neutral in my testing. Floating point printing and snprintf improved measurably, so that this Lua script for i=1,5000000 do print(i, i * math.pi) end runs about 5% faster for me. To preserve fprintf performance for a simple "%d" format, this commit has some logic changes under LABEL (unsigned_number) to avoid additional function calls. There are certainly some very easy performance improvements here: binary, octal and hexadecimal formatting can easily avoid the temporary work buffer (the number of digits can be computed ahead-of-time using one of the __builtin_clz* built-ins). Decimal formatting can use a specialized version of _itoa_word for base 10. The existing (inconsistent) width handling between strfmon and printf is preserved here. __print_fp_buffer_1 would have to use __translated_number_width to achieve ISO conformance for printf. Test expectations in libio/tst-vtables-common.c are adjusted because the internal staging buffer merges all virtual function calls into one. In general, stack buffer usage is greatly reduced, particularly for unbuffered input streams. __printf_fp can still use a large buffer in binary128 mode for %g, though. Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'stdio-common/vfprintf-process-arg.c')
-rw-r--r--stdio-common/vfprintf-process-arg.c172
1 files changed, 95 insertions, 77 deletions
diff --git a/stdio-common/vfprintf-process-arg.c b/stdio-common/vfprintf-process-arg.c
index 4fe369e..ca64024 100644
--- a/stdio-common/vfprintf-process-arg.c
+++ b/stdio-common/vfprintf-process-arg.c
@@ -27,7 +27,7 @@
now process the wanted format specifier. */
LABEL (form_percent):
/* Write a literal "%". */
- outchar (L_('%'));
+ Xprintf_buffer_putc (buf, L_('%'));
break;
LABEL (form_integer):
@@ -116,16 +116,8 @@ LABEL (unsigned_number): /* Unsigned number of base BASE. */
*--string = L_('0');
}
else
- {
- /* Put the number in WORK. */
- string = _itoa (number.longlong, workend, base,
- spec == L_('X'));
- if (group && grouping)
- string = group_number (work_buffer, string, workend,
- grouping, thousands_sep);
- if (use_outdigits && base == 10)
- string = _i18n_number_rewrite (string, workend, workend);
- }
+ /* Put the number in WORK. */
+ string = _itoa (number.longlong, workend, base, spec == L_('X'));
/* Simplify further test for num != 0. */
number.word = number.longlong != 0;
}
@@ -159,27 +151,46 @@ LABEL (unsigned_number): /* Unsigned number of base BASE. */
*--string = L_('0');
}
else
- {
- /* Put the number in WORK. */
- string = _itoa_word (number.word, workend, base,
- spec == L_('X'));
- if (group && grouping)
- string = group_number (work_buffer, string, workend,
- grouping, thousands_sep);
- if (use_outdigits && base == 10)
- string = _i18n_number_rewrite (string, workend, workend);
- }
+ /* Put the number in WORK. */
+ string = _itoa_word (number.word, workend, base,
+ spec == L_('X'));
}
- if (prec <= workend - string && number.word != 0 && alt && base == 8)
- /* Add octal marker. */
- *--string = L_('0');
+ /* Grouping is also used for outdigits translation. */
+ struct grouping_iterator iter;
+ bool number_slow_path = group || (use_outdigits && base == 10);
+ if (group)
+ __grouping_iterator_init (&iter, LC_NUMERIC, _NL_CURRENT_LOCALE,
+ workend - string);
+ else if (use_outdigits && base == 10)
+ __grouping_iterator_init_none (&iter, workend - string);
+
+ int number_length;
+#ifndef COMPILE_WPRINTF
+ if (use_outdigits && base == 10)
+ number_length = __translated_number_width (_NL_CURRENT_LOCALE,
+ string, workend);
+ else
+ number_length = workend - string;
+ if (group)
+ number_length += iter.separators * strlen (thousands_sep);
+#else
+ number_length = workend - string;
+ /* All wide separators have length 1. */
+ if (group && thousands_sep != L'\0')
+ number_length += iter.separators;
+#endif
+
+ /* The marker comes right before the number, but is not subject
+ to grouping. */
+ bool octal_marker = (prec <= number_length && number.word != 0
+ && alt && base == 8);
prec = MAX (0, prec - (workend - string));
if (!left)
{
- width -= workend - string + prec;
+ width -= number_length + prec;
if (number.word != 0 && alt && (base == 16 || base == 2))
/* Account for 0X, 0x, 0B or 0b hex or binary marker. */
@@ -190,27 +201,34 @@ LABEL (unsigned_number): /* Unsigned number of base BASE. */
if (pad == L_(' '))
{
- PAD (L_(' '));
+ Xprintf_buffer_pad (buf, L_(' '), width);
width = 0;
}
if (is_negative)
- outchar (L_('-'));
+ Xprintf_buffer_putc (buf, L_('-'));
else if (showsign)
- outchar (L_('+'));
+ Xprintf_buffer_putc (buf, L_('+'));
else if (space)
- outchar (L_(' '));
+ Xprintf_buffer_putc (buf, L_(' '));
if (number.word != 0 && alt && (base == 16 || base == 2))
{
- outchar (L_('0'));
- outchar (spec);
+ Xprintf_buffer_putc (buf, L_('0'));
+ Xprintf_buffer_putc (buf, spec);
}
width += prec;
- PAD (L_('0'));
+ Xprintf_buffer_pad (buf, L_('0'), width);
+
+ if (octal_marker)
+ Xprintf_buffer_putc (buf, L_('0'));
- outstring (string, workend - string);
+ if (number_slow_path)
+ group_number (buf, &iter, string, workend, thousands_sep,
+ use_outdigits && base == 10);
+ else
+ Xprintf_buffer_write (buf, string, workend - string);
break;
}
@@ -218,40 +236,41 @@ LABEL (unsigned_number): /* Unsigned number of base BASE. */
{
if (is_negative)
{
- outchar (L_('-'));
+ Xprintf_buffer_putc (buf, L_('-'));
--width;
}
else if (showsign)
{
- outchar (L_('+'));
+ Xprintf_buffer_putc (buf, L_('+'));
--width;
}
else if (space)
{
- outchar (L_(' '));
+ Xprintf_buffer_putc (buf, L_(' '));
--width;
}
if (number.word != 0 && alt && (base == 16 || base == 2))
{
- outchar (L_('0'));
- outchar (spec);
+ Xprintf_buffer_putc (buf, L_('0'));
+ Xprintf_buffer_putc (buf, spec);
width -= 2;
}
width -= workend - string + prec;
- if (prec > 0)
- {
- int temp = width;
- width = prec;
- PAD (L_('0'));
- width = temp;
- }
+ Xprintf_buffer_pad (buf, L_('0'), prec);
+
+ if (octal_marker)
+ Xprintf_buffer_putc (buf, L_('0'));
- outstring (string, workend - string);
+ if (number_slow_path)
+ group_number (buf, &iter, string, workend, thousands_sep,
+ use_outdigits && base == 10);
+ else
+ Xprintf_buffer_write (buf, string, workend - string);
- PAD (L_(' '));
+ Xprintf_buffer_pad (buf, L_(' '), width);
break;
}
@@ -300,16 +319,17 @@ LABEL (form_number):
}
/* Answer the count of characters written. */
void *ptrptr = process_arg_pointer ();
+ unsigned int written = Xprintf_buffer_done (buf);
if (is_longlong)
- *(long long int *) ptrptr = done;
+ *(long long int *) ptrptr = written;
else if (is_long_num)
- *(long int *) ptrptr = done;
+ *(long int *) ptrptr = written;
else if (is_char)
- *(char *) ptrptr = done;
+ *(char *) ptrptr = written;
else if (!is_short)
- *(int *) ptrptr = done;
+ *(int *) ptrptr = written;
else
- *(short int *) ptrptr = done;
+ *(short int *) ptrptr = written;
break;
LABEL (form_strerror):
@@ -341,14 +361,16 @@ LABEL (form_character):
goto LABEL (form_wcharacter);
--width; /* Account for the character itself. */
if (!left)
- PAD (L_(' '));
+ Xprintf_buffer_pad (buf, L_(' '), width);
#ifdef COMPILE_WPRINTF
- outchar (__btowc ((unsigned char) process_arg_int ())); /* Promoted. */
+ __wprintf_buffer_putc (buf, __btowc ((unsigned char) /* Promoted. */
+ process_arg_int ()));
#else
- outchar ((unsigned char) process_arg_int ()); /* Promoted. */
+ __printf_buffer_putc (buf, (unsigned char) /* Promoted. */
+ process_arg_int ());
#endif
if (left)
- PAD (L_(' '));
+ Xprintf_buffer_pad (buf, L_(' '), width);
break;
LABEL (form_string):
@@ -382,10 +404,8 @@ LABEL (form_string):
else if (!is_long && spec != L_('S'))
{
#ifdef COMPILE_WPRINTF
- done = outstring_converted_wide_string
- (s, (const char *) string, prec, width, left, done);
- if (done < 0)
- goto all_done;
+ outstring_converted_wide_string (buf, (const char *) string,
+ prec, width, left);
/* The padding has already been written. */
break;
#else
@@ -407,10 +427,8 @@ LABEL (form_string):
else
len = __wcslen (string);
#else
- done = outstring_converted_wide_string
- (s, (const wchar_t *) string, prec, width, left, done);
- if (done < 0)
- goto all_done;
+ outstring_converted_wide_string (buf, (const wchar_t *) string,
+ prec, width, left);
/* The padding has already been written. */
break;
#endif
@@ -418,15 +436,15 @@ LABEL (form_string):
if ((width -= len) < 0)
{
- outstring (string, len);
+ Xprintf_buffer_write (buf, string, len);
break;
}
if (!left)
- PAD (L_(' '));
- outstring (string, len);
+ Xprintf_buffer_pad (buf, L_(' '), width);
+ Xprintf_buffer_write (buf, string, len);
if (left)
- PAD (L_(' '));
+ Xprintf_buffer_pad (buf, L_(' '), width);
}
break;
@@ -436,10 +454,10 @@ LABEL (form_wcharacter):
/* Wide character. */
--width;
if (!left)
- PAD (L' ');
- outchar (process_arg_wchar_t ());
+ Xprintf_buffer_pad (buf, L_(' '), width);
+ Xprintf_buffer_putc (buf, process_arg_wchar_t ());
if (left)
- PAD (L' ');
+ Xprintf_buffer_pad (buf, L_(' '), width);
}
break;
@@ -447,24 +465,24 @@ LABEL (form_wcharacter):
LABEL (form_wcharacter):
{
/* Wide character. */
- char buf[MB_LEN_MAX];
+ char wcbuf[MB_LEN_MAX];
mbstate_t mbstate;
size_t len;
memset (&mbstate, '\0', sizeof (mbstate_t));
- len = __wcrtomb (buf, process_arg_wchar_t (), &mbstate);
+ len = __wcrtomb (wcbuf, process_arg_wchar_t (), &mbstate);
if (len == (size_t) -1)
{
/* Something went wrong during the conversion. Bail out. */
- done = -1;
+ __printf_buffer_mark_failed (buf);
goto all_done;
}
width -= len;
if (!left)
- PAD (' ');
- outstring (buf, len);
+ Xprintf_buffer_pad (buf, L_(' '), width);
+ Xprintf_buffer_write (buf, wcbuf, len);
if (left)
- PAD (' ');
+ Xprintf_buffer_pad (buf, L_(' '), width);
}
break;
#endif /* !COMPILE_WPRINTF */