aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/Cerrors.ml
blob: 8ee13cafb70c9372c747e58c13207c7513f390d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
(* *********************************************************************)
(*                                                                     *)
(*              The Compcert verified compiler                         *)
(*                                                                     *)
(*          Xavier Leroy, INRIA Paris-Rocquencourt                     *)
(*                                                                     *)
(*  Copyright Institut National de Recherche en Informatique et en     *)
(*  Automatique.  All rights reserved.  This file is distributed       *)
(*  under the terms of the GNU General Public License as published by  *)
(*  the Free Software Foundation, either version 2 of the License, or  *)
(*  (at your option) any later version.  This file is also distributed *)
(*  under the terms of the INRIA Non-Commercial License Agreement.     *)
(*                                                                     *)
(* *********************************************************************)

(* Management of errors and warnings *)

open Format
open Commandline

let error_fatal = ref false
let color_diagnostics =
  let term = try Sys.getenv "TERM" with Not_found -> "" in
  ref (Unix.isatty Unix.stderr && term <> "dumb" && term <>"")

let num_errors = ref 0
let num_warnings = ref 0

let reset () = num_errors := 0; num_warnings := 0

exception Abort

(* [fatal_error_raw] is identical to [fatal_error], except it uses [Printf]
   to print its message, as opposed to [Format], and does not automatically
   introduce indentation and a final dot into the message. This is useful
   for multi-line messages. *)

let fatal_error_raw fmt =
  incr num_errors;
  Printf.kfprintf
    (fun _ -> raise Abort)
    stderr
    (fmt ^^ "Fatal error; compilation aborted.\n%!")

type msg_class =
  | WarningMsg
  | ErrorMsg
  | FatalErrorMsg
  | SuppressedMsg

type warning_type =
  | Unnamed
  | Unknown_attribute
  | Zero_length_array
  | Celeven_extension
  | Gnu_empty_struct
  | Missing_declarations
  | Constant_conversion
  | Int_conversion
  | Varargs
  | Implicit_function_declaration
  | Pointer_type_mismatch
  | Compare_distinct_pointer_types
  | Pedantic
  | Main_return_type
  | Invalid_noreturn
  | Return_type
  | Literal_range
  | Unknown_pragmas

let active_warnings: warning_type list ref = ref [
  Unknown_attribute;
  Celeven_extension;
  Gnu_empty_struct;
  Missing_declarations;
  Constant_conversion;
  Int_conversion;
  Varargs;
  Implicit_function_declaration;
  Pointer_type_mismatch;
  Compare_distinct_pointer_types;
  Main_return_type;
  Invalid_noreturn;
  Return_type;
  Literal_range;
]

let error_warnings: warning_type list ref = ref []

let string_of_warning = function
  | Unnamed -> ""
  | Unknown_attribute -> "unknown-attributes"
  | Zero_length_array -> "zero-length-array"
  | Celeven_extension -> "c11-extensions"
  | Gnu_empty_struct -> "gnu-empty-struct"
  | Missing_declarations -> "missing-declarations"
  | Constant_conversion -> "constant_conversion"
  | Int_conversion -> "int-conversion"
  | Varargs -> "varargs"
  | Implicit_function_declaration -> "implicit-function-declaration"
  | Pointer_type_mismatch -> "pointer-type-mismatch"
  | Compare_distinct_pointer_types -> "compare-distinct-pointer-types"
  | Pedantic -> "pedantic"
  | Main_return_type -> "main-return-type"
  | Invalid_noreturn -> "invalid-noreturn"
  | Return_type -> "return-type"
  | Literal_range -> "literal-range"
  | Unknown_pragmas -> "unknown-pragmas"

let activate_warning w () =
  if not (List.mem w !active_warnings) then
    active_warnings:=w::!active_warnings

let deactivate_warning w  () =
  active_warnings:=List.filter ((<>) w) !active_warnings;
  error_warnings:= List.filter ((<>) w) !error_warnings

let warning_as_error w ()=
  activate_warning w ();
  if not (List.mem w !error_warnings) then
    error_warnings := w::!error_warnings

let warning_not_as_error w () =
  error_warnings:= List.filter ((<>) w) !error_warnings

let wall () =
  active_warnings:=[
    Unnamed;
    Unknown_attribute;
    Zero_length_array;
    Celeven_extension;
    Gnu_empty_struct;
    Missing_declarations;
    Constant_conversion;
    Int_conversion;
    Varargs;
    Implicit_function_declaration;
    Pointer_type_mismatch;
    Compare_distinct_pointer_types;
    Pedantic;
    Main_return_type;
    Invalid_noreturn;
    Return_type;
    Literal_range;
    Unknown_pragmas;
  ]

