1 /* Check calls to formatted I/O functions (-Wformat).
2 Copyright (C) 1992-2018 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 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/>. */
22 #include "coretypes.h"
26 #include "alloc-pool.h"
27 #include "stringpool.h"
30 #include "langhooks.h"
32 #include "diagnostic.h"
33 #include "substring-locations.h"
38 /* Handle attributes associated with format checking. */
40 /* This must be in the same order as format_types, except for
41 format_type_error. Target-specific format types do not have
42 matching enum values. */
43 enum format_type
{ printf_format_type
, asm_fprintf_format_type
,
44 gcc_diag_format_type
, gcc_tdiag_format_type
,
45 gcc_cdiag_format_type
,
46 gcc_cxxdiag_format_type
, gcc_gfc_format_type
,
47 gcc_objc_string_format_type
,
48 format_type_error
= -1};
50 struct function_format_info
52 int format_type
; /* type of format (printf, scanf, etc.) */
53 unsigned HOST_WIDE_INT format_num
; /* number of format argument */
54 unsigned HOST_WIDE_INT first_arg_num
; /* number of first arg (zero for varargs) */
57 /* Initialized in init_dynamic_diag_info. */
58 static GTY(()) tree local_tree_type_node
;
59 static GTY(()) tree local_gcall_ptr_node
;
60 static GTY(()) tree locus
;
62 static bool decode_format_attr (tree
, function_format_info
*, int);
63 static int decode_format_type (const char *);
65 static bool check_format_string (tree argument
,
66 unsigned HOST_WIDE_INT format_num
,
67 int flags
, bool *no_add_attrs
,
68 int expected_format_type
);
69 static bool get_constant (tree expr
, unsigned HOST_WIDE_INT
*value
,
71 static const char *convert_format_name_to_system_name (const char *attr_name
);
73 static int first_target_format_type
;
74 static const char *format_name (int format_num
);
75 static int format_flags (int format_num
);
77 /* Emit a warning as per format_warning_va, but construct the substring_loc
78 for the character at offset (CHAR_IDX - 1) within a string constant
79 FORMAT_STRING_CST at FMT_STRING_LOC. */
81 ATTRIBUTE_GCC_DIAG (5,6)
83 format_warning_at_char (location_t fmt_string_loc
, tree format_string_cst
,
84 int char_idx
, int opt
, const char *gmsgid
, ...)
87 va_start (ap
, gmsgid
);
88 tree string_type
= TREE_TYPE (format_string_cst
);
90 /* The callers are of the form:
91 format_warning (format_string_loc, format_string_cst,
92 format_chars - orig_format_chars,
93 where format_chars has already been incremented, so that
94 CHAR_IDX is one character beyond where the warning should
95 be emitted. Fix it. */
98 substring_loc
fmt_loc (fmt_string_loc
, string_type
, char_idx
, char_idx
,
100 bool warned
= format_warning_va (fmt_loc
, UNKNOWN_LOCATION
, NULL
, opt
,
107 /* Check that we have a pointer to a string suitable for use as a format.
108 The default is to check for a char type.
109 For objective-c dialects, this is extended to include references to string
110 objects validated by objc_string_ref_type_p ().
111 Targets may also provide a string object type that can be used within c and
112 c++ and shared with their respective objective-c dialects. In this case the
113 reference to a format string is checked for validity via a hook.
115 The function returns true if strref points to any string type valid for the
116 language dialect and target. */
119 valid_stringptr_type_p (tree strref
)
121 return (strref
!= NULL
122 && TREE_CODE (strref
) == POINTER_TYPE
123 && (TYPE_MAIN_VARIANT (TREE_TYPE (strref
)) == char_type_node
124 || objc_string_ref_type_p (strref
)
125 || (*targetcm
.string_object_ref_type_p
) ((const_tree
) strref
)));
128 /* Handle a "format_arg" attribute; arguments as in
129 struct attribute_spec.handler. */
131 handle_format_arg_attribute (tree
*node
, tree
ARG_UNUSED (name
),
132 tree args
, int flags
, bool *no_add_attrs
)
135 tree format_num_expr
= TREE_VALUE (args
);
136 unsigned HOST_WIDE_INT format_num
= 0;
138 if (!get_constant (format_num_expr
, &format_num
, 0))
140 error ("format string has invalid operand number");
141 *no_add_attrs
= true;
145 if (prototype_p (type
))
147 /* The format arg can be any string reference valid for the language and
148 target. We cannot be more specific in this case. */
149 if (!check_format_string (type
, format_num
, flags
, no_add_attrs
, -1))
153 if (!valid_stringptr_type_p (TREE_TYPE (type
)))
155 if (!(flags
& (int) ATTR_FLAG_BUILT_IN
))
156 error ("function does not return string type");
157 *no_add_attrs
= true;
164 /* Verify that the format_num argument is actually a string reference suitable,
165 for the language dialect and target (in case the format attribute is in
166 error). When we know the specific reference type expected, this is also
169 check_format_string (tree fntype
, unsigned HOST_WIDE_INT format_num
,
170 int flags
, bool *no_add_attrs
, int expected_format_type
)
172 unsigned HOST_WIDE_INT i
;
173 bool is_objc_sref
, is_target_sref
, is_char_ref
;
176 function_args_iterator iter
;
179 FOREACH_FUNCTION_ARGS (fntype
, ref
, iter
)
187 || !valid_stringptr_type_p (ref
))
189 if (!(flags
& (int) ATTR_FLAG_BUILT_IN
))
190 error ("format string argument is not a string type");
191 *no_add_attrs
= true;
195 /* We only know that we want a suitable string reference. */
196 if (expected_format_type
< 0)
199 /* Now check that the arg matches the expected type. */
201 (TYPE_MAIN_VARIANT (TREE_TYPE (ref
)) == char_type_node
);
203 fmt_flags
= format_flags (expected_format_type
);
204 is_objc_sref
= is_target_sref
= false;
206 is_objc_sref
= objc_string_ref_type_p (ref
);
208 if (!(fmt_flags
& FMT_FLAG_PARSE_ARG_CONVERT_EXTERNAL
))
211 return true; /* OK, we expected a char and found one. */
214 /* We expected a char but found an extended string type. */
216 error ("found a %qs reference but the format argument should"
217 " be a string", format_name (gcc_objc_string_format_type
));
219 error ("found a %qT but the format argument should be a string",
221 *no_add_attrs
= true;
226 /* We expect a string object type as the format arg. */
229 error ("format argument should be a %qs reference but"
230 " a string was found", format_name (expected_format_type
));
231 *no_add_attrs
= true;
235 /* We will assert that objective-c will support either its own string type
236 or the target-supplied variant. */
238 is_target_sref
= (*targetcm
.string_object_ref_type_p
) ((const_tree
) ref
);
240 if (expected_format_type
== (int) gcc_objc_string_format_type
241 && (is_objc_sref
|| is_target_sref
))
244 /* We will allow a target string ref to match only itself. */
245 if (first_target_format_type
246 && expected_format_type
>= first_target_format_type
251 error ("format argument should be a %qs reference",
252 format_name (expected_format_type
));
253 *no_add_attrs
= true;
260 /* Verify EXPR is a constant, and store its value.
261 If validated_p is true there should be no errors.
262 Returns true on success, false otherwise. */
264 get_constant (tree expr
, unsigned HOST_WIDE_INT
*value
, int validated_p
)
266 if (!tree_fits_uhwi_p (expr
))
268 gcc_assert (!validated_p
);
272 *value
= TREE_INT_CST_LOW (expr
);
277 /* Decode the arguments to a "format" attribute into a
278 function_format_info structure. It is already known that the list
279 is of the right length. If VALIDATED_P is true, then these
280 attributes have already been validated and must not be erroneous;
281 if false, it will give an error message. Returns true if the
282 attributes are successfully decoded, false otherwise. */
285 decode_format_attr (tree args
, function_format_info
*info
, int validated_p
)
287 tree format_type_id
= TREE_VALUE (args
);
288 tree format_num_expr
= TREE_VALUE (TREE_CHAIN (args
));
289 tree first_arg_num_expr
290 = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (args
)));
292 if (TREE_CODE (format_type_id
) != IDENTIFIER_NODE
)
294 gcc_assert (!validated_p
);
295 error ("unrecognized format specifier");
300 const char *p
= IDENTIFIER_POINTER (format_type_id
);
302 p
= convert_format_name_to_system_name (p
);
304 info
->format_type
= decode_format_type (p
);
306 if (!c_dialect_objc ()
307 && info
->format_type
== gcc_objc_string_format_type
)
309 gcc_assert (!validated_p
);
310 warning (OPT_Wformat_
, "%qE is only allowed in Objective-C dialects",
312 info
->format_type
= format_type_error
;
316 if (info
->format_type
== format_type_error
)
318 gcc_assert (!validated_p
);
319 warning (OPT_Wformat_
, "%qE is an unrecognized format function type",
325 if (!get_constant (format_num_expr
, &info
->format_num
, validated_p
))
327 error ("format string has invalid operand number");
331 if (!get_constant (first_arg_num_expr
, &info
->first_arg_num
, validated_p
))
333 error ("%<...%> has invalid operand number");
337 if (info
->first_arg_num
!= 0 && info
->first_arg_num
<= info
->format_num
)
339 gcc_assert (!validated_p
);
340 error ("format string argument follows the args to be formatted");
347 /* Check a call to a format function against a parameter list. */
349 /* The C standard version C++ is treated as equivalent to
350 or inheriting from, for the purpose of format features supported. */
351 #define CPLUSPLUS_STD_VER (cxx_dialect < cxx11 ? STD_C94 : STD_C99)
352 /* The C standard version we are checking formats against when pedantic. */
353 #define C_STD_VER ((int) (c_dialect_cxx () \
354 ? CPLUSPLUS_STD_VER \
357 : (flag_isoc94 ? STD_C94 : STD_C89))))
358 /* The name to give to the standard version we are warning about when
359 pedantic. FEATURE_VER is the version in which the feature warned out
360 appeared, which is higher than C_STD_VER. */
361 #define C_STD_NAME(FEATURE_VER) (c_dialect_cxx () \
362 ? (cxx_dialect < cxx11 ? "ISO C++98" \
364 : ((FEATURE_VER) == STD_EXT \
367 /* Adjust a C standard version, which may be STD_C9L, to account for
368 -Wno-long-long. Returns other standard versions unchanged. */
369 #define ADJ_STD(VER) ((int) ((VER) == STD_C9L \
370 ? (warn_long_long ? STD_C99 : STD_C89) \
373 /* Enum describing the kind of specifiers present in the format and
374 requiring an argument. */
375 enum format_specifier_kind
{
378 CF_KIND_FIELD_PRECISION
381 static const char *kind_descriptions
[] = {
383 N_("field width specifier"),
384 N_("field precision specifier")
387 /* Structure describing details of a type expected in format checking,
388 and the type to check against it. */
389 struct format_wanted_type
391 /* The type wanted. */
393 /* The name of this type to use in diagnostics. */
394 const char *wanted_type_name
;
395 /* Should be type checked just for scalar width identity. */
396 int scalar_identity_flag
;
397 /* The level of indirection through pointers at which this type occurs. */
399 /* Whether, when pointer_count is 1, to allow any character type when
400 pedantic, rather than just the character or void type specified. */
401 int char_lenient_flag
;
402 /* Whether the argument, dereferenced once, is written into and so the
403 argument must not be a pointer to a const-qualified type. */
405 /* Whether the argument, dereferenced once, is read from and so
406 must not be a NULL pointer. */
407 int reading_from_flag
;
408 /* The kind of specifier that this type is used for. */
409 enum format_specifier_kind kind
;
410 /* The starting character of the specifier. This never includes the
411 initial percent sign. */
412 const char *format_start
;
413 /* The length of the specifier. */
415 /* The actual parameter to check against the wanted type. */
417 /* The argument number of that parameter. */
419 /* The offset location of this argument with respect to the format
421 unsigned int offset_loc
;
422 /* The next type to check for this format conversion, or NULL if none. */
423 struct format_wanted_type
*next
;
426 /* Convenience macro for format_length_info meaning unused. */
427 #define NO_FMT NULL, FMT_LEN_none, STD_C89
429 static const format_length_info printf_length_specs
[] =
431 { "h", FMT_LEN_h
, STD_C89
, "hh", FMT_LEN_hh
, STD_C99
, 0 },
432 { "l", FMT_LEN_l
, STD_C89
, "ll", FMT_LEN_ll
, STD_C9L
, 0 },
433 { "q", FMT_LEN_ll
, STD_EXT
, NO_FMT
, 0 },
434 { "L", FMT_LEN_L
, STD_C89
, NO_FMT
, 0 },
435 { "z", FMT_LEN_z
, STD_C99
, NO_FMT
, 0 },
436 { "Z", FMT_LEN_z
, STD_EXT
, NO_FMT
, 0 },
437 { "t", FMT_LEN_t
, STD_C99
, NO_FMT
, 0 },
438 { "j", FMT_LEN_j
, STD_C99
, NO_FMT
, 0 },
439 { "H", FMT_LEN_H
, STD_EXT
, NO_FMT
, 0 },
440 { "D", FMT_LEN_D
, STD_EXT
, "DD", FMT_LEN_DD
, STD_EXT
, 0 },
441 { NO_FMT
, NO_FMT
, 0 }
444 /* Length specifiers valid for asm_fprintf. */
445 static const format_length_info asm_fprintf_length_specs
[] =
447 { "l", FMT_LEN_l
, STD_C89
, "ll", FMT_LEN_ll
, STD_C89
, 0 },
448 { "w", FMT_LEN_none
, STD_C89
, NO_FMT
, 0 },
449 { NO_FMT
, NO_FMT
, 0 }
452 /* Length specifiers valid for GCC diagnostics. */
453 static const format_length_info gcc_diag_length_specs
[] =
455 { "l", FMT_LEN_l
, STD_C89
, "ll", FMT_LEN_ll
, STD_C89
, 0 },
456 { "w", FMT_LEN_none
, STD_C89
, NO_FMT
, 0 },
457 { NO_FMT
, NO_FMT
, 0 }
460 /* The custom diagnostics all accept the same length specifiers. */
461 #define gcc_tdiag_length_specs gcc_diag_length_specs
462 #define gcc_cdiag_length_specs gcc_diag_length_specs
463 #define gcc_cxxdiag_length_specs gcc_diag_length_specs
465 /* This differs from printf_length_specs only in that "Z" is not accepted. */
466 static const format_length_info scanf_length_specs
[] =
468 { "h", FMT_LEN_h
, STD_C89
, "hh", FMT_LEN_hh
, STD_C99
, 0 },
469 { "l", FMT_LEN_l
, STD_C89
, "ll", FMT_LEN_ll
, STD_C9L
, 0 },
470 { "q", FMT_LEN_ll
, STD_EXT
, NO_FMT
, 0 },
471 { "L", FMT_LEN_L
, STD_C89
, NO_FMT
, 0 },
472 { "z", FMT_LEN_z
, STD_C99
, NO_FMT
, 0 },
473 { "t", FMT_LEN_t
, STD_C99
, NO_FMT
, 0 },
474 { "j", FMT_LEN_j
, STD_C99
, NO_FMT
, 0 },
475 { "H", FMT_LEN_H
, STD_EXT
, NO_FMT
, 0 },
476 { "D", FMT_LEN_D
, STD_EXT
, "DD", FMT_LEN_DD
, STD_EXT
, 0 },
477 { NO_FMT
, NO_FMT
, 0 }
481 /* All tables for strfmon use STD_C89 everywhere, since -pedantic warnings
482 make no sense for a format type not part of any C standard version. */
483 static const format_length_info strfmon_length_specs
[] =
485 /* A GNU extension. */
486 { "L", FMT_LEN_L
, STD_C89
, NO_FMT
, 0 },
487 { NO_FMT
, NO_FMT
, 0 }
491 /* For now, the Fortran front-end routines only use l as length modifier. */
492 static const format_length_info gcc_gfc_length_specs
[] =
494 { "l", FMT_LEN_l
, STD_C89
, NO_FMT
, 0 },
495 { NO_FMT
, NO_FMT
, 0 }
499 static const format_flag_spec printf_flag_specs
[] =
501 { ' ', 0, 0, 0, N_("' ' flag"), N_("the ' ' printf flag"), STD_C89
},
502 { '+', 0, 0, 0, N_("'+' flag"), N_("the '+' printf flag"), STD_C89
},
503 { '#', 0, 0, 0, N_("'#' flag"), N_("the '#' printf flag"), STD_C89
},
504 { '0', 0, 0, 0, N_("'0' flag"), N_("the '0' printf flag"), STD_C89
},
505 { '-', 0, 0, 0, N_("'-' flag"), N_("the '-' printf flag"), STD_C89
},
506 { '\'', 0, 0, 0, N_("''' flag"), N_("the ''' printf flag"), STD_EXT
},
507 { 'I', 0, 0, 0, N_("'I' flag"), N_("the 'I' printf flag"), STD_EXT
},
508 { 'w', 0, 0, 0, N_("field width"), N_("field width in printf format"), STD_C89
},
509 { 'p', 0, 0, 0, N_("precision"), N_("precision in printf format"), STD_C89
},
510 { 'L', 0, 0, 0, N_("length modifier"), N_("length modifier in printf format"), STD_C89
},
511 { 0, 0, 0, 0, NULL
, NULL
, STD_C89
}
515 static const format_flag_pair printf_flag_pairs
[] =
519 { '0', 'p', 1, 'i' },
523 static const format_flag_spec asm_fprintf_flag_specs
[] =
525 { ' ', 0, 0, 0, N_("' ' flag"), N_("the ' ' printf flag"), STD_C89
},
526 { '+', 0, 0, 0, N_("'+' flag"), N_("the '+' printf flag"), STD_C89
},
527 { '#', 0, 0, 0, N_("'#' flag"), N_("the '#' printf flag"), STD_C89
},
528 { '0', 0, 0, 0, N_("'0' flag"), N_("the '0' printf flag"), STD_C89
},
529 { '-', 0, 0, 0, N_("'-' flag"), N_("the '-' printf flag"), STD_C89
},
530 { 'w', 0, 0, 0, N_("field width"), N_("field width in printf format"), STD_C89
},
531 { 'p', 0, 0, 0, N_("precision"), N_("precision in printf format"), STD_C89
},
532 { 'L', 0, 0, 0, N_("length modifier"), N_("length modifier in printf format"), STD_C89
},
533 { 0, 0, 0, 0, NULL
, NULL
, STD_C89
}
536 static const format_flag_pair asm_fprintf_flag_pairs
[] =
540 { '0', 'p', 1, 'i' },
544 static const format_flag_pair gcc_diag_flag_pairs
[] =
549 #define gcc_tdiag_flag_pairs gcc_diag_flag_pairs
550 #define gcc_cdiag_flag_pairs gcc_diag_flag_pairs
551 #define gcc_cxxdiag_flag_pairs gcc_diag_flag_pairs
552 #define gcc_gfc_flag_pairs gcc_diag_flag_pairs
554 static const format_flag_spec gcc_diag_flag_specs
[] =
556 { '+', 0, 0, 0, N_("'+' flag"), N_("the '+' printf flag"), STD_C89
},
557 { '#', 0, 0, 0, N_("'#' flag"), N_("the '#' printf flag"), STD_C89
},
558 { 'q', 0, 0, 1, N_("'q' flag"), N_("the 'q' diagnostic flag"), STD_C89
},
559 { 'p', 0, 0, 0, N_("precision"), N_("precision in printf format"), STD_C89
},
560 { 'L', 0, 0, 0, N_("length modifier"), N_("length modifier in printf format"), STD_C89
},
561 { 0, 0, 0, 0, NULL
, NULL
, STD_C89
}
564 #define gcc_tdiag_flag_specs gcc_diag_flag_specs
565 #define gcc_cdiag_flag_specs gcc_diag_flag_specs
566 #define gcc_cxxdiag_flag_specs gcc_diag_flag_specs
567 #define gcc_gfc_flag_specs gcc_diag_flag_specs
569 static const format_flag_spec scanf_flag_specs
[] =
571 { '*', 0, 0, 0, N_("assignment suppression"), N_("the assignment suppression scanf feature"), STD_C89
},
572 { 'a', 0, 0, 0, N_("'a' flag"), N_("the 'a' scanf flag"), STD_EXT
},
573 { 'm', 0, 0, 0, N_("'m' flag"), N_("the 'm' scanf flag"), STD_EXT
},
574 { 'w', 0, 0, 0, N_("field width"), N_("field width in scanf format"), STD_C89
},
575 { 'L', 0, 0, 0, N_("length modifier"), N_("length modifier in scanf format"), STD_C89
},
576 { '\'', 0, 0, 0, N_("''' flag"), N_("the ''' scanf flag"), STD_EXT
},
577 { 'I', 0, 0, 0, N_("'I' flag"), N_("the 'I' scanf flag"), STD_EXT
},
578 { 0, 0, 0, 0, NULL
, NULL
, STD_C89
}
582 static const format_flag_pair scanf_flag_pairs
[] =
590 static const format_flag_spec strftime_flag_specs
[] =
592 { '_', 0, 0, 0, N_("'_' flag"), N_("the '_' strftime flag"), STD_EXT
},
593 { '-', 0, 0, 0, N_("'-' flag"), N_("the '-' strftime flag"), STD_EXT
},
594 { '0', 0, 0, 0, N_("'0' flag"), N_("the '0' strftime flag"), STD_EXT
},
595 { '^', 0, 0, 0, N_("'^' flag"), N_("the '^' strftime flag"), STD_EXT
},
596 { '#', 0, 0, 0, N_("'#' flag"), N_("the '#' strftime flag"), STD_EXT
},
597 { 'w', 0, 0, 0, N_("field width"), N_("field width in strftime format"), STD_EXT
},
598 { 'E', 0, 0, 0, N_("'E' modifier"), N_("the 'E' strftime modifier"), STD_C99
},
599 { 'O', 0, 0, 0, N_("'O' modifier"), N_("the 'O' strftime modifier"), STD_C99
},
600 { 'O', 'o', 0, 0, NULL
, N_("the 'O' modifier"), STD_EXT
},
601 { 0, 0, 0, 0, NULL
, NULL
, STD_C89
}
605 static const format_flag_pair strftime_flag_pairs
[] =
616 static const format_flag_spec strfmon_flag_specs
[] =
618 { '=', 0, 1, 0, N_("fill character"), N_("fill character in strfmon format"), STD_C89
},
619 { '^', 0, 0, 0, N_("'^' flag"), N_("the '^' strfmon flag"), STD_C89
},
620 { '+', 0, 0, 0, N_("'+' flag"), N_("the '+' strfmon flag"), STD_C89
},
621 { '(', 0, 0, 0, N_("'(' flag"), N_("the '(' strfmon flag"), STD_C89
},
622 { '!', 0, 0, 0, N_("'!' flag"), N_("the '!' strfmon flag"), STD_C89
},
623 { '-', 0, 0, 0, N_("'-' flag"), N_("the '-' strfmon flag"), STD_C89
},
624 { 'w', 0, 0, 0, N_("field width"), N_("field width in strfmon format"), STD_C89
},
625 { '#', 0, 0, 0, N_("left precision"), N_("left precision in strfmon format"), STD_C89
},
626 { 'p', 0, 0, 0, N_("right precision"), N_("right precision in strfmon format"), STD_C89
},
627 { 'L', 0, 0, 0, N_("length modifier"), N_("length modifier in strfmon format"), STD_C89
},
628 { 0, 0, 0, 0, NULL
, NULL
, STD_C89
}
631 static const format_flag_pair strfmon_flag_pairs
[] =
638 static const format_char_info print_char_table
[] =
640 /* C89 conversion specifiers. */
641 { "di", 0, STD_C89
, { T89_I
, T99_SC
, T89_S
, T89_L
, T9L_LL
, TEX_LL
, T99_SST
, T99_PD
, T99_IM
, BADLEN
, BADLEN
, BADLEN
}, "-wp0 +'I", "i", NULL
},
642 { "oxX", 0, STD_C89
, { T89_UI
, T99_UC
, T89_US
, T89_UL
, T9L_ULL
, TEX_ULL
, T99_ST
, T99_UPD
, T99_UIM
, BADLEN
, BADLEN
, BADLEN
}, "-wp0#", "i", NULL
},
643 { "u", 0, STD_C89
, { T89_UI
, T99_UC
, T89_US
, T89_UL
, T9L_ULL
, TEX_ULL
, T99_ST
, T99_UPD
, T99_UIM
, BADLEN
, BADLEN
, BADLEN
}, "-wp0'I", "i", NULL
},
644 { "fgG", 0, STD_C89
, { T89_D
, BADLEN
, BADLEN
, T99_D
, BADLEN
, T89_LD
, BADLEN
, BADLEN
, BADLEN
, TEX_D32
, TEX_D64
, TEX_D128
}, "-wp0 +#'I", "", NULL
},
645 { "eE", 0, STD_C89
, { T89_D
, BADLEN
, BADLEN
, T99_D
, BADLEN
, T89_LD
, BADLEN
, BADLEN
, BADLEN
, TEX_D32
, TEX_D64
, TEX_D128
}, "-wp0 +#I", "", NULL
},
646 { "c", 0, STD_C89
, { T89_I
, BADLEN
, BADLEN
, T94_WI
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "-w", "", NULL
},
647 { "s", 1, STD_C89
, { T89_C
, BADLEN
, BADLEN
, T94_W
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "-wp", "cR", NULL
},
648 { "p", 1, STD_C89
, { T89_V
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "-w", "c", NULL
},
649 { "n", 1, STD_C89
, { T89_I
, T99_SC
, T89_S
, T89_L
, T9L_LL
, BADLEN
, T99_SST
, T99_PD
, T99_IM
, BADLEN
, BADLEN
, BADLEN
}, "", "W", NULL
},
650 /* C99 conversion specifiers. */
651 { "F", 0, STD_C99
, { T99_D
, BADLEN
, BADLEN
, T99_D
, BADLEN
, T99_LD
, BADLEN
, BADLEN
, BADLEN
, TEX_D32
, TEX_D64
, TEX_D128
}, "-wp0 +#'I", "", NULL
},
652 { "aA", 0, STD_C99
, { T99_D
, BADLEN
, BADLEN
, T99_D
, BADLEN
, T99_LD
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "-wp0 +#", "", NULL
},
653 /* X/Open conversion specifiers. */
654 { "C", 0, STD_EXT
, { TEX_WI
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "-w", "", NULL
},
655 { "S", 1, STD_EXT
, { TEX_W
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "-wp", "R", NULL
},
656 /* GNU conversion specifiers. */
657 { "m", 0, STD_EXT
, { T89_V
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "-wp", "", NULL
},
658 { NULL
, 0, STD_C89
, NOLENGTHS
, NULL
, NULL
, NULL
}
661 static const format_char_info asm_fprintf_char_table
[] =
663 /* C89 conversion specifiers. */
664 { "di", 0, STD_C89
, { T89_I
, BADLEN
, BADLEN
, T89_L
, T9L_LL
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "-wp0 +", "i", NULL
},
665 { "oxX", 0, STD_C89
, { T89_UI
, BADLEN
, BADLEN
, T89_UL
, T9L_ULL
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "-wp0#", "i", NULL
},
666 { "u", 0, STD_C89
, { T89_UI
, BADLEN
, BADLEN
, T89_UL
, T9L_ULL
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "-wp0", "i", NULL
},
667 { "c", 0, STD_C89
, { T89_I
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "-w", "", NULL
},
668 { "s", 1, STD_C89
, { T89_C
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "-wp", "cR", NULL
},
670 /* asm_fprintf conversion specifiers. */
671 { "O", 0, STD_C89
, NOARGUMENTS
, "", "", NULL
},
672 { "R", 0, STD_C89
, NOARGUMENTS
, "", "", NULL
},
673 { "I", 0, STD_C89
, NOARGUMENTS
, "", "", NULL
},
674 { "L", 0, STD_C89
, NOARGUMENTS
, "", "", NULL
},
675 { "U", 0, STD_C89
, NOARGUMENTS
, "", "", NULL
},
676 { "r", 0, STD_C89
, { T89_I
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "", "", NULL
},
677 { "z", 0, STD_C89
, NOARGUMENTS
, "", "", NULL
},
678 { "@", 0, STD_C89
, NOARGUMENTS
, "", "", NULL
},
679 { NULL
, 0, STD_C89
, NOLENGTHS
, NULL
, NULL
, NULL
}
682 static const format_char_info gcc_diag_char_table
[] =
684 /* C89 conversion specifiers. */
685 { "di", 0, STD_C89
, { T89_I
, BADLEN
, BADLEN
, T89_L
, T9L_LL
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q", "", NULL
},
686 { "ox", 0, STD_C89
, { T89_UI
, BADLEN
, BADLEN
, T89_UL
, T9L_ULL
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q", "", NULL
},
687 { "u", 0, STD_C89
, { T89_UI
, BADLEN
, BADLEN
, T89_UL
, T9L_ULL
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q", "", NULL
},
688 { "c", 0, STD_C89
, { T89_I
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q", "", NULL
},
689 { "s", 1, STD_C89
, { T89_C
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "pq", "cR", NULL
},
690 { "p", 1, STD_C89
, { T89_V
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q", "c", NULL
},
692 /* Custom conversion specifiers. */
694 /* G requires a "gcall*" argument at runtime. */
695 { "G", 1, STD_C89
, { T89_G
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "", "\"", NULL
},
696 /* K requires a "tree" argument at runtime. */
697 { "K", 1, STD_C89
, { T89_T
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "", "\"", NULL
},
699 { "r", 1, STD_C89
, { T89_C
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "", "//cR", NULL
},
700 { "<", 0, STD_C89
, NOARGUMENTS
, "", "<", NULL
},
701 { ">", 0, STD_C89
, NOARGUMENTS
, "", ">", NULL
},
702 { "'" , 0, STD_C89
, NOARGUMENTS
, "", "", NULL
},
703 { "R", 0, STD_C89
, NOARGUMENTS
, "", "\\", NULL
},
704 { "m", 0, STD_C89
, NOARGUMENTS
, "q", "", NULL
},
705 { NULL
, 0, STD_C89
, NOLENGTHS
, NULL
, NULL
, NULL
}
708 static const format_char_info gcc_tdiag_char_table
[] =
710 /* C89 conversion specifiers. */
711 { "di", 0, STD_C89
, { T89_I
, BADLEN
, BADLEN
, T89_L
, T9L_LL
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q", "", NULL
},
712 { "ox", 0, STD_C89
, { T89_UI
, BADLEN
, BADLEN
, T89_UL
, T9L_ULL
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q", "", NULL
},
713 { "u", 0, STD_C89
, { T89_UI
, BADLEN
, BADLEN
, T89_UL
, T9L_ULL
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q", "", NULL
},
714 { "c", 0, STD_C89
, { T89_I
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q", "", NULL
},
715 { "s", 1, STD_C89
, { T89_C
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "pq", "cR", NULL
},
716 { "p", 1, STD_C89
, { T89_V
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q", "c", NULL
},
718 /* Custom conversion specifiers. */
720 /* These will require a "tree" at runtime. */
721 { "DFTV", 1, STD_C89
, { T89_T
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q+", "'", NULL
},
722 { "E", 1, STD_C89
, { T89_T
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q+", "", NULL
},
723 { "K", 1, STD_C89
, { T89_T
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "", "\"", NULL
},
725 /* G requires a "gcall*" argument at runtime. */
726 { "G", 1, STD_C89
, { T89_G
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "", "\"", NULL
},
728 { "v", 0, STD_C89
, { T89_I
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q#", "", NULL
},
730 { "r", 1, STD_C89
, { T89_C
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "", "/cR", NULL
},
731 { "<", 0, STD_C89
, NOARGUMENTS
, "", "<", NULL
},
732 { ">", 0, STD_C89
, NOARGUMENTS
, "", ">", NULL
},
733 { "'", 0, STD_C89
, NOARGUMENTS
, "", "", NULL
},
734 { "R", 0, STD_C89
, NOARGUMENTS
, "", "\\", NULL
},
735 { "m", 0, STD_C89
, NOARGUMENTS
, "q", "", NULL
},
736 { "Z", 1, STD_C89
, { T89_I
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "", "", &gcc_tdiag_char_table
[0] },
737 { NULL
, 0, STD_C89
, NOLENGTHS
, NULL
, NULL
, NULL
}
740 static const format_char_info gcc_cdiag_char_table
[] =
742 /* C89 conversion specifiers. */
743 { "di", 0, STD_C89
, { T89_I
, BADLEN
, BADLEN
, T89_L
, T9L_LL
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q", "", NULL
},
744 { "ox", 0, STD_C89
, { T89_UI
, BADLEN
, BADLEN
, T89_UL
, T9L_ULL
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q", "", NULL
},
745 { "u", 0, STD_C89
, { T89_UI
, BADLEN
, BADLEN
, T89_UL
, T9L_ULL
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q", "", NULL
},
746 { "c", 0, STD_C89
, { T89_I
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q", "", NULL
},
747 { "s", 1, STD_C89
, { T89_C
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "pq", "cR", NULL
},
748 { "p", 1, STD_C89
, { T89_V
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q", "c", NULL
},
750 /* Custom conversion specifiers. */
752 /* These will require a "tree" at runtime. */
753 { "DFTV", 1, STD_C89
, { T89_T
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q+", "'", NULL
},
754 { "E", 1, STD_C89
, { T89_T
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q+", "", NULL
},
755 { "K", 1, STD_C89
, { T89_T
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "", "\"", NULL
},
757 /* G requires a "gcall*" argument at runtime. */
758 { "G", 1, STD_C89
, { T89_G
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "", "\"", NULL
},
760 { "v", 0, STD_C89
, { T89_I
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q#", "", NULL
},
762 { "r", 1, STD_C89
, { T89_C
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "", "/cR", NULL
},
763 { "<", 0, STD_C89
, NOARGUMENTS
, "", "<", NULL
},
764 { ">", 0, STD_C89
, NOARGUMENTS
, "", ">", NULL
},
765 { "'", 0, STD_C89
, NOARGUMENTS
, "", "", NULL
},
766 { "R", 0, STD_C89
, NOARGUMENTS
, "", "\\", NULL
},
767 { "m", 0, STD_C89
, NOARGUMENTS
, "q", "", NULL
},
768 { "Z", 1, STD_C89
, { T89_I
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "", "", &gcc_tdiag_char_table
[0] },
769 { NULL
, 0, STD_C89
, NOLENGTHS
, NULL
, NULL
, NULL
}
772 static const format_char_info gcc_cxxdiag_char_table
[] =
774 /* C89 conversion specifiers. */
775 { "di", 0, STD_C89
, { T89_I
, BADLEN
, BADLEN
, T89_L
, T9L_LL
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q", "", NULL
},
776 { "ox", 0, STD_C89
, { T89_UI
, BADLEN
, BADLEN
, T89_UL
, T9L_ULL
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q", "", NULL
},
777 { "u", 0, STD_C89
, { T89_UI
, BADLEN
, BADLEN
, T89_UL
, T9L_ULL
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q", "", NULL
},
778 { "c", 0, STD_C89
, { T89_I
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q", "", NULL
},
779 { "s", 1, STD_C89
, { T89_C
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "pq", "cR", NULL
},
780 { "p", 1, STD_C89
, { T89_V
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q", "c", NULL
},
782 /* Custom conversion specifiers. */
784 /* These will require a "tree" at runtime. */
785 { "ADFHISTVX",1,STD_C89
,{ T89_T
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q+#", "'", NULL
},
786 { "E", 1,STD_C89
,{ T89_T
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q+#", "", NULL
},
787 { "K", 1, STD_C89
,{ T89_T
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "", "\"", NULL
},
788 { "v", 0,STD_C89
, { T89_I
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q#", "", NULL
},
790 /* G requires a "gcall*" argument at runtime. */
791 { "G", 1, STD_C89
,{ T89_G
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "", "\"", NULL
},
793 /* These accept either an 'int' or an 'enum tree_code' (which is handled as an 'int'.) */
794 { "CLOPQ",0,STD_C89
, { T89_I
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q", "", NULL
},
796 { "r", 1, STD_C89
, { T89_C
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "", "/cR", NULL
},
797 { "<", 0, STD_C89
, NOARGUMENTS
, "", "<", NULL
},
798 { ">", 0, STD_C89
, NOARGUMENTS
, "", ">", NULL
},
799 { "'", 0, STD_C89
, NOARGUMENTS
, "", "", NULL
},
800 { "R", 0, STD_C89
, NOARGUMENTS
, "", "\\", NULL
},
801 { "m", 0, STD_C89
, NOARGUMENTS
, "q", "", NULL
},
802 { "Z", 1, STD_C89
, { T89_I
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "", "", &gcc_tdiag_char_table
[0] },
803 { NULL
, 0, STD_C89
, NOLENGTHS
, NULL
, NULL
, NULL
}
806 static const format_char_info gcc_gfc_char_table
[] =
808 /* C89 conversion specifiers. */
809 { "di", 0, STD_C89
, { T89_I
, BADLEN
, BADLEN
, T89_L
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q", "", NULL
},
810 { "u", 0, STD_C89
, { T89_UI
, BADLEN
, BADLEN
, T89_UL
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q", "", NULL
},
811 { "c", 0, STD_C89
, { T89_I
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q", "", NULL
},
812 { "s", 1, STD_C89
, { T89_C
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "q", "cR", NULL
},
814 /* gfc conversion specifiers. */
816 { "C", 0, STD_C89
, NOARGUMENTS
, "", "", NULL
},
818 /* This will require a "locus" at runtime. */
819 { "L", 0, STD_C89
, { T89_V
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "", "R", NULL
},
821 /* These will require nothing. */
822 { "<>",0, STD_C89
, NOARGUMENTS
, "", "", NULL
},
823 { NULL
, 0, STD_C89
, NOLENGTHS
, NULL
, NULL
, NULL
}
826 static const format_char_info scan_char_table
[] =
828 /* C89 conversion specifiers. */
829 { "di", 1, STD_C89
, { T89_I
, T99_SC
, T89_S
, T89_L
, T9L_LL
, TEX_LL
, T99_SST
, T99_PD
, T99_IM
, BADLEN
, BADLEN
, BADLEN
}, "*w'I", "W", NULL
},
830 { "u", 1, STD_C89
, { T89_UI
, T99_UC
, T89_US
, T89_UL
, T9L_ULL
, TEX_ULL
, T99_ST
, T99_UPD
, T99_UIM
, BADLEN
, BADLEN
, BADLEN
}, "*w'I", "W", NULL
},
831 { "oxX", 1, STD_C89
, { T89_UI
, T99_UC
, T89_US
, T89_UL
, T9L_ULL
, TEX_ULL
, T99_ST
, T99_UPD
, T99_UIM
, BADLEN
, BADLEN
, BADLEN
}, "*w", "W", NULL
},
832 { "efgEG", 1, STD_C89
, { T89_F
, BADLEN
, BADLEN
, T89_D
, BADLEN
, T89_LD
, BADLEN
, BADLEN
, BADLEN
, TEX_D32
, TEX_D64
, TEX_D128
}, "*w'", "W", NULL
},
833 { "c", 1, STD_C89
, { T89_C
, BADLEN
, BADLEN
, T94_W
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "*mw", "cW", NULL
},
834 { "s", 1, STD_C89
, { T89_C
, BADLEN
, BADLEN
, T94_W
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "*amw", "cW", NULL
},
835 { "[", 1, STD_C89
, { T89_C
, BADLEN
, BADLEN
, T94_W
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "*amw", "cW[", NULL
},
836 { "p", 2, STD_C89
, { T89_V
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "*w", "W", NULL
},
837 { "n", 1, STD_C89
, { T89_I
, T99_SC
, T89_S
, T89_L
, T9L_LL
, BADLEN
, T99_SST
, T99_PD
, T99_IM
, BADLEN
, BADLEN
, BADLEN
}, "", "W", NULL
},
838 /* C99 conversion specifiers. */
839 { "F", 1, STD_C99
, { T99_F
, BADLEN
, BADLEN
, T99_D
, BADLEN
, T99_LD
, BADLEN
, BADLEN
, BADLEN
, TEX_D32
, TEX_D64
, TEX_D128
}, "*w'", "W", NULL
},
840 { "aA", 1, STD_C99
, { T99_F
, BADLEN
, BADLEN
, T99_D
, BADLEN
, T99_LD
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "*w'", "W", NULL
},
841 /* X/Open conversion specifiers. */
842 { "C", 1, STD_EXT
, { TEX_W
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "*mw", "W", NULL
},
843 { "S", 1, STD_EXT
, { TEX_W
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "*amw", "W", NULL
},
844 { NULL
, 0, STD_C89
, NOLENGTHS
, NULL
, NULL
, NULL
}
847 static const format_char_info time_char_table
[] =
849 /* C89 conversion specifiers. */
850 { "ABZab", 0, STD_C89
, NOLENGTHS
, "^#", "", NULL
},
851 { "cx", 0, STD_C89
, NOLENGTHS
, "E", "3", NULL
},
852 { "HIMSUWdmw", 0, STD_C89
, NOLENGTHS
, "-_0Ow", "", NULL
},
853 { "j", 0, STD_C89
, NOLENGTHS
, "-_0Ow", "o", NULL
},
854 { "p", 0, STD_C89
, NOLENGTHS
, "#", "", NULL
},
855 { "X", 0, STD_C89
, NOLENGTHS
, "E", "", NULL
},
856 { "y", 0, STD_C89
, NOLENGTHS
, "EO-_0w", "4", NULL
},
857 { "Y", 0, STD_C89
, NOLENGTHS
, "-_0EOw", "o", NULL
},
858 { "%", 0, STD_C89
, NOLENGTHS
, "", "", NULL
},
859 /* C99 conversion specifiers. */
860 { "C", 0, STD_C99
, NOLENGTHS
, "-_0EOw", "o", NULL
},
861 { "D", 0, STD_C99
, NOLENGTHS
, "", "2", NULL
},
862 { "eVu", 0, STD_C99
, NOLENGTHS
, "-_0Ow", "", NULL
},
863 { "FRTnrt", 0, STD_C99
, NOLENGTHS
, "", "", NULL
},
864 { "g", 0, STD_C99
, NOLENGTHS
, "O-_0w", "2o", NULL
},
865 { "G", 0, STD_C99
, NOLENGTHS
, "-_0Ow", "o", NULL
},
866 { "h", 0, STD_C99
, NOLENGTHS
, "^#", "", NULL
},
867 { "z", 0, STD_C99
, NOLENGTHS
, "O", "o", NULL
},
868 /* GNU conversion specifiers. */
869 { "kls", 0, STD_EXT
, NOLENGTHS
, "-_0Ow", "", NULL
},
870 { "P", 0, STD_EXT
, NOLENGTHS
, "", "", NULL
},
871 { NULL
, 0, STD_C89
, NOLENGTHS
, NULL
, NULL
, NULL
}
874 static const format_char_info monetary_char_table
[] =
876 { "in", 0, STD_C89
, { T89_D
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, T89_LD
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "=^+(!-w#p", "", NULL
},
877 { NULL
, 0, STD_C89
, NOLENGTHS
, NULL
, NULL
, NULL
}
880 /* This must be in the same order as enum format_type. */
881 static const format_kind_info format_types_orig
[] =
883 { "gnu_printf", printf_length_specs
, print_char_table
, " +#0-'I", NULL
,
884 printf_flag_specs
, printf_flag_pairs
,
885 FMT_FLAG_ARG_CONVERT
|FMT_FLAG_DOLLAR_MULTIPLE
|FMT_FLAG_USE_DOLLAR
|FMT_FLAG_EMPTY_PREC_OK
,
886 'w', 0, 'p', 0, 'L', 0,
887 &integer_type_node
, &integer_type_node
889 { "asm_fprintf", asm_fprintf_length_specs
, asm_fprintf_char_table
, " +#0-", NULL
,
890 asm_fprintf_flag_specs
, asm_fprintf_flag_pairs
,
891 FMT_FLAG_ARG_CONVERT
|FMT_FLAG_EMPTY_PREC_OK
,
892 'w', 0, 'p', 0, 'L', 0,
895 { "gcc_diag", gcc_diag_length_specs
, gcc_diag_char_table
, "q+#", NULL
,
896 gcc_diag_flag_specs
, gcc_diag_flag_pairs
,
897 FMT_FLAG_ARG_CONVERT
,
898 0, 0, 'p', 0, 'L', 0,
899 NULL
, &integer_type_node
901 { "gcc_tdiag", gcc_tdiag_length_specs
, gcc_tdiag_char_table
, "q+#", NULL
,
902 gcc_tdiag_flag_specs
, gcc_tdiag_flag_pairs
,
903 FMT_FLAG_ARG_CONVERT
,
904 0, 0, 'p', 0, 'L', 0,
905 NULL
, &integer_type_node
907 { "gcc_cdiag", gcc_cdiag_length_specs
, gcc_cdiag_char_table
, "q+#", NULL
,
908 gcc_cdiag_flag_specs
, gcc_cdiag_flag_pairs
,
909 FMT_FLAG_ARG_CONVERT
,
910 0, 0, 'p', 0, 'L', 0,
911 NULL
, &integer_type_node
913 { "gcc_cxxdiag", gcc_cxxdiag_length_specs
, gcc_cxxdiag_char_table
, "q+#", NULL
,
914 gcc_cxxdiag_flag_specs
, gcc_cxxdiag_flag_pairs
,
915 FMT_FLAG_ARG_CONVERT
,
916 0, 0, 'p', 0, 'L', 0,
917 NULL
, &integer_type_node
919 { "gcc_gfc", gcc_gfc_length_specs
, gcc_gfc_char_table
, "q+#", NULL
,
920 gcc_gfc_flag_specs
, gcc_gfc_flag_pairs
,
921 FMT_FLAG_ARG_CONVERT
,
925 { "NSString", NULL
, NULL
, NULL
, NULL
,
927 FMT_FLAG_ARG_CONVERT
|FMT_FLAG_PARSE_ARG_CONVERT_EXTERNAL
, 0, 0, 0, 0, 0, 0,
930 { "gnu_scanf", scanf_length_specs
, scan_char_table
, "*'I", NULL
,
931 scanf_flag_specs
, scanf_flag_pairs
,
932 FMT_FLAG_ARG_CONVERT
|FMT_FLAG_SCANF_A_KLUDGE
|FMT_FLAG_USE_DOLLAR
|FMT_FLAG_ZERO_WIDTH_BAD
|FMT_FLAG_DOLLAR_GAP_POINTER_OK
,
933 'w', 0, 0, '*', 'L', 'm',
936 { "gnu_strftime", NULL
, time_char_table
, "_-0^#", "EO",
937 strftime_flag_specs
, strftime_flag_pairs
,
938 FMT_FLAG_FANCY_PERCENT_OK
, 'w', 0, 0, 0, 0, 0,
941 { "gnu_strfmon", strfmon_length_specs
, monetary_char_table
, "=^+(!-", NULL
,
942 strfmon_flag_specs
, strfmon_flag_pairs
,
943 FMT_FLAG_ARG_CONVERT
, 'w', '#', 'p', 0, 'L', 0,
948 /* This layer of indirection allows GCC to reassign format_types with
949 new data if necessary, while still allowing the original data to be
951 static const format_kind_info
*format_types
= format_types_orig
;
952 /* We can modify this one. We also add target-specific format types
953 to the end of the array. */
954 static format_kind_info
*dynamic_format_types
;
956 static int n_format_types
= ARRAY_SIZE (format_types_orig
);
958 /* Structure detailing the results of checking a format function call
959 where the format expression may be a conditional expression with
960 many leaves resulting from nested conditional expressions. */
961 struct format_check_results
963 /* Number of leaves of the format argument that could not be checked
964 as they were not string literals. */
965 int number_non_literal
;
966 /* Number of leaves of the format argument that were null pointers or
967 string literals, but had extra format arguments. */
968 int number_extra_args
;
969 location_t extra_arg_loc
;
970 /* Number of leaves of the format argument that were null pointers or
971 string literals, but had extra format arguments and used $ operand
973 int number_dollar_extra_args
;
974 /* Number of leaves of the format argument that were wide string
977 /* Number of leaves of the format argument that are not array of "char". */
979 /* Number of leaves of the format argument that were empty strings. */
981 /* Number of leaves of the format argument that were unterminated
983 int number_unterminated
;
984 /* Number of leaves of the format argument that were not counted above. */
986 /* Location of the format string. */
987 location_t format_string_loc
;
990 struct format_check_context
992 format_check_results
*res
;
993 function_format_info
*info
;
995 vec
<location_t
> *arglocs
;
998 /* Return the format name (as specified in the original table) for the format
999 type indicated by format_num. */
1001 format_name (int format_num
)
1003 if (format_num
>= 0 && format_num
< n_format_types
)
1004 return format_types
[format_num
].name
;
1008 /* Return the format flags (as specified in the original table) for the format
1009 type indicated by format_num. */
1011 format_flags (int format_num
)
1013 if (format_num
>= 0 && format_num
< n_format_types
)
1014 return format_types
[format_num
].flags
;
1018 static void check_format_info (function_format_info
*, tree
,
1020 static void check_format_arg (void *, tree
, unsigned HOST_WIDE_INT
);
1021 static void check_format_info_main (format_check_results
*,
1022 function_format_info
*, const char *,
1025 unsigned HOST_WIDE_INT
,
1026 object_allocator
<format_wanted_type
> &,
1029 static void init_dollar_format_checking (int, tree
);
1030 static int maybe_read_dollar_number (const char **, int,
1031 tree
, tree
*, const format_kind_info
*);
1032 static bool avoid_dollar_number (const char *);
1033 static void finish_dollar_format_checking (format_check_results
*, int);
1035 static const format_flag_spec
*get_flag_spec (const format_flag_spec
*,
1038 static void check_format_types (const substring_loc
&fmt_loc
,
1039 format_wanted_type
*,
1040 const format_kind_info
*fki
,
1041 int offset_to_type_start
,
1042 char conversion_char
,
1043 vec
<location_t
> *arglocs
);
1044 static void format_type_warning (const substring_loc
&fmt_loc
,
1045 location_t param_loc
,
1046 format_wanted_type
*, tree
,
1048 const format_kind_info
*fki
,
1049 int offset_to_type_start
,
1050 char conversion_char
);
1052 /* Decode a format type from a string, returning the type, or
1053 format_type_error if not valid, in which case the caller should print an
1056 decode_format_type (const char *s
)
1061 s
= convert_format_name_to_system_name (s
);
1063 for (i
= 0; i
< n_format_types
; i
++)
1066 if (!strcmp (s
, format_types
[i
].name
))
1068 alen
= strlen (format_types
[i
].name
);
1069 if (slen
== alen
+ 4 && s
[0] == '_' && s
[1] == '_'
1070 && s
[slen
- 1] == '_' && s
[slen
- 2] == '_'
1071 && !strncmp (s
+ 2, format_types
[i
].name
, alen
))
1074 return format_type_error
;
1078 /* Check the argument list of a call to printf, scanf, etc.
1079 ATTRS are the attributes on the function type. There are NARGS argument
1080 values in the array ARGARRAY.
1081 Also, if -Wsuggest-attribute=format,
1082 warn for calls to vprintf or vscanf in functions with no such format
1083 attribute themselves. */
1086 check_function_format (tree attrs
, int nargs
, tree
*argarray
,
1087 vec
<location_t
> *arglocs
)
1091 /* See if this function has any format attributes. */
1092 for (a
= attrs
; a
; a
= TREE_CHAIN (a
))
1094 if (is_attribute_p ("format", TREE_PURPOSE (a
)))
1096 /* Yup; check it. */
1097 function_format_info info
;
1098 decode_format_attr (TREE_VALUE (a
), &info
, /*validated=*/true);
1101 /* FIXME: Rewrite all the internal functions in this file
1102 to use the ARGARRAY directly instead of constructing this
1104 tree params
= NULL_TREE
;
1106 for (i
= nargs
- 1; i
>= 0; i
--)
1107 params
= tree_cons (NULL_TREE
, argarray
[i
], params
);
1108 check_format_info (&info
, params
, arglocs
);
1111 /* Attempt to detect whether the current function might benefit
1112 from the format attribute if the called function is decorated
1113 with it. Avoid using calls with string literal formats for
1114 guidance since those are unlikely to be viable candidates. */
1115 if (warn_suggest_attribute_format
1116 && current_function_decl
!= NULL_TREE
1117 && info
.first_arg_num
== 0
1118 && (format_types
[info
.format_type
].flags
1119 & (int) FMT_FLAG_ARG_CONVERT
)
1120 /* c_strlen will fail for a function parameter but succeed
1121 for a literal or constant array. */
1122 && !c_strlen (argarray
[info
.format_num
- 1], 1))
1125 for (c
= TYPE_ATTRIBUTES (TREE_TYPE (current_function_decl
));
1128 if (is_attribute_p ("format", TREE_PURPOSE (c
))
1129 && (decode_format_type (IDENTIFIER_POINTER
1130 (TREE_VALUE (TREE_VALUE (c
))))
1131 == info
.format_type
))
1135 /* Check if the current function has a parameter to which
1136 the format attribute could be attached; if not, it
1137 can't be a candidate for a format attribute, despite
1138 the vprintf-like or vscanf-like call. */
1140 for (args
= DECL_ARGUMENTS (current_function_decl
);
1142 args
= DECL_CHAIN (args
))
1144 if (TREE_CODE (TREE_TYPE (args
)) == POINTER_TYPE
1145 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (args
)))
1150 warning (OPT_Wsuggest_attribute_format
, "function %qD "
1151 "might be a candidate for %qs format attribute",
1152 current_function_decl
,
1153 format_types
[info
.format_type
].name
);
1161 /* Variables used by the checking of $ operand number formats. */
1162 static char *dollar_arguments_used
= NULL
;
1163 static char *dollar_arguments_pointer_p
= NULL
;
1164 static int dollar_arguments_alloc
= 0;
1165 static int dollar_arguments_count
;
1166 static int dollar_first_arg_num
;
1167 static int dollar_max_arg_used
;
1168 static int dollar_format_warned
;
1170 /* Initialize the checking for a format string that may contain $
1171 parameter number specifications; we will need to keep track of whether
1172 each parameter has been used. FIRST_ARG_NUM is the number of the first
1173 argument that is a parameter to the format, or 0 for a vprintf-style
1174 function; PARAMS is the list of arguments starting at this argument. */
1177 init_dollar_format_checking (int first_arg_num
, tree params
)
1179 tree oparams
= params
;
1181 dollar_first_arg_num
= first_arg_num
;
1182 dollar_arguments_count
= 0;
1183 dollar_max_arg_used
= 0;
1184 dollar_format_warned
= 0;
1185 if (first_arg_num
> 0)
1189 dollar_arguments_count
++;
1190 params
= TREE_CHAIN (params
);
1193 if (dollar_arguments_alloc
< dollar_arguments_count
)
1195 free (dollar_arguments_used
);
1196 free (dollar_arguments_pointer_p
);
1197 dollar_arguments_alloc
= dollar_arguments_count
;
1198 dollar_arguments_used
= XNEWVEC (char, dollar_arguments_alloc
);
1199 dollar_arguments_pointer_p
= XNEWVEC (char, dollar_arguments_alloc
);
1201 if (dollar_arguments_alloc
)
1203 memset (dollar_arguments_used
, 0, dollar_arguments_alloc
);
1204 if (first_arg_num
> 0)
1210 dollar_arguments_pointer_p
[i
] = (TREE_CODE (TREE_TYPE (TREE_VALUE (params
)))
1212 params
= TREE_CHAIN (params
);
1220 /* Look for a decimal number followed by a $ in *FORMAT. If DOLLAR_NEEDED
1221 is set, it is an error if one is not found; otherwise, it is OK. If
1222 such a number is found, check whether it is within range and mark that
1223 numbered operand as being used for later checking. Returns the operand
1224 number if found and within range, zero if no such number was found and
1225 this is OK, or -1 on error. PARAMS points to the first operand of the
1226 format; PARAM_PTR is made to point to the parameter referred to. If
1227 a $ format is found, *FORMAT is updated to point just after it. */
1230 maybe_read_dollar_number (const char **format
,
1231 int dollar_needed
, tree params
, tree
*param_ptr
,
1232 const format_kind_info
*fki
)
1236 const char *fcp
= *format
;
1237 if (!ISDIGIT (*fcp
))
1241 warning (OPT_Wformat_
, "missing $ operand number in format");
1249 while (ISDIGIT (*fcp
))
1252 nargnum
= 10 * argnum
+ (*fcp
- '0');
1253 if (nargnum
< 0 || nargnum
/ 10 != argnum
)
1262 warning (OPT_Wformat_
, "missing $ operand number in format");
1269 if (pedantic
&& !dollar_format_warned
)
1271 warning (OPT_Wformat_
, "%s does not support %%n$ operand number formats",
1272 C_STD_NAME (STD_EXT
));
1273 dollar_format_warned
= 1;
1275 if (overflow_flag
|| argnum
== 0
1276 || (dollar_first_arg_num
&& argnum
> dollar_arguments_count
))
1278 warning (OPT_Wformat_
, "operand number out of range in format");
1281 if (argnum
> dollar_max_arg_used
)
1282 dollar_max_arg_used
= argnum
;
1283 /* For vprintf-style functions we may need to allocate more memory to
1284 track which arguments are used. */
1285 while (dollar_arguments_alloc
< dollar_max_arg_used
)
1288 nalloc
= 2 * dollar_arguments_alloc
+ 16;
1289 dollar_arguments_used
= XRESIZEVEC (char, dollar_arguments_used
,
1291 dollar_arguments_pointer_p
= XRESIZEVEC (char, dollar_arguments_pointer_p
,
1293 memset (dollar_arguments_used
+ dollar_arguments_alloc
, 0,
1294 nalloc
- dollar_arguments_alloc
);
1295 dollar_arguments_alloc
= nalloc
;
1297 if (!(fki
->flags
& (int) FMT_FLAG_DOLLAR_MULTIPLE
)
1298 && dollar_arguments_used
[argnum
- 1] == 1)
1300 dollar_arguments_used
[argnum
- 1] = 2;
1301 warning (OPT_Wformat_
, "format argument %d used more than once in %s format",
1305 dollar_arguments_used
[argnum
- 1] = 1;
1306 if (dollar_first_arg_num
)
1309 *param_ptr
= params
;
1310 for (i
= 1; i
< argnum
&& *param_ptr
!= 0; i
++)
1311 *param_ptr
= TREE_CHAIN (*param_ptr
);
1313 /* This case shouldn't be caught here. */
1314 gcc_assert (*param_ptr
);
1321 /* Ensure that FORMAT does not start with a decimal number followed by
1322 a $; give a diagnostic and return true if it does, false otherwise. */
1325 avoid_dollar_number (const char *format
)
1327 if (!ISDIGIT (*format
))
1329 while (ISDIGIT (*format
))
1333 warning (OPT_Wformat_
, "$ operand number used after format without operand number");
1340 /* Finish the checking for a format string that used $ operand number formats
1341 instead of non-$ formats. We check for unused operands before used ones
1342 (a serious error, since the implementation of the format function
1343 can't know what types to pass to va_arg to find the later arguments).
1344 and for unused operands at the end of the format (if we know how many
1345 arguments the format had, so not for vprintf). If there were operand
1346 numbers out of range on a non-vprintf-style format, we won't have reached
1347 here. If POINTER_GAP_OK, unused arguments are OK if all arguments are
1351 finish_dollar_format_checking (format_check_results
*res
, int pointer_gap_ok
)
1354 bool found_pointer_gap
= false;
1355 for (i
= 0; i
< dollar_max_arg_used
; i
++)
1357 if (!dollar_arguments_used
[i
])
1359 if (pointer_gap_ok
&& (dollar_first_arg_num
== 0
1360 || dollar_arguments_pointer_p
[i
]))
1361 found_pointer_gap
= true;
1363 warning_at (res
->format_string_loc
, OPT_Wformat_
,
1364 "format argument %d unused before used argument %d in $-style format",
1365 i
+ 1, dollar_max_arg_used
);
1368 if (found_pointer_gap
1369 || (dollar_first_arg_num
1370 && dollar_max_arg_used
< dollar_arguments_count
))
1372 res
->number_other
--;
1373 res
->number_dollar_extra_args
++;
1378 /* Retrieve the specification for a format flag. SPEC contains the
1379 specifications for format flags for the applicable kind of format.
1380 FLAG is the flag in question. If PREDICATES is NULL, the basic
1381 spec for that flag must be retrieved and must exist. If
1382 PREDICATES is not NULL, it is a string listing possible predicates
1383 for the spec entry; if an entry predicated on any of these is
1384 found, it is returned, otherwise NULL is returned. */
1386 static const format_flag_spec
*
1387 get_flag_spec (const format_flag_spec
*spec
, int flag
, const char *predicates
)
1390 for (i
= 0; spec
[i
].flag_char
!= 0; i
++)
1392 if (spec
[i
].flag_char
!= flag
)
1394 if (predicates
!= NULL
)
1396 if (spec
[i
].predicate
!= 0
1397 && strchr (predicates
, spec
[i
].predicate
) != 0)
1400 else if (spec
[i
].predicate
== 0)
1403 gcc_assert (predicates
);
1408 /* Check the argument list of a call to printf, scanf, etc.
1409 INFO points to the function_format_info structure.
1410 PARAMS is the list of argument values. */
1413 check_format_info (function_format_info
*info
, tree params
,
1414 vec
<location_t
> *arglocs
)
1416 format_check_context format_ctx
;
1417 unsigned HOST_WIDE_INT arg_num
;
1419 format_check_results res
;
1420 /* Skip to format argument. If the argument isn't available, there's
1421 no work for us to do; prototype checking will catch the problem. */
1422 for (arg_num
= 1; ; ++arg_num
)
1426 if (arg_num
== info
->format_num
)
1428 params
= TREE_CHAIN (params
);
1430 format_tree
= TREE_VALUE (params
);
1431 params
= TREE_CHAIN (params
);
1432 if (format_tree
== 0)
1435 res
.number_non_literal
= 0;
1436 res
.number_extra_args
= 0;
1437 res
.extra_arg_loc
= UNKNOWN_LOCATION
;
1438 res
.number_dollar_extra_args
= 0;
1439 res
.number_wide
= 0;
1440 res
.number_non_char
= 0;
1441 res
.number_empty
= 0;
1442 res
.number_unterminated
= 0;
1443 res
.number_other
= 0;
1444 res
.format_string_loc
= input_location
;
1446 format_ctx
.res
= &res
;
1447 format_ctx
.info
= info
;
1448 format_ctx
.params
= params
;
1449 format_ctx
.arglocs
= arglocs
;
1451 check_function_arguments_recurse (check_format_arg
, &format_ctx
,
1452 format_tree
, arg_num
);
1454 location_t loc
= format_ctx
.res
->format_string_loc
;
1456 if (res
.number_non_literal
> 0)
1458 /* Functions taking a va_list normally pass a non-literal format
1459 string. These functions typically are declared with
1460 first_arg_num == 0, so avoid warning in those cases. */
1461 if (!(format_types
[info
->format_type
].flags
& (int) FMT_FLAG_ARG_CONVERT
))
1463 /* For strftime-like formats, warn for not checking the format
1464 string; but there are no arguments to check. */
1465 warning_at (loc
, OPT_Wformat_nonliteral
,
1466 "format not a string literal, format string not checked");
1468 else if (info
->first_arg_num
!= 0)
1470 /* If there are no arguments for the format at all, we may have
1471 printf (foo) which is likely to be a security hole. */
1472 while (arg_num
+ 1 < info
->first_arg_num
)
1476 params
= TREE_CHAIN (params
);
1479 if (params
== 0 && warn_format_security
)
1480 warning_at (loc
, OPT_Wformat_security
,
1481 "format not a string literal and no format arguments");
1482 else if (params
== 0 && warn_format_nonliteral
)
1483 warning_at (loc
, OPT_Wformat_nonliteral
,
1484 "format not a string literal and no format arguments");
1486 warning_at (loc
, OPT_Wformat_nonliteral
,
1487 "format not a string literal, argument types not checked");
1491 /* If there were extra arguments to the format, normally warn. However,
1492 the standard does say extra arguments are ignored, so in the specific
1493 case where we have multiple leaves (conditional expressions or
1494 ngettext) allow extra arguments if at least one leaf didn't have extra
1495 arguments, but was otherwise OK (either non-literal or checked OK).
1496 If the format is an empty string, this should be counted similarly to the
1497 case of extra format arguments. */
1498 if (res
.number_extra_args
> 0 && res
.number_non_literal
== 0
1499 && res
.number_other
== 0)
1501 if (res
.extra_arg_loc
== UNKNOWN_LOCATION
)
1502 res
.extra_arg_loc
= loc
;
1503 warning_at (res
.extra_arg_loc
, OPT_Wformat_extra_args
,
1504 "too many arguments for format");
1506 if (res
.number_dollar_extra_args
> 0 && res
.number_non_literal
== 0
1507 && res
.number_other
== 0)
1508 warning_at (loc
, OPT_Wformat_extra_args
, "unused arguments in $-style format");
1509 if (res
.number_empty
> 0 && res
.number_non_literal
== 0
1510 && res
.number_other
== 0)
1511 warning_at (loc
, OPT_Wformat_zero_length
, "zero-length %s format string",
1512 format_types
[info
->format_type
].name
);
1514 if (res
.number_wide
> 0)
1515 warning_at (loc
, OPT_Wformat_
, "format is a wide character string");
1517 if (res
.number_non_char
> 0)
1518 warning_at (loc
, OPT_Wformat_
,
1519 "format string is not an array of type %qs", "char");
1521 if (res
.number_unterminated
> 0)
1522 warning_at (loc
, OPT_Wformat_
, "unterminated format string");
1525 /* Callback from check_function_arguments_recurse to check a
1526 format string. FORMAT_TREE is the format parameter. ARG_NUM
1527 is the number of the format argument. CTX points to a
1528 format_check_context. */
1531 check_format_arg (void *ctx
, tree format_tree
,
1532 unsigned HOST_WIDE_INT arg_num
)
1534 format_check_context
*format_ctx
= (format_check_context
*) ctx
;
1535 format_check_results
*res
= format_ctx
->res
;
1536 function_format_info
*info
= format_ctx
->info
;
1537 tree params
= format_ctx
->params
;
1538 vec
<location_t
> *arglocs
= format_ctx
->arglocs
;
1541 HOST_WIDE_INT offset
;
1542 const char *format_chars
;
1543 tree array_size
= 0;
1546 location_t fmt_param_loc
= EXPR_LOC_OR_LOC (format_tree
, input_location
);
1548 /* Pull out a constant value if the front end didn't, and handle location
1550 format_tree
= fold_for_warn (format_tree
);
1551 STRIP_NOPS (format_tree
);
1553 if (integer_zerop (format_tree
))
1555 /* Skip to first argument to check, so we can see if this format
1556 has any arguments (it shouldn't). */
1557 while (arg_num
+ 1 < info
->first_arg_num
)
1561 params
= TREE_CHAIN (params
);
1566 res
->number_other
++;
1569 if (res
->number_extra_args
== 0)
1570 res
->extra_arg_loc
= EXPR_LOC_OR_LOC (TREE_VALUE (params
),
1572 res
->number_extra_args
++;
1578 if (TREE_CODE (format_tree
) == POINTER_PLUS_EXPR
)
1582 arg0
= TREE_OPERAND (format_tree
, 0);
1583 arg1
= TREE_OPERAND (format_tree
, 1);
1586 if (TREE_CODE (arg1
) == INTEGER_CST
)
1590 res
->number_non_literal
++;
1593 /* POINTER_PLUS_EXPR offsets are to be interpreted signed. */
1594 if (!cst_and_fits_in_hwi (arg1
))
1596 res
->number_non_literal
++;
1599 offset
= int_cst_value (arg1
);
1601 if (TREE_CODE (format_tree
) != ADDR_EXPR
)
1603 res
->number_non_literal
++;
1606 res
->format_string_loc
= EXPR_LOC_OR_LOC (format_tree
, input_location
);
1607 format_tree
= TREE_OPERAND (format_tree
, 0);
1608 if (format_types
[info
->format_type
].flags
1609 & (int) FMT_FLAG_PARSE_ARG_CONVERT_EXTERNAL
)
1611 bool objc_str
= (info
->format_type
== gcc_objc_string_format_type
);
1612 /* We cannot examine this string here - but we can check that it is
1614 if (TREE_CODE (format_tree
) != CONST_DECL
1615 || !((objc_str
&& objc_string_ref_type_p (TREE_TYPE (format_tree
)))
1616 || (*targetcm
.string_object_ref_type_p
)
1617 ((const_tree
) TREE_TYPE (format_tree
))))
1619 res
->number_non_literal
++;
1622 /* Skip to first argument to check. */
1623 while (arg_num
+ 1 < info
->first_arg_num
)
1627 params
= TREE_CHAIN (params
);
1630 /* So, we have a valid literal string object and one or more params.
1631 We need to use an external helper to parse the string into format
1632 info. For Objective-C variants we provide the resource within the
1633 objc tree, for target variants, via a hook. */
1635 objc_check_format_arg (format_tree
, params
);
1636 else if (targetcm
.check_string_object_format_arg
)
1637 (*targetcm
.check_string_object_format_arg
) (format_tree
, params
);
1638 /* Else we can't handle it and retire quietly. */
1641 if (TREE_CODE (format_tree
) == ARRAY_REF
1642 && tree_fits_shwi_p (TREE_OPERAND (format_tree
, 1))
1643 && (offset
+= tree_to_shwi (TREE_OPERAND (format_tree
, 1))) >= 0)
1644 format_tree
= TREE_OPERAND (format_tree
, 0);
1647 res
->number_non_literal
++;
1650 if (VAR_P (format_tree
)
1651 && TREE_CODE (TREE_TYPE (format_tree
)) == ARRAY_TYPE
1652 && (array_init
= decl_constant_value (format_tree
)) != format_tree
1653 && TREE_CODE (array_init
) == STRING_CST
)
1655 /* Extract the string constant initializer. Note that this may include
1656 a trailing NUL character that is not in the array (e.g.
1657 const char a[3] = "foo";). */
1658 array_size
= DECL_SIZE_UNIT (format_tree
);
1659 format_tree
= array_init
;
1661 if (TREE_CODE (format_tree
) != STRING_CST
)
1663 res
->number_non_literal
++;
1666 tree underlying_type
1667 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (format_tree
)));
1668 if (underlying_type
!= char_type_node
)
1670 if (underlying_type
== char16_type_node
1671 || underlying_type
== char32_type_node
1672 || underlying_type
== wchar_type_node
)
1675 res
->number_non_char
++;
1678 format_chars
= TREE_STRING_POINTER (format_tree
);
1679 format_length
= TREE_STRING_LENGTH (format_tree
);
1680 if (array_size
!= 0)
1682 /* Variable length arrays can't be initialized. */
1683 gcc_assert (TREE_CODE (array_size
) == INTEGER_CST
);
1685 if (tree_fits_shwi_p (array_size
))
1687 HOST_WIDE_INT array_size_value
= tree_to_shwi (array_size
);
1688 if (array_size_value
> 0
1689 && array_size_value
== (int) array_size_value
1690 && format_length
> array_size_value
)
1691 format_length
= array_size_value
;
1696 if (offset
>= format_length
)
1698 res
->number_non_literal
++;
1701 format_chars
+= offset
;
1702 format_length
-= offset
;
1704 if (format_length
< 1 || format_chars
[--format_length
] != 0)
1706 res
->number_unterminated
++;
1709 if (format_length
== 0)
1711 res
->number_empty
++;
1715 /* Skip to first argument to check. */
1716 while (arg_num
+ 1 < info
->first_arg_num
)
1720 params
= TREE_CHAIN (params
);
1723 /* Provisionally increment res->number_other; check_format_info_main
1724 will decrement it if it finds there are extra arguments, but this way
1725 need not adjust it for every return. */
1726 res
->number_other
++;
1727 object_allocator
<format_wanted_type
> fwt_pool ("format_wanted_type pool");
1728 check_format_info_main (res
, info
, format_chars
, fmt_param_loc
, format_tree
,
1729 format_length
, params
, arg_num
, fwt_pool
, arglocs
);
1732 /* Support class for argument_parser and check_format_info_main.
1733 Tracks any flag characters that have been applied to the
1734 current argument. */
1740 bool has_char_p (char ch
) const;
1741 void add_char (char ch
);
1742 void validate (const format_kind_info
*fki
,
1743 const format_char_info
*fci
,
1744 const format_flag_spec
*flag_specs
,
1745 const char * const format_chars
,
1746 tree format_string_cst
,
1747 location_t format_string_loc
,
1748 const char * const orig_format_chars
,
1751 int get_alloc_flag (const format_kind_info
*fki
);
1752 int assignment_suppression_p (const format_kind_info
*fki
);
1755 char m_flag_chars
[256];
1758 /* Support struct for argument_parser and check_format_info_main.
1759 Encapsulates any length modifier applied to the current argument. */
1761 struct length_modifier
1764 : chars (NULL
), val (FMT_LEN_none
), std (STD_C89
),
1765 scalar_identity_flag (0)
1769 length_modifier (const char *chars_
,
1770 enum format_lengths val_
,
1771 enum format_std_version std_
,
1772 int scalar_identity_flag_
)
1773 : chars (chars_
), val (val_
), std (std_
),
1774 scalar_identity_flag (scalar_identity_flag_
)
1779 enum format_lengths val
;
1780 enum format_std_version std
;
1781 int scalar_identity_flag
;
1784 /* Parsing one argument within a format string. */
1786 class argument_parser
1789 argument_parser (function_format_info
*info
, const char *&format_chars
,
1790 tree format_string_cst
,
1791 const char * const orig_format_chars
,
1792 location_t format_string_loc
, flag_chars_t
&flag_chars
,
1793 int &has_operand_number
, tree first_fillin_param
,
1794 object_allocator
<format_wanted_type
> &fwt_pool_
,
1795 vec
<location_t
> *arglocs
);
1797 bool read_any_dollar ();
1799 bool read_format_flags ();
1802 read_any_format_width (tree
¶ms
,
1803 unsigned HOST_WIDE_INT
&arg_num
);
1806 read_any_format_left_precision ();
1809 read_any_format_precision (tree
¶ms
,
1810 unsigned HOST_WIDE_INT
&arg_num
);
1812 void handle_alloc_chars ();
1814 length_modifier
read_any_length_modifier ();
1816 void read_any_other_modifier ();
1818 const format_char_info
*find_format_char_info (char format_char
);
1821 validate_flag_pairs (const format_char_info
*fci
,
1825 give_y2k_warnings (const format_char_info
*fci
,
1828 void parse_any_scan_set (const format_char_info
*fci
);
1830 bool handle_conversions (const format_char_info
*fci
,
1831 const length_modifier
&len_modifier
,
1833 const char *&wanted_type_name
,
1834 unsigned HOST_WIDE_INT
&arg_num
,
1839 check_argument_type (const format_char_info
*fci
,
1840 const length_modifier
&len_modifier
,
1842 const char *&wanted_type_name
,
1843 const bool suppressed
,
1844 unsigned HOST_WIDE_INT
&arg_num
,
1846 const int alloc_flag
,
1847 const char * const format_start
,
1848 const char * const type_start
,
1849 location_t fmt_param_loc
,
1850 char conversion_char
);
1853 const function_format_info
*const info
;
1854 const format_kind_info
* const fki
;
1855 const format_flag_spec
* const flag_specs
;
1856 const char *start_of_this_format
;
1857 const char *&format_chars
;
1858 const tree format_string_cst
;
1859 const char * const orig_format_chars
;
1860 const location_t format_string_loc
;
1861 object_allocator
<format_wanted_type
> &fwt_pool
;
1862 flag_chars_t
&flag_chars
;
1864 tree main_arg_params
;
1865 int &has_operand_number
;
1866 const tree first_fillin_param
;
1867 format_wanted_type width_wanted_type
;
1868 format_wanted_type precision_wanted_type
;
1870 format_wanted_type main_wanted_type
;
1872 format_wanted_type
*first_wanted_type
;
1873 format_wanted_type
*last_wanted_type
;
1874 vec
<location_t
> *arglocs
;
1877 /* flag_chars_t's constructor. */
1879 flag_chars_t::flag_chars_t ()
1881 m_flag_chars
[0] = 0;
1884 /* Has CH been seen as a flag within the current argument? */
1887 flag_chars_t::has_char_p (char ch
) const
1889 return strchr (m_flag_chars
, ch
) != 0;
1892 /* Add CH to the flags seen within the current argument. */
1895 flag_chars_t::add_char (char ch
)
1897 int i
= strlen (m_flag_chars
);
1898 m_flag_chars
[i
++] = ch
;
1899 m_flag_chars
[i
] = 0;
1902 /* Validate the individual flags used, removing any that are invalid. */
1905 flag_chars_t::validate (const format_kind_info
*fki
,
1906 const format_char_info
*fci
,
1907 const format_flag_spec
*flag_specs
,
1908 const char * const format_chars
,
1909 tree format_string_cst
,
1910 location_t format_string_loc
,
1911 const char * const orig_format_chars
,
1917 bool quotflag
= false;
1919 for (i
= 0; m_flag_chars
[i
] != 0; i
++)
1921 const format_flag_spec
*s
= get_flag_spec (flag_specs
,
1922 m_flag_chars
[i
], NULL
);
1923 m_flag_chars
[i
- d
] = m_flag_chars
[i
];
1924 if (m_flag_chars
[i
] == fki
->length_code_char
)
1927 /* Remember if a quoting flag is seen. */
1928 quotflag
|= s
->quoting
;
1930 if (strchr (fci
->flag_chars
, m_flag_chars
[i
]) == 0)
1932 format_warning_at_char (format_string_loc
, format_string_cst
,
1933 format_chars
- orig_format_chars
,
1935 "%s used with %<%%%c%> %s format",
1936 _(s
->name
), format_char
, fki
->name
);
1942 const format_flag_spec
*t
;
1943 if (ADJ_STD (s
->std
) > C_STD_VER
)
1944 warning_at (format_string_loc
, OPT_Wformat_
,
1945 "%s does not support %s",
1946 C_STD_NAME (s
->std
), _(s
->long_name
));
1947 t
= get_flag_spec (flag_specs
, m_flag_chars
[i
], fci
->flags2
);
1948 if (t
!= NULL
&& ADJ_STD (t
->std
) > ADJ_STD (s
->std
))
1950 const char *long_name
= (t
->long_name
!= NULL
1953 if (ADJ_STD (t
->std
) > C_STD_VER
)
1954 warning_at (format_string_loc
, OPT_Wformat_
,
1955 "%s does not support %s with"
1956 " the %<%%%c%> %s format",
1957 C_STD_NAME (t
->std
), _(long_name
),
1958 format_char
, fki
->name
);
1962 /* Detect quoting directives used within a quoted sequence, such
1963 as GCC's "%<...%qE". */
1964 if (quoted
&& s
->quoting
)
1966 format_warning_at_char (format_string_loc
, format_string_cst
,
1967 format_chars
- orig_format_chars
- 1,
1969 "%s used within a quoted sequence",
1973 m_flag_chars
[i
- d
] = 0;
1977 && strchr (fci
->flags2
, '\''))
1979 format_warning_at_char (format_string_loc
, format_string_cst
,
1980 format_chars
- orig_format_chars
,
1982 "%qc conversion used unquoted",
1987 /* Determine if an assignment-allocation has been set, requiring
1988 an extra char ** for writing back a dynamically-allocated char *.
1989 This is for handling the optional 'm' character in scanf. */
1992 flag_chars_t::get_alloc_flag (const format_kind_info
*fki
)
1994 if ((fki
->flags
& (int) FMT_FLAG_SCANF_A_KLUDGE
)
1995 && has_char_p ('a'))
1997 if (fki
->alloc_char
&& has_char_p (fki
->alloc_char
))
2002 /* Determine if an assignment-suppression character was seen.
2003 ('*' in scanf, for discarding the converted input). */
2006 flag_chars_t::assignment_suppression_p (const format_kind_info
*fki
)
2008 if (fki
->suppression_char
2009 && has_char_p (fki
->suppression_char
))
2014 /* Constructor for argument_parser. Initialize for parsing one
2015 argument within a format string. */
2018 argument_parser (function_format_info
*info_
, const char *&format_chars_
,
2019 tree format_string_cst_
,
2020 const char * const orig_format_chars_
,
2021 location_t format_string_loc_
,
2022 flag_chars_t
&flag_chars_
,
2023 int &has_operand_number_
,
2024 tree first_fillin_param_
,
2025 object_allocator
<format_wanted_type
> &fwt_pool_
,
2026 vec
<location_t
> *arglocs_
)
2028 fki (&format_types
[info
->format_type
]),
2029 flag_specs (fki
->flag_specs
),
2030 start_of_this_format (format_chars_
),
2031 format_chars (format_chars_
),
2032 format_string_cst (format_string_cst_
),
2033 orig_format_chars (orig_format_chars_
),
2034 format_string_loc (format_string_loc_
),
2035 fwt_pool (fwt_pool_
),
2036 flag_chars (flag_chars_
),
2038 main_arg_params (NULL
),
2039 has_operand_number (has_operand_number_
),
2040 first_fillin_param (first_fillin_param_
),
2041 first_wanted_type (NULL
),
2042 last_wanted_type (NULL
),
2047 /* Handle dollars at the start of format arguments, setting up main_arg_params
2050 Return true if format parsing is to continue, false otherwise. */
2053 argument_parser::read_any_dollar ()
2055 if ((fki
->flags
& (int) FMT_FLAG_USE_DOLLAR
) && has_operand_number
!= 0)
2057 /* Possibly read a $ operand number at the start of the format.
2058 If one was previously used, one is required here. If one
2059 is not used here, we can't immediately conclude this is a
2060 format without them, since it could be printf %m or scanf %*. */
2062 opnum
= maybe_read_dollar_number (&format_chars
, 0,
2064 &main_arg_params
, fki
);
2069 has_operand_number
= 1;
2070 main_arg_num
= opnum
+ info
->first_arg_num
- 1;
2073 else if (fki
->flags
& FMT_FLAG_USE_DOLLAR
)
2075 if (avoid_dollar_number (format_chars
))
2081 /* Read any format flags, but do not yet validate them beyond removing
2082 duplicates, since in general validation depends on the rest of
2085 Return true if format parsing is to continue, false otherwise. */
2088 argument_parser::read_format_flags ()
2090 while (*format_chars
!= 0
2091 && strchr (fki
->flag_chars
, *format_chars
) != 0)
2093 const format_flag_spec
*s
= get_flag_spec (flag_specs
,
2094 *format_chars
, NULL
);
2095 if (flag_chars
.has_char_p (*format_chars
))
2097 format_warning_at_char (format_string_loc
, format_string_cst
,
2098 format_chars
+ 1 - orig_format_chars
,
2100 "repeated %s in format", _(s
->name
));
2103 flag_chars
.add_char (*format_chars
);
2105 if (s
->skip_next_char
)
2108 if (*format_chars
== 0)
2110 warning_at (format_string_loc
, OPT_Wformat_
,
2111 "missing fill character at end of strfmon format");
2121 /* Read any format width, possibly * or *m$.
2123 Return true if format parsing is to continue, false otherwise. */
2127 read_any_format_width (tree
¶ms
,
2128 unsigned HOST_WIDE_INT
&arg_num
)
2130 if (!fki
->width_char
)
2133 if (fki
->width_type
!= NULL
&& *format_chars
== '*')
2135 flag_chars
.add_char (fki
->width_char
);
2136 /* "...a field width...may be indicated by an asterisk.
2137 In this case, an int argument supplies the field width..." */
2139 if (has_operand_number
!= 0)
2142 opnum
= maybe_read_dollar_number (&format_chars
,
2143 has_operand_number
== 1,
2150 has_operand_number
= 1;
2151 arg_num
= opnum
+ info
->first_arg_num
- 1;
2154 has_operand_number
= 0;
2158 if (avoid_dollar_number (format_chars
))
2161 if (info
->first_arg_num
!= 0)
2168 cur_param
= TREE_VALUE (params
);
2169 if (has_operand_number
<= 0)
2171 params
= TREE_CHAIN (params
);
2175 width_wanted_type
.wanted_type
= *fki
->width_type
;
2176 width_wanted_type
.wanted_type_name
= NULL
;
2177 width_wanted_type
.pointer_count
= 0;
2178 width_wanted_type
.char_lenient_flag
= 0;
2179 width_wanted_type
.scalar_identity_flag
= 0;
2180 width_wanted_type
.writing_in_flag
= 0;
2181 width_wanted_type
.reading_from_flag
= 0;
2182 width_wanted_type
.kind
= CF_KIND_FIELD_WIDTH
;
2183 width_wanted_type
.format_start
= format_chars
- 1;
2184 width_wanted_type
.format_length
= 1;
2185 width_wanted_type
.param
= cur_param
;
2186 width_wanted_type
.arg_num
= arg_num
;
2187 width_wanted_type
.offset_loc
=
2188 format_chars
- orig_format_chars
;
2189 width_wanted_type
.next
= NULL
;
2190 if (last_wanted_type
!= 0)
2191 last_wanted_type
->next
= &width_wanted_type
;
2192 if (first_wanted_type
== 0)
2193 first_wanted_type
= &width_wanted_type
;
2194 last_wanted_type
= &width_wanted_type
;
2199 /* Possibly read a numeric width. If the width is zero,
2200 we complain if appropriate. */
2201 int non_zero_width_char
= FALSE
;
2202 int found_width
= FALSE
;
2203 while (ISDIGIT (*format_chars
))
2206 if (*format_chars
!= '0')
2207 non_zero_width_char
= TRUE
;
2210 if (found_width
&& !non_zero_width_char
&&
2211 (fki
->flags
& (int) FMT_FLAG_ZERO_WIDTH_BAD
))
2212 warning_at (format_string_loc
, OPT_Wformat_
,
2213 "zero width in %s format", fki
->name
);
2215 flag_chars
.add_char (fki
->width_char
);
2221 /* Read any format left precision (must be a number, not *). */
2223 argument_parser::read_any_format_left_precision ()
2225 if (fki
->left_precision_char
== 0)
2227 if (*format_chars
!= '#')
2231 flag_chars
.add_char (fki
->left_precision_char
);
2232 if (!ISDIGIT (*format_chars
))
2233 format_warning_at_char (format_string_loc
, format_string_cst
,
2234 format_chars
- orig_format_chars
,
2236 "empty left precision in %s format", fki
->name
);
2237 while (ISDIGIT (*format_chars
))
2241 /* Read any format precision, possibly * or *m$.
2243 Return true if format parsing is to continue, false otherwise. */
2247 read_any_format_precision (tree
¶ms
,
2248 unsigned HOST_WIDE_INT
&arg_num
)
2250 if (fki
->precision_char
== 0)
2252 if (*format_chars
!= '.')
2256 flag_chars
.add_char (fki
->precision_char
);
2257 if (fki
->precision_type
!= NULL
&& *format_chars
== '*')
2259 /* "...a...precision...may be indicated by an asterisk.
2260 In this case, an int argument supplies the...precision." */
2262 if (has_operand_number
!= 0)
2265 opnum
= maybe_read_dollar_number (&format_chars
,
2266 has_operand_number
== 1,
2273 has_operand_number
= 1;
2274 arg_num
= opnum
+ info
->first_arg_num
- 1;
2277 has_operand_number
= 0;
2281 if (avoid_dollar_number (format_chars
))
2284 if (info
->first_arg_num
!= 0)
2291 cur_param
= TREE_VALUE (params
);
2292 if (has_operand_number
<= 0)
2294 params
= TREE_CHAIN (params
);
2298 precision_wanted_type
.wanted_type
= *fki
->precision_type
;
2299 precision_wanted_type
.wanted_type_name
= NULL
;
2300 precision_wanted_type
.pointer_count
= 0;
2301 precision_wanted_type
.char_lenient_flag
= 0;
2302 precision_wanted_type
.scalar_identity_flag
= 0;
2303 precision_wanted_type
.writing_in_flag
= 0;
2304 precision_wanted_type
.reading_from_flag
= 0;
2305 precision_wanted_type
.kind
= CF_KIND_FIELD_PRECISION
;
2306 precision_wanted_type
.param
= cur_param
;
2307 precision_wanted_type
.format_start
= format_chars
- 2;
2308 precision_wanted_type
.format_length
= 2;
2309 precision_wanted_type
.arg_num
= arg_num
;
2310 precision_wanted_type
.offset_loc
=
2311 format_chars
- orig_format_chars
;
2312 precision_wanted_type
.next
= NULL
;
2313 if (last_wanted_type
!= 0)
2314 last_wanted_type
->next
= &precision_wanted_type
;
2315 if (first_wanted_type
== 0)
2316 first_wanted_type
= &precision_wanted_type
;
2317 last_wanted_type
= &precision_wanted_type
;
2322 if (!(fki
->flags
& (int) FMT_FLAG_EMPTY_PREC_OK
)
2323 && !ISDIGIT (*format_chars
))
2324 format_warning_at_char (format_string_loc
, format_string_cst
,
2325 format_chars
- orig_format_chars
,
2327 "empty precision in %s format", fki
->name
);
2328 while (ISDIGIT (*format_chars
))
2335 /* Parse any assignment-allocation flags, which request an extra
2336 char ** for writing back a dynamically-allocated char *.
2337 This is for handling the optional 'm' character in scanf,
2338 and, before C99, 'a' (for compatibility with a non-standard
2339 GNU libc extension). */
2342 argument_parser::handle_alloc_chars ()
2344 if (fki
->alloc_char
&& fki
->alloc_char
== *format_chars
)
2346 flag_chars
.add_char (fki
->alloc_char
);
2350 /* Handle the scanf allocation kludge. */
2351 if (fki
->flags
& (int) FMT_FLAG_SCANF_A_KLUDGE
)
2353 if (*format_chars
== 'a' && !flag_isoc99
)
2355 if (format_chars
[1] == 's' || format_chars
[1] == 'S'
2356 || format_chars
[1] == '[')
2358 /* 'a' is used as a flag. */
2359 flag_chars
.add_char ('a');
2366 /* Look for length modifiers within the current format argument,
2367 returning a length_modifier instance describing it (or the
2368 default if one is not found).
2370 Issue warnings about non-standard modifiers. */
2373 argument_parser::read_any_length_modifier ()
2375 length_modifier result
;
2377 const format_length_info
*fli
= fki
->length_char_specs
;
2381 while (fli
->name
!= 0
2382 && strncmp (fli
->name
, format_chars
, strlen (fli
->name
)))
2386 format_chars
+= strlen (fli
->name
);
2387 if (fli
->double_name
!= 0 && fli
->name
[0] == *format_chars
)
2390 result
= length_modifier (fli
->double_name
, fli
->double_index
,
2391 fli
->double_std
, 0);
2395 result
= length_modifier (fli
->name
, fli
->index
, fli
->std
,
2396 fli
->scalar_identity_flag
);
2398 flag_chars
.add_char (fki
->length_code_char
);
2402 /* Warn if the length modifier is non-standard. */
2403 if (ADJ_STD (result
.std
) > C_STD_VER
)
2404 warning_at (format_string_loc
, OPT_Wformat_
,
2405 "%s does not support the %qs %s length modifier",
2406 C_STD_NAME (result
.std
), result
.chars
,
2413 /* Read any other modifier (strftime E/O). */
2416 argument_parser::read_any_other_modifier ()
2418 if (fki
->modifier_chars
== NULL
)
2421 while (*format_chars
!= 0
2422 && strchr (fki
->modifier_chars
, *format_chars
) != 0)
2424 if (flag_chars
.has_char_p (*format_chars
))
2426 const format_flag_spec
*s
= get_flag_spec (flag_specs
,
2427 *format_chars
, NULL
);
2428 format_warning_at_char (format_string_loc
, format_string_cst
,
2429 format_chars
- orig_format_chars
,
2431 "repeated %s in format", _(s
->name
));
2434 flag_chars
.add_char (*format_chars
);
2439 /* Return the format_char_info corresponding to FORMAT_CHAR,
2440 potentially issuing a warning if the format char is
2441 not supported in the C standard version we are checking
2444 Issue a warning and return NULL if it is not found.
2446 Issue warnings about non-standard modifiers. */
2448 const format_char_info
*
2449 argument_parser::find_format_char_info (char format_char
)
2451 const format_char_info
*fci
= fki
->conversion_specs
;
2453 while (fci
->format_chars
!= 0
2454 && strchr (fci
->format_chars
, format_char
) == 0)
2456 if (fci
->format_chars
== 0)
2458 format_warning_at_char (format_string_loc
, format_string_cst
,
2459 format_chars
- orig_format_chars
,
2461 "unknown conversion type character"
2469 if (ADJ_STD (fci
->std
) > C_STD_VER
)
2470 format_warning_at_char (format_string_loc
, format_string_cst
,
2471 format_chars
- orig_format_chars
,
2473 "%s does not support the %<%%%c%> %s format",
2474 C_STD_NAME (fci
->std
), format_char
, fki
->name
);
2480 /* Validate the pairs of flags used.
2481 Issue warnings about incompatible combinations of flags. */
2484 argument_parser::validate_flag_pairs (const format_char_info
*fci
,
2487 const format_flag_pair
* const bad_flag_pairs
= fki
->bad_flag_pairs
;
2489 for (int i
= 0; bad_flag_pairs
[i
].flag_char1
!= 0; i
++)
2491 const format_flag_spec
*s
, *t
;
2492 if (!flag_chars
.has_char_p (bad_flag_pairs
[i
].flag_char1
))
2494 if (!flag_chars
.has_char_p (bad_flag_pairs
[i
].flag_char2
))
2496 if (bad_flag_pairs
[i
].predicate
!= 0
2497 && strchr (fci
->flags2
, bad_flag_pairs
[i
].predicate
) == 0)
2499 s
= get_flag_spec (flag_specs
, bad_flag_pairs
[i
].flag_char1
, NULL
);
2500 t
= get_flag_spec (flag_specs
, bad_flag_pairs
[i
].flag_char2
, NULL
);
2501 if (bad_flag_pairs
[i
].ignored
)
2503 if (bad_flag_pairs
[i
].predicate
!= 0)
2504 warning_at (format_string_loc
, OPT_Wformat_
,
2505 "%s ignored with %s and %<%%%c%> %s format",
2506 _(s
->name
), _(t
->name
), format_char
,
2509 warning_at (format_string_loc
, OPT_Wformat_
,
2510 "%s ignored with %s in %s format",
2511 _(s
->name
), _(t
->name
), fki
->name
);
2515 if (bad_flag_pairs
[i
].predicate
!= 0)
2516 warning_at (format_string_loc
, OPT_Wformat_
,
2517 "use of %s and %s together with %<%%%c%> %s format",
2518 _(s
->name
), _(t
->name
), format_char
,
2521 warning_at (format_string_loc
, OPT_Wformat_
,
2522 "use of %s and %s together in %s format",
2523 _(s
->name
), _(t
->name
), fki
->name
);
2528 /* Give Y2K warnings. */
2531 argument_parser::give_y2k_warnings (const format_char_info
*fci
,
2534 if (!warn_format_y2k
)
2538 if (strchr (fci
->flags2
, '4') != 0)
2539 if (flag_chars
.has_char_p ('E'))
2543 else if (strchr (fci
->flags2
, '3') != 0)
2545 else if (strchr (fci
->flags2
, '2') != 0)
2548 warning_at (format_string_loc
, OPT_Wformat_y2k
,
2549 "%<%%%c%> yields only last 2 digits of "
2550 "year in some locales", format_char
);
2551 else if (y2k_level
== 2)
2552 warning_at (format_string_loc
, OPT_Wformat_y2k
,
2553 "%<%%%c%> yields only last 2 digits of year",
2557 /* Parse any "scan sets" enclosed in square brackets, e.g.
2558 for scanf-style calls. */
2561 argument_parser::parse_any_scan_set (const format_char_info
*fci
)
2563 if (strchr (fci
->flags2
, '[') == NULL
)
2566 /* Skip over scan set, in case it happens to have '%' in it. */
2567 if (*format_chars
== '^')
2569 /* Find closing bracket; if one is hit immediately, then
2570 it's part of the scan set rather than a terminator. */
2571 if (*format_chars
== ']')
2573 while (*format_chars
&& *format_chars
!= ']')
2575 if (*format_chars
!= ']')
2576 /* The end of the format string was reached. */
2577 format_warning_at_char (format_string_loc
, format_string_cst
,
2578 format_chars
- orig_format_chars
,
2580 "no closing %<]%> for %<%%[%> format");
2583 /* Return true if this argument is to be continued to be parsed,
2584 false to skip to next argument. */
2587 argument_parser::handle_conversions (const format_char_info
*fci
,
2588 const length_modifier
&len_modifier
,
2590 const char *&wanted_type_name
,
2591 unsigned HOST_WIDE_INT
&arg_num
,
2595 enum format_std_version wanted_type_std
;
2597 if (!(fki
->flags
& (int) FMT_FLAG_ARG_CONVERT
))
2600 wanted_type
= (fci
->types
[len_modifier
.val
].type
2601 ? *fci
->types
[len_modifier
.val
].type
: 0);
2602 wanted_type_name
= fci
->types
[len_modifier
.val
].name
;
2603 wanted_type_std
= fci
->types
[len_modifier
.val
].std
;
2604 if (wanted_type
== 0)
2606 format_warning_at_char (format_string_loc
, format_string_cst
,
2607 format_chars
- orig_format_chars
,
2609 "use of %qs length modifier with %qc type"
2610 " character has either no effect"
2611 " or undefined behavior",
2612 len_modifier
.chars
, format_char
);
2613 /* Heuristic: skip one argument when an invalid length/type
2614 combination is encountered. */
2617 params
= TREE_CHAIN (params
);
2621 /* Warn if non-standard, provided it is more non-standard
2622 than the length and type characters that may already
2623 have been warned for. */
2624 && ADJ_STD (wanted_type_std
) > ADJ_STD (len_modifier
.std
)
2625 && ADJ_STD (wanted_type_std
) > ADJ_STD (fci
->std
))
2627 if (ADJ_STD (wanted_type_std
) > C_STD_VER
)
2628 format_warning_at_char (format_string_loc
, format_string_cst
,
2629 format_chars
- orig_format_chars
,
2631 "%s does not support the %<%%%s%c%> %s format",
2632 C_STD_NAME (wanted_type_std
),
2634 format_char
, fki
->name
);
2640 /* Check type of argument against desired type.
2642 Return true if format parsing is to continue, false otherwise. */
2646 check_argument_type (const format_char_info
*fci
,
2647 const length_modifier
&len_modifier
,
2649 const char *&wanted_type_name
,
2650 const bool suppressed
,
2651 unsigned HOST_WIDE_INT
&arg_num
,
2653 const int alloc_flag
,
2654 const char * const format_start
,
2655 const char * const type_start
,
2656 location_t fmt_param_loc
,
2657 char conversion_char
)
2659 if (info
->first_arg_num
== 0)
2662 if ((fci
->pointer_count
== 0 && wanted_type
== void_type_node
)
2665 if (main_arg_num
!= 0)
2668 warning_at (format_string_loc
, OPT_Wformat_
,
2669 "operand number specified with "
2670 "suppressed assignment");
2672 warning_at (format_string_loc
, OPT_Wformat_
,
2673 "operand number specified for format "
2674 "taking no argument");
2679 format_wanted_type
*wanted_type_ptr
;
2681 if (main_arg_num
!= 0)
2683 arg_num
= main_arg_num
;
2684 params
= main_arg_params
;
2689 if (has_operand_number
> 0)
2691 warning_at (format_string_loc
, OPT_Wformat_
,
2692 "missing $ operand number in format");
2696 has_operand_number
= 0;
2699 wanted_type_ptr
= &main_wanted_type
;
2707 cur_param
= TREE_VALUE (params
);
2708 params
= TREE_CHAIN (params
);
2711 wanted_type_ptr
->wanted_type
= wanted_type
;
2712 wanted_type_ptr
->wanted_type_name
= wanted_type_name
;
2713 wanted_type_ptr
->pointer_count
= fci
->pointer_count
+ alloc_flag
;
2714 wanted_type_ptr
->char_lenient_flag
= 0;
2715 if (strchr (fci
->flags2
, 'c') != 0)
2716 wanted_type_ptr
->char_lenient_flag
= 1;
2717 wanted_type_ptr
->scalar_identity_flag
= 0;
2718 if (len_modifier
.scalar_identity_flag
)
2719 wanted_type_ptr
->scalar_identity_flag
= 1;
2720 wanted_type_ptr
->writing_in_flag
= 0;
2721 wanted_type_ptr
->reading_from_flag
= 0;
2723 wanted_type_ptr
->writing_in_flag
= 1;
2726 if (strchr (fci
->flags2
, 'W') != 0)
2727 wanted_type_ptr
->writing_in_flag
= 1;
2728 if (strchr (fci
->flags2
, 'R') != 0)
2729 wanted_type_ptr
->reading_from_flag
= 1;
2731 wanted_type_ptr
->kind
= CF_KIND_FORMAT
;
2732 wanted_type_ptr
->param
= cur_param
;
2733 wanted_type_ptr
->arg_num
= arg_num
;
2734 wanted_type_ptr
->format_start
= format_start
;
2735 wanted_type_ptr
->format_length
= format_chars
- format_start
;
2736 wanted_type_ptr
->offset_loc
= format_chars
- orig_format_chars
;
2737 wanted_type_ptr
->next
= NULL
;
2738 if (last_wanted_type
!= 0)
2739 last_wanted_type
->next
= wanted_type_ptr
;
2740 if (first_wanted_type
== 0)
2741 first_wanted_type
= wanted_type_ptr
;
2742 last_wanted_type
= wanted_type_ptr
;
2747 wanted_type_ptr
= fwt_pool
.allocate ();
2749 wanted_type
= *fci
->types
[len_modifier
.val
].type
;
2750 wanted_type_name
= fci
->types
[len_modifier
.val
].name
;
2755 if (first_wanted_type
!= 0)
2757 ptrdiff_t offset_to_format_start
= (start_of_this_format
- 1) - orig_format_chars
;
2758 ptrdiff_t offset_to_format_end
= (format_chars
- 1) - orig_format_chars
;
2759 /* By default, use the end of the range for the caret location. */
2760 substring_loc
fmt_loc (fmt_param_loc
, TREE_TYPE (format_string_cst
),
2761 offset_to_format_end
,
2762 offset_to_format_start
, offset_to_format_end
);
2763 ptrdiff_t offset_to_type_start
= type_start
- orig_format_chars
;
2764 check_format_types (fmt_loc
, first_wanted_type
, fki
,
2765 offset_to_type_start
,
2766 conversion_char
, arglocs
);
2772 /* Do the main part of checking a call to a format function. FORMAT_CHARS
2773 is the NUL-terminated format string (which at this point may contain
2774 internal NUL characters); FORMAT_LENGTH is its length (excluding the
2775 terminating NUL character). ARG_NUM is one less than the number of
2776 the first format argument to check; PARAMS points to that format
2777 argument in the list of arguments. */
2780 check_format_info_main (format_check_results
*res
,
2781 function_format_info
*info
, const char *format_chars
,
2782 location_t fmt_param_loc
, tree format_string_cst
,
2783 int format_length
, tree params
,
2784 unsigned HOST_WIDE_INT arg_num
,
2785 object_allocator
<format_wanted_type
> &fwt_pool
,
2786 vec
<location_t
> *arglocs
)
2788 const char * const orig_format_chars
= format_chars
;
2789 const tree first_fillin_param
= params
;
2791 const format_kind_info
* const fki
= &format_types
[info
->format_type
];
2792 const format_flag_spec
* const flag_specs
= fki
->flag_specs
;
2793 const location_t format_string_loc
= res
->format_string_loc
;
2795 /* -1 if no conversions taking an operand have been found; 0 if one has
2796 and it didn't use $; 1 if $ formats are in use. */
2797 int has_operand_number
= -1;
2799 /* Vector of pointers to opening quoting directives (like GCC "%<"). */
2800 auto_vec
<const char*> quotdirs
;
2802 /* Pointers to the most recent color directives (like GCC's "%r or %R").
2803 A starting color directive much be terminated before the end of
2804 the format string. A terminating directive makes no sense without
2805 a prior starting directive. */
2806 const char *color_begin
= NULL
;
2807 const char *color_end
= NULL
;
2809 init_dollar_format_checking (info
->first_arg_num
, first_fillin_param
);
2811 while (*format_chars
!= 0)
2813 if (*format_chars
++ != '%')
2815 if (*format_chars
== 0)
2817 format_warning_at_char (format_string_loc
, format_string_cst
,
2818 format_chars
- orig_format_chars
,
2820 "spurious trailing %<%%%> in format");
2823 if (*format_chars
== '%')
2829 flag_chars_t flag_chars
;
2830 argument_parser
arg_parser (info
, format_chars
, format_string_cst
,
2831 orig_format_chars
, format_string_loc
,
2832 flag_chars
, has_operand_number
,
2833 first_fillin_param
, fwt_pool
, arglocs
);
2835 if (!arg_parser
.read_any_dollar ())
2838 if (!arg_parser
.read_format_flags ())
2841 /* Read any format width, possibly * or *m$. */
2842 if (!arg_parser
.read_any_format_width (params
, arg_num
))
2845 /* Read any format left precision (must be a number, not *). */
2846 arg_parser
.read_any_format_left_precision ();
2848 /* Read any format precision, possibly * or *m$. */
2849 if (!arg_parser
.read_any_format_precision (params
, arg_num
))
2852 const char *format_start
= format_chars
;
2854 arg_parser
.handle_alloc_chars ();
2856 /* The rest of the conversion specification is the length modifier
2857 (if any), and the conversion specifier, so this is where the
2858 type information starts. If we need to issue a suggestion
2859 about a type mismatch, then we should preserve everything up
2861 const char *type_start
= format_chars
;
2863 /* Read any length modifier, if this kind of format has them. */
2864 const length_modifier len_modifier
2865 = arg_parser
.read_any_length_modifier ();
2867 /* Read any modifier (strftime E/O). */
2868 arg_parser
.read_any_other_modifier ();
2870 char format_char
= *format_chars
;
2871 if (format_char
== 0
2872 || (!(fki
->flags
& (int) FMT_FLAG_FANCY_PERCENT_OK
)
2873 && format_char
== '%'))
2875 format_warning_at_char (format_string_loc
, format_string_cst
,
2876 format_chars
- orig_format_chars
,
2878 "conversion lacks type at end of format");
2883 const format_char_info
* const fci
2884 = arg_parser
.find_format_char_info (format_char
);
2888 flag_chars
.validate (fki
, fci
, flag_specs
, format_chars
,
2890 format_string_loc
, orig_format_chars
, format_char
,
2891 quotdirs
.length () > 0);
2893 const int alloc_flag
= flag_chars
.get_alloc_flag (fki
);
2894 const bool suppressed
= flag_chars
.assignment_suppression_p (fki
);
2896 /* Diagnose nested or unmatched quoting directives such as GCC's
2897 "%<...%<" and "%>...%>". */
2898 bool quot_begin_p
= strchr (fci
->flags2
, '<');
2899 bool quot_end_p
= strchr (fci
->flags2
, '>');
2901 if (quot_begin_p
&& !quot_end_p
)
2903 if (quotdirs
.length ())
2904 format_warning_at_char (format_string_loc
, format_string_cst
,
2905 format_chars
- orig_format_chars
,
2907 "nested quoting directive");
2908 quotdirs
.safe_push (format_chars
);
2910 else if (!quot_begin_p
&& quot_end_p
)
2912 if (quotdirs
.length ())
2915 format_warning_at_char (format_string_loc
, format_string_cst
,
2916 format_chars
- orig_format_chars
,
2918 "unmatched quoting directive");
2921 bool color_begin_p
= strchr (fci
->flags2
, '/');
2924 color_begin
= format_chars
;
2927 else if (strchr (fci
->flags2
, '\\'))
2930 format_warning_at_char (format_string_loc
, format_string_cst
,
2931 format_chars
- orig_format_chars
,
2933 "%qc directive redundant after prior "
2934 "occurence of the same", format_char
);
2935 else if (!color_begin
)
2936 format_warning_at_char (format_string_loc
, format_string_cst
,
2937 format_chars
- orig_format_chars
,
2939 "unmatched color reset directive");
2940 color_end
= format_chars
;
2943 /* Diagnose directives that shouldn't appear in a quoted sequence.
2944 (They are denoted by a double quote in FLAGS2.) */
2945 if (quotdirs
.length ())
2947 if (strchr (fci
->flags2
, '"'))
2948 format_warning_at_char (format_string_loc
, format_string_cst
,
2949 format_chars
- orig_format_chars
,
2951 "%qc conversion used within a quoted "
2956 /* Validate the pairs of flags used. */
2957 arg_parser
.validate_flag_pairs (fci
, format_char
);
2959 arg_parser
.give_y2k_warnings (fci
, format_char
);
2961 arg_parser
.parse_any_scan_set (fci
);
2963 tree wanted_type
= NULL
;
2964 const char *wanted_type_name
= NULL
;
2966 if (!arg_parser
.handle_conversions (fci
, len_modifier
,
2967 wanted_type
, wanted_type_name
,
2973 arg_parser
.main_wanted_type
.next
= NULL
;
2975 /* Finally. . .check type of argument against desired type! */
2976 if (!arg_parser
.check_argument_type (fci
, len_modifier
,
2977 wanted_type
, wanted_type_name
,
2981 format_start
, type_start
,
2987 if (format_chars
- orig_format_chars
!= format_length
)
2988 format_warning_at_char (format_string_loc
, format_string_cst
,
2989 format_chars
+ 1 - orig_format_chars
,
2990 OPT_Wformat_contains_nul
,
2991 "embedded %<\\0%> in format");
2992 if (info
->first_arg_num
!= 0 && params
!= 0
2993 && has_operand_number
<= 0)
2995 res
->number_other
--;
2996 res
->number_extra_args
++;
2998 if (has_operand_number
> 0)
2999 finish_dollar_format_checking (res
, fki
->flags
& (int) FMT_FLAG_DOLLAR_GAP_POINTER_OK
);
3001 if (quotdirs
.length ())
3002 format_warning_at_char (format_string_loc
, format_string_cst
,
3003 quotdirs
.pop () - orig_format_chars
,
3004 OPT_Wformat_
, "unterminated quoting directive");
3005 if (color_begin
&& !color_end
)
3006 format_warning_at_char (format_string_loc
, format_string_cst
,
3007 color_begin
- orig_format_chars
,
3008 OPT_Wformat_
, "unterminated color directive");
3011 /* Check the argument types from a single format conversion (possibly
3012 including width and precision arguments).
3014 FMT_LOC is the location of the format conversion.
3016 TYPES is a singly-linked list expressing the parts of the format
3017 conversion that expect argument types, and the arguments they
3020 OFFSET_TO_TYPE_START is the offset within the execution-charset encoded
3021 format string to where type information begins for the conversion
3022 (the length modifier and conversion specifier).
3024 CONVERSION_CHAR is the user-provided conversion specifier.
3028 sprintf (d, "before %-+*.*lld after", arg3, arg4, arg5);
3030 then FMT_LOC covers this range:
3032 sprintf (d, "before %-+*.*lld after", arg3, arg4, arg5);
3035 and TYPES in this case is a three-entry singly-linked list consisting of:
3036 (1) the check for the field width here:
3037 sprintf (d, "before %-+*.*lld after", arg3, arg4, arg5);
3040 (2) the check for the field precision here:
3041 sprintf (d, "before %-+*.*lld after", arg3, arg4, arg5);
3044 (3) the check for the length modifier and conversion char here:
3045 sprintf (d, "before %-+*.*lld after", arg3, arg4, arg5);
3049 OFFSET_TO_TYPE_START is 13, the offset to the "lld" within the
3052 0000000000111111111122
3053 0123456789012345678901
3054 sprintf (d, "before %-+*.*lld after", arg3, arg4, arg5);
3056 | ` CONVERSION_CHAR: 'd'
3057 type starts here. */
3060 check_format_types (const substring_loc
&fmt_loc
,
3061 format_wanted_type
*types
, const format_kind_info
*fki
,
3062 int offset_to_type_start
,
3063 char conversion_char
,
3064 vec
<location_t
> *arglocs
)
3066 for (; types
!= 0; types
= types
->next
)
3076 wanted_type
= types
->wanted_type
;
3077 arg_num
= types
->arg_num
;
3079 /* The following should not occur here. */
3080 gcc_assert (wanted_type
);
3081 gcc_assert (wanted_type
!= void_type_node
|| types
->pointer_count
);
3083 if (types
->pointer_count
== 0)
3084 wanted_type
= lang_hooks
.types
.type_promotes_to (wanted_type
);
3086 wanted_type
= TYPE_MAIN_VARIANT (wanted_type
);
3088 cur_param
= types
->param
;
3091 format_type_warning (fmt_loc
, UNKNOWN_LOCATION
, types
, wanted_type
,
3092 NULL
, fki
, offset_to_type_start
,
3097 cur_type
= TREE_TYPE (cur_param
);
3098 if (cur_type
== error_mark_node
)
3100 orig_cur_type
= cur_type
;
3103 location_t param_loc
= UNKNOWN_LOCATION
;
3104 if (EXPR_HAS_LOCATION (cur_param
))
3105 param_loc
= EXPR_LOCATION (cur_param
);
3108 /* arg_num is 1-based. */
3109 gcc_assert (types
->arg_num
> 0);
3110 param_loc
= (*arglocs
)[types
->arg_num
- 1];
3113 STRIP_NOPS (cur_param
);
3115 /* Check the types of any additional pointer arguments
3116 that precede the "real" argument. */
3117 for (i
= 0; i
< types
->pointer_count
; ++i
)
3119 if (TREE_CODE (cur_type
) == POINTER_TYPE
)
3121 cur_type
= TREE_TYPE (cur_type
);
3122 if (cur_type
== error_mark_node
)
3125 /* Check for writing through a NULL pointer. */
3126 if (types
->writing_in_flag
3129 && integer_zerop (cur_param
))
3130 warning (OPT_Wformat_
, "writing through null pointer "
3131 "(argument %d)", arg_num
);
3133 /* Check for reading through a NULL pointer. */
3134 if (types
->reading_from_flag
3137 && integer_zerop (cur_param
))
3138 warning (OPT_Wformat_
, "reading through null pointer "
3139 "(argument %d)", arg_num
);
3141 if (cur_param
!= 0 && TREE_CODE (cur_param
) == ADDR_EXPR
)
3142 cur_param
= TREE_OPERAND (cur_param
, 0);
3146 /* See if this is an attempt to write into a const type with
3147 scanf or with printf "%n". Note: the writing in happens
3148 at the first indirection only, if for example
3149 void * const * is passed to scanf %p; passing
3150 const void ** is simply passing an incompatible type. */
3151 if (types
->writing_in_flag
3153 && (TYPE_READONLY (cur_type
)
3155 && (CONSTANT_CLASS_P (cur_param
)
3156 || (DECL_P (cur_param
)
3157 && TREE_READONLY (cur_param
))))))
3158 warning (OPT_Wformat_
, "writing into constant object "
3159 "(argument %d)", arg_num
);
3161 /* If there are extra type qualifiers beyond the first
3162 indirection, then this makes the types technically
3166 && (TYPE_READONLY (cur_type
)
3167 || TYPE_VOLATILE (cur_type
)
3168 || TYPE_ATOMIC (cur_type
)
3169 || TYPE_RESTRICT (cur_type
)))
3170 warning (OPT_Wformat_
, "extra type qualifiers in format "
3171 "argument (argument %d)",
3177 format_type_warning (fmt_loc
, param_loc
,
3178 types
, wanted_type
, orig_cur_type
, fki
,
3179 offset_to_type_start
, conversion_char
);
3184 if (i
< types
->pointer_count
)
3187 cur_type
= TYPE_MAIN_VARIANT (cur_type
);
3189 /* Check whether the argument type is a character type. This leniency
3190 only applies to certain formats, flagged with 'c'. */
3191 if (types
->char_lenient_flag
)
3192 char_type_flag
= (cur_type
== char_type_node
3193 || cur_type
== signed_char_type_node
3194 || cur_type
== unsigned_char_type_node
);
3196 /* Check the type of the "real" argument, if there's a type we want. */
3197 if (lang_hooks
.types_compatible_p (wanted_type
, cur_type
))
3199 /* If we want 'void *', allow any pointer type.
3200 (Anything else would already have got a warning.)
3201 With -Wpedantic, only allow pointers to void and to character
3203 if (wanted_type
== void_type_node
3204 && (!pedantic
|| (i
== 1 && char_type_flag
)))
3206 /* Don't warn about differences merely in signedness, unless
3207 -Wpedantic. With -Wpedantic, warn if the type is a pointer
3208 target and not a character type, and for character types at
3209 a second level of indirection. */
3210 if (TREE_CODE (wanted_type
) == INTEGER_TYPE
3211 && TREE_CODE (cur_type
) == INTEGER_TYPE
3212 && ((!pedantic
&& !warn_format_signedness
)
3213 || (i
== 0 && !warn_format_signedness
)
3214 || (i
== 1 && char_type_flag
))
3215 && (TYPE_UNSIGNED (wanted_type
)
3216 ? wanted_type
== c_common_unsigned_type (cur_type
)
3217 : wanted_type
== c_common_signed_type (cur_type
)))
3219 /* Don't warn about differences merely in signedness if we know
3220 that the current type is integer-promoted and its original type
3221 was unsigned such as that it is in the range of WANTED_TYPE. */
3222 if (TREE_CODE (wanted_type
) == INTEGER_TYPE
3223 && TREE_CODE (cur_type
) == INTEGER_TYPE
3224 && warn_format_signedness
3225 && TYPE_UNSIGNED (wanted_type
)
3226 && cur_param
!= NULL_TREE
3227 && TREE_CODE (cur_param
) == NOP_EXPR
)
3229 tree t
= TREE_TYPE (TREE_OPERAND (cur_param
, 0));
3230 if (TYPE_UNSIGNED (t
)
3231 && cur_type
== lang_hooks
.types
.type_promotes_to (t
))
3234 /* Likewise, "signed char", "unsigned char" and "char" are
3235 equivalent but the above test won't consider them equivalent. */
3236 if (wanted_type
== char_type_node
3237 && (!pedantic
|| i
< 2)
3240 if (types
->scalar_identity_flag
3241 && (TREE_CODE (cur_type
) == TREE_CODE (wanted_type
)
3242 || (INTEGRAL_TYPE_P (cur_type
)
3243 && INTEGRAL_TYPE_P (wanted_type
)))
3244 && TYPE_PRECISION (cur_type
) == TYPE_PRECISION (wanted_type
))
3246 /* Now we have a type mismatch. */
3247 format_type_warning (fmt_loc
, param_loc
, types
,
3248 wanted_type
, orig_cur_type
, fki
,
3249 offset_to_type_start
, conversion_char
);
3253 /* Given type TYPE, attempt to dereference the type N times
3254 (e.g. from ("int ***", 2) to "int *")
3256 Return the derefenced type, with any qualifiers
3257 such as "const" stripped from the result, or
3258 NULL if unsuccessful (e.g. TYPE is not a pointer type). */
3261 deref_n_times (tree type
, int n
)
3265 for (int i
= n
; i
> 0; i
--)
3267 if (TREE_CODE (type
) != POINTER_TYPE
)
3269 type
= TREE_TYPE (type
);
3271 /* Strip off any "const" etc. */
3272 return build_qualified_type (type
, 0);
3275 /* Lookup the format code for FORMAT_LEN within FLI,
3276 returning the string code for expressing it, or NULL
3277 if it is not found. */
3280 get_modifier_for_format_len (const format_length_info
*fli
,
3281 enum format_lengths format_len
)
3283 for (; fli
->name
; fli
++)
3285 if (fli
->index
== format_len
)
3287 if (fli
->double_index
== format_len
)
3288 return fli
->double_name
;
3295 namespace selftest
{
3298 test_get_modifier_for_format_len ()
3301 get_modifier_for_format_len (printf_length_specs
, FMT_LEN_h
));
3303 get_modifier_for_format_len (printf_length_specs
, FMT_LEN_hh
));
3305 get_modifier_for_format_len (printf_length_specs
, FMT_LEN_L
));
3307 get_modifier_for_format_len (printf_length_specs
, FMT_LEN_none
));
3310 } // namespace selftest
3312 #endif /* CHECKING_P */
3314 /* Determine if SPEC_TYPE and ARG_TYPE are sufficiently similar for a
3315 format_type_detail using SPEC_TYPE to be offered as a suggestion for
3316 Wformat type errors where the argument has type ARG_TYPE. */
3319 matching_type_p (tree spec_type
, tree arg_type
)
3321 gcc_assert (spec_type
);
3322 gcc_assert (arg_type
);
3324 /* If any of the types requires structural equality, we can't compare
3325 their canonical types. */
3326 if (TYPE_STRUCTURAL_EQUALITY_P (spec_type
)
3327 || TYPE_STRUCTURAL_EQUALITY_P (arg_type
))
3330 spec_type
= TYPE_CANONICAL (spec_type
);
3331 arg_type
= TYPE_CANONICAL (arg_type
);
3333 if (TREE_CODE (spec_type
) == INTEGER_TYPE
3334 && TREE_CODE (arg_type
) == INTEGER_TYPE
3335 && (TYPE_UNSIGNED (spec_type
)
3336 ? spec_type
== c_common_unsigned_type (arg_type
)
3337 : spec_type
== c_common_signed_type (arg_type
)))
3340 return spec_type
== arg_type
;
3343 /* Subroutine of get_format_for_type.
3345 Generate a string containing the length modifier and conversion specifier
3346 that should be used to format arguments of type ARG_TYPE within FKI
3347 (effectively the inverse of the checking code).
3349 If CONVERSION_CHAR is not zero (the first pass), the resulting suggestion
3350 is required to use it, for correcting bogus length modifiers.
3351 If CONVERSION_CHAR is zero (the second pass), then allow any suggestion
3352 that matches ARG_TYPE.
3354 If successful, returns a non-NULL string which should be freed
3356 Otherwise, returns NULL. */
3359 get_format_for_type_1 (const format_kind_info
*fki
, tree arg_type
,
3360 char conversion_char
)
3362 gcc_assert (arg_type
);
3364 const format_char_info
*spec
;
3365 for (spec
= &fki
->conversion_specs
[0];
3369 if (conversion_char
)
3370 if (!strchr (spec
->format_chars
, conversion_char
))
3373 tree effective_arg_type
= deref_n_times (arg_type
,
3374 spec
->pointer_count
);
3375 if (!effective_arg_type
)
3377 for (int i
= 0; i
< FMT_LEN_MAX
; i
++)
3379 const format_type_detail
*ftd
= &spec
->types
[i
];
3382 if (matching_type_p (*ftd
->type
, effective_arg_type
))
3384 const char *len_modifier
3385 = get_modifier_for_format_len (fki
->length_char_specs
,
3386 (enum format_lengths
)i
);
3390 if (conversion_char
)
3391 /* We found a match, using the given conversion char - the
3392 length modifier was incorrect (or absent).
3393 Provide a suggestion using the conversion char with the
3394 correct length modifier for the type. */
3395 return xasprintf ("%s%c", len_modifier
, conversion_char
);
3397 /* 2nd pass: no match was possible using the user-provided
3398 conversion char, but we do have a match without using it.
3399 Provide a suggestion using the first conversion char
3400 listed for the given type. */
3401 return xasprintf ("%s%c", len_modifier
, spec
->format_chars
[0]);
3409 /* Generate a string containing the length modifier and conversion specifier
3410 that should be used to format arguments of type ARG_TYPE within FKI
3411 (effectively the inverse of the checking code).
3413 If successful, returns a non-NULL string which should be freed
3415 Otherwise, returns NULL. */
3418 get_format_for_type (const format_kind_info
*fki
, tree arg_type
,
3419 char conversion_char
)
3421 gcc_assert (arg_type
);
3422 gcc_assert (conversion_char
);
3424 /* First pass: look for a format_char_info containing CONVERSION_CHAR
3425 If we find one, then presumably the length modifier was incorrect
3427 char *result
= get_format_for_type_1 (fki
, arg_type
, conversion_char
);
3431 /* Second pass: we didn't find a match for CONVERSION_CHAR, so try
3432 matching just on the type. */
3433 return get_format_for_type_1 (fki
, arg_type
, '\0');
3436 /* Attempt to get a string for use as a replacement fix-it hint for the
3437 source range in FMT_LOC.
3439 Preserve all of the text within the range of FMT_LOC up to
3440 OFFSET_TO_TYPE_START, replacing the rest with an appropriate
3441 length modifier and conversion specifier for ARG_TYPE, attempting
3442 to keep the user-provided CONVERSION_CHAR if possible.
3444 For example, given a long vs long long mismatch for arg5 here:
3446 000000000111111111122222222223333333333|
3447 123456789012345678901234567890123456789` column numbers
3448 0000000000111111111122|
3449 0123456789012345678901` string offsets
3450 V~~~~~~~~ : range of FMT_LOC, from cols 23-31
3451 sprintf (d, "before %-+*.*lld after", arg3, arg4, arg5);
3453 | ` CONVERSION_CHAR: 'd'
3456 where OFFSET_TO_TYPE_START is 13 (the offset to the "lld" within the
3457 STRING_CST), where the user provided:
3459 the result (assuming "long" argument 5) should be:
3462 If successful, returns a non-NULL string which should be freed
3464 Otherwise, returns NULL. */
3467 get_corrected_substring (const substring_loc
&fmt_loc
,
3468 format_wanted_type
*type
, tree arg_type
,
3469 const format_kind_info
*fki
,
3470 int offset_to_type_start
, char conversion_char
)
3472 /* Attempt to provide hints for argument types, but not for field widths
3476 if (type
->kind
!= CF_KIND_FORMAT
)
3479 /* Locate the current code within the source range, rejecting
3480 any awkward cases where the format string occupies more than
3482 Lookup the place where the type starts (including any length
3483 modifiers), getting it as the caret location. */
3484 substring_loc
type_loc (fmt_loc
);
3485 type_loc
.set_caret_index (offset_to_type_start
);
3487 location_t fmt_substring_loc
;
3488 const char *err
= type_loc
.get_location (&fmt_substring_loc
);
3492 source_range fmt_substring_range
3493 = get_range_from_loc (line_table
, fmt_substring_loc
);
3495 expanded_location caret
3496 = expand_location_to_spelling_point (fmt_substring_loc
);
3497 expanded_location start
3498 = expand_location_to_spelling_point (fmt_substring_range
.m_start
);
3499 expanded_location finish
3500 = expand_location_to_spelling_point (fmt_substring_range
.m_finish
);
3501 if (caret
.file
!= start
.file
)
3503 if (start
.file
!= finish
.file
)
3505 if (caret
.line
!= start
.line
)
3507 if (start
.line
!= finish
.line
)
3509 if (start
.column
> caret
.column
)
3511 if (start
.column
> finish
.column
)
3513 if (caret
.column
> finish
.column
)
3516 char_span line
= location_get_source_line (start
.file
, start
.line
);
3520 /* If we got this far, then we have the line containing the
3521 existing conversion specification.
3523 Generate a trimmed copy, containing the prefix part of the conversion
3524 specification, up to the (but not including) the length modifier.
3525 In the above example, this would be "%-+*.*". */
3526 int length_up_to_type
= caret
.column
- start
.column
;
3527 char_span prefix_span
= line
.subspan (start
.column
- 1, length_up_to_type
);
3528 char *prefix
= prefix_span
.xstrdup ();
3530 /* Now attempt to generate a suggestion for the rest of the specification
3531 (length modifier and conversion char), based on ARG_TYPE and
3533 In the above example, this would be "ld". */
3534 char *format_for_type
= get_format_for_type (fki
, arg_type
, conversion_char
);
3535 if (!format_for_type
)
3541 /* Success. Generate the resulting suggestion for the whole range of
3542 FMT_LOC by concatenating the two strings.
3543 In the above example, this would be "%-+*.*ld". */
3544 char *result
= concat (prefix
, format_for_type
, NULL
);
3545 free (format_for_type
);
3550 /* Give a warning about a format argument of different type from that expected.
3551 The range of the diagnostic is taken from WHOLE_FMT_LOC; the caret location
3552 is based on the location of the char at TYPE->offset_loc.
3553 PARAM_LOC is the location of the relevant argument, or UNKNOWN_LOCATION
3554 if this is unavailable.
3555 WANTED_TYPE is the type the argument should have,
3556 possibly stripped of pointer dereferences. The description (such as "field
3557 precision"), the placement in the format string, a possibly more
3558 friendly name of WANTED_TYPE, and the number of pointer dereferences
3559 are taken from TYPE. ARG_TYPE is the type of the actual argument,
3560 or NULL if it is missing.
3562 OFFSET_TO_TYPE_START is the offset within the execution-charset encoded
3563 format string to where type information begins for the conversion
3564 (the length modifier and conversion specifier).
3565 CONVERSION_CHAR is the user-provided conversion specifier.
3567 For example, given a type mismatch for argument 5 here:
3569 00000000011111111112222222222333333333344444444445555555555|
3570 12345678901234567890123456789012345678901234567890123456789` column numbers
3571 0000000000111111111122|
3572 0123456789012345678901` offsets within STRING_CST
3573 V~~~~~~~~ : range of WHOLE_FMT_LOC, from cols 23-31
3574 sprintf (d, "before %-+*.*lld after", int_expr, int_expr, long_expr);
3576 | ` CONVERSION_CHAR: 'd' PARAM_LOC
3579 OFFSET_TO_TYPE_START is 13, the offset to the "lld" within the
3583 format_type_warning (const substring_loc
&whole_fmt_loc
,
3584 location_t param_loc
,
3585 format_wanted_type
*type
,
3586 tree wanted_type
, tree arg_type
,
3587 const format_kind_info
*fki
,
3588 int offset_to_type_start
,
3589 char conversion_char
)
3591 enum format_specifier_kind kind
= type
->kind
;
3592 const char *wanted_type_name
= type
->wanted_type_name
;
3593 const char *format_start
= type
->format_start
;
3594 int format_length
= type
->format_length
;
3595 int pointer_count
= type
->pointer_count
;
3596 int arg_num
= type
->arg_num
;
3599 /* If ARG_TYPE is a typedef with a misleading name (for example,
3600 size_t but not the standard size_t expected by printf %zu), avoid
3601 printing the typedef name. */
3602 if (wanted_type_name
3604 && TYPE_NAME (arg_type
)
3605 && TREE_CODE (TYPE_NAME (arg_type
)) == TYPE_DECL
3606 && DECL_NAME (TYPE_NAME (arg_type
))
3607 && !strcmp (wanted_type_name
,
3608 lang_hooks
.decl_printable_name (TYPE_NAME (arg_type
), 2)))
3609 arg_type
= TYPE_MAIN_VARIANT (arg_type
);
3610 /* The format type and name exclude any '*' for pointers, so those
3611 must be formatted manually. For all the types we currently have,
3612 this is adequate, but formats taking pointers to functions or
3613 arrays would require the full type to be built up in order to
3614 print it with %T. */
3615 p
= (char *) alloca (pointer_count
+ 2);
3616 if (pointer_count
== 0)
3618 else if (c_dialect_cxx ())
3620 memset (p
, '*', pointer_count
);
3621 p
[pointer_count
] = 0;
3626 memset (p
+ 1, '*', pointer_count
);
3627 p
[pointer_count
+ 1] = 0;
3630 /* WHOLE_FMT_LOC has the caret at the end of the range.
3631 Set the caret to be at the offset from TYPE. Subtract one
3632 from the offset for the same reason as in format_warning_at_char. */
3633 substring_loc
fmt_loc (whole_fmt_loc
);
3634 fmt_loc
.set_caret_index (type
->offset_loc
- 1);
3636 /* Get a string for use as a replacement fix-it hint for the range in
3637 fmt_loc, or NULL. */
3638 char *corrected_substring
3639 = get_corrected_substring (fmt_loc
, type
, arg_type
, fki
,
3640 offset_to_type_start
, conversion_char
);
3642 if (wanted_type_name
)
3645 format_warning_at_substring
3646 (fmt_loc
, param_loc
,
3647 corrected_substring
, OPT_Wformat_
,
3648 "%s %<%s%.*s%> expects argument of type %<%s%s%>, "
3649 "but argument %d has type %qT",
3650 gettext (kind_descriptions
[kind
]),
3651 (kind
== CF_KIND_FORMAT
? "%" : ""),
3652 format_length
, format_start
,
3653 wanted_type_name
, p
, arg_num
, arg_type
);
3655 format_warning_at_substring
3656 (fmt_loc
, param_loc
,
3657 corrected_substring
, OPT_Wformat_
,
3658 "%s %<%s%.*s%> expects a matching %<%s%s%> argument",
3659 gettext (kind_descriptions
[kind
]),
3660 (kind
== CF_KIND_FORMAT
? "%" : ""),
3661 format_length
, format_start
, wanted_type_name
, p
);
3666 format_warning_at_substring
3667 (fmt_loc
, param_loc
,
3668 corrected_substring
, OPT_Wformat_
,
3669 "%s %<%s%.*s%> expects argument of type %<%T%s%>, "
3670 "but argument %d has type %qT",
3671 gettext (kind_descriptions
[kind
]),
3672 (kind
== CF_KIND_FORMAT
? "%" : ""),
3673 format_length
, format_start
,
3674 wanted_type
, p
, arg_num
, arg_type
);
3676 format_warning_at_substring
3677 (fmt_loc
, param_loc
,
3678 corrected_substring
, OPT_Wformat_
,
3679 "%s %<%s%.*s%> expects a matching %<%T%s%> argument",
3680 gettext (kind_descriptions
[kind
]),
3681 (kind
== CF_KIND_FORMAT
? "%" : ""),
3682 format_length
, format_start
, wanted_type
, p
);
3685 free (corrected_substring
);
3689 /* Given a format_char_info array FCI, and a character C, this function
3690 returns the index into the conversion_specs where that specifier's
3691 data is located. The character must exist. */
3693 find_char_info_specifier_index (const format_char_info
*fci
, int c
)
3697 for (i
= 0; fci
->format_chars
; i
++, fci
++)
3698 if (strchr (fci
->format_chars
, c
))
3701 /* We shouldn't be looking for a non-existent specifier. */
3705 /* Given a format_length_info array FLI, and a character C, this
3706 function returns the index into the conversion_specs where that
3707 modifier's data is located. The character must exist. */
3709 find_length_info_modifier_index (const format_length_info
*fli
, int c
)
3713 for (i
= 0; fli
->name
; i
++, fli
++)
3714 if (strchr (fli
->name
, c
))
3717 /* We shouldn't be looking for a non-existent modifier. */
3721 /* Determine the type of HOST_WIDE_INT in the code being compiled for
3722 use in GCC's __asm_fprintf__ custom format attribute. You must
3723 have set dynamic_format_types before calling this function. */
3725 init_dynamic_asm_fprintf_info (void)
3731 format_length_info
*new_asm_fprintf_length_specs
;
3734 /* Find the underlying type for HOST_WIDE_INT. For the %w
3735 length modifier to work, one must have issued: "typedef
3736 HOST_WIDE_INT __gcc_host_wide_int__;" in one's source code
3737 prior to using that modifier. */
3738 hwi
= maybe_get_identifier ("__gcc_host_wide_int__");
3741 error ("%<__gcc_host_wide_int__%> is not defined as a type");
3744 hwi
= identifier_global_value (hwi
);
3745 if (!hwi
|| TREE_CODE (hwi
) != TYPE_DECL
)
3747 error ("%<__gcc_host_wide_int__%> is not defined as a type");
3750 hwi
= DECL_ORIGINAL_TYPE (hwi
);
3752 if (hwi
!= long_integer_type_node
&& hwi
!= long_long_integer_type_node
)
3754 error ("%<__gcc_host_wide_int__%> is not defined as %<long%>"
3755 " or %<long long%>");
3759 /* Create a new (writable) copy of asm_fprintf_length_specs. */
3760 new_asm_fprintf_length_specs
= (format_length_info
*)
3761 xmemdup (asm_fprintf_length_specs
,
3762 sizeof (asm_fprintf_length_specs
),
3763 sizeof (asm_fprintf_length_specs
));
3765 /* HOST_WIDE_INT must be one of 'long' or 'long long'. */
3766 i
= find_length_info_modifier_index (new_asm_fprintf_length_specs
, 'w');
3767 if (hwi
== long_integer_type_node
)
3768 new_asm_fprintf_length_specs
[i
].index
= FMT_LEN_l
;
3769 else if (hwi
== long_long_integer_type_node
)
3770 new_asm_fprintf_length_specs
[i
].index
= FMT_LEN_ll
;
3774 /* Assign the new data for use. */
3775 dynamic_format_types
[asm_fprintf_format_type
].length_char_specs
=
3776 new_asm_fprintf_length_specs
;
3780 /* Determine the type of a "locus" in the code being compiled for use
3781 in GCC's __gcc_gfc__ custom format attribute. You must have set
3782 dynamic_format_types before calling this function. */
3784 init_dynamic_gfc_info (void)
3788 static format_char_info
*gfc_fci
;
3790 /* For the GCC __gcc_gfc__ custom format specifier to work, one
3791 must have declared 'locus' prior to using this attribute. If
3792 we haven't seen this declarations then you shouldn't use the
3793 specifier requiring that type. */
3794 if ((locus
= maybe_get_identifier ("locus")))
3796 locus
= identifier_global_value (locus
);
3799 if (TREE_CODE (locus
) != TYPE_DECL
3800 || TREE_TYPE (locus
) == error_mark_node
)
3802 error ("%<locus%> is not defined as a type");
3806 locus
= TREE_TYPE (locus
);
3810 /* Assign the new data for use. */
3812 /* Handle the __gcc_gfc__ format specifics. */
3814 dynamic_format_types
[gcc_gfc_format_type
].conversion_specs
=
3815 gfc_fci
= (format_char_info
*)
3816 xmemdup (gcc_gfc_char_table
,
3817 sizeof (gcc_gfc_char_table
),
3818 sizeof (gcc_gfc_char_table
));
3821 const unsigned i
= find_char_info_specifier_index (gfc_fci
, 'L');
3822 gfc_fci
[i
].types
[0].type
= &locus
;
3823 gfc_fci
[i
].pointer_count
= 1;
3828 /* Determine the types of "tree" and "location_t" in the code being
3829 compiled for use in GCC's diagnostic custom format attributes. You
3830 must have set dynamic_format_types before calling this function. */
3832 init_dynamic_diag_info (void)
3834 /* For the GCC-diagnostics custom format specifiers to work, one
3835 must have declared 'tree' and 'location_t' prior to using those
3836 attributes. If we haven't seen these declarations then
3837 the specifiers requiring these types shouldn't be used.
3838 However we don't force a hard ICE because we may see only one
3839 or the other type. */
3840 if (tree loc
= maybe_get_identifier ("location_t"))
3842 loc
= identifier_global_value (loc
);
3843 if (loc
&& TREE_CODE (loc
) != TYPE_DECL
)
3844 error ("%<location_t%> is not defined as a type");
3847 /* Initialize the global tree node type local to this file. */
3848 if (!local_tree_type_node
3849 || local_tree_type_node
== void_type_node
)
3851 /* We need to grab the underlying 'union tree_node' so peek into
3852 an extra type level. */
3853 if ((local_tree_type_node
= maybe_get_identifier ("tree")))
3855 local_tree_type_node
= identifier_global_value (local_tree_type_node
);
3856 if (local_tree_type_node
)
3858 if (TREE_CODE (local_tree_type_node
) != TYPE_DECL
)
3860 error ("%<tree%> is not defined as a type");
3861 local_tree_type_node
= 0;
3863 else if (TREE_CODE (TREE_TYPE (local_tree_type_node
))
3866 error ("%<tree%> is not defined as a pointer type");
3867 local_tree_type_node
= 0;
3870 local_tree_type_node
=
3871 TREE_TYPE (TREE_TYPE (local_tree_type_node
));
3875 local_tree_type_node
= void_type_node
;
3878 /* Similar to the above but for gcall*. */
3879 if (!local_gcall_ptr_node
3880 || local_gcall_ptr_node
== void_type_node
)
3882 if ((local_gcall_ptr_node
= maybe_get_identifier ("gcall")))
3884 local_gcall_ptr_node
3885 = identifier_global_value (local_gcall_ptr_node
);
3886 if (local_gcall_ptr_node
)
3888 if (TREE_CODE (local_gcall_ptr_node
) != TYPE_DECL
)
3890 error ("%<gcall%> is not defined as a type");
3891 local_gcall_ptr_node
= 0;
3894 local_gcall_ptr_node
= TREE_TYPE (local_gcall_ptr_node
);
3898 local_gcall_ptr_node
= void_type_node
;
3905 static format_length_info
*diag_ls
;
3908 /* Find the underlying type for HOST_WIDE_INT. For the 'w'
3909 length modifier to work, one must have issued: "typedef
3910 HOST_WIDE_INT __gcc_host_wide_int__;" in one's source code
3911 prior to using that modifier. */
3912 if ((hwi
= maybe_get_identifier ("__gcc_host_wide_int__")))
3914 hwi
= identifier_global_value (hwi
);
3917 if (TREE_CODE (hwi
) != TYPE_DECL
)
3919 error ("%<__gcc_host_wide_int__%> is not defined as a type");
3924 hwi
= DECL_ORIGINAL_TYPE (hwi
);
3926 if (hwi
!= long_integer_type_node
3927 && hwi
!= long_long_integer_type_node
)
3929 error ("%<__gcc_host_wide_int__%> is not defined"
3930 " as %<long%> or %<long long%>");
3937 /* Assign the new data for use. */
3939 /* All the GCC diag formats use the same length specs. */
3941 dynamic_format_types
[gcc_diag_format_type
].length_char_specs
=
3942 dynamic_format_types
[gcc_tdiag_format_type
].length_char_specs
=
3943 dynamic_format_types
[gcc_cdiag_format_type
].length_char_specs
=
3944 dynamic_format_types
[gcc_cxxdiag_format_type
].length_char_specs
=
3945 diag_ls
= (format_length_info
*)
3946 xmemdup (gcc_diag_length_specs
,
3947 sizeof (gcc_diag_length_specs
),
3948 sizeof (gcc_diag_length_specs
));
3951 /* HOST_WIDE_INT must be one of 'long' or 'long long'. */
3952 i
= find_length_info_modifier_index (diag_ls
, 'w');
3953 if (hwi
== long_integer_type_node
)
3954 diag_ls
[i
].index
= FMT_LEN_l
;
3955 else if (hwi
== long_long_integer_type_node
)
3956 diag_ls
[i
].index
= FMT_LEN_ll
;
3962 /* It's safe to "re-initialize these to the same values. */
3963 dynamic_format_types
[gcc_diag_format_type
].conversion_specs
=
3964 gcc_diag_char_table
;
3965 dynamic_format_types
[gcc_tdiag_format_type
].conversion_specs
=
3966 gcc_tdiag_char_table
;
3967 dynamic_format_types
[gcc_cdiag_format_type
].conversion_specs
=
3968 gcc_cdiag_char_table
;
3969 dynamic_format_types
[gcc_cxxdiag_format_type
].conversion_specs
=
3970 gcc_cxxdiag_char_table
;
3973 #ifdef TARGET_FORMAT_TYPES
3974 extern const format_kind_info TARGET_FORMAT_TYPES
[];
3977 #ifdef TARGET_OVERRIDES_FORMAT_ATTRIBUTES
3978 extern const target_ovr_attr TARGET_OVERRIDES_FORMAT_ATTRIBUTES
[];
3980 #ifdef TARGET_OVERRIDES_FORMAT_INIT
3981 extern void TARGET_OVERRIDES_FORMAT_INIT (void);
3984 /* Attributes such as "printf" are equivalent to those such as
3985 "gnu_printf" unless this is overridden by a target. */
3986 static const target_ovr_attr gnu_target_overrides_format_attributes
[] =
3988 { "gnu_printf", "printf" },
3989 { "gnu_scanf", "scanf" },
3990 { "gnu_strftime", "strftime" },
3991 { "gnu_strfmon", "strfmon" },
3995 /* Translate to unified attribute name. This is used in decode_format_type and
3996 decode_format_attr. In attr_name the user specified argument is passed. It
3997 returns the unified format name from TARGET_OVERRIDES_FORMAT_ATTRIBUTES
3998 or the attr_name passed to this function, if there is no matching entry. */
4000 convert_format_name_to_system_name (const char *attr_name
)
4004 if (attr_name
== NULL
|| *attr_name
== 0
4005 || strncmp (attr_name
, "gcc_", 4) == 0)
4007 #ifdef TARGET_OVERRIDES_FORMAT_INIT
4008 TARGET_OVERRIDES_FORMAT_INIT ();
4011 #ifdef TARGET_OVERRIDES_FORMAT_ATTRIBUTES
4012 /* Check if format attribute is overridden by target. */
4013 if (TARGET_OVERRIDES_FORMAT_ATTRIBUTES
!= NULL
4014 && TARGET_OVERRIDES_FORMAT_ATTRIBUTES_COUNT
> 0)
4016 for (i
= 0; i
< TARGET_OVERRIDES_FORMAT_ATTRIBUTES_COUNT
; ++i
)
4018 if (cmp_attribs (TARGET_OVERRIDES_FORMAT_ATTRIBUTES
[i
].named_attr_src
,
4021 if (cmp_attribs (TARGET_OVERRIDES_FORMAT_ATTRIBUTES
[i
].named_attr_dst
,
4023 return TARGET_OVERRIDES_FORMAT_ATTRIBUTES
[i
].named_attr_src
;
4027 /* Otherwise default to gnu format. */
4029 gnu_target_overrides_format_attributes
[i
].named_attr_src
!= NULL
;
4032 if (cmp_attribs (gnu_target_overrides_format_attributes
[i
].named_attr_src
,
4035 if (cmp_attribs (gnu_target_overrides_format_attributes
[i
].named_attr_dst
,
4037 return gnu_target_overrides_format_attributes
[i
].named_attr_src
;
4043 /* Handle a "format" attribute; arguments as in
4044 struct attribute_spec.handler. */
4046 handle_format_attribute (tree
*node
, tree
ARG_UNUSED (name
), tree args
,
4047 int flags
, bool *no_add_attrs
)
4050 function_format_info info
;
4052 #ifdef TARGET_FORMAT_TYPES
4053 /* If the target provides additional format types, we need to
4054 add them to FORMAT_TYPES at first use. */
4055 if (TARGET_FORMAT_TYPES
!= NULL
&& !dynamic_format_types
)
4057 dynamic_format_types
= XNEWVEC (format_kind_info
,
4058 n_format_types
+ TARGET_N_FORMAT_TYPES
);
4059 memcpy (dynamic_format_types
, format_types_orig
,
4060 sizeof (format_types_orig
));
4061 memcpy (&dynamic_format_types
[n_format_types
], TARGET_FORMAT_TYPES
,
4062 TARGET_N_FORMAT_TYPES
* sizeof (dynamic_format_types
[0]));
4064 format_types
= dynamic_format_types
;
4065 /* Provide a reference for the first potential external type. */
4066 first_target_format_type
= n_format_types
;
4067 n_format_types
+= TARGET_N_FORMAT_TYPES
;
4071 /* Canonicalize name of format function. */
4072 if (TREE_CODE (TREE_VALUE (args
)) == IDENTIFIER_NODE
)
4073 TREE_VALUE (args
) = canonicalize_attr_name (TREE_VALUE (args
));
4075 if (!decode_format_attr (args
, &info
, 0))
4077 *no_add_attrs
= true;
4081 if (prototype_p (type
))
4083 if (!check_format_string (type
, info
.format_num
, flags
,
4084 no_add_attrs
, info
.format_type
))
4087 if (info
.first_arg_num
!= 0)
4089 unsigned HOST_WIDE_INT arg_num
= 1;
4090 function_args_iterator iter
;
4093 /* Verify that first_arg_num points to the last arg,
4095 FOREACH_FUNCTION_ARGS (type
, arg_type
, iter
)
4098 if (arg_num
!= info
.first_arg_num
)
4100 if (!(flags
& (int) ATTR_FLAG_BUILT_IN
))
4101 error ("args to be formatted is not %<...%>");
4102 *no_add_attrs
= true;
4108 /* Check if this is a strftime variant. Just for this variant
4109 FMT_FLAG_ARG_CONVERT is not set. */
4110 if ((format_types
[info
.format_type
].flags
& (int) FMT_FLAG_ARG_CONVERT
) == 0
4111 && info
.first_arg_num
!= 0)
4113 error ("strftime formats cannot format arguments");
4114 *no_add_attrs
= true;
4118 /* If this is a custom GCC-internal format type, we have to
4119 initialize certain bits at runtime. */
4120 if (info
.format_type
== asm_fprintf_format_type
4121 || info
.format_type
== gcc_gfc_format_type
4122 || info
.format_type
== gcc_diag_format_type
4123 || info
.format_type
== gcc_tdiag_format_type
4124 || info
.format_type
== gcc_cdiag_format_type
4125 || info
.format_type
== gcc_cxxdiag_format_type
)
4127 /* Our first time through, we have to make sure that our
4128 format_type data is allocated dynamically and is modifiable. */
4129 if (!dynamic_format_types
)
4130 format_types
= dynamic_format_types
= (format_kind_info
*)
4131 xmemdup (format_types_orig
, sizeof (format_types_orig
),
4132 sizeof (format_types_orig
));
4134 /* If this is format __asm_fprintf__, we have to initialize
4135 GCC's notion of HOST_WIDE_INT for checking %wd. */
4136 if (info
.format_type
== asm_fprintf_format_type
)
4137 init_dynamic_asm_fprintf_info ();
4138 /* If this is format __gcc_gfc__, we have to initialize GCC's
4139 notion of 'locus' at runtime for %L. */
4140 else if (info
.format_type
== gcc_gfc_format_type
)
4141 init_dynamic_gfc_info ();
4142 /* If this is one of the diagnostic attributes, then we have to
4143 initialize 'location_t' and 'tree' at runtime. */
4144 else if (info
.format_type
== gcc_diag_format_type
4145 || info
.format_type
== gcc_tdiag_format_type
4146 || info
.format_type
== gcc_cdiag_format_type
4147 || info
.format_type
== gcc_cxxdiag_format_type
)
4148 init_dynamic_diag_info ();
4158 namespace selftest
{
4160 /* Selftests of location handling. */
4162 /* Get the format_kind_info with the given name. */
4164 static const format_kind_info
*
4165 get_info (const char *name
)
4167 int idx
= decode_format_type (name
);
4168 const format_kind_info
*fki
= &format_types
[idx
];
4169 ASSERT_STREQ (fki
->name
, name
);
4173 /* Verify that get_format_for_type (FKI, TYPE, CONVERSION_CHAR)
4174 is EXPECTED_FORMAT. */
4177 assert_format_for_type_streq (const location
&loc
, const format_kind_info
*fki
,
4178 const char *expected_format
, tree type
,
4179 char conversion_char
)
4182 gcc_assert (expected_format
);
4185 char *actual_format
= get_format_for_type (fki
, type
, conversion_char
);
4186 ASSERT_STREQ_AT (loc
, expected_format
, actual_format
);
4187 free (actual_format
);
4190 /* Selftests for get_format_for_type. */
4192 #define ASSERT_FORMAT_FOR_TYPE_STREQ(EXPECTED_FORMAT, TYPE, CONVERSION_CHAR) \
4193 assert_format_for_type_streq (SELFTEST_LOCATION, (fki), (EXPECTED_FORMAT), \
4194 (TYPE), (CONVERSION_CHAR))
4196 /* Selftest for get_format_for_type for "printf"-style functions. */
4199 test_get_format_for_type_printf ()
4201 const format_kind_info
*fki
= get_info ("gnu_printf");
4202 ASSERT_NE (fki
, NULL
);
4204 ASSERT_FORMAT_FOR_TYPE_STREQ ("f", double_type_node
, 'i');
4205 ASSERT_FORMAT_FOR_TYPE_STREQ ("Lf", long_double_type_node
, 'i');
4206 ASSERT_FORMAT_FOR_TYPE_STREQ ("f", double_type_node
, 'o');
4207 ASSERT_FORMAT_FOR_TYPE_STREQ ("Lf", long_double_type_node
, 'o');
4208 ASSERT_FORMAT_FOR_TYPE_STREQ ("f", double_type_node
, 'x');
4209 ASSERT_FORMAT_FOR_TYPE_STREQ ("Lf", long_double_type_node
, 'x');
4210 ASSERT_FORMAT_FOR_TYPE_STREQ ("f", double_type_node
, 'X');
4211 ASSERT_FORMAT_FOR_TYPE_STREQ ("Lf", long_double_type_node
, 'X');
4212 ASSERT_FORMAT_FOR_TYPE_STREQ ("d", integer_type_node
, 'd');
4213 ASSERT_FORMAT_FOR_TYPE_STREQ ("i", integer_type_node
, 'i');
4214 ASSERT_FORMAT_FOR_TYPE_STREQ ("o", integer_type_node
, 'o');
4215 ASSERT_FORMAT_FOR_TYPE_STREQ ("x", integer_type_node
, 'x');
4216 ASSERT_FORMAT_FOR_TYPE_STREQ ("X", integer_type_node
, 'X');
4217 ASSERT_FORMAT_FOR_TYPE_STREQ ("d", unsigned_type_node
, 'd');
4218 ASSERT_FORMAT_FOR_TYPE_STREQ ("i", unsigned_type_node
, 'i');
4219 ASSERT_FORMAT_FOR_TYPE_STREQ ("o", unsigned_type_node
, 'o');
4220 ASSERT_FORMAT_FOR_TYPE_STREQ ("x", unsigned_type_node
, 'x');
4221 ASSERT_FORMAT_FOR_TYPE_STREQ ("X", unsigned_type_node
, 'X');
4222 ASSERT_FORMAT_FOR_TYPE_STREQ ("ld", long_integer_type_node
, 'd');
4223 ASSERT_FORMAT_FOR_TYPE_STREQ ("li", long_integer_type_node
, 'i');
4224 ASSERT_FORMAT_FOR_TYPE_STREQ ("lx", long_integer_type_node
, 'x');
4225 ASSERT_FORMAT_FOR_TYPE_STREQ ("lo", long_unsigned_type_node
, 'o');
4226 ASSERT_FORMAT_FOR_TYPE_STREQ ("lx", long_unsigned_type_node
, 'x');
4227 ASSERT_FORMAT_FOR_TYPE_STREQ ("lld", long_long_integer_type_node
, 'd');
4228 ASSERT_FORMAT_FOR_TYPE_STREQ ("lli", long_long_integer_type_node
, 'i');
4229 ASSERT_FORMAT_FOR_TYPE_STREQ ("llo", long_long_unsigned_type_node
, 'o');
4230 ASSERT_FORMAT_FOR_TYPE_STREQ ("llx", long_long_unsigned_type_node
, 'x');
4231 ASSERT_FORMAT_FOR_TYPE_STREQ ("s", build_pointer_type (char_type_node
), 'i');
4234 /* Selftest for get_format_for_type for "scanf"-style functions. */
4237 test_get_format_for_type_scanf ()
4239 const format_kind_info
*fki
= get_info ("gnu_scanf");
4240 ASSERT_NE (fki
, NULL
);
4241 ASSERT_FORMAT_FOR_TYPE_STREQ ("d", build_pointer_type (integer_type_node
), 'd');
4242 ASSERT_FORMAT_FOR_TYPE_STREQ ("u", build_pointer_type (unsigned_type_node
), 'u');
4243 ASSERT_FORMAT_FOR_TYPE_STREQ ("ld",
4244 build_pointer_type (long_integer_type_node
), 'd');
4245 ASSERT_FORMAT_FOR_TYPE_STREQ ("lu",
4246 build_pointer_type (long_unsigned_type_node
), 'u');
4247 ASSERT_FORMAT_FOR_TYPE_STREQ
4248 ("lld", build_pointer_type (long_long_integer_type_node
), 'd');
4249 ASSERT_FORMAT_FOR_TYPE_STREQ
4250 ("llu", build_pointer_type (long_long_unsigned_type_node
), 'u');
4251 ASSERT_FORMAT_FOR_TYPE_STREQ ("e", build_pointer_type (float_type_node
), 'e');
4252 ASSERT_FORMAT_FOR_TYPE_STREQ ("le", build_pointer_type (double_type_node
), 'e');
4255 #undef ASSERT_FORMAT_FOR_TYPE_STREQ
4257 /* Run all of the selftests within this file. */
4262 test_get_modifier_for_format_len ();
4263 test_get_format_for_type_printf ();
4264 test_get_format_for_type_scanf ();
4267 } // namespace selftest
4269 #endif /* CHECKING_P */
4271 #include "gt-c-family-c-format.h"