]> git.saurik.com Git - bison.git/blob - src/complain.h
840e7369cf53ad25a75d75f5a475d3e4490d1893
[bison.git] / src / complain.h
1 /* Declaration for error-reporting function for Bison.
2
3 Copyright (C) 2000-2002, 2006, 2009-2012 Free Software Foundation,
4 Inc.
5
6 This program is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18
19 #ifndef COMPLAIN_H_
20 # define COMPLAIN_H_ 1
21
22 # include "location.h"
23
24 /*-------------.
25 | --warnings. |
26 `-------------*/
27
28 typedef enum
29 {
30 Wnone = 0, /**< Issue no warnings. */
31 Wmidrule_values = 1 << 0, /**< Unset or unused midrule values. */
32 Wyacc = 1 << 1, /**< POSIXME. */
33 Wconflicts_sr = 1 << 2, /**< S/R conflicts. */
34 Wconflicts_rr = 1 << 3, /**< R/R conflicts. */
35 Wdeprecated = 1 << 4, /**< Obsolete constructs. */
36 Wother = 1 << 5, /**< All other warnings. */
37
38 Werror = 1 << 10, /** This bit is no longer used. */
39
40 complaint = 1 << 11, /**< All complaints. */
41 fatal = 1 << 12, /**< All fatal errors. */
42 silent = 1 << 13, /**< Do not display the warning type. */
43
44 /**< All above warnings. */
45 Wall = ~complaint & ~fatal & ~silent
46 } warnings;
47
48 /** What warnings are issued. */
49 extern warnings warnings_flag;
50
51 /** What warnings are made errors. */
52 extern warnings errors_flag;
53
54 /** Display a "[-Wyacc]" like message on stderr. */
55 void warnings_print_categories (warnings warn_flags);
56
57 /* Sub-messages indent. */
58 #define SUB_INDENT (4)
59
60 /** Record that a warning is about to be issued, and treat it as an
61 error if <tt>warnings_flag & Werror</tt>. This is exported
62 only for the sake of Yacc-compatible conflict reports in conflicts.c.
63 All other warnings should be implemented in complain.c and should use
64 the normal warning format. */
65 void set_warning_issued (warnings warning);
66
67 /** Make a complaint, but don't specify any location. */
68 void complain (warnings flags, char const *message, ...)
69 __attribute__ ((__format__ (__printf__, 2, 3)));
70
71 /** Make a complaint with location. */
72 void complain_at (location loc, warnings flags, char const *message, ...)
73 __attribute__ ((__format__ (__printf__, 3, 4)));
74
75 /** Make a complaint with location and some indentation. */
76 void complain_at_indent (location loc, warnings flags, unsigned *indent,
77 char const *message, ...)
78 __attribute__ ((__format__ (__printf__, 4, 5)));
79
80 /** Whether an error was reported. */
81 extern bool complaint_issued;
82
83 #endif /* !COMPLAIN_H_ */