let werror () =
  error_warnings:=[
    Unnamed;
    Unknown_attribute;
    Zero_length_array;
    Celeven_extension;
    Gnu_empty_struct;
    Missing_declarations;
    Constant_conversion;
    Int_conversion;
    Varargs;
    Implicit_function_declaration;
    Pointer_type_mismatch;
    Compare_distinct_pointer_types;
    Pedantic;
    Main_return_type;
    Invalid_noreturn;
    Return_type;
    Literal_range;
    Unknown_pragmas;
  ]


let key_of_warning w =
  match w with
  | Unnamed -> None
  | _ -> Some ("-W"^(string_of_warning w))

let key_add_werror = function
  | None -> Some ("-Werror")
  | Some s -> Some ("-Werror,"^s)

let classify_warning w =
  let key = key_of_warning w in
  if List.mem w !active_warnings then
    if List.mem w !error_warnings then
      let key = key_add_werror key in
      if !error_fatal then
        FatalErrorMsg,key
      else
        ErrorMsg,key
    else
      WarningMsg,key
  else
    SuppressedMsg,None

let cprintf fmt c =
  if  Unix.isatty Unix.stderr && !color_diagnostics then
    fprintf fmt c
  else
    ifprintf fmt c

let rsc fmt =
  cprintf fmt "\x1b[0m"

let bc fmt =
  cprintf fmt "\x1b[1m"

let rc fmt =
  cprintf fmt "\x1b[31;1m"

let mc fmt  =
  cprintf fmt "\x1b35;1m"

let pp_key key fmt =
  let key = match key with
  | None -> ""
  | Some s -> " ["^s^"]" in
  fprintf fmt "%s%t@." key rsc

let pp_loc fmt (filename,lineno) =
  if filename <> "" then
    fprintf fmt "%t%s:%d:%t" bc filename lineno rsc

let error key loc fmt =
  incr num_errors;
  kfprintf (pp_key key)
    err_formatter ("%a %terror:%t: %t" ^^ fmt) pp_loc loc rc rsc bc

let fatal_error key loc fmt =
  incr num_errors;
  kfprintf
    (fun fmt -> pp_key key fmt;raise Abort)
    err_formatter ("%a %terror:%t: %t" ^^ fmt) pp_loc loc rc rsc bc

let warning loc ty fmt =
  let kind,key = classify_warning ty in
  match kind with
  | ErrorMsg ->
      error key loc fmt
  | FatalErrorMsg ->
      fatal_error key loc fmt
  | WarningMsg ->
      incr num_warnings;
      kfprintf (pp_key key)
        err_formatter ("%a %twarning:%tm: %t" ^^ fmt) pp_loc loc mc rsc bc
  | SuppressedMsg -> ifprintf err_formatter fmt

let error loc fmt =
  if !error_fatal then
    fatal_error None loc fmt
  else
    error None loc fmt

let fatal_error loc fmt =
  fatal_error None loc fmt

let check_errors () =
  if !num_errors > 0 then
    eprintf "@[<hov 0>%d error%s detected.@]@."
            !num_errors
            (if !num_errors = 1 then "" else "s");
  !num_errors > 0

let error_option w =
  let key = string_of_warning w in
  [Exact ("-W"^key), Unit (activate_warning w);
   Exact ("-Wno"^key), Unit (deactivate_warning w);
   Exact ("-Werror="^key), Unit ( warning_as_error w);
   Exact ("-Wno-error="^key), Unit ( warning_not_as_error w)]

let warning_options =
  error_option Unnamed @
  error_option Unknown_attribute @
  error_option Zero_length_array @
  error_option Celeven_extension @
  error_option Gnu_empty_struct @
  error_option Missing_declarations @
  error_option Constant_conversion @
  error_option Int_conversion @
  error_option Varargs @
  error_option Implicit_function_declaration @
  error_option Pointer_type_mismatch @
  error_option Compare_distinct_pointer_types @
  error_option Pedantic @
  error_option Main_return_type @
  error_option Invalid_noreturn @
  error_option Return_type @
  error_option Literal_range @
  error_option Unknown_pragmas @
  [Exact ("-Wfatal-errors"), Set error_fatal;
   Exact ("-fdiagnostics-color"), Ignore; (* Either output supports it or no color *)
   Exact ("-fno-diagnostics-color"), Unset color_diagnostics;
   Exact ("-Werror"), Unit werror;
   Exact ("-Wall"), Unit wall;]

let warning_help = "Diagnostic options:\n\
\  -W<warning>        Enable the specific <warning>\n\
\  -Wno-<warning>     Disable the specific <warning>\n\
\  -Werror            Make all warnings into errors\n\
\  -Werror=<warning>  Turn <warning> into an error\n\
\  -Wno-error=<warning> Turn <warning> into a warning even if -Werror is\n\
                        specified\n\
\  -Wfatal-errors     Turn all errors into fatal errors aborting the compilation\n\
\  -fdiagnostics-color Turn on colored diagnostics\n\
\  -fno-diagnostics-color Turn of colored diagnostics\n"