Release coccinelle-0.2.4
[bpt/coccinelle.git] / main.ml
CommitLineData
9bc82bae
C
1(*
2 * Copyright 2010, INRIA, University of Copenhagen
3 * Julia Lawall, Rene Rydhof Hansen, Gilles Muller, Nicolas Palix
4 * Copyright 2005-2009, Ecole des Mines de Nantes, University of Copenhagen
5 * Yoann Padioleau, Julia Lawall, Rene Rydhof Hansen, Henrik Stuart, Gilles Muller, Nicolas Palix
6 * This file is part of Coccinelle.
7 *
8 * Coccinelle is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, according to version 2 of the License.
11 *
12 * Coccinelle is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with Coccinelle. If not, see <http://www.gnu.org/licenses/>.
19 *
20 * The authors reserve the right to distribute this or future versions of
21 * Coccinelle under other licenses.
22 *)
23
24
c491d8ee
C
25(*
26 * Copyright 2010, INRIA, University of Copenhagen
27 * Julia Lawall, Rene Rydhof Hansen, Gilles Muller, Nicolas Palix
28 * Copyright 2005-2009, Ecole des Mines de Nantes, University of Copenhagen
29 * Yoann Padioleau, Julia Lawall, Rene Rydhof Hansen, Henrik Stuart, Gilles Muller, Nicolas Palix
30 * This file is part of Coccinelle.
31 *
32 * Coccinelle is free software: you can redistribute it and/or modify
33 * it under the terms of the GNU General Public License as published by
34 * the Free Software Foundation, according to version 2 of the License.
35 *
36 * Coccinelle is distributed in the hope that it will be useful,
37 * but WITHOUT ANY WARRANTY; without even the implied warranty of
38 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
39 * GNU General Public License for more details.
40 *
41 * You should have received a copy of the GNU General Public License
42 * along with Coccinelle. If not, see <http://www.gnu.org/licenses/>.
43 *
44 * The authors reserve the right to distribute this or future versions of
45 * Coccinelle under other licenses.
46 *)
47
48
34e49164 49open Common
faf9a90c 50module FC = Flag_cocci
34e49164
C
51
52(*****************************************************************************)
53(* Flags *)
54(*****************************************************************************)
55
56(* In addition to flags that can be tweaked via -xxx options (cf the
57 * full list of options in "the spatch options" section below), the
58 * spatch program also depends on external files, described in
59 * globals/config.ml, mainly a standard.h and standard.iso file *)
60
61let cocci_file = ref ""
62
63let output_file = ref ""
5636bb2c
C
64let inplace_modif = ref false (* but keeps nothing *)
65let backup_suffix =
66 ref (None : string option) (* suffix for backup if one is desired *)
34e49164 67let outplace_modif = ref false (* generates a .cocci_res *)
978fd7e5
C
68let preprocess = ref false (* run the C preprocessor before cocci *)
69let compat_mode = ref false
90aeb998 70let ignore_unknown_opt = ref false
34e49164 71
708f4980 72(* somehow obsolete now *)
978fd7e5 73let dir = ref false
34e49164
C
74
75let include_headers = ref false
76let kbuild_info = ref ""
77
978fd7e5 78let macro_file = ref ""
708f4980 79
34e49164
C
80(* test mode *)
81let test_mode = ref false
82let test_all = ref false
83let test_okfailed = ref false
84let test_regression_okfailed = ref false
708f4980 85let expected_score_file = ref ""
34e49164
C
86
87
88(* action mode *)
89let action = ref ""
90
91(* works with -test but also in "normal" spatch mode *)
92let compare_with_expected = ref false
93
34e49164
C
94let distrib_index = ref (None : int option)
95let distrib_max = ref (None : int option)
96let mod_distrib = ref false
97
98
99(*****************************************************************************)
100(* Profiles *)
101(*****************************************************************************)
102
103(* pair of (list of flags to set true, list of flags to set false *)
ae4735db
C
104let very_quiet_profile = (
105 [
106 ],
107 [
108 (* FC.show_diff; just leave this as it is *)
109
110 Common.print_to_stderr;
111 Flag.show_misc;
112 Flag.show_trying;
113 Flag.show_transinfo;
114
115 FC.show_c;
116 FC.show_cocci;
117 FC.show_flow;
118 FC.show_before_fixed_flow;
119 FC.show_ctl_tex;
120 FC.show_ctl_text;
121 FC.show_binding_in_out;
122
123 FC.verbose_cocci;
124
125 Flag_parsing_c.show_parsing_error;
126
127 Flag_parsing_c.verbose_lexing;
128 Flag_parsing_c.verbose_parsing;
129 Flag_parsing_c.verbose_type;
130 Flag_parsing_c.verbose_cfg;
131 Flag_parsing_c.verbose_unparsing;
132 Flag_parsing_c.verbose_visit;
133 Flag_parsing_c.verbose_cpp_ast;
134
135 Flag_matcher.verbose_matcher;
136 Flag_matcher.debug_engine;
137
138 Flag_parsing_c.debug_unparsing;
139
140 Flag_parsing_cocci.show_SP;
141 Flag_parsing_cocci.show_iso_failures;
142
143 Flag_ctl.verbose_ctl_engine;
144 Flag_ctl.verbose_match;
145
146
147 ])
148
34e49164
C
149let quiet_profile = (
150 [
ae4735db 151 Common.print_to_stderr
34e49164
C
152 ],
153 [
faf9a90c 154 (* FC.show_diff; just leave this as it is *)
34e49164
C
155
156 Flag.show_misc;
157 Flag.show_trying;
faf9a90c 158 Flag.show_transinfo;
34e49164 159
faf9a90c
C
160 FC.show_c;
161 FC.show_cocci;
162 FC.show_flow;
163 FC.show_before_fixed_flow;
164 FC.show_ctl_tex;
165 FC.show_ctl_text;
166 FC.show_binding_in_out;
34e49164 167
708f4980
C
168 FC.verbose_cocci;
169
170 Flag_parsing_c.show_parsing_error;
171
172 Flag_parsing_c.verbose_lexing;
173 Flag_parsing_c.verbose_parsing;
174 Flag_parsing_c.verbose_type;
175 Flag_parsing_c.verbose_cfg;
176 Flag_parsing_c.verbose_unparsing;
177 Flag_parsing_c.verbose_visit;
978fd7e5 178 Flag_parsing_c.verbose_cpp_ast;
708f4980
C
179
180 Flag_matcher.verbose_matcher;
181 Flag_matcher.debug_engine;
182
183 Flag_parsing_c.debug_unparsing;
184
34e49164
C
185 Flag_parsing_cocci.show_SP;
186 Flag_parsing_cocci.show_iso_failures;
708f4980 187
34e49164
C
188 Flag_ctl.verbose_ctl_engine;
189 Flag_ctl.verbose_match;
708f4980
C
190
191
34e49164
C
192 ])
193
faf9a90c
C
194(* some information that is useful in seeing why a semantic patch doesn't
195work properly *)
196let debug_profile = (
197 [
ae4735db 198 Common.print_to_stderr;
faf9a90c 199 Flag.show_misc;
708f4980
C
200 Flag.show_transinfo;
201
faf9a90c
C
202 FC.show_diff;
203 FC.show_cocci;
204 FC.show_binding_in_out;
205 FC.show_dependencies;
708f4980 206
faf9a90c 207 Flag_parsing_cocci.show_iso_failures;
708f4980
C
208
209 FC.verbose_cocci;
210
211 Flag_parsing_c.verbose_cfg;
212 Flag_parsing_c.verbose_unparsing;
213 Flag_parsing_c.verbose_visit;
214
215 Flag_matcher.verbose_matcher;
216
217 Flag_parsing_c.show_parsing_error;
faf9a90c
C
218 ],
219 [
220
221 Flag.show_misc;
222
223 FC.show_c;
224 FC.show_flow;
225 FC.show_before_fixed_flow;
226 FC.show_ctl_tex;
227 FC.show_ctl_text;
228
229 Flag_parsing_cocci.show_SP;
230 Flag_ctl.verbose_ctl_engine;
231 Flag_ctl.verbose_match;
232 Flag_matcher.debug_engine;
233 Flag_parsing_c.debug_unparsing;
234 Flag_parsing_c.verbose_type;
235 Flag_parsing_c.verbose_parsing;
236 ])
237
34e49164
C
238let pad_profile = (
239 [
faf9a90c 240 FC.show_diff;
ae4735db 241 Common.print_to_stderr;
34e49164
C
242 ],
243 [
244
245 Flag.show_misc;
faf9a90c 246 Flag.show_transinfo;
34e49164 247
faf9a90c
C
248 FC.show_c;
249 FC.show_cocci;
250 FC.show_flow;
251 FC.show_before_fixed_flow;
252 FC.show_ctl_tex;
253 FC.show_ctl_text;
254 FC.show_binding_in_out;
34e49164
C
255
256 Flag_parsing_cocci.show_SP;
257 Flag_parsing_cocci.show_iso_failures;
258 Flag_ctl.verbose_ctl_engine;
259 Flag_ctl.verbose_match;
485bce71 260 Flag_matcher.debug_engine;
34e49164
C
261 Flag_parsing_c.debug_unparsing;
262 Flag_parsing_c.verbose_type;
263 Flag_parsing_c.verbose_parsing;
264 ])
265
faf9a90c
C
266let run_profile p =
267 let (set_to_true, set_to_false) = p in
268 List.iter (fun x -> x := false) set_to_false;
269 List.iter (fun x -> x := true) set_to_true
270
34e49164
C
271(*****************************************************************************)
272(* The spatch options *)
273(*****************************************************************************)
274
978fd7e5
C
275let usage_msg =
276 "Usage: " ^ basename Sys.argv.(0) ^
277 " -sp_file <SP> <infile> [-o <outfile>] [-iso_file <iso>] [options]" ^
34e49164
C
278 "\n" ^ "Options are:"
279
280(* forward reference trick *)
281let short_usage_func = ref (fun () -> ())
282let long_usage_func = ref (fun () -> ())
283
284
285(* The short_options are user-oriented. The other options are for
286 * the developers of coccinelle or advanced-users that know
287 * quite well the underlying semantics of coccinelle.
288 *)
978fd7e5 289
34e49164
C
290
291(* will be printed when use only ./spatch. For the rest you have to
978fd7e5 292 * use -longhelp to see them.
34e49164 293 *)
978fd7e5
C
294let short_options = [
295 "-sp_file", Arg.Set_string cocci_file,
34e49164
C
296 " <file> the semantic patch file";
297
298 "-o", Arg.Set_string output_file,
299 " <file> the output file";
5636bb2c 300 "-in_place", Arg.Set inplace_modif,
34e49164 301 " do the modification on the file directly";
5636bb2c
C
302 "-backup_suffix", Arg.String (function s -> backup_suffix := Some s),
303 " suffix to use when making a backup for inplace";
304 "-out_place", Arg.Set outplace_modif,
34e49164
C
305 " store modifications in a .cocci_res file";
306
978fd7e5 307 "-U", Arg.Int (fun n -> Flag_parsing_c.diff_lines := Some (i_to_s n)),
34e49164 308 " set number of diff context lines";
978fd7e5 309 "-partial_match", Arg.Set Flag_ctl.partial_match,
34e49164
C
310 " report partial matches of the SP on the C file";
311
978fd7e5 312 "-iso_file", Arg.Set_string Config.std_iso,
34e49164 313 " <file> (default=" ^ !Config.std_iso ^")";
708f4980
C
314 "-macro_file", Arg.Set_string macro_file,
315 " <file>";
316 "-macro_file_builtins", Arg.Set_string Config.std_h,
34e49164
C
317 " <file> (default=" ^ !Config.std_h ^ ")";
318
1eddfd50
C
319 "-recursive_includes",
320 Arg.Unit (function _ -> FC.include_options := FC.I_REALLY_ALL_INCLUDES),
321 " causes all available include files, both those included in the C file(s) and those included in header files, to be used";
faf9a90c
C
322 "-all_includes",
323 Arg.Unit (function _ -> FC.include_options := FC.I_ALL_INCLUDES),
1eddfd50 324 " causes all available include files included in the C file(s) to be used";
faf9a90c
C
325 "-no_includes",
326 Arg.Unit (function _ -> FC.include_options := FC.I_NO_INCLUDES),
34e49164 327 " causes not even local include files to be used";
faf9a90c
C
328 "-local_includes",
329 Arg.Unit (function _ -> FC.include_options := FC.I_NORMAL_INCLUDES),
330 " causes local include files to be used";
90aeb998
C
331 "-ignore_unknown_options", Arg.Set ignore_unknown_opt,
332 " For integration in a toolchain (must be set before the first unknown option)";
faf9a90c
C
333 "-include_headers", Arg.Set include_headers,
334 " process header files independently";
c3e37e97
C
335 "-I", Arg.String (fun x ->
336 FC.include_path:= x::!FC.include_path
337 ),
b1b2de81 338 " <dir> containing the header files (optional)";
34e49164 339
978fd7e5
C
340 "-preprocess", Arg.Set preprocess,
341 " run the C preprocessor before applying the semantic match";
342
343 "-c", Arg.Set compat_mode, " gcc/cpp compatibility mode";
34e49164
C
344
345 "-dir", Arg.Set dir,
346 " <dir> process all files in directory recursively";
347
951c7801 348 "-use_glimpse", Arg.Unit (function _ -> Flag.scanner := Flag.Glimpse),
34e49164 349 " works with -dir, use info generated by glimpseindex";
951c7801
C
350 "-use_google", Arg.String (function s -> Flag.scanner := Flag.Google s),
351 " find relevant files using google code search";
1eddfd50
C
352 "-use_idutils", Arg.Unit (function s -> Flag.scanner := Flag.IdUtils),
353 " find relevant files using id-utils";
c3e37e97
C
354 "-patch",
355 Arg.String (function s -> Flag.patch := Some (Cocci.normalize_path s)),
34e49164
C
356 (" <dir> path name with respect to which a patch should be created\n"^
357 " \"\" for a file in the current directory");
978fd7e5 358 "-kbuild_info", Arg.Set_string kbuild_info,
34e49164
C
359 " <file> improve -dir by grouping related c files";
360 "-pyoutput", Arg.Set_string Flag.pyoutput,
361 " Sets output routine: Standard values: <coccilib.output.Gtk|coccilib.output.Console>";
362
363
978fd7e5 364 "-version", Arg.Unit (fun () ->
7f004419
C
365 let withpython = if Pycocci.python_support then "with" else "without" in
366 pr2 (spf "spatch version %s %s Python support" Config.version withpython);
34e49164 367 exit 0;
978fd7e5 368 ),
34e49164
C
369 " guess what";
370
978fd7e5 371 "-date", Arg.Unit (fun () ->
1eddfd50 372 pr2 "version: $Date: 2010/11/13 21:06:27 $";
34e49164 373 raise (Common.UnixExit 0)
978fd7e5 374 ),
34e49164
C
375 " guess what";
376
978fd7e5 377 "-shorthelp", Arg.Unit (fun () ->
34e49164
C
378 !short_usage_func();
379 raise (Common.UnixExit 0)
978fd7e5 380 ),
34e49164 381 " see short list of options";
978fd7e5 382 "-longhelp", Arg.Unit (fun () ->
34e49164
C
383 !long_usage_func();
384 raise (Common.UnixExit 0)
978fd7e5 385 ),
34e49164 386 " see all the available options in different categories";
978fd7e5 387 "-help", Arg.Unit (fun () ->
34e49164
C
388 !long_usage_func();
389 raise (Common.UnixExit 0)
390 ),
391 " ";
978fd7e5 392 "--help", Arg.Unit (fun () ->
34e49164
C
393 !long_usage_func();
394 raise (Common.UnixExit 0)
395 ),
396 " ";
34e49164
C
397]
398
399(* the format is a list of triples:
400 * (title of section * (optional) explanation of sections * option list)
401 *)
402let other_options = [
978fd7e5 403 "aliases and obsolete options",
34e49164 404 "",
978fd7e5 405 [
708f4980
C
406 "-sp", Arg.Set_string cocci_file, " short option of -sp_file";
407 "-iso", Arg.Set_string Config.std_iso, " short option of -iso_file";
408
978fd7e5 409 "-cocci_file", Arg.Set_string cocci_file,
34e49164 410 " <file> the semantic patch file";
978fd7e5 411(* "-c", Arg.Set_string cocci_file, " short option of -sp_file"; *)
34e49164
C
412 ];
413
978fd7e5 414 "most useful show options",
34e49164
C
415 "",
416 [
faf9a90c
C
417 "-show_diff" , Arg.Set FC.show_diff, " ";
418 "-no_show_diff" , Arg.Clear FC.show_diff, " ";
419 "-show_flow" , Arg.Set FC.show_flow, " ";
420 (* works in conjunction with -show_ctl_text *)
978fd7e5 421 "-ctl_inline_let",
faf9a90c
C
422 Arg.Unit
423 (function _ -> FC.show_ctl_text := true; FC.inline_let_ctl := true), " ";
424 "-ctl_show_mcodekind",
425 Arg.Unit
426 (function _ -> FC.show_ctl_text := true; FC.show_mcodekind_in_ctl := true),
427 " ";
428 "-show_bindings", Arg.Set FC.show_binding_in_out, " ";
429 "-show_transinfo", Arg.Set Flag.show_transinfo, " ";
430 "-show_misc", Arg.Set Flag.show_misc, " ";
34e49164
C
431 "-show_trying", Arg.Set Flag.show_trying,
432 " show the name of each function being processed";
1be43e12 433 "-show_dependencies",
faf9a90c
C
434 Arg.Unit (function _ -> FC.show_dependencies := true;
435 FC.show_binding_in_out := true),
1be43e12 436 " show the dependencies related to each rule";
34e49164
C
437 ];
438
978fd7e5 439 "verbose subsystems options",
34e49164
C
440 "",
441 [
faf9a90c
C
442 "-verbose_ctl_engine",
443 Arg.Unit (function _ ->
444 Flag_ctl.verbose_ctl_engine := true; FC.show_ctl_text := true) , " ";
485bce71
C
445 "-verbose_match", Arg.Set Flag_ctl.verbose_match, " ";
446 "-verbose_engine", Arg.Set Flag_matcher.debug_engine, " ";
447 "-graphical_trace", Arg.Set Flag_ctl.graphical_trace, " generate a pdf file representing the matching process";
faf9a90c
C
448 "-gt_without_label",
449 Arg.Unit (function _ ->
450 Flag_ctl.graphical_trace := true; Flag_ctl.gt_without_label := true),
451 " remove graph label (requires option -graphical_trace)";
34e49164 452
ae4735db
C
453 "-parse_error_msg", Arg.Set Flag_parsing_c.show_parsing_error, " ";
454 "-verbose_parsing",
455 Arg.Unit (fun _ -> Flag_parsing_c.verbose_parsing := true;
456 Flag_parsing_c.show_parsing_error := true), " ";
faf9a90c 457 "-type_error_msg", Arg.Set Flag_parsing_c.verbose_type, " ";
34e49164
C
458 (* could also use Flag_parsing_c.options_verbose *)
459 ];
460
461 "other show options",
462 "",
463 [
faf9a90c
C
464 "-show_c" , Arg.Set FC.show_c, " ";
465 "-show_cocci" , Arg.Set FC.show_cocci, " ";
466 "-show_before_fixed_flow" , Arg.Set FC.show_before_fixed_flow, " ";
467 "-show_ctl_tex" , Arg.Set FC.show_ctl_tex, " ";
468 "-show_ctl_text" , Arg.Set FC.show_ctl_text, " ";
469 "-show_SP" , Arg.Set Flag_parsing_cocci.show_SP, " ";
34e49164
C
470 ];
471
472
473 "debug C parsing/unparsing",
474 "",
475 [
476 "-debug_cpp", Arg.Set Flag_parsing_c.debug_cpp, " ";
477 "-debug_lexer", Arg.Set Flag_parsing_c.debug_lexer , " ";
478 "-debug_etdt", Arg.Set Flag_parsing_c.debug_etdt , " ";
479 "-debug_typedef", Arg.Set Flag_parsing_c.debug_typedef, " ";
480
978fd7e5 481 "-filter_msg", Arg.Set Flag_parsing_c.filter_msg ,
34e49164 482 " filter some cpp message when the macro is a \"known\" cpp construct";
978fd7e5
C
483 "-filter_define_error", Arg.Set Flag_parsing_c.filter_define_error," ";
484 "-filter_msg_define_error", Arg.Set Flag_parsing_c.filter_msg_define_error,
708f4980 485 " filter the error msg";
978fd7e5 486 "-filter_passed_level", Arg.Set_int Flag_parsing_c.filter_passed_level," ";
faf9a90c
C
487(* debug cfg doesn't seem to have any effect, so drop it as an option *)
488(* "-debug_cfg", Arg.Set Flag_parsing_c.debug_cfg , " "; *)
978fd7e5 489 "-debug_unparsing", Arg.Set Flag_parsing_c.debug_unparsing, " ";
34e49164
C
490
491 ];
492 (* could use Flag_parsing_c.options_debug_with_title instead *)
493
494
495 "shortcut for enabling/disabling a set of debugging options at once",
496 "",
497 [
498 (* todo: other profile ? *)
faf9a90c 499 "-quiet", Arg.Unit (fun () -> run_profile quiet_profile), " ";
ae4735db 500 "-very_quiet", Arg.Unit (fun () -> run_profile very_quiet_profile), " ";
faf9a90c
C
501 "-debug", Arg.Unit (fun () -> run_profile debug_profile), " ";
502 "-pad", Arg.Unit (fun () -> run_profile pad_profile), " ";
34e49164
C
503
504 ];
505
506 "bench options",
507 "",
508 [
978fd7e5 509 "-profile", Arg.Unit (function () -> Common.profile := Common.PALL) ,
34e49164 510 " gather timing information about the main coccinelle functions";
978fd7e5 511 "-bench", Arg.Int (function x -> Flag_ctl.bench := x),
34e49164 512 " <level> for profiling the CTL engine";
978fd7e5 513 "-timeout", Arg.Int (fun x -> FC.timeout := Some x),
34e49164 514 " <sec> timeout in seconds";
978fd7e5 515 "-steps", Arg.Int (fun x -> Flag_ctl.steps := Some x),
34e49164 516 " max number of model checking steps per code unit";
b1b2de81
C
517 "-iso_limit", Arg.Int (fun x -> Flag_parsing_cocci.iso_limit := Some x),
518 " max depth of iso application";
519 "-no_iso_limit", Arg.Unit (fun _ -> Flag_parsing_cocci.iso_limit := None),
520 " disable limit on max depth of iso application";
34e49164
C
521 "-track_iso", Arg.Set Flag.track_iso_usage,
522 " gather information about isomorphism usage";
413ffc02
C
523 "-disable_iso",
524 Arg.String
525 (fun s -> Flag_parsing_cocci.disabled_isos :=
526 s :: !Flag_parsing_cocci.disabled_isos),
527 " disable a specific isomorphism";
34e49164
C
528 "-profile_iso",
529 Arg.Unit
530 (function () ->
b1b2de81
C
531 Common.profile :=
532 (*post_engine not included, because it doesn't use isos*)
533 PSOME ["parse cocci";"mysat";"asttoctl2";"pre_engine";"full_engine"]),
34e49164
C
534 " gather information about the cost of isomorphism usage"
535 ];
536
537
538
539 "change of algorithm options",
951c7801
C
540 "",
541 [
978fd7e5 542 "-popl", Arg.Set FC.popl,
34e49164
C
543 " simplified SmPL, for the popl paper";
544
545 "-popl_mark_all",
546 Arg.Unit
978fd7e5 547 (function _ -> FC.popl := true; Flag_popl.mark_all := true),
34e49164
C
548 " simplified SmPL, for the popl paper";
549
550 "-popl_keep_all_wits",
551 Arg.Unit
978fd7e5 552 (function _ -> FC.popl := true; Flag_popl.keep_all_wits := true),
34e49164
C
553 " simplified SmPL, for the popl paper";
554
faf9a90c
C
555 "-hrule", Arg.String
556 (function s ->
557 Flag.make_hrule := Some s; FC.include_options := FC.I_NO_INCLUDES),
34e49164
C
558 " semantic patch generation";
559
7f004419
C
560 "-keep_comments", Arg.Set Flag_parsing_c.keep_comments,
561 " keep comments around removed code";
562
34e49164 563 "-loop", Arg.Set Flag_ctl.loop_in_src_code, " ";
978fd7e5
C
564 "-no_loops", Arg.Set Flag_parsing_c.no_loops,
565 " drop all back edges derived from looping constructs - unsafe";
951c7801
C
566 "-no_gotos", Arg.Set Flag_parsing_c.no_gotos,
567 " drop all jumps derived from gotos - unsafe";
34e49164
C
568
569 "-l1", Arg.Clear Flag_parsing_c.label_strategy_2, " ";
978fd7e5 570 "-ifdef_to_if", Arg.Set FC.ifdef_to_if,
485bce71 571 " convert ifdef to if (experimental)";
978fd7e5 572 "-no_ifdef_to_if", Arg.Clear FC.ifdef_to_if,
708f4980
C
573 " convert ifdef to if (experimental)";
574
575 "-disable_multi_pass", Arg.Set Flag_parsing_c.disable_multi_pass, " ";
485bce71 576
978fd7e5 577 "-noif0_passing", Arg.Clear Flag_parsing_c.if0_passing,
34e49164 578 " ";
978fd7e5 579 "-noadd_typedef_root", Arg.Clear Flag_parsing_c.add_typedef_root, " ";
34e49164
C
580 (* could use Flag_parsing_c.options_algo instead *)
581
582
485bce71 583 "-disallow_nested_exps", Arg.Set Flag_matcher.disallow_nested_exps,
7f004419 584 " disallow an expresion pattern from matching a term and its subterm";
faf9a90c 585 "-disable_worth_trying_opt", Arg.Clear FC.worth_trying_opt,
34e49164
C
586 " ";
587 "-only_return_is_error_exit",
485bce71 588 Arg.Set Flag_matcher.only_return_is_error_exit,
34e49164
C
589 "if this flag is not set, then break and continue are also error exits";
590 (* the following is a hack to make it easier to add code in sgrep-like
591 code, essentially to compensate for the fact that we don't have
592 any way of printing things out *)
593 "-allow_inconsistent_paths",
485bce71 594 Arg.Set Flag_matcher.allow_inconsistent_paths,
708f4980 595 " if this flag is set don't check for inconsistent paths; dangerous";
978fd7e5
C
596 "-no_safe_expressions",
597 Arg.Set Flag_matcher.no_safe_expressions,
598 " make an expression disjunction not prioritise the topmost disjunct";
708f4980
C
599 "-int_bits", Arg.Int Flag_parsing_c.set_int_bits,
600 " the number of bits in an unsigned int";
601 "-long_bits", Arg.Int Flag_parsing_c.set_long_bits,
602 " the number of bits in an unsigned long";
603 "-linux_spacing", Arg.Unit Flag_parsing_c.set_linux_spacing,
604 " spacing of + code follows the conventions of Linux";
605 "-smpl_spacing", Arg.Unit Flag_parsing_c.set_smpl_spacing,
606 " spacing of + code follows the semantic patch";
ae4735db 607 "-D", Arg.String Flag.set_defined_virtual_rules,
951c7801 608 " indicate that a virtual rule should be considered to be matched";
34e49164
C
609 ];
610
611 "misc options",
612 "",
613 [
978fd7e5 614 "-debugger", Arg.Set Common.debugger,
34e49164 615 " option to set if launch spatch in ocamldebug";
978fd7e5 616 "-disable_once", Arg.Set Common.disable_pr2_once,
34e49164 617 " to print more messages";
978fd7e5 618 "-show_trace_profile", Arg.Set Common.show_trace_profile,
708f4980 619 " show trace";
978fd7e5 620 "-save_tmp_files", Arg.Set Common.save_tmp_files, " ";
34e49164
C
621 ];
622
623 "concurrency",
624 "",
625 [
978fd7e5 626 "-index", Arg.Int (function x -> distrib_index := Some x) ,
34e49164 627 " the processor to use for this run of spatch";
978fd7e5 628 "-max", Arg.Int (function x -> distrib_max := Some x) ,
34e49164
C
629 " the number of processors available";
630 "-mod_distrib", Arg.Set mod_distrib,
631 " use mod to distribute files among the processors";
632 ];
633
634 "pad options",
635 "",
636 [
978fd7e5 637 "-use_cache", Arg.Set Flag_parsing_c.use_cache,
34e49164
C
638 " use .ast_raw pre-parsed cached C file";
639 (* could use Flag_parsing_c.options_pad instead *)
640 ];
641
642
643
644 "test mode and test options (works with tests/ or .ok files)",
645 "The test options don't work with the -sp_file and so on.",
646 [
978fd7e5 647 "-test", Arg.Set test_mode,
34e49164 648 " <file> launch spatch on tests/file.[c,cocci]";
978fd7e5 649 "-testall", Arg.Set test_all,
34e49164
C
650 " launch spatch on all files in tests/ having a .res";
651 "-test_okfailed", Arg.Set test_okfailed,
652 " generates .{ok,failed,spatch_ok} files using .res files";
653 "-test_regression_okfailed", Arg.Set test_regression_okfailed,
654 " process the .{ok,failed,spatch_ok} files in current dir";
655
978fd7e5
C
656 "-compare_with_expected", Arg.Set compare_with_expected,
657 " use also file.res";
658 "-expected_score_file", Arg.Set_string expected_score_file,
659 " which score file to compare with in -testall";
faf9a90c 660 "-relax_include_path", Arg.Set FC.relax_include_path,
34e49164 661 " ";
34e49164
C
662 ];
663
664 "action mode",
665 ("The action options don't work with the -sp_file and so on." ^ "\n" ^
666 "It's for the other (internal) uses of the spatch program."
667 ),
668
669 (* -token_c, -parse_c, etc *)
670 ((Common.options_of_actions action (Test_parsing_c.actions())) ++
671 [
672 (let s = "-parse_cocci" in s, Arg.Unit (fun () -> action := s),
673 " <file>");
674 (let s = "-compare_c" in s, Arg.Unit (fun () -> action := s),
675 " <file1> <file2>");
676 ]);
677]
678
679
978fd7e5 680let all_options =
34e49164 681 short_options ++ List.concat (List.map Common.thd3 other_options)
978fd7e5 682
34e49164
C
683(* I don't want the -help and --help that are appended by Arg.align *)
684let arg_align2 xs =
685 Arg.align xs +> List.rev +> Common.drop 2 +> List.rev
686
90aeb998
C
687(*
688 Ignore unknown option
689
690 This simplifies the integration of Coccinelle in toolchain. For
691 instance, spatch can then be used as a checker in the Linux build
692 system.
693
694*)
695let check_include_path () =
696 let opt = Array.get Sys.argv !Arg.current in
697 let is_include_re = Str.regexp "-I\\(.*\\)" in
698 if Str.string_match is_include_re opt 0 then
699 let path = Str.matched_group 1 opt in
700 FC.include_path:= path::!FC.include_path
701 else ()
702
703let rec arg_parse_no_fail l f msg =
704 try
705 check_include_path ();
706 Arg.parse_argv Sys.argv l f msg;
707 with
708 | Arg.Bad emsg ->
709 arg_parse_no_fail l f msg
710 | Arg.Help msg -> (* printf "%s" msg; exit 0; *)
711 raise Impossible (* -help is specified in speclist *)
712
34e49164
C
713(* copy paste of Arg.parse. Don't want the default -help msg *)
714let arg_parse2 l f msg =
715 (try
716 Arg.parse_argv Sys.argv l f msg;
717 with
90aeb998
C
718 | Arg.Bad emsg -> (* eprintf "%s" msg; exit 2; *)
719 if not !ignore_unknown_opt then
720 begin
721 let xs = Common.lines emsg in
722 (* take only head, it's where the error msg is *)
723 pr2 (List.hd xs);
724 !short_usage_func();
725 raise (Common.UnixExit (2))
726 end
727 else
728 arg_parse_no_fail l f msg;
34e49164
C
729 | Arg.Help msg -> (* printf "%s" msg; exit 0; *)
730 raise Impossible (* -help is specified in speclist *)
731 )
732
733
734let short_usage () =
735 begin
978fd7e5 736 Common.short_usage usage_msg short_options;
34e49164
C
737 pr2 "";
738 pr2 "Example of use:";
739 pr2 " ./spatch -sp_file foo.cocci foo.c -o /tmp/newfoo.c";
740 pr2 "";
741 end
742
743
978fd7e5 744let long_usage () =
34e49164
C
745 Common.long_usage usage_msg short_options other_options
746
747let _ = short_usage_func := short_usage
748let _ = long_usage_func := long_usage
749
750(*****************************************************************************)
751(* Helpers *)
752(*****************************************************************************)
753
754let adjust_stdin cfile k =
755 if !dir
756 then k()
757 else
978fd7e5 758 let newin =
485bce71
C
759 try
760 let (dir, base, ext) = Common.dbe_of_filename cfile in
761 let varfile = Common.filename_of_dbe (dir, base, "var") in
b1b2de81 762 if ext =$= "c" && Common.lfile_exists varfile
485bce71 763 then Some varfile
978fd7e5 764 else None
485bce71
C
765 with Invalid_argument("Filename.chop_extension") -> None
766 in
34e49164
C
767 Common.redirect_stdin_opt newin k
768
978fd7e5 769let glimpse_filter (coccifile, isofile) dir =
faf9a90c 770 let (_metavars,astcocci,_free_var_lists,_negated_positions,
1eddfd50 771 _used_after_lists,_positions_lists,(_,query,_)) =
34e49164
C
772 Cocci.sp_of_file coccifile (Some isofile) in
773 match query with
1eddfd50 774 None -> pr2 "no inferred glimpse keywords"; None
413ffc02
C
775 | Some queries ->
776 let suffixes = if !include_headers then ["c";"h"] else ["c"] in
777 let rec loop = function
778 [] -> None (* error, eg due to pattern too big *)
779 | query::queries ->
780 Printf.fprintf stderr "%s\n" ("glimpse request = " ^ query);
781 let command = spf "glimpse -y -H %s -N -W -w '%s'" dir query in
782 let (glimpse_res,stat) = Common.cmd_to_list_and_status command in
783 match stat with
784 Unix.WEXITED(0) | Unix.WEXITED(1) ->
1eddfd50 785 Printf.fprintf stderr "got files\n"; flush stderr;
413ffc02
C
786 Some
787 (glimpse_res +>
788 List.filter
789 (fun file -> List.mem (Common.filesuffix file) suffixes))
790 | _ -> loop queries (* error, eg due to pattern too big *) in
791 loop queries
34e49164 792
1eddfd50
C
793let idutils_filter (coccifile, isofile) dir =
794 let (_metavars,astcocci,_free_var_lists,_negated_positions,
795 _used_after_lists,_positions_lists,(_,_,query)) =
796 Cocci.sp_of_file coccifile (Some isofile) in
797 match query with
798 None -> pr2 "no inferred idutils keywords"; None
799 | Some query ->
800 let suffixes = if !include_headers then ["c";"h"] else ["c"] in
801 let files = Id_utils.interpret dir query in
802 Printf.fprintf stderr "got files\n"; flush stderr;
803 Some
804 (files +>
805 List.filter (fun file -> List.mem (Common.filesuffix file) suffixes))
806
34e49164 807(*****************************************************************************)
b1b2de81 808(* Main action *)
34e49164 809(*****************************************************************************)
34e49164 810
978fd7e5 811let main_action xs =
b1b2de81
C
812 match xs with
813 | x::xs ->
708f4980 814
978fd7e5
C
815 (* a more general solution would be to use
816 * Common.files_of_dir_or_files (x::xs)
708f4980
C
817 * as some elements in xs may also be directories, or individual
818 * files.
819 *)
820 if Common.is_directory x
821 then dir := true;
822
823 adjust_stdin x (fun () ->
824 if !cocci_file =$= ""
825 then failwith "I need a cocci file, use -sp_file <file>";
826
827 if !dir && !Flag.patch =*= None
828 then
829 (match xs with
c3e37e97 830 | [] -> Flag.patch := Some (Cocci.normalize_path x)
708f4980
C
831 | _ ->
832 pr2
833 ("warning: patch output can only be created when only one\n"^
834 "directory is specified or when the -patch flag is used")
835 );
aba5c457 836 Flag.dir := x;
708f4980 837
978fd7e5
C
838 let infiles =
839 Common.profile_code "Main.infiles computation" (fun () ->
1eddfd50 840 match !dir, !kbuild_info, !Flag.scanner with
708f4980 841 (* glimpse *)
1eddfd50
C
842 | false, _, (Flag.Glimpse|Flag.IdUtils) ->
843 failwith "-use_glimpse or -id_utils works only with -dir"
844 | true, s, (Flag.Glimpse|Flag.IdUtils) when s <> "" ->
845 failwith "-use_glimpse or -id_utils does not work with -kbuild"
846 | true, "", Flag.Glimpse ->
847 (if not (null xs)
848 then failwith "-use_glimpse can accept only one dir");
708f4980 849
708f4980
C
850 let files =
851 match glimpse_filter (!cocci_file, !Config.std_iso) x with
852 None ->
853 Common.cmd_to_list (* same as "true, "", _" case *)
854 (if !include_headers
855 (* FIXME : Could we remove xs ?
856 -use_glimpse requires a singleton.
857 This is checked some lines before.
858 then ("find "^(join " " (x::xs))^" -name \"*.[ch]\"")
859 else ("find "^(join " " (x::xs))^" -name \"*.c\""))
860 *)
861 then ("find "^ x ^" -name \"*.[ch]\"")
862 else ("find "^ x ^" -name \"*.c\""))
863 | Some files -> files in
864 files +> List.map (fun x -> [x])
1eddfd50
C
865 | true, "", Flag.IdUtils ->
866 (if not (null xs)
867 then failwith "-id_utils can accept only one dir");
868
869 let files =
870 match idutils_filter (!cocci_file, !Config.std_iso) x with
871 None ->
872 Common.cmd_to_list (* same as "true, "", _" case *)
873 (if !include_headers
874 (* FIXME : Could we remove xs ?
875 -use_glimpse requires a singleton.
876 This is checked some lines before.
877 then ("find "^(join " " (x::xs))^" -name \"*.[ch]\"")
878 else ("find "^(join " " (x::xs))^" -name \"*.c\""))
879 *)
880 then ("find "^ x ^" -name \"*.[ch]\"")
881 else ("find "^ x ^" -name \"*.c\""))
882 | Some files -> files in
883 files +> List.map (fun x -> [x])
708f4980
C
884 (* normal *)
885 | false, _, _ -> [x::xs]
978fd7e5 886 | true, "", _ ->
708f4980
C
887 Common.cmd_to_list
888 (if !include_headers
889 then ("find "^(join " " (x::xs))^" -name \"*.[ch]\"")
34e49164 890 else ("find "^(join " " (x::xs))^" -name \"*.c\""))
708f4980
C
891 +> List.map (fun x -> [x])
892
893 (* kbuild *)
978fd7e5
C
894 | true, kbuild_info_file,_ ->
895 let dirs =
896 Common.cmd_to_list ("find "^(join " " (x::xs))^" -type d")
708f4980
C
897 in
898 let info = Kbuild.parse_kbuild_info kbuild_info_file in
899 let groups = Kbuild.files_in_dirs dirs info in
978fd7e5 900
708f4980
C
901 groups +> List.map (function Kbuild.Group xs -> xs)
902 )
903 in
904
905 let infiles =
906 match (!distrib_index,!distrib_max) with
907 (None,None) -> infiles
908 | (Some index,Some max) ->
909 (if index >= max
910 then
911 failwith "index starts at 0, and so must be less than max");
912 if !mod_distrib
913 then
914 let rec loop ct = function
915 [] -> []
916 | x::xs ->
917 if (ct mod max) =|= index
918 then x::(loop (ct+1) xs)
919 else loop (ct+1) xs in
920 loop 0 infiles
921 else
922 begin
923 let all_files = List.length infiles in
924 let regions = (all_files + (max - 1)) / max in
925 let this_min = index * regions in
926 let this_max = (index+1) * regions in
34e49164 927 let rec loop ct = function
708f4980 928 [] -> []
34e49164 929 | x::xs ->
708f4980 930 if this_min <= ct && ct < this_max
34e49164
C
931 then x::(loop (ct+1) xs)
932 else loop (ct+1) xs in
933 loop 0 infiles
708f4980
C
934 end
935 | _ -> failwith "inconsistent distribution information" in
978fd7e5
C
936
937 let outfiles =
708f4980
C
938 Common.profile_code "Main.outfiles computation" (fun () ->
939 let cocci_infos =
940 Cocci.pre_engine (!cocci_file, !Config.std_iso) in
941 let res =
978fd7e5 942 infiles +> List.map (fun cfiles ->
708f4980 943 pr2 ("HANDLING: " ^ (join " " cfiles));
978fd7e5
C
944 Common.timeout_function_opt !FC.timeout (fun () ->
945 Common.report_if_take_time 10 (join " " cfiles) (fun () ->
fc1ad971 946 (*let s = profile_diagnostic() in*)
34e49164 947 (* Unix.sleep 1; *)
978fd7e5
C
948 try
949 let optfile =
950 if !output_file <> "" && !compat_mode then
951 Some !output_file
952 else
953 None
954 in
955 Common.redirect_stdout_opt optfile (fun () ->
956 (* this is the main call *)
957 Cocci.full_engine cocci_infos cfiles
958 )
959 with
960 | Common.UnixExit x -> raise (Common.UnixExit x)
88e71198
C
961 | Pycocci.Pycocciexception ->
962 raise Pycocci.Pycocciexception
978fd7e5 963 | e ->
fc1ad971
C
964 (*pr2 "previous";
965 pr2 s;
966 pr2 "new";
967 pr2(profile_diagnostic());*)
978fd7e5
C
968 if !dir
969 then begin
970 pr2 ("EXN:" ^ Printexc.to_string e);
971 [] (* *)
972 end
973 else raise e))) in
974 Cocci.post_engine cocci_infos;
975 res
976 ) +> List.concat
708f4980
C
977 in
978
978fd7e5 979 Common.profile_code "Main.result analysis" (fun () ->
708f4980 980 Ctlcocci_integration.print_bench();
708f4980 981 let outfiles = Cocci.check_duplicate_modif outfiles in
978fd7e5
C
982 outfiles +> List.iter (fun (infile, outopt) ->
983 outopt +> Common.do_option (fun outfile ->
708f4980
C
984 if !inplace_modif
985 then begin
5636bb2c
C
986 (match !backup_suffix with
987 Some backup_suffix ->
988 Common.command2 ("cp "^infile^" "^infile^backup_suffix)
989 | None -> ());
708f4980
C
990 Common.command2 ("cp "^outfile^" "^infile);
991 end;
992
993 if !outplace_modif
994 then Common.command2 ("cp "^outfile^" "^infile^".cocci_res");
978fd7e5
C
995
996 (* potential source of security pb if the /tmp/ file is
997 * a symlink, so simpler to not produce any regular file
998 * (files created by Common.new_temp_file are still ok)
999 * anymore in /tmp.
1000 *)
1001 (*
1002 if !output_file =$= ""
1003 then begin
1004 let tmpfile = "/tmp/"^Common.basename infile in
1005 pr2 (spf "One file modified. Result is here: %s" tmpfile);
1006 Common.command2 ("cp "^outfile^" "^tmpfile);
1007 end
1008 *)
708f4980 1009 ));
978fd7e5
C
1010 if !output_file <> "" && not !compat_mode then
1011 (match outfiles with
1012 | [infile, Some outfile] when infile =$= x && null xs ->
708f4980 1013 Common.command2 ("cp " ^outfile^ " " ^ !output_file);
978fd7e5 1014 | [infile, None] when infile =$= x && null xs ->
708f4980 1015 Common.command2 ("cp " ^infile^ " " ^ !output_file);
978fd7e5
C
1016 | _ ->
1017 failwith
708f4980
C
1018 ("-o can not be applied because there is multiple " ^
1019 "modified files");
1020 );
708f4980
C
1021 if !compare_with_expected
1022 then Testing.compare_with_expected outfiles))
b1b2de81
C
1023
1024 | [] -> raise Impossible
1025
1026
1027(*****************************************************************************)
1028(* The coccinelle main entry point *)
1029(*****************************************************************************)
978fd7e5 1030let main () =
b1b2de81
C
1031 begin
1032 let arglist = Array.to_list Sys.argv in
1033
1034 if not (null (Common.inter_set arglist
002099fc 1035 ["-cocci_file";"-sp_file";"-sp";"-test";"-testall";
b1b2de81
C
1036 "-test_okfailed";"-test_regression_okfailed"]))
1037 then run_profile quiet_profile;
1038
1039 let args = ref [] in
1040
708f4980
C
1041 (* Gc.set {(Gc.get ()) with Gc.stack_limit = 1024 * 1024};*)
1042
b1b2de81
C
1043 (* this call can set up many global flag variables via the cmd line *)
1044 arg_parse2 (Arg.align all_options) (fun x -> args := x::!args) usage_msg;
1045
708f4980
C
1046 (* julia hack so that one can override directories specified on
1047 * the command line. *)
b1b2de81
C
1048 (if !dir
1049 then
1050 let chosen_dir =
1051 if List.length !args > 1
1052 then
1053 begin
1054 let chosen = List.hd !args in
aba5c457
C
1055 Flag.dir := chosen;
1056 pr2 ("ignoring all but the last specified directory: "^chosen);
1057 args := [chosen];
1058 chosen
b1b2de81
C
1059 end
1060 else List.hd !args in
c3e37e97
C
1061 if !FC.include_path =*= []
1062 then FC.include_path := [Filename.concat chosen_dir "include"]);
708f4980 1063
b1b2de81
C
1064 args := List.rev !args;
1065
1066 if !cocci_file <> "" && (not (!cocci_file =~ ".*\\.\\(sgrep\\|spatch\\)$"))
1067 then cocci_file := Common.adjust_ext_if_needed !cocci_file ".cocci";
1068
978fd7e5 1069 if !Config.std_iso <> ""
b1b2de81 1070 then Config.std_iso := Common.adjust_ext_if_needed !Config.std_iso ".iso";
978fd7e5 1071 if !Config.std_h <> ""
b1b2de81
C
1072 then Config.std_h := Common.adjust_ext_if_needed !Config.std_h ".h";
1073
978fd7e5 1074 if !Config.std_h <> ""
708f4980
C
1075 then Parse_c.init_defs_builtins !Config.std_h;
1076
978fd7e5 1077 if !macro_file <> ""
708f4980 1078 then Parse_c.init_defs_macros !macro_file;
b1b2de81
C
1079
1080
1081 (* must be done after Arg.parse, because Common.profile is set by it *)
978fd7e5 1082 Common.profile_code "Main total" (fun () ->
b1b2de81
C
1083
1084
1085 let all_actions = Test_parsing_c.actions() in
1086
1087 (match (!args) with
1088
1089 (* --------------------------------------------------------- *)
1090 (* The test framework. Works with tests/ or .ok and .failed *)
1091 (* --------------------------------------------------------- *)
978fd7e5 1092 | [x] when !test_mode ->
c3e37e97 1093 begin
aa721442 1094 let prefix = "tests/" in
5636bb2c
C
1095 let testfile = x ^ ".cocci" in
1096 if Sys.file_exists (prefix ^ testfile) then
aa721442 1097 begin
5636bb2c
C
1098 FC.include_path := [prefix^"include"];
1099 Testing.testone prefix x !compare_with_expected
aa721442
C
1100 end
1101 else
5636bb2c
C
1102 if Sys.file_exists testfile then
1103 begin
1104 FC.include_path := ["include"];
1105 Testing.testone "" x !compare_with_expected
1106 end
1107 else
1108 pr2 (spf "ERROR: File %s does not exist" testfile)
c3e37e97 1109 end
b1b2de81 1110
978fd7e5 1111 | [] when !test_all ->
c3e37e97 1112 FC.include_path := ["tests/include"];
708f4980
C
1113 if !expected_score_file <> ""
1114 then Testing.testall ~expected_score_file:!expected_score_file ()
1115 else Testing.testall ()
b1b2de81 1116
978fd7e5 1117 | [] when !test_regression_okfailed ->
b1b2de81
C
1118 Testing.test_regression_okfailed ()
1119
978fd7e5 1120 | x::xs when !test_okfailed ->
b1b2de81
C
1121 (* do its own timeout on FC.timeout internally *)
1122 FC.relax_include_path := true;
978fd7e5 1123 adjust_stdin x (fun () ->
b1b2de81
C
1124 Testing.test_okfailed !cocci_file (x::xs)
1125 )
1126
1127 (* --------------------------------------------------------- *)
1128 (* Actions, useful to debug subpart of coccinelle *)
1129 (* --------------------------------------------------------- *)
1130
1131 | xs when List.mem !action (Common.action_list all_actions) ->
1132 Common.do_action !action xs all_actions
1133
978fd7e5 1134 | [file] when !action =$= "-parse_cocci" ->
b1b2de81
C
1135 Testing.test_parse_cocci file
1136
1137 (* I think this is used by some scripts in some Makefile for our
1138 * big-tests. So dont remove.
1139 *)
978fd7e5 1140 | [file1;file2] when !action =$= "-compare_c" ->
b1b2de81
C
1141 Test_parsing_c.test_compare_c file1 file2 (* result = unix code *)
1142
1143 (* could add the Test_parsing_c.test_actions such as -parse_c & co *)
1144
1145
1146 (* --------------------------------------------------------- *)
1147 (* This is the main entry *)
1148 (* --------------------------------------------------------- *)
fc1ad971 1149 | x::xs -> main_action (x::xs)
b1b2de81 1150
34e49164
C
1151 (* --------------------------------------------------------- *)
1152 (* empty entry *)
1153 (* --------------------------------------------------------- *)
1154 | [] -> short_usage()
34e49164
C
1155 ));
1156 if !Pycocci.initialised && (Pycocci.py_isinitialized ()) != 0 then begin
1157 ignore(Pycocci.pyrun_simplestring "cocci.finalise()");
978fd7e5 1158 if !Flag.show_misc
34e49164
C
1159 then Common.pr2 "Finalizing python\n";
1160 Pycocci.py_finalize ();
1161 end
1162 end
1163
708f4980 1164
978fd7e5
C
1165let main_with_better_error_report () =
1166 if !Common.debugger then main ()
1167 else
1168 try
1169 main ()
708f4980 1170 with
aa721442
C
1171 | Unix.Unix_error (e, "stat", filename) ->
1172 pr2
1173 (spf "ERROR: File %s does not exist: %s"
1174 filename (Unix.error_message e));
708f4980 1175 raise (UnixExit (-1))
785a3008 1176 | Parse_cocci.Bad_virt s ->
c491d8ee
C
1177 Common.pr2 (Printf.sprintf "virtual rule %s not supported" s);
1178 raise (UnixExit (-1))
708f4980 1179
34e49164 1180(*****************************************************************************)
708f4980 1181let start =
978fd7e5 1182 Common.main_boilerplate (fun () ->
708f4980 1183 main_with_better_error_report ();
34e49164
C
1184 Ctlcocci_integration.print_bench();
1185 )