-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathflag_cocci.ml
88 lines (71 loc) · 2.61 KB
/
flag_cocci.ml
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
(*
* Copyright 2014, INRIA
* Julia Lawall
* This file is part of Cgen. Much of it comes from Coccinelle, which is
* also available under the GPLv2 license
*
* Cgen 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, according to version 2 of the License.
*
* Cgen 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 Cgen. If not, see <http://www.gnu.org/licenses/>.
*
* The authors reserve the right to distribute this or future versions of
* Cgen under other licenses.
*)
# 0 "./flag_cocci.ml"
(*
* Copyright 2013, Inria
* Suman Saha, Julia Lawall, Gilles Muller
* This file is part of Cgum.
*
* Cgum 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, according to version 2 of the License.
*
* Cgum 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 Cgum. If not, see <http://www.gnu.org/licenses/>.
*
* The authors reserve the right to distribute this or future versions of
* Cgum under other licenses.
*)
(* the inputs *)
let show_c = ref false
let show_cocci = ref false
(* the output *)
let show_diff = ref true
(* the derived inputs *)
let show_flow = ref false
let show_before_fixed_flow = ref false
let show_ctl_tex = ref false
let show_ctl_text = ref false
let inline_let_ctl = ref false
let show_mcodekind_in_ctl = ref false
(* the "underived" outputs *)
let show_binding_in_out = ref false
let show_dependencies = ref false
let verbose_cocci = ref true
let windows = ref false
let popl = ref false
let ifdef_to_if = ref true(*false*)
type include_options =
I_UNSPECIFIED | I_NO_INCLUDES | I_NORMAL_INCLUDES | I_ALL_INCLUDES
let include_options = ref I_UNSPECIFIED
let include_path = ref (None : string option)
(* if true then when have a #include "../../xx.h", we look also for xx.h in
* current directory. This is because of how works extract_c_and_res
*)
let relax_include_path = ref false
let timeout = ref (None : int option)
let worth_trying_opt = ref true