* sysdeps/powerpc/fpu/w_sqrt.c: Add sqrtl alias.
[glibc.git] / stdio-common / vfprintf.c
bloba4773468e7799a5a5c7a065a44089c58a88c0bc1
1 /* Copyright (C) 1991-1999, 2000, 2001, 2002 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17 02111-1307 USA. */
19 #include <ctype.h>
20 #include <limits.h>
21 #include <printf.h>
22 #include <stdarg.h>
23 #include <stdint.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <errno.h>
27 #include <wchar.h>
28 #include <bits/libc-lock.h>
29 #include <sys/param.h>
30 #include "_itoa.h"
31 #include <locale/localeinfo.h>
33 /* This code is shared between the standard stdio implementation found
34 in GNU C library and the libio implementation originally found in
35 GNU libg++.
37 Beside this it is also shared between the normal and wide character
38 implementation as defined in ISO/IEC 9899:1990/Amendment 1:1995. */
41 #ifdef USE_IN_LIBIO
42 /* This code is for use in libio. */
43 # include <libioP.h>
44 # define FILE _IO_FILE
45 # undef va_list
46 # define va_list _IO_va_list
47 # undef BUFSIZ
48 # define BUFSIZ _IO_BUFSIZ
49 # define ARGCHECK(S, Format) \
50 do \
51 { \
52 /* Check file argument for consistence. */ \
53 CHECK_FILE (S, -1); \
54 if (S->_flags & _IO_NO_WRITES) \
55 { \
56 __set_errno (EBADF); \
57 return -1; \
58 } \
59 if (Format == NULL) \
60 { \
61 MAYBE_SET_EINVAL; \
62 return -1; \
63 } \
64 } while (0)
65 # define UNBUFFERED_P(S) ((S)->_IO_file_flags & _IO_UNBUFFERED)
67 # ifndef COMPILE_WPRINTF
68 # define vfprintf _IO_vfprintf
69 # define CHAR_T char
70 # define UCHAR_T unsigned char
71 # define INT_T int
72 # define L_(Str) Str
73 # define ISDIGIT(Ch) ((unsigned int) ((Ch) - '0') < 10)
75 # define PUT(F, S, N) _IO_sputn ((F), (S), (N))
76 # define PAD(Padchar) \
77 if (width > 0) \
78 done += INTUSE(_IO_padn) (s, (Padchar), width)
79 # define PUTC(C, F) _IO_putc_unlocked (C, F)
80 # define ORIENT if (s->_vtable_offset == 0 && _IO_fwide (s, -1) != -1)\
81 return -1
82 # else
83 # define vfprintf _IO_vfwprintf
84 # define CHAR_T wchar_t
85 /* This is a hack!!! There should be a type uwchar_t. */
86 # define UCHAR_T unsigned int /* uwchar_t */
87 # define INT_T wint_t
88 # define L_(Str) L##Str
89 # define ISDIGIT(Ch) ((unsigned int) ((Ch) - L'0') < 10)
91 # include "_itowa.h"
93 # define PUT(F, S, N) _IO_sputn ((F), (S), (N))
94 # define PAD(Padchar) \
95 if (width > 0) \
96 done += _IO_wpadn (s, (Padchar), width)
97 # define PUTC(C, F) _IO_putwc_unlocked (C, F)
98 # define ORIENT if (_IO_fwide (s, 1) != 1) return -1
100 # define _itoa(Val, Buf, Base, Case) _itowa (Val, Buf, Base, Case)
101 # define _itoa_word(Val, Buf, Base, Case) _itowa_word (Val, Buf, Base, Case)
102 # undef EOF
103 # define EOF WEOF
104 # endif
105 #else /* ! USE_IN_LIBIO */
106 /* This code is for use in the GNU C library. */
107 # include <stdio.h>
108 # define ARGCHECK(S, Format) \
109 do \
111 /* Check file argument for consistence. */ \
112 if (!__validfp (S) || !S->__mode.__write) \
114 __set_errno (EBADF); \
115 return -1; \
117 if (Format == NULL) \
119 __set_errno (EINVAL); \
120 return -1; \
122 if (!S->__seen) \
124 if (__flshfp (S, EOF) == EOF) \
125 return -1; \
128 while (0)
129 # define UNBUFFERED_P(s) ((s)->__buffer == NULL)
131 # define CHAR_T char
132 # define UCHAR_T unsigned char
133 # define INT_T int
134 # define L_(Str) Str
135 # define ISDIGIT(Ch) isdigit (Ch)
137 # define PUT(F, S, N) fwrite (S, 1, N, F)
138 ssize_t __printf_pad __P ((FILE *, char pad, size_t n));
139 # define PAD(Padchar) \
140 if (width > 0) \
141 { ssize_t __res = __printf_pad (s, (Padchar), width); \
142 if (__res == -1) \
144 done = -1; \
145 goto all_done; \
147 done += __res; }
148 # define PUTC(C, F) putc (C, F)
150 /* XXX These declarations should go as soon as the stdio header files
151 have these prototypes. */
152 extern void __flockfile (FILE *);
153 extern void __funlockfile (FILE *);
154 #endif /* USE_IN_LIBIO */
156 #include "_i18n_number.h"
158 /* Include the shared code for parsing the format string. */
159 #include "printf-parse.h"
162 #define outchar(Ch) \
163 do \
165 register const INT_T outc = (Ch); \
166 if (PUTC (outc, s) == EOF) \
168 done = -1; \
169 goto all_done; \
171 else \
172 ++done; \
174 while (0)
176 #define outstring(String, Len) \
177 do \
179 if ((size_t) PUT (s, (String), (Len)) != (size_t) (Len)) \
181 done = -1; \
182 goto all_done; \
184 done += (Len); \
186 while (0)
188 /* For handling long_double and longlong we use the same flag. If
189 `long' and `long long' are effectively the same type define it to
190 zero. */
191 #if LONG_MAX == LONG_LONG_MAX
192 # define is_longlong 0
193 #else
194 # define is_longlong is_long_double
195 #endif
197 /* If `long' and `int' is effectively the same type we don't have to
198 handle `long separately. */
199 #if INT_MAX == LONG_MAX
200 # define is_long_num 0
201 #else
202 # define is_long_num is_long
203 #endif
206 /* Global variables. */
207 static const CHAR_T null[] = L_("(null)");
210 /* Helper function to provide temporary buffering for unbuffered streams. */
211 static int buffered_vfprintf __P ((FILE *stream, const CHAR_T *fmt, va_list))
212 internal_function;
214 /* Handle unknown format specifier. */
215 static int printf_unknown __P ((FILE *, const struct printf_info *,
216 const void *const *));
218 /* Group digits of number string. */
219 #ifdef COMPILE_WPRINTF
220 static CHAR_T *group_number __P ((CHAR_T *, CHAR_T *, const char *, wchar_t))
221 internal_function;
222 #else
223 static CHAR_T *group_number __P ((CHAR_T *, CHAR_T *, const char *,
224 const char *)) internal_function;
225 #endif
228 /* The function itself. */
230 vfprintf (FILE *s, const CHAR_T *format, va_list ap)
232 /* The character used as thousands separator. */
233 #ifdef COMPILE_WPRINTF
234 wchar_t thousands_sep = L'\0';
235 #else
236 const char *thousands_sep = NULL;
237 #endif
239 /* The string describing the size of groups of digits. */
240 const char *grouping;
242 /* Place to accumulate the result. */
243 int done;
245 /* Current character in format string. */
246 const UCHAR_T *f;
248 /* End of leading constant string. */
249 const UCHAR_T *lead_str_end;
251 /* Points to next format specifier. */
252 const UCHAR_T *end_of_spec;
254 /* Buffer intermediate results. */
255 CHAR_T work_buffer[1000];
256 CHAR_T *workstart = NULL;
257 CHAR_T *workend;
259 /* State for restartable multibyte character handling functions. */
260 #ifndef COMPILE_WPRINTF
261 mbstate_t mbstate;
262 #endif
264 /* We have to save the original argument pointer. */
265 va_list ap_save;
267 /* Count number of specifiers we already processed. */
268 int nspecs_done;
270 /* For the %m format we may need the current `errno' value. */
271 int save_errno = errno;
274 /* This table maps a character into a number representing a
275 class. In each step there is a destination label for each
276 class. */
277 static const int jump_table[] =
279 /* ' ' */ 1, 0, 0, /* '#' */ 4,
280 0, /* '%' */ 14, 0, /* '\''*/ 6,
281 0, 0, /* '*' */ 7, /* '+' */ 2,
282 0, /* '-' */ 3, /* '.' */ 9, 0,
283 /* '0' */ 5, /* '1' */ 8, /* '2' */ 8, /* '3' */ 8,
284 /* '4' */ 8, /* '5' */ 8, /* '6' */ 8, /* '7' */ 8,
285 /* '8' */ 8, /* '9' */ 8, 0, 0,
286 0, 0, 0, 0,
287 0, /* 'A' */ 26, 0, /* 'C' */ 25,
288 0, /* 'E' */ 19, /* F */ 19, /* 'G' */ 19,
289 0, /* 'I' */ 29, 0, 0,
290 /* 'L' */ 12, 0, 0, 0,
291 0, 0, 0, /* 'S' */ 21,
292 0, 0, 0, 0,
293 /* 'X' */ 18, 0, /* 'Z' */ 13, 0,
294 0, 0, 0, 0,
295 0, /* 'a' */ 26, 0, /* 'c' */ 20,
296 /* 'd' */ 15, /* 'e' */ 19, /* 'f' */ 19, /* 'g' */ 19,
297 /* 'h' */ 10, /* 'i' */ 15, /* 'j' */ 28, 0,
298 /* 'l' */ 11, /* 'm' */ 24, /* 'n' */ 23, /* 'o' */ 17,
299 /* 'p' */ 22, /* 'q' */ 12, 0, /* 's' */ 21,
300 /* 't' */ 27, /* 'u' */ 16, 0, 0,
301 /* 'x' */ 18, 0, /* 'z' */ 13
304 #define NOT_IN_JUMP_RANGE(Ch) ((Ch) < L_(' ') || (Ch) > L_('z'))
305 #define CHAR_CLASS(Ch) (jump_table[(INT_T) (Ch) - L_(' ')])
306 #if defined HAVE_SUBTRACT_LOCAL_LABELS && defined SHARED
307 /* 'int' is enough and it saves some space on 64 bit systems. */
308 # define JUMP_TABLE_TYPE const int
309 # define JUMP(ChExpr, table) \
310 do \
312 int offset; \
313 void *__unbounded ptr; \
314 spec = (ChExpr); \
315 offset = NOT_IN_JUMP_RANGE (spec) ? REF (form_unknown) \
316 : table[CHAR_CLASS (spec)]; \
317 ptr = &&do_form_unknown + offset; \
318 goto *ptr; \
320 while (0)
321 #else
322 # define JUMP_TABLE_TYPE const void *const
323 # define JUMP(ChExpr, table) \
324 do \
326 const void *__unbounded ptr; \
327 spec = (ChExpr); \
328 ptr = NOT_IN_JUMP_RANGE (spec) ? REF (form_unknown) \
329 : table[CHAR_CLASS (spec)]; \
330 goto *ptr; \
332 while (0)
333 #endif
335 #define STEP0_3_TABLE \
336 /* Step 0: at the beginning. */ \
337 static JUMP_TABLE_TYPE step0_jumps[30] = \
339 REF (form_unknown), \
340 REF (flag_space), /* for ' ' */ \
341 REF (flag_plus), /* for '+' */ \
342 REF (flag_minus), /* for '-' */ \
343 REF (flag_hash), /* for '<hash>' */ \
344 REF (flag_zero), /* for '0' */ \
345 REF (flag_quote), /* for '\'' */ \
346 REF (width_asterics), /* for '*' */ \
347 REF (width), /* for '1'...'9' */ \
348 REF (precision), /* for '.' */ \
349 REF (mod_half), /* for 'h' */ \
350 REF (mod_long), /* for 'l' */ \
351 REF (mod_longlong), /* for 'L', 'q' */ \
352 REF (mod_size_t), /* for 'z', 'Z' */ \
353 REF (form_percent), /* for '%' */ \
354 REF (form_integer), /* for 'd', 'i' */ \
355 REF (form_unsigned), /* for 'u' */ \
356 REF (form_octal), /* for 'o' */ \
357 REF (form_hexa), /* for 'X', 'x' */ \
358 REF (form_float), /* for 'E', 'e', 'F', 'f', 'G', 'g' */ \
359 REF (form_character), /* for 'c' */ \
360 REF (form_string), /* for 's', 'S' */ \
361 REF (form_pointer), /* for 'p' */ \
362 REF (form_number), /* for 'n' */ \
363 REF (form_strerror), /* for 'm' */ \
364 REF (form_wcharacter), /* for 'C' */ \
365 REF (form_floathex), /* for 'A', 'a' */ \
366 REF (mod_ptrdiff_t), /* for 't' */ \
367 REF (mod_intmax_t), /* for 'j' */ \
368 REF (flag_i18n), /* for 'I' */ \
369 }; \
370 /* Step 1: after processing width. */ \
371 static JUMP_TABLE_TYPE step1_jumps[30] = \
373 REF (form_unknown), \
374 REF (form_unknown), /* for ' ' */ \
375 REF (form_unknown), /* for '+' */ \
376 REF (form_unknown), /* for '-' */ \
377 REF (form_unknown), /* for '<hash>' */ \
378 REF (form_unknown), /* for '0' */ \
379 REF (form_unknown), /* for '\'' */ \
380 REF (form_unknown), /* for '*' */ \
381 REF (form_unknown), /* for '1'...'9' */ \
382 REF (precision), /* for '.' */ \
383 REF (mod_half), /* for 'h' */ \
384 REF (mod_long), /* for 'l' */ \
385 REF (mod_longlong), /* for 'L', 'q' */ \
386 REF (mod_size_t), /* for 'z', 'Z' */ \
387 REF (form_percent), /* for '%' */ \
388 REF (form_integer), /* for 'd', 'i' */ \
389 REF (form_unsigned), /* for 'u' */ \
390 REF (form_octal), /* for 'o' */ \
391 REF (form_hexa), /* for 'X', 'x' */ \
392 REF (form_float), /* for 'E', 'e', 'F', 'f', 'G', 'g' */ \
393 REF (form_character), /* for 'c' */ \
394 REF (form_string), /* for 's', 'S' */ \
395 REF (form_pointer), /* for 'p' */ \
396 REF (form_number), /* for 'n' */ \
397 REF (form_strerror), /* for 'm' */ \
398 REF (form_wcharacter), /* for 'C' */ \
399 REF (form_floathex), /* for 'A', 'a' */ \
400 REF (mod_ptrdiff_t), /* for 't' */ \
401 REF (mod_intmax_t), /* for 'j' */ \
402 REF (flag_i18n) /* for 'I' */ \
403 }; \
404 /* Step 2: after processing precision. */ \
405 static JUMP_TABLE_TYPE step2_jumps[30] = \
407 REF (form_unknown), \
408 REF (form_unknown), /* for ' ' */ \
409 REF (form_unknown), /* for '+' */ \
410 REF (form_unknown), /* for '-' */ \
411 REF (form_unknown), /* for '<hash>' */ \
412 REF (form_unknown), /* for '0' */ \
413 REF (form_unknown), /* for '\'' */ \
414 REF (form_unknown), /* for '*' */ \
415 REF (form_unknown), /* for '1'...'9' */ \
416 REF (form_unknown), /* for '.' */ \
417 REF (mod_half), /* for 'h' */ \
418 REF (mod_long), /* for 'l' */ \
419 REF (mod_longlong), /* for 'L', 'q' */ \
420 REF (mod_size_t), /* for 'z', 'Z' */ \
421 REF (form_percent), /* for '%' */ \
422 REF (form_integer), /* for 'd', 'i' */ \
423 REF (form_unsigned), /* for 'u' */ \
424 REF (form_octal), /* for 'o' */ \
425 REF (form_hexa), /* for 'X', 'x' */ \
426 REF (form_float), /* for 'E', 'e', 'F', 'f', 'G', 'g' */ \
427 REF (form_character), /* for 'c' */ \
428 REF (form_string), /* for 's', 'S' */ \
429 REF (form_pointer), /* for 'p' */ \
430 REF (form_number), /* for 'n' */ \
431 REF (form_strerror), /* for 'm' */ \
432 REF (form_wcharacter), /* for 'C' */ \
433 REF (form_floathex), /* for 'A', 'a' */ \
434 REF (mod_ptrdiff_t), /* for 't' */ \
435 REF (mod_intmax_t), /* for 'j' */ \
436 REF (flag_i18n) /* for 'I' */ \
437 }; \
438 /* Step 3a: after processing first 'h' modifier. */ \
439 static JUMP_TABLE_TYPE step3a_jumps[30] = \
441 REF (form_unknown), \
442 REF (form_unknown), /* for ' ' */ \
443 REF (form_unknown), /* for '+' */ \
444 REF (form_unknown), /* for '-' */ \
445 REF (form_unknown), /* for '<hash>' */ \
446 REF (form_unknown), /* for '0' */ \
447 REF (form_unknown), /* for '\'' */ \
448 REF (form_unknown), /* for '*' */ \
449 REF (form_unknown), /* for '1'...'9' */ \
450 REF (form_unknown), /* for '.' */ \
451 REF (mod_halfhalf), /* for 'h' */ \
452 REF (form_unknown), /* for 'l' */ \
453 REF (form_unknown), /* for 'L', 'q' */ \
454 REF (form_unknown), /* for 'z', 'Z' */ \
455 REF (form_percent), /* for '%' */ \
456 REF (form_integer), /* for 'd', 'i' */ \
457 REF (form_unsigned), /* for 'u' */ \
458 REF (form_octal), /* for 'o' */ \
459 REF (form_hexa), /* for 'X', 'x' */ \
460 REF (form_unknown), /* for 'E', 'e', 'F', 'f', 'G', 'g' */ \
461 REF (form_unknown), /* for 'c' */ \
462 REF (form_unknown), /* for 's', 'S' */ \
463 REF (form_unknown), /* for 'p' */ \
464 REF (form_number), /* for 'n' */ \
465 REF (form_unknown), /* for 'm' */ \
466 REF (form_unknown), /* for 'C' */ \
467 REF (form_unknown), /* for 'A', 'a' */ \
468 REF (form_unknown), /* for 't' */ \
469 REF (form_unknown), /* for 'j' */ \
470 REF (form_unknown) /* for 'I' */ \
471 }; \
472 /* Step 3b: after processing first 'l' modifier. */ \
473 static JUMP_TABLE_TYPE step3b_jumps[30] = \
475 REF (form_unknown), \
476 REF (form_unknown), /* for ' ' */ \
477 REF (form_unknown), /* for '+' */ \
478 REF (form_unknown), /* for '-' */ \
479 REF (form_unknown), /* for '<hash>' */ \
480 REF (form_unknown), /* for '0' */ \
481 REF (form_unknown), /* for '\'' */ \
482 REF (form_unknown), /* for '*' */ \
483 REF (form_unknown), /* for '1'...'9' */ \
484 REF (form_unknown), /* for '.' */ \
485 REF (form_unknown), /* for 'h' */ \
486 REF (mod_longlong), /* for 'l' */ \
487 REF (form_unknown), /* for 'L', 'q' */ \
488 REF (form_unknown), /* for 'z', 'Z' */ \
489 REF (form_percent), /* for '%' */ \
490 REF (form_integer), /* for 'd', 'i' */ \
491 REF (form_unsigned), /* for 'u' */ \
492 REF (form_octal), /* for 'o' */ \
493 REF (form_hexa), /* for 'X', 'x' */ \
494 REF (form_float), /* for 'E', 'e', 'F', 'f', 'G', 'g' */ \
495 REF (form_character), /* for 'c' */ \
496 REF (form_string), /* for 's', 'S' */ \
497 REF (form_pointer), /* for 'p' */ \
498 REF (form_number), /* for 'n' */ \
499 REF (form_strerror), /* for 'm' */ \
500 REF (form_wcharacter), /* for 'C' */ \
501 REF (form_floathex), /* for 'A', 'a' */ \
502 REF (form_unknown), /* for 't' */ \
503 REF (form_unknown), /* for 'j' */ \
504 REF (form_unknown) /* for 'I' */ \
507 #define STEP4_TABLE \
508 /* Step 4: processing format specifier. */ \
509 static JUMP_TABLE_TYPE step4_jumps[30] = \
511 REF (form_unknown), \
512 REF (form_unknown), /* for ' ' */ \
513 REF (form_unknown), /* for '+' */ \
514 REF (form_unknown), /* for '-' */ \
515 REF (form_unknown), /* for '<hash>' */ \
516 REF (form_unknown), /* for '0' */ \
517 REF (form_unknown), /* for '\'' */ \
518 REF (form_unknown), /* for '*' */ \
519 REF (form_unknown), /* for '1'...'9' */ \
520 REF (form_unknown), /* for '.' */ \
521 REF (form_unknown), /* for 'h' */ \
522 REF (form_unknown), /* for 'l' */ \
523 REF (form_unknown), /* for 'L', 'q' */ \
524 REF (form_unknown), /* for 'z', 'Z' */ \
525 REF (form_percent), /* for '%' */ \
526 REF (form_integer), /* for 'd', 'i' */ \
527 REF (form_unsigned), /* for 'u' */ \
528 REF (form_octal), /* for 'o' */ \
529 REF (form_hexa), /* for 'X', 'x' */ \
530 REF (form_float), /* for 'E', 'e', 'F', 'f', 'G', 'g' */ \
531 REF (form_character), /* for 'c' */ \
532 REF (form_string), /* for 's', 'S' */ \
533 REF (form_pointer), /* for 'p' */ \
534 REF (form_number), /* for 'n' */ \
535 REF (form_strerror), /* for 'm' */ \
536 REF (form_wcharacter), /* for 'C' */ \
537 REF (form_floathex), /* for 'A', 'a' */ \
538 REF (form_unknown), /* for 't' */ \
539 REF (form_unknown), /* for 'j' */ \
540 REF (form_unknown) /* for 'I' */ \
544 #define process_arg(fspec) \
545 /* Start real work. We know about all flags and modifiers and \
546 now process the wanted format specifier. */ \
547 LABEL (form_percent): \
548 /* Write a literal "%". */ \
549 outchar (L_('%')); \
550 break; \
552 LABEL (form_integer): \
553 /* Signed decimal integer. */ \
554 base = 10; \
556 if (is_longlong) \
558 long long int signed_number; \
560 if (fspec == NULL) \
561 signed_number = va_arg (ap, long long int); \
562 else \
563 signed_number = args_value[fspec->data_arg].pa_long_long_int; \
565 is_negative = signed_number < 0; \
566 number.longlong = is_negative ? (- signed_number) : signed_number; \
568 goto LABEL (longlong_number); \
570 else \
572 long int signed_number; \
574 if (fspec == NULL) \
576 if (is_long_num) \
577 signed_number = va_arg (ap, long int); \
578 else /* `char' and `short int' will be promoted to `int'. */ \
579 signed_number = va_arg (ap, int); \
581 else \
582 if (is_long_num) \
583 signed_number = args_value[fspec->data_arg].pa_long_int; \
584 else if (!is_short) \
585 signed_number = args_value[fspec->data_arg].pa_int; \
586 else \
587 signed_number = args_value[fspec->data_arg].pa_short_int; \
589 is_negative = signed_number < 0; \
590 number.word = is_negative ? (- signed_number) : signed_number; \
592 goto LABEL (number); \
594 /* NOTREACHED */ \
596 LABEL (form_unsigned): \
597 /* Unsigned decimal integer. */ \
598 base = 10; \
599 goto LABEL (unsigned_number); \
600 /* NOTREACHED */ \
602 LABEL (form_octal): \
603 /* Unsigned octal integer. */ \
604 base = 8; \
605 goto LABEL (unsigned_number); \
606 /* NOTREACHED */ \
608 LABEL (form_hexa): \
609 /* Unsigned hexadecimal integer. */ \
610 base = 16; \
612 LABEL (unsigned_number): /* Unsigned number of base BASE. */ \
614 /* ISO specifies the `+' and ` ' flags only for signed \
615 conversions. */ \
616 is_negative = 0; \
617 showsign = 0; \
618 space = 0; \
620 if (is_longlong) \
622 if (fspec == NULL) \
623 number.longlong = va_arg (ap, unsigned long long int); \
624 else \
625 number.longlong = args_value[fspec->data_arg].pa_u_long_long_int; \
627 LABEL (longlong_number): \
628 if (prec < 0) \
629 /* Supply a default precision if none was given. */ \
630 prec = 1; \
631 else \
632 /* We have to take care for the '0' flag. If a precision \
633 is given it must be ignored. */ \
634 pad = L_(' '); \
636 /* If the precision is 0 and the number is 0 nothing has to \
637 be written for the number, except for the 'o' format in \
638 alternate form. */ \
639 if (prec == 0 && number.longlong == 0) \
641 string = workend; \
642 if (base == 8 && alt) \
643 *--string = L_('0'); \
645 else \
647 /* Put the number in WORK. */ \
648 string = _itoa (number.longlong, workend, base, \
649 spec == L_('X')); \
650 if (group && grouping) \
651 string = group_number (string, workend, grouping, \
652 thousands_sep); \
654 if (use_outdigits && base == 10) \
655 string = _i18n_number_rewrite (string, workend); \
657 /* Simplify further test for num != 0. */ \
658 number.word = number.longlong != 0; \
660 else \
662 if (fspec == NULL) \
664 if (is_long_num) \
665 number.word = va_arg (ap, unsigned long int); \
666 else if (is_char) \
667 number.word = (unsigned char) va_arg (ap, unsigned int); \
668 else if (!is_short) \
669 number.word = va_arg (ap, unsigned int); \
670 else \
671 number.word = (unsigned short int) va_arg (ap, unsigned int); \
673 else \
674 if (is_long_num) \
675 number.word = args_value[fspec->data_arg].pa_u_long_int; \
676 else if (is_char) \
677 number.word = (unsigned char) \
678 args_value[fspec->data_arg].pa_char; \
679 else if (!is_short) \
680 number.word = args_value[fspec->data_arg].pa_u_int; \
681 else \
682 number.word = (unsigned short int) \
683 args_value[fspec->data_arg].pa_u_short_int; \
685 LABEL (number): \
686 if (prec < 0) \
687 /* Supply a default precision if none was given. */ \
688 prec = 1; \
689 else \
690 /* We have to take care for the '0' flag. If a precision \
691 is given it must be ignored. */ \
692 pad = L_(' '); \
694 /* If the precision is 0 and the number is 0 nothing has to \
695 be written for the number, except for the 'o' format in \
696 alternate form. */ \
697 if (prec == 0 && number.word == 0) \
699 string = workend; \
700 if (base == 8 && alt) \
701 *--string = L_('0'); \
703 else \
705 /* Put the number in WORK. */ \
706 string = _itoa_word (number.word, workend, base, \
707 spec == L_('X')); \
708 if (group && grouping) \
709 string = group_number (string, workend, grouping, \
710 thousands_sep); \
712 if (use_outdigits && base == 10) \
713 string = _i18n_number_rewrite (string, workend); \
717 if (prec <= workend - string && number.word != 0 && alt && base == 8) \
718 /* Add octal marker. */ \
719 *--string = L_('0'); \
721 prec = MAX (0, prec - (workend - string)); \
723 if (!left) \
725 width -= workend - string + prec; \
727 if (number.word != 0 && alt && base == 16) \
728 /* Account for 0X hex marker. */ \
729 width -= 2; \
731 if (is_negative || showsign || space) \
732 --width; \
734 if (pad == L_(' ')) \
736 PAD (L_(' ')); \
737 width = 0; \
740 if (is_negative) \
741 outchar (L_('-')); \
742 else if (showsign) \
743 outchar (L_('+')); \
744 else if (space) \
745 outchar (L_(' ')); \
747 if (number.word != 0 && alt && base == 16) \
749 outchar (L_('0')); \
750 outchar (spec); \
753 width += prec; \
754 PAD (L_('0')); \
756 outstring (string, workend - string); \
758 break; \
760 else \
762 if (is_negative) \
764 outchar (L_('-')); \
765 --width; \
767 else if (showsign) \
769 outchar (L_('+')); \
770 --width; \
772 else if (space) \
774 outchar (L_(' ')); \
775 --width; \
778 if (number.word != 0 && alt && base == 16) \
780 outchar (L_('0')); \
781 outchar (spec); \
782 width -= 2; \
785 width -= workend - string + prec; \
787 if (prec > 0) \
789 int temp = width; \
790 width = prec; \
791 PAD (L_('0'));; \
792 width = temp; \
795 outstring (string, workend - string); \
797 PAD (L_(' ')); \
798 break; \
801 LABEL (form_float): \
803 /* Floating-point number. This is handled by printf_fp.c. */ \
804 const void *ptr; \
805 int function_done; \
807 if (fspec == NULL) \
809 struct printf_info info = { prec: prec, \
810 width: width, \
811 spec: spec, \
812 is_long_double: is_long_double, \
813 is_short: is_short, \
814 is_long: is_long, \
815 alt: alt, \
816 space: space, \
817 left: left, \
818 showsign: showsign, \
819 group: group, \
820 pad: pad, \
821 extra: 0, \
822 wide: sizeof (CHAR_T) != 1 }; \
824 if (is_long_double) \
825 the_arg.pa_long_double = va_arg (ap, long double); \
826 else \
827 the_arg.pa_double = va_arg (ap, double); \
828 ptr = (const void *) &the_arg; \
830 function_done = __printf_fp (s, &info, &ptr); \
832 else \
834 ptr = (const void *) &args_value[fspec->data_arg]; \
836 function_done = __printf_fp (s, &fspec->info, &ptr); \
839 if (function_done < 0) \
841 /* Error in print handler. */ \
842 done = -1; \
843 goto all_done; \
846 done += function_done; \
848 break; \
850 LABEL (form_floathex): \
852 /* Floating point number printed as hexadecimal number. */ \
853 const void *ptr; \
854 int function_done; \
856 if (fspec == NULL) \
858 struct printf_info info = { prec: prec, \
859 width: width, \
860 spec: spec, \
861 is_long_double: is_long_double, \
862 is_short: is_short, \
863 is_long: is_long, \
864 alt: alt, \
865 space: space, \
866 left: left, \
867 showsign: showsign, \
868 group: group, \
869 pad: pad, \
870 extra: 0, \
871 wide: sizeof (CHAR_T) != 1 }; \
873 if (is_long_double) \
874 the_arg.pa_long_double = va_arg (ap, long double); \
875 else \
876 the_arg.pa_double = va_arg (ap, double); \
877 ptr = (const void *) &the_arg; \
879 function_done = __printf_fphex (s, &info, &ptr); \
881 else \
883 ptr = (const void *) &args_value[fspec->data_arg]; \
885 function_done = __printf_fphex (s, &fspec->info, &ptr); \
888 if (function_done < 0) \
890 /* Error in print handler. */ \
891 done = -1; \
892 goto all_done; \
895 done += function_done; \
897 break; \
899 LABEL (form_pointer): \
900 /* Generic pointer. */ \
902 const void *ptr; \
903 if (fspec == NULL) \
904 ptr = va_arg (ap, void *); \
905 else \
906 ptr = args_value[fspec->data_arg].pa_pointer; \
907 if (ptr != NULL) \
909 /* If the pointer is not NULL, write it as a %#x spec. */ \
910 base = 16; \
911 number.word = (unsigned long int) ptr; \
912 is_negative = 0; \
913 alt = 1; \
914 group = 0; \
915 spec = L_('x'); \
916 goto LABEL (number); \
918 else \
920 /* Write "(nil)" for a nil pointer. */ \
921 string = (CHAR_T *) L_("(nil)"); \
922 /* Make sure the full string "(nil)" is printed. */ \
923 if (prec < 5) \
924 prec = 5; \
925 is_long = 0; /* This is no wide-char string. */ \
926 goto LABEL (print_string); \
929 /* NOTREACHED */ \
931 LABEL (form_number): \
932 /* Answer the count of characters written. */ \
933 if (fspec == NULL) \
935 if (is_longlong) \
936 *(long long int *) va_arg (ap, void *) = done; \
937 else if (is_long_num) \
938 *(long int *) va_arg (ap, void *) = done; \
939 else if (is_char) \
940 *(char *) va_arg (ap, void *) = done; \
941 else if (is_long_num) \
942 *(long int *) va_arg (ap, void *) = done; \
943 else if (!is_short) \
944 *(int *) va_arg (ap, void *) = done; \
945 else \
946 *(short int *) va_arg (ap, void *) = done; \
948 else \
949 if (is_longlong) \
950 *(long long int *) args_value[fspec->data_arg].pa_pointer = done; \
951 else if (is_long_num) \
952 *(long int *) args_value[fspec->data_arg].pa_pointer = done; \
953 else if (is_long_num) \
954 *(long int *) args_value[fspec->data_arg].pa_pointer = done; \
955 else if (is_char) \
956 *(char *) args_value[fspec->data_arg].pa_pointer = done; \
957 else if (!is_short) \
958 *(int *) args_value[fspec->data_arg].pa_pointer = done; \
959 else \
960 *(short int *) args_value[fspec->data_arg].pa_pointer = done; \
961 break; \
963 LABEL (form_strerror): \
964 /* Print description of error ERRNO. */ \
965 string = \
966 (CHAR_T *) __strerror_r (save_errno, (char *) work_buffer, \
967 sizeof work_buffer); \
968 is_long = 0; /* This is no wide-char string. */ \
969 goto LABEL (print_string)
971 #ifdef COMPILE_WPRINTF
972 # define process_string_arg(fspec) \
973 LABEL (form_character): \
974 /* Character. */ \
975 if (is_long) \
976 goto LABEL (form_wcharacter); \
977 --width; /* Account for the character itself. */ \
978 if (!left) \
979 PAD (L' '); \
980 if (fspec == NULL) \
981 outchar (__btowc ((unsigned char) va_arg (ap, int))); /* Promoted. */ \
982 else \
983 outchar (__btowc ((unsigned char) \
984 args_value[fspec->data_arg].pa_char)); \
985 if (left) \
986 PAD (L' '); \
987 break; \
989 LABEL (form_wcharacter): \
991 /* Wide character. */ \
992 --width; \
993 if (!left) \
994 PAD (L' '); \
995 if (fspec == NULL) \
996 outchar (va_arg (ap, wint_t)); \
997 else \
998 outchar (args_value[fspec->data_arg].pa_wchar); \
999 if (left) \
1000 PAD (L' '); \
1002 break; \
1004 LABEL (form_string): \
1006 size_t len; \
1007 int string_malloced; \
1009 /* The string argument could in fact be `char *' or `wchar_t *'. \
1010 But this should not make a difference here. */ \
1011 if (fspec == NULL) \
1012 string = (CHAR_T *) va_arg (ap, const wchar_t *); \
1013 else \
1014 string = (CHAR_T *) args_value[fspec->data_arg].pa_wstring; \
1016 /* Entry point for printing other strings. */ \
1017 LABEL (print_string): \
1019 string_malloced = 0; \
1020 if (string == NULL) \
1022 /* Write "(null)" if there's space. */ \
1023 if (prec == -1 \
1024 || prec >= (int) (sizeof (null) / sizeof (null[0])) - 1) \
1026 string = (CHAR_T *) null; \
1027 len = (sizeof (null) / sizeof (null[0])) - 1; \
1029 else \
1031 string = (CHAR_T *) L""; \
1032 len = 0; \
1035 else if (!is_long && spec != L_('S')) \
1037 /* This is complicated. We have to transform the multibyte \
1038 string into a wide character string. */ \
1039 const char *mbs = (const char *) string; \
1040 mbstate_t mbstate; \
1042 len = prec != -1 ? prec : strlen (mbs); \
1044 /* Allocate dynamically an array which definitely is long \
1045 enough for the wide character version. */ \
1046 if (len < 8192) \
1047 string = (CHAR_T *) alloca (len * sizeof (wchar_t)); \
1048 else if ((string = (CHAR_T *) malloc (len * sizeof (wchar_t))) \
1049 == NULL) \
1051 done = -1; \
1052 goto all_done; \
1054 else \
1055 string_malloced = 1; \
1057 memset (&mbstate, '\0', sizeof (mbstate_t)); \
1058 len = __mbsrtowcs (string, &mbs, len, &mbstate); \
1059 if (len == (size_t) -1) \
1061 /* Illegal multibyte character. */ \
1062 done = -1; \
1063 goto all_done; \
1066 else \
1068 if (prec != -1) \
1069 /* Search for the end of the string, but don't search past \
1070 the length specified by the precision. */ \
1071 len = __wcsnlen (string, prec); \
1072 else \
1073 len = __wcslen (string); \
1076 if ((width -= len) < 0) \
1078 outstring (string, len); \
1079 break; \
1082 if (!left) \
1083 PAD (L' '); \
1084 outstring (string, len); \
1085 if (left) \
1086 PAD (L' '); \
1087 if (string_malloced) \
1088 free (string); \
1090 break;
1091 #else
1092 # define process_string_arg(fspec) \
1093 LABEL (form_character): \
1094 /* Character. */ \
1095 if (is_long) \
1096 goto LABEL (form_wcharacter); \
1097 --width; /* Account for the character itself. */ \
1098 if (!left) \
1099 PAD (' '); \
1100 if (fspec == NULL) \
1101 outchar ((unsigned char) va_arg (ap, int)); /* Promoted. */ \
1102 else \
1103 outchar ((unsigned char) args_value[fspec->data_arg].pa_char); \
1104 if (left) \
1105 PAD (' '); \
1106 break; \
1108 LABEL (form_wcharacter): \
1110 /* Wide character. */ \
1111 char buf[MB_CUR_MAX]; \
1112 mbstate_t mbstate; \
1113 size_t len; \
1115 memset (&mbstate, '\0', sizeof (mbstate_t)); \
1116 len = __wcrtomb (buf, (fspec == NULL ? va_arg (ap, wint_t) \
1117 : args_value[fspec->data_arg].pa_wchar), \
1118 &mbstate); \
1119 if (len == (size_t) -1) \
1121 /* Something went wron gduring the conversion. Bail out. */ \
1122 done = -1; \
1123 goto all_done; \
1125 width -= len; \
1126 if (!left) \
1127 PAD (' '); \
1128 outstring (buf, len); \
1129 if (left) \
1130 PAD (' '); \
1132 break; \
1134 LABEL (form_string): \
1136 size_t len; \
1137 int string_malloced; \
1139 /* The string argument could in fact be `char *' or `wchar_t *'. \
1140 But this should not make a difference here. */ \
1141 if (fspec == NULL) \
1142 string = (char *) va_arg (ap, const char *); \
1143 else \
1144 string = (char *) args_value[fspec->data_arg].pa_string; \
1146 /* Entry point for printing other strings. */ \
1147 LABEL (print_string): \
1149 string_malloced = 0; \
1150 if (string == NULL) \
1152 /* Write "(null)" if there's space. */ \
1153 if (prec == -1 || prec >= (int) sizeof (null) - 1) \
1155 string = (char *) null; \
1156 len = sizeof (null) - 1; \
1158 else \
1160 string = (char *) ""; \
1161 len = 0; \
1164 else if (!is_long && spec != L_('S')) \
1166 if (prec != -1) \
1168 /* Search for the end of the string, but don't search past \
1169 the length (in bytes) specified by the precision. Also \
1170 don't use incomplete characters. */ \
1171 if (_NL_CURRENT_WORD (LC_CTYPE, _NL_CTYPE_MB_CUR_MAX) == 1) \
1172 len = __strnlen (string, prec); \
1173 else \
1175 /* In case we have a multibyte character set the \
1176 situation is more compilcated. We must not copy \
1177 bytes at the end which form an incomplete character. */\
1178 wchar_t ignore[prec]; \
1179 const char *str2 = string; \
1180 mbstate_t ps; \
1182 memset (&ps, '\0', sizeof (ps)); \
1183 if (__mbsnrtowcs (ignore, &str2, prec, prec, &ps) \
1184 == (size_t) -1) \
1186 done = -1; \
1187 goto all_done; \
1189 if (str2 == NULL) \
1190 len = strlen (string); \
1191 else \
1192 len = str2 - string - (ps.__count); \
1195 else \
1196 len = strlen (string); \
1198 else \
1200 const wchar_t *s2 = (const wchar_t *) string; \
1201 mbstate_t mbstate; \
1203 memset (&mbstate, '\0', sizeof (mbstate_t)); \
1205 if (prec >= 0) \
1207 /* The string `s2' might not be NUL terminated. */ \
1208 if (prec < 32768) \
1209 string = (char *) alloca (prec); \
1210 else if ((string = (char *) malloc (prec)) == NULL) \
1212 done = -1; \
1213 goto all_done; \
1215 else \
1216 string_malloced = 1; \
1217 len = __wcsrtombs (string, &s2, prec, &mbstate); \
1219 else \
1221 len = __wcsrtombs (NULL, &s2, 0, &mbstate); \
1222 if (len != (size_t) -1) \
1224 assert (__mbsinit (&mbstate)); \
1225 s2 = (const wchar_t *) string; \
1226 if (len + 1 < 32768) \
1227 string = (char *) alloca (len + 1); \
1228 else if ((string = (char *) malloc (len + 1)) == NULL) \
1230 done = -1; \
1231 goto all_done; \
1233 else \
1234 string_malloced = 1; \
1235 (void) __wcsrtombs (string, &s2, len + 1, &mbstate); \
1239 if (len == (size_t) -1) \
1241 /* Illegal wide-character string. */ \
1242 done = -1; \
1243 goto all_done; \
1247 if ((width -= len) < 0) \
1249 outstring (string, len); \
1250 break; \
1253 if (!left) \
1254 PAD (' '); \
1255 outstring (string, len); \
1256 if (left) \
1257 PAD (' '); \
1258 if (string_malloced) \
1259 free (string); \
1261 break;
1262 #endif
1264 /* Orient the stream. */
1265 #ifdef ORIENT
1266 ORIENT;
1267 #endif
1269 /* Sanity check of arguments. */
1270 ARGCHECK (s, format);
1272 #ifdef ORIENT
1273 /* Check for correct orientation. */
1274 if (
1275 # ifdef USE_IN_LIBIO
1276 s->_vtable_offset == 0 &&
1277 # endif
1278 _IO_fwide (s, sizeof (CHAR_T) == 1 ? -1 : 1)
1279 != (sizeof (CHAR_T) == 1 ? -1 : 1))
1280 /* The stream is already oriented otherwise. */
1281 return EOF;
1282 #endif
1284 if (UNBUFFERED_P (s))
1285 /* Use a helper function which will allocate a local temporary buffer
1286 for the stream and then call us again. */
1287 return buffered_vfprintf (s, format, ap);
1289 /* Initialize local variables. */
1290 done = 0;
1291 grouping = (const char *) -1;
1292 #ifdef __va_copy
1293 /* This macro will be available soon in gcc's <stdarg.h>. We need it
1294 since on some systems `va_list' is not an integral type. */
1295 __va_copy (ap_save, ap);
1296 #else
1297 ap_save = ap;
1298 #endif
1299 nspecs_done = 0;
1301 #ifdef COMPILE_WPRINTF
1302 /* Find the first format specifier. */
1303 f = lead_str_end = find_spec ((const UCHAR_T *) format);
1304 #else
1305 /* Put state for processing format string in initial state. */
1306 memset (&mbstate, '\0', sizeof (mbstate_t));
1308 /* Find the first format specifier. */
1309 f = lead_str_end = find_spec (format, &mbstate);
1310 #endif
1312 /* Lock stream. */
1313 #ifdef USE_IN_LIBIO
1314 __libc_cleanup_region_start (1, (void (*) (void *)) &_IO_funlockfile, s);
1315 _IO_flockfile (s);
1316 #else
1317 __libc_cleanup_region_start (1, (void (*) (void *)) &__funlockfile, s);
1318 __flockfile (s);
1319 #endif
1321 /* Write the literal text before the first format. */
1322 outstring ((const UCHAR_T *) format,
1323 lead_str_end - (const UCHAR_T *) format);
1325 /* If we only have to print a simple string, return now. */
1326 if (*f == L_('\0'))
1327 goto all_done;
1329 /* Process whole format string. */
1332 #if defined HAVE_SUBTRACT_LOCAL_LABELS && defined SHARED
1333 # define REF(Name) &&do_##Name - &&do_form_unknown
1334 #else
1335 # define REF(Name) &&do_##Name
1336 #endif
1337 #define LABEL(Name) do_##Name
1338 STEP0_3_TABLE;
1339 STEP4_TABLE;
1341 union printf_arg *args_value; /* This is not used here but ... */
1342 int is_negative; /* Flag for negative number. */
1343 union
1345 unsigned long long int longlong;
1346 unsigned long int word;
1347 } number;
1348 int base;
1349 union printf_arg the_arg;
1350 CHAR_T *string; /* Pointer to argument string. */
1351 int alt = 0; /* Alternate format. */
1352 int space = 0; /* Use space prefix if no sign is needed. */
1353 int left = 0; /* Left-justify output. */
1354 int showsign = 0; /* Always begin with plus or minus sign. */
1355 int group = 0; /* Print numbers according grouping rules. */
1356 int is_long_double = 0; /* Argument is long double/ long long int. */
1357 int is_short = 0; /* Argument is short int. */
1358 int is_long = 0; /* Argument is long int. */
1359 int is_char = 0; /* Argument is promoted (unsigned) char. */
1360 int width = 0; /* Width of output; 0 means none specified. */
1361 int prec = -1; /* Precision of output; -1 means none specified. */
1362 /* This flag is set by the 'I' modifier and selects the use of the
1363 `outdigits' as determined by the current locale. */
1364 int use_outdigits = 0;
1365 UCHAR_T pad = L_(' ');/* Padding character. */
1366 CHAR_T spec;
1368 workstart = NULL;
1369 workend = &work_buffer[sizeof (work_buffer) / sizeof (CHAR_T)];
1371 /* Get current character in format string. */
1372 JUMP (*++f, step0_jumps);
1374 /* ' ' flag. */
1375 LABEL (flag_space):
1376 space = 1;
1377 JUMP (*++f, step0_jumps);
1379 /* '+' flag. */
1380 LABEL (flag_plus):
1381 showsign = 1;
1382 JUMP (*++f, step0_jumps);
1384 /* The '-' flag. */
1385 LABEL (flag_minus):
1386 left = 1;
1387 pad = L_(' ');
1388 JUMP (*++f, step0_jumps);
1390 /* The '#' flag. */
1391 LABEL (flag_hash):
1392 alt = 1;
1393 JUMP (*++f, step0_jumps);
1395 /* The '0' flag. */
1396 LABEL (flag_zero):
1397 if (!left)
1398 pad = L_('0');
1399 JUMP (*++f, step0_jumps);
1401 /* The '\'' flag. */
1402 LABEL (flag_quote):
1403 group = 1;
1405 if (grouping == (const char *) -1)
1407 #ifdef COMPILE_WPRINTF
1408 thousands_sep = _NL_CURRENT_WORD (LC_NUMERIC,
1409 _NL_NUMERIC_THOUSANDS_SEP_WC);
1410 #else
1411 thousands_sep = _NL_CURRENT (LC_NUMERIC, THOUSANDS_SEP);
1412 #endif
1414 grouping = _NL_CURRENT (LC_NUMERIC, GROUPING);
1415 if (*grouping == '\0' || *grouping == CHAR_MAX
1416 #ifdef COMPILE_WPRINTF
1417 || thousands_sep == L'\0'
1418 #else
1419 || *thousands_sep == '\0'
1420 #endif
1422 grouping = NULL;
1424 JUMP (*++f, step0_jumps);
1426 LABEL (flag_i18n):
1427 use_outdigits = 1;
1428 JUMP (*++f, step0_jumps);
1430 /* Get width from argument. */
1431 LABEL (width_asterics):
1433 const UCHAR_T *tmp; /* Temporary value. */
1435 tmp = ++f;
1436 if (ISDIGIT (*tmp) && read_int (&tmp) && *tmp == L_('$'))
1437 /* The width comes from a positional parameter. */
1438 goto do_positional;
1440 width = va_arg (ap, int);
1442 /* Negative width means left justified. */
1443 if (width < 0)
1445 width = -width;
1446 pad = L_(' ');
1447 left = 1;
1450 if (width + 32 >= (int) (sizeof (work_buffer)
1451 / sizeof (work_buffer[0])))
1453 /* We have to use a special buffer. The "32" is just a safe
1454 bet for all the output which is not counted in the width. */
1455 if (width < 32768 / sizeof (CHAR_T))
1456 workend = ((CHAR_T *) alloca ((width + 32) * sizeof (CHAR_T))
1457 + (width + 32));
1458 else
1460 workstart = (CHAR_T *) malloc ((width + 32) * sizeof (CHAR_T));
1461 if (workstart == NULL)
1463 done = -1;
1464 goto all_done;
1466 workend = workstart + (width + 32);
1470 JUMP (*f, step1_jumps);
1472 /* Given width in format string. */
1473 LABEL (width):
1474 width = read_int (&f);
1476 if (width + 32 >= (int) (sizeof (work_buffer) / sizeof (work_buffer[0])))
1478 /* We have to use a special buffer. The "32" is just a safe
1479 bet for all the output which is not counted in the width. */
1480 if (width < 32768 / sizeof (CHAR_T))
1481 workend = ((CHAR_T *) alloca ((width + 32) * sizeof (CHAR_T))
1482 + (width + 32));
1483 else
1485 workstart = (CHAR_T *) malloc ((width + 32) * sizeof (CHAR_T));
1486 if (workstart == NULL)
1488 done = -1;
1489 goto all_done;
1491 workend = workstart + (width + 32);
1494 if (*f == L_('$'))
1495 /* Oh, oh. The argument comes from a positional parameter. */
1496 goto do_positional;
1497 JUMP (*f, step1_jumps);
1499 LABEL (precision):
1500 ++f;
1501 if (*f == L_('*'))
1503 const UCHAR_T *tmp; /* Temporary value. */
1505 tmp = ++f;
1506 if (ISDIGIT (*tmp) && read_int (&tmp) > 0 && *tmp == L_('$'))
1507 /* The precision comes from a positional parameter. */
1508 goto do_positional;
1510 prec = va_arg (ap, int);
1512 /* If the precision is negative the precision is omitted. */
1513 if (prec < 0)
1514 prec = -1;
1516 else if (ISDIGIT (*f))
1517 prec = read_int (&f);
1518 else
1519 prec = 0;
1520 if (prec > width
1521 && prec + 32 > (int)(sizeof (work_buffer) / sizeof (work_buffer[0])))
1523 if (spec < 32768 / sizeof (CHAR_T))
1524 workend = alloca (spec + 32) + (spec + 32);
1525 else
1527 workstart = (CHAR_T *) malloc ((spec + 32) * sizeof (CHAR_T));
1528 if (workstart == NULL)
1530 done = -1;
1531 goto all_done;
1533 workend = workstart + (spec + 32);
1536 JUMP (*f, step2_jumps);
1538 /* Process 'h' modifier. There might another 'h' following. */
1539 LABEL (mod_half):
1540 is_short = 1;
1541 JUMP (*++f, step3a_jumps);
1543 /* Process 'hh' modifier. */
1544 LABEL (mod_halfhalf):
1545 is_short = 0;
1546 is_char = 1;
1547 JUMP (*++f, step4_jumps);
1549 /* Process 'l' modifier. There might another 'l' following. */
1550 LABEL (mod_long):
1551 is_long = 1;
1552 JUMP (*++f, step3b_jumps);
1554 /* Process 'L', 'q', or 'll' modifier. No other modifier is
1555 allowed to follow. */
1556 LABEL (mod_longlong):
1557 is_long_double = 1;
1558 is_long = 1;
1559 JUMP (*++f, step4_jumps);
1561 LABEL (mod_size_t):
1562 is_long_double = sizeof (size_t) > sizeof (unsigned long int);
1563 is_long = sizeof (size_t) > sizeof (unsigned int);
1564 JUMP (*++f, step4_jumps);
1566 LABEL (mod_ptrdiff_t):
1567 is_long_double = sizeof (ptrdiff_t) > sizeof (unsigned long int);
1568 is_long = sizeof (ptrdiff_t) > sizeof (unsigned int);
1569 JUMP (*++f, step4_jumps);
1571 LABEL (mod_intmax_t):
1572 is_long_double = sizeof (intmax_t) > sizeof (unsigned long int);
1573 is_long = sizeof (intmax_t) > sizeof (unsigned int);
1574 JUMP (*++f, step4_jumps);
1576 /* Process current format. */
1577 while (1)
1579 process_arg (((struct printf_spec *) NULL));
1580 process_string_arg (((struct printf_spec *) NULL));
1582 LABEL (form_unknown):
1583 if (spec == L_('\0'))
1585 /* The format string ended before the specifier is complete. */
1586 done = -1;
1587 goto all_done;
1590 /* If we are in the fast loop force entering the complicated
1591 one. */
1592 goto do_positional;
1595 /* The format is correctly handled. */
1596 ++nspecs_done;
1598 free (workstart);
1599 workstart = NULL;
1601 /* Look for next format specifier. */
1602 #ifdef COMPILE_WPRINTF
1603 f = find_spec ((end_of_spec = ++f));
1604 #else
1605 f = find_spec ((end_of_spec = ++f), &mbstate);
1606 #endif
1608 /* Write the following constant string. */
1609 outstring (end_of_spec, f - end_of_spec);
1611 while (*f != L_('\0'));
1613 /* Unlock stream and return. */
1614 goto all_done;
1616 /* Here starts the more complex loop to handle positional parameters. */
1617 do_positional:
1619 /* Array with information about the needed arguments. This has to
1620 be dynamically extensible. */
1621 size_t nspecs = 0;
1622 size_t nspecs_max = 32; /* A more or less arbitrary start value. */
1623 struct printf_spec *specs
1624 = alloca (nspecs_max * sizeof (struct printf_spec));
1626 /* The number of arguments the format string requests. This will
1627 determine the size of the array needed to store the argument
1628 attributes. */
1629 size_t nargs = 0;
1630 int *args_type;
1631 union printf_arg *args_value = NULL;
1633 /* Positional parameters refer to arguments directly. This could
1634 also determine the maximum number of arguments. Track the
1635 maximum number. */
1636 size_t max_ref_arg = 0;
1638 /* Just a counter. */
1639 size_t cnt;
1642 if (grouping == (const char *) -1)
1644 #ifdef COMPILE_WPRINTF
1645 thousands_sep = _NL_CURRENT_WORD (LC_NUMERIC,
1646 _NL_NUMERIC_THOUSANDS_SEP_WC);
1647 #else
1648 thousands_sep = _NL_CURRENT (LC_NUMERIC, THOUSANDS_SEP);
1649 #endif
1651 grouping = _NL_CURRENT (LC_NUMERIC, GROUPING);
1652 if (*grouping == '\0' || *grouping == CHAR_MAX)
1653 grouping = NULL;
1656 for (f = lead_str_end; *f != L_('\0'); f = specs[nspecs++].next_fmt)
1658 if (nspecs >= nspecs_max)
1660 /* Extend the array of format specifiers. */
1661 struct printf_spec *old = specs;
1663 nspecs_max *= 2;
1664 specs = alloca (nspecs_max * sizeof (struct printf_spec));
1666 if (specs == &old[nspecs])
1667 /* Stack grows up, OLD was the last thing allocated;
1668 extend it. */
1669 nspecs_max += nspecs_max / 2;
1670 else
1672 /* Copy the old array's elements to the new space. */
1673 memcpy (specs, old, nspecs * sizeof (struct printf_spec));
1674 if (old == &specs[nspecs])
1675 /* Stack grows down, OLD was just below the new
1676 SPECS. We can use that space when the new space
1677 runs out. */
1678 nspecs_max += nspecs_max / 2;
1682 /* Parse the format specifier. */
1683 #ifdef COMPILE_WPRINTF
1684 nargs += parse_one_spec (f, nargs, &specs[nspecs], &max_ref_arg);
1685 #else
1686 nargs += parse_one_spec (f, nargs, &specs[nspecs], &max_ref_arg,
1687 &mbstate);
1688 #endif
1691 /* Determine the number of arguments the format string consumes. */
1692 nargs = MAX (nargs, max_ref_arg);
1694 /* Allocate memory for the argument descriptions. */
1695 args_type = alloca (nargs * sizeof (int));
1696 memset (args_type, 0, nargs * sizeof (int));
1697 args_value = alloca (nargs * sizeof (union printf_arg));
1699 /* XXX Could do sanity check here: If any element in ARGS_TYPE is
1700 still zero after this loop, format is invalid. For now we
1701 simply use 0 as the value. */
1703 /* Fill in the types of all the arguments. */
1704 for (cnt = 0; cnt < nspecs; ++cnt)
1706 /* If the width is determined by an argument this is an int. */
1707 if (specs[cnt].width_arg != -1)
1708 args_type[specs[cnt].width_arg] = PA_INT;
1710 /* If the precision is determined by an argument this is an int. */
1711 if (specs[cnt].prec_arg != -1)
1712 args_type[specs[cnt].prec_arg] = PA_INT;
1714 switch (specs[cnt].ndata_args)
1716 case 0: /* No arguments. */
1717 break;
1718 case 1: /* One argument; we already have the type. */
1719 args_type[specs[cnt].data_arg] = specs[cnt].data_arg_type;
1720 break;
1721 default:
1722 /* We have more than one argument for this format spec.
1723 We must call the arginfo function again to determine
1724 all the types. */
1725 (void) (*__printf_arginfo_table[specs[cnt].info.spec])
1726 (&specs[cnt].info,
1727 specs[cnt].ndata_args, &args_type[specs[cnt].data_arg]);
1728 break;
1732 /* Now we know all the types and the order. Fill in the argument
1733 values. */
1734 for (cnt = 0; cnt < nargs; ++cnt)
1735 switch (args_type[cnt])
1737 #define T(tag, mem, type) \
1738 case tag: \
1739 args_value[cnt].mem = va_arg (ap_save, type); \
1740 break
1742 T (PA_CHAR, pa_char, int); /* Promoted. */
1743 T (PA_WCHAR, pa_wchar, wint_t);
1744 T (PA_INT|PA_FLAG_SHORT, pa_short_int, int); /* Promoted. */
1745 T (PA_INT, pa_int, int);
1746 T (PA_INT|PA_FLAG_LONG, pa_long_int, long int);
1747 T (PA_INT|PA_FLAG_LONG_LONG, pa_long_long_int, long long int);
1748 T (PA_FLOAT, pa_float, double); /* Promoted. */
1749 T (PA_DOUBLE, pa_double, double);
1750 T (PA_DOUBLE|PA_FLAG_LONG_DOUBLE, pa_long_double, long double);
1751 T (PA_STRING, pa_string, const char *);
1752 T (PA_WSTRING, pa_wstring, const wchar_t *);
1753 T (PA_POINTER, pa_pointer, void *);
1754 #undef T
1755 default:
1756 if ((args_type[cnt] & PA_FLAG_PTR) != 0)
1757 args_value[cnt].pa_pointer = va_arg (ap_save, void *);
1758 else
1759 args_value[cnt].pa_long_double = 0.0;
1760 break;
1763 /* Now walk through all format specifiers and process them. */
1764 for (; (size_t) nspecs_done < nspecs; ++nspecs_done)
1766 #undef REF
1767 #if defined HAVE_SUBTRACT_LOCAL_LABELS && defined SHARED
1768 # define REF(Name) &&do2_##Name - &&do_form_unknown
1769 #else
1770 # define REF(Name) &&do2_##Name
1771 #endif
1772 #undef LABEL
1773 #define LABEL(Name) do2_##Name
1774 STEP4_TABLE;
1776 int is_negative;
1777 union
1779 unsigned long long int longlong;
1780 unsigned long int word;
1781 } number;
1782 int base;
1783 union printf_arg the_arg;
1784 CHAR_T *string; /* Pointer to argument string. */
1786 /* Fill variables from values in struct. */
1787 int alt = specs[nspecs_done].info.alt;
1788 int space = specs[nspecs_done].info.space;
1789 int left = specs[nspecs_done].info.left;
1790 int showsign = specs[nspecs_done].info.showsign;
1791 int group = specs[nspecs_done].info.group;
1792 int is_long_double = specs[nspecs_done].info.is_long_double;
1793 int is_short = specs[nspecs_done].info.is_short;
1794 int is_char = specs[nspecs_done].info.is_char;
1795 int is_long = specs[nspecs_done].info.is_long;
1796 int width = specs[nspecs_done].info.width;
1797 int prec = specs[nspecs_done].info.prec;
1798 int use_outdigits = specs[nspecs_done].info.i18n;
1799 char pad = specs[nspecs_done].info.pad;
1800 CHAR_T spec = specs[nspecs_done].info.spec;
1801 CHAR_T *workstart = NULL;
1803 /* Fill in last information. */
1804 if (specs[nspecs_done].width_arg != -1)
1806 /* Extract the field width from an argument. */
1807 specs[nspecs_done].info.width =
1808 args_value[specs[nspecs_done].width_arg].pa_int;
1810 if (specs[nspecs_done].info.width < 0)
1811 /* If the width value is negative left justification is
1812 selected and the value is taken as being positive. */
1814 specs[nspecs_done].info.width *= -1;
1815 left = specs[nspecs_done].info.left = 1;
1817 width = specs[nspecs_done].info.width;
1820 if (specs[nspecs_done].prec_arg != -1)
1822 /* Extract the precision from an argument. */
1823 specs[nspecs_done].info.prec =
1824 args_value[specs[nspecs_done].prec_arg].pa_int;
1826 if (specs[nspecs_done].info.prec < 0)
1827 /* If the precision is negative the precision is
1828 omitted. */
1829 specs[nspecs_done].info.prec = -1;
1831 prec = specs[nspecs_done].info.prec;
1834 /* Maybe the buffer is too small. */
1835 if (MAX (prec, width) + 32 > (int) (sizeof (work_buffer)
1836 / sizeof (CHAR_T)))
1838 if (MAX (prec, width) < 32768 / sizeof (CHAR_T))
1839 workend = ((CHAR_T *) alloca ((MAX (prec, width) + 32)
1840 * sizeof (CHAR_T))
1841 + (MAX (prec, width) + 32));
1842 else
1844 workstart = (CHAR_T *) malloc ((MAX (prec, width) + 32)
1845 * sizeof (CHAR_T));
1846 workend = workstart + (MAX (prec, width) + 32);
1850 /* Process format specifiers. */
1851 while (1)
1853 JUMP (spec, step4_jumps);
1855 process_arg ((&specs[nspecs_done]));
1856 process_string_arg ((&specs[nspecs_done]));
1858 LABEL (form_unknown):
1860 extern printf_function **__printf_function_table;
1861 int function_done;
1862 printf_function *function;
1863 unsigned int i;
1864 const void **ptr;
1866 function =
1867 (__printf_function_table == NULL ? NULL :
1868 __printf_function_table[specs[nspecs_done].info.spec]);
1870 if (function == NULL)
1871 function = &printf_unknown;
1873 ptr = alloca (specs[nspecs_done].ndata_args
1874 * sizeof (const void *));
1876 /* Fill in an array of pointers to the argument values. */
1877 for (i = 0; i < specs[nspecs_done].ndata_args; ++i)
1878 ptr[i] = &args_value[specs[nspecs_done].data_arg + i];
1880 /* Call the function. */
1881 function_done = (*function) (s, &specs[nspecs_done].info, ptr);
1883 /* If an error occurred we don't have information about #
1884 of chars. */
1885 if (function_done < 0)
1887 done = -1;
1888 goto all_done;
1891 done += function_done;
1893 break;
1896 free (workstart);
1897 workstart = NULL;
1899 /* Write the following constant string. */
1900 outstring (specs[nspecs_done].end_of_fmt,
1901 specs[nspecs_done].next_fmt
1902 - specs[nspecs_done].end_of_fmt);
1906 all_done:
1907 free (workstart);
1908 /* Unlock the stream. */
1909 #ifdef USE_IN_LIBIO
1910 _IO_funlockfile (s);
1911 #else
1912 __funlockfile (s);
1913 #endif
1914 __libc_cleanup_region_end (0);
1916 return done;
1919 /* Handle an unknown format specifier. This prints out a canonicalized
1920 representation of the format spec itself. */
1921 static int
1922 printf_unknown (FILE *s, const struct printf_info *info,
1923 const void *const *args)
1926 int done = 0;
1927 CHAR_T work_buffer[MAX (info->width, info->spec) + 32];
1928 CHAR_T *const workend
1929 = &work_buffer[sizeof (work_buffer) / sizeof (CHAR_T)];
1930 register CHAR_T *w;
1932 outchar (L_('%'));
1934 if (info->alt)
1935 outchar (L_('#'));
1936 if (info->group)
1937 outchar (L_('\''));
1938 if (info->showsign)
1939 outchar (L_('+'));
1940 else if (info->space)
1941 outchar (L_(' '));
1942 if (info->left)
1943 outchar (L_('-'));
1944 if (info->pad == L_('0'))
1945 outchar (L_('0'));
1946 if (info->i18n)
1947 outchar (L_('I'));
1949 if (info->width != 0)
1951 w = _itoa_word (info->width, workend, 10, 0);
1952 while (w < workend)
1953 outchar (*w++);
1956 if (info->prec != -1)
1958 outchar (L_('.'));
1959 w = _itoa_word (info->prec, workend, 10, 0);
1960 while (w < workend)
1961 outchar (*w++);
1964 if (info->spec != L_('\0'))
1965 outchar (info->spec);
1967 all_done:
1968 return done;
1971 /* Group the digits according to the grouping rules of the current locale.
1972 The interpretation of GROUPING is as in `struct lconv' from <locale.h>. */
1973 static CHAR_T *
1974 internal_function
1975 group_number (CHAR_T *w, CHAR_T *rear_ptr, const char *grouping,
1976 #ifdef COMPILE_WPRINTF
1977 wchar_t thousands_sep
1978 #else
1979 const char *thousands_sep
1980 #endif
1983 int len;
1984 CHAR_T *src, *s;
1985 #ifndef COMPILE_WPRINTF
1986 int tlen = strlen (thousands_sep);
1987 #endif
1989 /* We treat all negative values like CHAR_MAX. */
1991 if (*grouping == CHAR_MAX || *grouping <= 0)
1992 /* No grouping should be done. */
1993 return w;
1995 len = *grouping;
1997 /* Copy existing string so that nothing gets overwritten. */
1998 src = (CHAR_T *) alloca ((rear_ptr - w) * sizeof (CHAR_T));
1999 s = (CHAR_T *) __mempcpy (src, w,
2000 (rear_ptr - w) * sizeof (CHAR_T));
2001 w = rear_ptr;
2003 /* Process all characters in the string. */
2004 while (s > src)
2006 *--w = *--s;
2008 if (--len == 0 && s > src)
2010 /* A new group begins. */
2011 #ifdef COMPILE_WPRINTF
2012 *--w = thousands_sep;
2013 #else
2014 int cnt = tlen;
2016 *--w = thousands_sep[--cnt];
2017 while (cnt > 0);
2018 #endif
2020 len = *grouping++;
2021 if (*grouping == '\0')
2022 /* The previous grouping repeats ad infinitum. */
2023 --grouping;
2024 else if (*grouping == CHAR_MAX
2025 #if CHAR_MIN < 0
2026 || *grouping < 0
2027 #endif
2030 /* No further grouping to be done.
2031 Copy the rest of the number. */
2033 *--w = *--s;
2034 while (s > src);
2035 break;
2039 return w;
2042 #ifdef USE_IN_LIBIO
2043 /* Helper "class" for `fprintf to unbuffered': creates a temporary buffer. */
2044 struct helper_file
2046 struct _IO_FILE_plus _f;
2047 #ifdef COMPILE_WPRINTF
2048 struct _IO_wide_data _wide_data;
2049 #endif
2050 _IO_FILE *_put_stream;
2051 #ifdef _IO_MTSAFE_IO
2052 _IO_lock_t lock;
2053 #endif
2056 static int
2057 _IO_helper_overflow (_IO_FILE *s, int c)
2059 _IO_FILE *target = ((struct helper_file*) s)->_put_stream;
2060 #ifdef COMPILE_WPRINTF
2061 int used = s->_wide_data->_IO_write_ptr - s->_wide_data->_IO_write_base;
2062 if (used)
2064 _IO_size_t written = _IO_sputn (target, s->_wide_data->_IO_write_base,
2065 used);
2066 s->_wide_data->_IO_write_ptr -= written;
2068 #else
2069 int used = s->_IO_write_ptr - s->_IO_write_base;
2070 if (used)
2072 _IO_size_t written = _IO_sputn (target, s->_IO_write_base, used);
2073 s->_IO_write_ptr -= written;
2075 #endif
2076 return PUTC (c, s);
2079 #ifdef COMPILE_WPRINTF
2080 static const struct _IO_jump_t _IO_helper_jumps =
2082 JUMP_INIT_DUMMY,
2083 JUMP_INIT (finish, INTUSE(_IO_wdefault_finish)),
2084 JUMP_INIT (overflow, _IO_helper_overflow),
2085 JUMP_INIT (underflow, _IO_default_underflow),
2086 JUMP_INIT (uflow, INTUSE(_IO_default_uflow)),
2087 JUMP_INIT (pbackfail, (_IO_pbackfail_t) INTUSE(_IO_wdefault_pbackfail)),
2088 JUMP_INIT (xsputn, INTUSE(_IO_wdefault_xsputn)),
2089 JUMP_INIT (xsgetn, INTUSE(_IO_wdefault_xsgetn)),
2090 JUMP_INIT (seekoff, _IO_default_seekoff),
2091 JUMP_INIT (seekpos, _IO_default_seekpos),
2092 JUMP_INIT (setbuf,(_IO_setbuf_t) INTUSE(_IO_wdefault_setbuf)),
2093 JUMP_INIT (sync, _IO_default_sync),
2094 JUMP_INIT (doallocate, INTUSE(_IO_wdefault_doallocate)),
2095 JUMP_INIT (read, _IO_default_read),
2096 JUMP_INIT (write, _IO_default_write),
2097 JUMP_INIT (seek, _IO_default_seek),
2098 JUMP_INIT (close, _IO_default_close),
2099 JUMP_INIT (stat, _IO_default_stat)
2101 #else
2102 static const struct _IO_jump_t _IO_helper_jumps =
2104 JUMP_INIT_DUMMY,
2105 JUMP_INIT (finish, INTUSE(_IO_default_finish)),
2106 JUMP_INIT (overflow, _IO_helper_overflow),
2107 JUMP_INIT (underflow, _IO_default_underflow),
2108 JUMP_INIT (uflow, INTUSE(_IO_default_uflow)),
2109 JUMP_INIT (pbackfail, INTUSE(_IO_default_pbackfail)),
2110 JUMP_INIT (xsputn, INTUSE(_IO_default_xsputn)),
2111 JUMP_INIT (xsgetn, INTUSE(_IO_default_xsgetn)),
2112 JUMP_INIT (seekoff, _IO_default_seekoff),
2113 JUMP_INIT (seekpos, _IO_default_seekpos),
2114 JUMP_INIT (setbuf, _IO_default_setbuf),
2115 JUMP_INIT (sync, _IO_default_sync),
2116 JUMP_INIT (doallocate, INTUSE(_IO_default_doallocate)),
2117 JUMP_INIT (read, _IO_default_read),
2118 JUMP_INIT (write, _IO_default_write),
2119 JUMP_INIT (seek, _IO_default_seek),
2120 JUMP_INIT (close, _IO_default_close),
2121 JUMP_INIT (stat, _IO_default_stat)
2123 #endif
2125 static int
2126 internal_function
2127 buffered_vfprintf (register _IO_FILE *s, const CHAR_T *format,
2128 _IO_va_list args)
2130 CHAR_T buf[_IO_BUFSIZ];
2131 struct helper_file helper;
2132 register _IO_FILE *hp = (_IO_FILE *) &helper._f;
2133 int result, to_flush;
2135 /* Orient the stream. */
2136 #ifdef ORIENT
2137 ORIENT;
2138 #endif
2140 /* Initialize helper. */
2141 helper._put_stream = s;
2142 #ifdef COMPILE_WPRINTF
2143 hp->_wide_data = &helper._wide_data;
2144 _IO_wsetp (hp, buf, buf + sizeof buf / sizeof (CHAR_T));
2145 hp->_mode = 1;
2146 #else
2147 _IO_setp (hp, buf, buf + sizeof buf);
2148 hp->_mode = -1;
2149 #endif
2150 hp->_IO_file_flags = _IO_MAGIC|_IO_NO_READS|_IO_USER_LOCK;
2151 #if _IO_JUMPS_OFFSET
2152 hp->_vtable_offset = 0;
2153 #endif
2154 #ifdef _IO_MTSAFE_IO
2155 hp->_lock = NULL;
2156 #endif
2157 _IO_JUMPS (&helper._f) = (struct _IO_jump_t *) &_IO_helper_jumps;
2159 /* Now print to helper instead. */
2160 #if defined USE_IN_LIBIO && !defined COMPILE_WPRINTF
2161 result = INTUSE(_IO_vfprintf) (hp, format, args);
2162 #else
2163 result = vfprintf (hp, format, args);
2164 #endif
2166 /* Lock stream. */
2167 __libc_cleanup_region_start (1, (void (*) (void *)) &_IO_funlockfile, s);
2168 _IO_flockfile (s);
2170 /* Now flush anything from the helper to the S. */
2171 #ifdef COMPILE_WPRINTF
2172 if ((to_flush = (hp->_wide_data->_IO_write_ptr
2173 - hp->_wide_data->_IO_write_base)) > 0)
2175 if ((int) _IO_sputn (s, hp->_wide_data->_IO_write_base, to_flush)
2176 != to_flush)
2177 result = -1;
2179 #else
2180 if ((to_flush = hp->_IO_write_ptr - hp->_IO_write_base) > 0)
2182 if ((int) _IO_sputn (s, hp->_IO_write_base, to_flush) != to_flush)
2183 result = -1;
2185 #endif
2187 /* Unlock the stream. */
2188 _IO_funlockfile (s);
2189 __libc_cleanup_region_end (0);
2191 return result;
2194 #else /* !USE_IN_LIBIO */
2196 static int
2197 internal_function
2198 buffered_vfprintf (register FILE *s, const CHAR_T *format, va_list args)
2200 char buf[BUFSIZ];
2201 int result;
2203 /* Orient the stream. */
2204 #ifdef ORIENT
2205 ORIENT;
2206 #endif
2208 s->__bufp = s->__buffer = buf;
2209 s->__bufsize = sizeof buf;
2210 s->__put_limit = s->__buffer + s->__bufsize;
2211 s->__get_limit = s->__buffer;
2213 /* Now use buffer to print. */
2214 result = vfprintf (s, format, args);
2216 if (fflush (s) == EOF)
2217 result = -1;
2218 s->__buffer = s->__bufp = s->__get_limit = s->__put_limit = NULL;
2219 s->__bufsize = 0;
2221 return result;
2224 /* Pads string with given number of a specified character.
2225 This code is taken from iopadn.c of the GNU I/O library. */
2226 #define PADSIZE 16
2227 static const CHAR_T blanks[PADSIZE] =
2228 { L_(' '), L_(' '), L_(' '), L_(' '), L_(' '), L_(' '), L_(' '), L_(' '),
2229 L_(' '), L_(' '), L_(' '), L_(' '), L_(' '), L_(' '), L_(' '), L_(' ') };
2230 static const CHAR_T zeroes[PADSIZE] =
2231 { L_('0'), L_('0'), L_('0'), L_('0'), L_('0'), L_('0'), L_('0'), L_('0'),
2232 L_('0'), L_('0'), L_('0'), L_('0'), L_('0'), L_('0'), L_('0'), L_('0') };
2234 ssize_t
2235 #ifndef COMPILE_WPRINTF
2236 __printf_pad (FILE *s, char pad, size_t count)
2237 #else
2238 __wprintf_pad (FILE *s, wchar_t pad, size_t count)
2239 #endif
2241 const CHAR_T *padptr;
2242 register size_t i;
2244 padptr = pad == L_(' ') ? blanks : zeroes;
2246 for (i = count; i >= PADSIZE; i -= PADSIZE)
2247 if (PUT (s, padptr, PADSIZE) != PADSIZE)
2248 return -1;
2249 if (i > 0)
2250 if (PUT (s, padptr, i) != i)
2251 return -1;
2253 return count;
2255 #undef PADSIZE
2256 #endif /* USE_IN_LIBIO */
2258 #ifdef USE_IN_LIBIO
2259 # undef vfprintf
2260 # ifdef strong_alias
2261 /* This is for glibc. */
2262 # ifdef COMPILE_WPRINTF
2263 strong_alias (_IO_vfwprintf, __vfwprintf);
2264 weak_alias (_IO_vfwprintf, vfwprintf);
2265 # else
2266 strong_alias (_IO_vfprintf, vfprintf);
2267 INTDEF(_IO_vfprintf)
2268 # endif
2269 # else
2270 # if defined __ELF__ || defined __GNU_LIBRARY__
2271 # include <gnu-stabs.h>
2272 # ifdef weak_alias
2273 # ifdef COMPILE_WPRINTF
2274 weak_alias (_IO_vfwprintf, vfwprintf);
2275 # else
2276 weak_alias (_IO_vfprintf, vfprintf);
2277 # endif
2278 # endif
2279 # endif
2280 # endif
2281 #endif