1 /* Print wide integers.
2 Copyright (C) 2013-2025 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 3, or (at your option) any
11 GCC is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #ifndef WIDE_INT_PRINT_H
21 #define WIDE_INT_PRINT_H
25 #define WIDE_INT_PRINT_BUFFER_SIZE (WIDE_INT_MAX_INL_PRECISION / 4 + 4)
27 /* Printing functions. */
29 extern void print_dec (const wide_int_ref
&wi
, char *buf
, signop sgn
);
30 extern void print_dec (const wide_int_ref
&wi
, FILE *file
, signop sgn
);
31 extern void print_decs (const wide_int_ref
&wi
, char *buf
);
32 extern void print_decs (const wide_int_ref
&wi
, FILE *file
);
33 extern void print_decu (const wide_int_ref
&wi
, char *buf
);
34 extern void print_decu (const wide_int_ref
&wi
, FILE *file
);
35 extern void print_hex (const wide_int_ref
&wi
, char *buf
);
36 extern void print_hex (const wide_int_ref
&wi
, FILE *file
);
37 extern void pp_wide_int_large (pretty_printer
*, const wide_int_ref
&, signop
);
40 print_dec_buf_size (const wide_int_ref
&wi
, signop sgn
, unsigned int *len
)
42 unsigned int l
= wi
.get_len ();
43 if ((l
!= 1 || sgn
== UNSIGNED
) && wi::neg_p (wi
))
44 l
= WIDE_INT_MAX_HWIS (wi
.get_precision ());
45 l
= l
* HOST_BITS_PER_WIDE_INT
/ 3 + 3;
47 return UNLIKELY (l
> WIDE_INT_PRINT_BUFFER_SIZE
);
51 print_decs_buf_size (const wide_int_ref
&wi
, unsigned int *len
)
53 return print_dec_buf_size (wi
, SIGNED
, len
);
57 print_decu_buf_size (const wide_int_ref
&wi
, unsigned int *len
)
59 return print_dec_buf_size (wi
, UNSIGNED
, len
);
63 print_hex_buf_size (const wide_int_ref
&wi
, unsigned int *len
)
67 l
= WIDE_INT_MAX_HWIS (wi
.get_precision ());
70 l
= l
* HOST_BITS_PER_WIDE_INT
/ 4 + 4;
72 return UNLIKELY (l
> WIDE_INT_PRINT_BUFFER_SIZE
);
75 #endif /* WIDE_INT_PRINT_H */