Changed in v2: - rename from warning_with_metadata_at to warning_meta - fix test plugins While C++ can have overloads, xgettext can't deal with overloads that have different argument positions, leading to two failures in "make gcc.pot": emit_diagnostic_valist used incompatibly as both --keyword=emit_diagnostic_valist:4 --flag=emit_diagnostic_valist:4:gcc-internal-format and --keyword=emit_diagnostic_valist:5 --flag=emit_diagnostic_valist:5:gcc-internal-format warning_at used incompatibly as both --keyword=warning_at:3 --flag=warning_at:3:gcc-internal-format and --keyword=warning_at:4 --flag=warning_at:4:gcc-internal-format The emit_diagnostic_valist overload isn't used anywhere (I think it's a leftover from an earlier iteration of the analyzer patch kit). The warning_at overload is used throughout the analyzer but nowhere else. Ideally I'd like to consolidate this argument with something constructable in various ways: - from a metadata and an int or - from an int (or, better an "enum opt_code"), so that the overload happens when implicitly choosing the ctor, but that feels like stage 1 material. In the meantime, fix xgettext by deleting the unused overload and renaming the used one. gcc/analyzer/ChangeLog: * region-model.cc (poisoned_value_diagnostic::emit): Update for renaming of warning_at overload to warning_meta. * sm-file.cc (file_leak::emit): Likewise. * sm-malloc.cc (double_free::emit): Likewise. (possible_null_deref::emit): Likewise. (possible_null_arg::emit): Likewise. (null_deref::emit): Likewise. (null_arg::emit): Likewise. (use_after_free::emit): Likewise. (malloc_leak::emit): Likewise. (free_of_non_heap::emit): Likewise. * sm-sensitive.cc (exposure_through_output_file::emit): Likewise. * sm-signal.cc (signal_unsafe_call::emit): Likewise. * sm-taint.cc (tainted_array_index::emit): Likewise. gcc/ChangeLog: * diagnostic-core.h (warning_at): Rename overload to... (warning_meta): ...this. (emit_diagnostic_valist): Delete decl of overload taking diagnostic_metadata. * diagnostic.c (emit_diagnostic_valist): Likewise for defn. (warning_at): Rename overload taking diagnostic_metadata to... (warning_meta): ...this. gcc/testsuite/ChangeLog: * gcc.dg/plugin/diagnostic_plugin_test_metadata.c: Update for renaming of warning_at overload to warning_meta. * gcc.dg/plugin/diagnostic_plugin_test_paths.c: Likewise.
129 lines
5.1 KiB
C++
129 lines
5.1 KiB
C++
/* Declarations of core diagnostic functionality for code that does
|
|
not need to deal with diagnostic contexts or diagnostic info
|
|
structures.
|
|
Copyright (C) 1998-2020 Free Software Foundation, Inc.
|
|
|
|
This file is part of GCC.
|
|
|
|
GCC is free software; you can redistribute it and/or modify it under
|
|
the terms of the GNU General Public License as published by the Free
|
|
Software Foundation; either version 3, or (at your option) any later
|
|
version.
|
|
|
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with GCC; see the file COPYING3. If not see
|
|
<http://www.gnu.org/licenses/>. */
|
|
|
|
#ifndef GCC_DIAGNOSTIC_CORE_H
|
|
#define GCC_DIAGNOSTIC_CORE_H
|
|
|
|
#include "bversion.h"
|
|
|
|
/* Constants used to discriminate diagnostics. */
|
|
typedef enum
|
|
{
|
|
#define DEFINE_DIAGNOSTIC_KIND(K, msgid, C) K,
|
|
#include "diagnostic.def"
|
|
#undef DEFINE_DIAGNOSTIC_KIND
|
|
DK_LAST_DIAGNOSTIC_KIND,
|
|
/* This is used for tagging pragma pops in the diagnostic
|
|
classification history chain. */
|
|
DK_POP
|
|
} diagnostic_t;
|
|
|
|
/* RAII-style class for grouping related diagnostics. */
|
|
|
|
class auto_diagnostic_group
|
|
{
|
|
public:
|
|
auto_diagnostic_group ();
|
|
~auto_diagnostic_group ();
|
|
};
|
|
|
|
/* Forward decl. */
|
|
class diagnostic_metadata; /* See diagnostic-metadata.h. */
|
|
|
|
extern const char *progname;
|
|
|
|
extern const char *trim_filename (const char *);
|
|
|
|
/* If we haven't already defined a front-end-specific diagnostics
|
|
style, use the generic one. */
|
|
#ifndef GCC_DIAG_STYLE
|
|
#define GCC_DIAG_STYLE __gcc_tdiag__
|
|
#endif
|
|
/* None of these functions are suitable for ATTRIBUTE_PRINTF, because
|
|
each language front end can extend them with its own set of format
|
|
specifiers. We must use custom format checks. */
|
|
#if (CHECKING_P && GCC_VERSION >= 4001) || GCC_VERSION == BUILDING_GCC_VERSION
|
|
#define ATTRIBUTE_GCC_DIAG(m, n) __attribute__ ((__format__ (GCC_DIAG_STYLE, m, n))) ATTRIBUTE_NONNULL(m)
|
|
#else
|
|
#define ATTRIBUTE_GCC_DIAG(m, n) ATTRIBUTE_NONNULL(m)
|
|
#endif
|
|
extern void internal_error (const char *, ...) ATTRIBUTE_GCC_DIAG(1,2)
|
|
ATTRIBUTE_NORETURN;
|
|
extern void internal_error_no_backtrace (const char *, ...)
|
|
ATTRIBUTE_GCC_DIAG(1,2) ATTRIBUTE_NORETURN;
|
|
/* Pass one of the OPT_W* from options.h as the first parameter. */
|
|
extern bool warning (int, const char *, ...) ATTRIBUTE_GCC_DIAG(2,3);
|
|
extern bool warning_n (location_t, int, unsigned HOST_WIDE_INT,
|
|
const char *, const char *, ...)
|
|
ATTRIBUTE_GCC_DIAG(4,6) ATTRIBUTE_GCC_DIAG(5,6);
|
|
extern bool warning_n (rich_location *, int, unsigned HOST_WIDE_INT,
|
|
const char *, const char *, ...)
|
|
ATTRIBUTE_GCC_DIAG(4, 6) ATTRIBUTE_GCC_DIAG(5, 6);
|
|
extern bool warning_at (location_t, int, const char *, ...)
|
|
ATTRIBUTE_GCC_DIAG(3,4);
|
|
extern bool warning_at (rich_location *, int, const char *, ...)
|
|
ATTRIBUTE_GCC_DIAG(3,4);
|
|
extern bool warning_meta (rich_location *,
|
|
const diagnostic_metadata &, int,
|
|
const char *, ...)
|
|
ATTRIBUTE_GCC_DIAG(4,5);
|
|
extern void error (const char *, ...) ATTRIBUTE_GCC_DIAG(1,2);
|
|
extern void error_n (location_t, unsigned HOST_WIDE_INT, const char *,
|
|
const char *, ...)
|
|
ATTRIBUTE_GCC_DIAG(3,5) ATTRIBUTE_GCC_DIAG(4,5);
|
|
extern void error_at (location_t, const char *, ...) ATTRIBUTE_GCC_DIAG(2,3);
|
|
extern void error_at (rich_location *, const char *, ...)
|
|
ATTRIBUTE_GCC_DIAG(2,3);
|
|
extern void fatal_error (location_t, const char *, ...) ATTRIBUTE_GCC_DIAG(2,3)
|
|
ATTRIBUTE_NORETURN;
|
|
/* Pass one of the OPT_W* from options.h as the second parameter. */
|
|
extern bool pedwarn (location_t, int, const char *, ...)
|
|
ATTRIBUTE_GCC_DIAG(3,4);
|
|
extern bool pedwarn (rich_location *, int, const char *, ...)
|
|
ATTRIBUTE_GCC_DIAG(3,4);
|
|
extern bool permerror (location_t, const char *, ...) ATTRIBUTE_GCC_DIAG(2,3);
|
|
extern bool permerror (rich_location *, const char *,
|
|
...) ATTRIBUTE_GCC_DIAG(2,3);
|
|
extern void sorry (const char *, ...) ATTRIBUTE_GCC_DIAG(1,2);
|
|
extern void sorry_at (location_t, const char *, ...) ATTRIBUTE_GCC_DIAG(2,3);
|
|
extern void inform (location_t, const char *, ...) ATTRIBUTE_GCC_DIAG(2,3);
|
|
extern void inform (rich_location *, const char *, ...) ATTRIBUTE_GCC_DIAG(2,3);
|
|
extern void inform_n (location_t, unsigned HOST_WIDE_INT, const char *,
|
|
const char *, ...)
|
|
ATTRIBUTE_GCC_DIAG(3,5) ATTRIBUTE_GCC_DIAG(4,5);
|
|
extern void verbatim (const char *, ...) ATTRIBUTE_GCC_DIAG(1,2);
|
|
extern bool emit_diagnostic (diagnostic_t, location_t, int,
|
|
const char *, ...) ATTRIBUTE_GCC_DIAG(4,5);
|
|
extern bool emit_diagnostic (diagnostic_t, rich_location *, int,
|
|
const char *, ...) ATTRIBUTE_GCC_DIAG(4,5);
|
|
extern bool emit_diagnostic_valist (diagnostic_t, location_t, int, const char *,
|
|
va_list *) ATTRIBUTE_GCC_DIAG (4,0);
|
|
extern bool seen_error (void);
|
|
|
|
#ifdef BUFSIZ
|
|
/* N.B. Unlike all the others, fnotice is just gettext+fprintf, and
|
|
therefore it can have ATTRIBUTE_PRINTF. */
|
|
extern void fnotice (FILE *, const char *, ...)
|
|
ATTRIBUTE_PRINTF_2;
|
|
#endif
|
|
|
|
#endif /* ! GCC_DIAGNOSTIC_CORE_H */
|