Release coccinelle-0.2.4rc6
[bpt/coccinelle.git] / parsing_c / test_parsing_c.ml
CommitLineData
34e49164
C
1open Common
2
91eba41f
C
3open Ast_c
4
34e49164
C
5let score_path = "/home/pad/c-yacfe/tmp"
6
ae4735db 7let tmpfile = "/tmp/output.c"
34e49164 8
708f4980 9module Ast_to_flow = Control_flow_c_build
91eba41f 10
34e49164
C
11(*****************************************************************************)
12(* Subsystem testing *)
13(*****************************************************************************)
14
ae4735db
C
15let test_tokens_c file =
16 if not (file =~ ".*\\.c")
34e49164
C
17 then pr2 "warning: seems not a .c file";
18
ae4735db 19 Flag_parsing_c.debug_lexer := true;
34e49164
C
20 Flag_parsing_c.verbose_lexing := true;
21 Flag_parsing_c.verbose_parsing := true;
22
23 Parse_c.tokens file +> List.iter (fun x -> pr2_gen x);
24 ()
ae4735db 25
34e49164
C
26
27
28(* ---------------------------------------------------------------------- *)
ae4735db
C
29let test_parse_gen xs ext =
30
34e49164
C
31 Flag_parsing_c.debug_typedef := true;
32 Flag_parsing_c.debug_cpp := true;
33 Flag_parsing_c.debug_etdt := false;
34 Flag_parsing_c.filter_msg := true;
35
413ffc02 36 (*let dirname_opt =
34e49164
C
37 match xs with
38 | [x] when is_directory x -> Some x
39 | _ -> None
413ffc02 40 in*)
34e49164
C
41
42 (* old:
ae4735db 43 let xs = if !Flag.dir then
34e49164
C
44 process_output_to_list ("find " ^ x ^" -name \"*.c\"") else x::xs in
45 *)
485bce71 46 let fullxs = Common.files_of_dir_or_files_no_vcs ext xs in
34e49164
C
47
48 let stat_list = ref [] in
49 let newscore = Common.empty_score () in
50
485bce71 51 Common.check_stack_nbfiles (List.length fullxs);
34e49164 52
ae4735db 53 fullxs +> List.iter (fun file ->
34e49164
C
54 if not (file =~ (".*\\."^ext))
55 then pr2 ("warning: seems not a ."^ext^" file");
56
57
58 pr2 "";
59 pr2 ("PARSING: " ^ file);
60
978fd7e5 61 let (xs, stat) = Parse_c.parse_c_and_cpp file in
ae4735db 62 xs +> List.iter (fun (ast, (s, toks)) ->
34e49164
C
63 Parse_c.print_commentized toks
64 );
65
66 Common.push2 stat stat_list;
ae4735db
C
67 let s =
68 sprintf "bad = %d, timeout = %B"
485bce71 69 stat.Parsing_stat.bad stat.Parsing_stat.have_timeout
34e49164 70 in
b1b2de81 71 if stat.Parsing_stat.bad =|= 0 && not stat.Parsing_stat.have_timeout
34e49164
C
72 then Hashtbl.add newscore file (Common.Ok)
73 else Hashtbl.add newscore file (Common.Pb s)
74 );
951c7801
C
75
76(* uses an explicit path; to fix
ae4735db 77 dirname_opt +> Common.do_option (fun dirname ->
91eba41f 78 pr2_xxxxxxxxxxxxxxxxx();
34e49164 79 pr2 "regression testing information";
91eba41f 80 pr2_xxxxxxxxxxxxxxxxx();
34e49164
C
81 let str = Str.global_replace (Str.regexp "/") "__" dirname in
82 let def = if !Flag_parsing_c.filter_define_error then "_def_" else "" in
b1b2de81 83 let ext = if ext =$= "c" then "" else ext in
951c7801
C
84 let filename = "score_parsing__" ^str ^ def ^ ext ^ ".marshalled" in
85 if Sys.file_exists filename
86 then
ae4735db 87 Common.regression_testing newscore
951c7801
C
88 (Filename.concat score_path
89 ("score_parsing__" ^str ^ def ^ ext ^ ".marshalled"))
708f4980 90 );
951c7801 91*)
708f4980 92
ae4735db
C
93 if not (null !stat_list)
94 then begin
708f4980
C
95 Parsing_stat.print_recurring_problematic_tokens !stat_list;
96 Parsing_stat.print_parsing_stat_list !stat_list;
97 end;
98 ()
34e49164
C
99
100
fc1ad971 101let test_parse_c xs =
34e49164 102 test_parse_gen xs "c"
ae4735db 103let test_parse_h xs =
34e49164 104 test_parse_gen xs "h"
ae4735db 105let test_parse_ch xs =
34e49164
C
106 test_parse_gen xs "[ch]"
107
ae4735db 108(* could use a simpler parser than heavy parse_c_and_cpp here as there
978fd7e5
C
109 * is no more cpp stuff in the .i files
110 *)
ae4735db 111let test_parse_i xs =
978fd7e5 112 test_parse_gen xs "i"
34e49164
C
113
114
115
116
117
118
119
120(* ---------------------------------------------------------------------- *)
121(* file can be "foo.c" or "foo.c:main" *)
c491d8ee
C
122(* local function that is parameterized by whether to launch gv *)
123let local_test_cfg launchgv file =
ae4735db 124 let (file, specific_func) =
34e49164 125 if file =~ "\\(.*\\.c\\):\\(.*\\)"
ae4735db
C
126 then
127 let (a,b) = matched2 file in
34e49164 128 a, Some b
ae4735db 129 else
34e49164
C
130 file, None
131 in
132
ae4735db 133 if not (file =~ ".*\\.c")
34e49164
C
134 then pr2 "warning: seems not a .c file";
135
978fd7e5 136 let (program, _stat) = Parse_c.parse_c_and_cpp file in
34e49164 137
ae4735db
C
138 program +> List.iter (fun (e,_) ->
139 let toprocess =
34e49164
C
140 match specific_func, e with
141 | None, _ -> true
ae4735db 142 | Some s, Ast_c.Definition (defbis,_) ->
b1b2de81 143 s =$= Ast_c.str_of_name (defbis.Ast_c.f_name)
ae4735db 144 | _, _ -> false
34e49164 145 in
ae4735db 146
34e49164 147 if toprocess
ae4735db 148 then
34e49164 149 (* old: Flow_to_ast.test !Flag.show_flow def *)
ae4735db 150 (try
34e49164 151 let flow = Ast_to_flow.ast_to_control_flow e in
ae4735db 152 flow +> do_option (fun flow ->
34e49164
C
153 Ast_to_flow.deadcode_detection flow;
154 let flow = Ast_to_flow.annotate_loop_nodes flow in
155
ae4735db 156 let flow' =
34e49164 157(*
ae4735db 158 if !Flag_cocci.show_before_fixed_flow
34e49164
C
159 then flow
160 else Ctlcocci_integration.fix_flow_ctl flow
161*)
162 flow
163 in
485bce71 164 let filename = Filename.temp_file "output" ".dot" in
c491d8ee 165 Ograph_extended.print_ograph_mutable flow' (filename) launchgv
34e49164
C
166 )
167 with Ast_to_flow.Error (x) -> Ast_to_flow.report_error x
168 )
169 )
170
c491d8ee
C
171let test_cfg = local_test_cfg true
172
34e49164
C
173
174
ae4735db 175let test_cfg_ifdef file =
978fd7e5 176 let (ast2, _stat) = Parse_c.parse_c_and_cpp file in
91eba41f
C
177 let ast = Parse_c.program_of_program2 ast2 in
178
179 let ast = Cpp_ast_c.cpp_ifdef_statementize ast in
180
ae4735db
C
181 ast +> List.iter (fun e ->
182 (try
91eba41f 183 let flow = Ast_to_flow.ast_to_control_flow e in
ae4735db 184 flow +> do_option (fun flow ->
91eba41f
C
185 Ast_to_flow.deadcode_detection flow;
186 let flow = Ast_to_flow.annotate_loop_nodes flow in
187 Ograph_extended.print_ograph_mutable flow ("/tmp/output.dot") true
188 )
189 with Ast_to_flow.Error (x) -> Ast_to_flow.report_error x
190 )
191 )
192
34e49164 193(* ---------------------------------------------------------------------- *)
ae4735db
C
194let test_parse_unparse infile =
195 if not (infile =~ ".*\\.c")
34e49164
C
196 then pr2 "warning: seems not a .c file";
197
978fd7e5 198 let (program2, _stat) = Parse_c.parse_c_and_cpp infile in
ae4735db 199 let program2_with_ppmethod =
485bce71 200 program2 +> List.map (fun x -> x, Unparse_c.PPnormal)
34e49164 201 in
485bce71 202 Unparse_c.pp_program program2_with_ppmethod tmpfile;
34e49164
C
203 Common.command2 ("cat " ^ tmpfile);
204 (* if want see diff of space => no -b -B *)
205 Common.command2 (spf "diff -u -p %s %s" infile tmpfile);
206 (* +> Transformation.test_simple_trans1;*)
34e49164
C
207 ()
208
209
1eddfd50 210(*
ae4735db 211let parse_and_print_sexp file =
978fd7e5
C
212 let (ast2,_stat) = Parse_c.parse_c_and_cpp file in
213 let ast = Parse_c.program_of_program2 ast2 in
ae4735db 214 let _ast =
978fd7e5
C
215 Type_annoter_c.annotate_program !Type_annoter_c.initial_env ast
216 in
217
218 (*
219 let sexp = Sexp_ast_c.sexp_of_program ast in
220 let s = Sexp.to_string_hum sexp in
221 *)
222 Sexp_ast_c.show_info := false;
223 let s = Sexp_ast_c.string_of_program ast in
224 pr2 s;
225 ()
1eddfd50 226*)
34e49164
C
227
228
ae4735db
C
229let test_type_c infile =
230 if not (infile =~ ".*\\.c")
34e49164
C
231 then pr2 "warning: seems not a .c file";
232
233 Flag_parsing_c.pretty_print_type_info := true;
234
978fd7e5 235 let (program2, _stat) = Parse_c.parse_c_and_cpp infile in
34e49164 236 let _program2 =
ae4735db
C
237 program2
238 +> Common.unzip
239 +> (fun (program, infos) ->
240 Type_annoter_c.annotate_program !Type_annoter_c.initial_env
34e49164
C
241 program +> List.map fst,
242 infos
243 )
244 +> Common.uncurry Common.zip
245 in
ae4735db 246 let program2_with_ppmethod =
485bce71 247 program2 +> List.map (fun x -> x, Unparse_c.PPnormal)
34e49164 248 in
485bce71 249 Unparse_c.pp_program program2_with_ppmethod tmpfile;
34e49164
C
250 Common.command2 ("cat " ^ tmpfile);
251 ();;
252
253
0708f913
C
254(* ---------------------------------------------------------------------- *)
255(* ex: demos/platform_ifdef.c *)
ae4735db 256let test_comment_annotater infile =
978fd7e5 257 let (program2, _stat) = Parse_c.parse_c_and_cpp infile in
0708f913 258 let asts = program2 +> List.map (fun (ast,_) -> ast) in
ae4735db 259 let toks = program2 +> List.map (fun (ast, (s, toks)) -> toks) +>
0708f913
C
260 List.flatten in
261
262 Flag_parsing_c.pretty_print_comment_info := true;
263
264 pr2 "pretty print, before comment annotation: --->";
ae4735db
C
265 Common.adjust_pp_with_indent (fun () ->
266 asts +> List.iter (fun ast ->
0708f913
C
267 Pretty_print_c.pp_toplevel_simple ast;
268 );
269 );
270
271 let _ = Comment_annotater_c.annotate_program toks asts in
272
ae4735db 273 Common.adjust_pp_with_indent (fun () ->
0708f913 274 pr2 "pretty print, after comment annotation: --->";
ae4735db 275 asts +> List.iter (fun ast ->
0708f913
C
276 Pretty_print_c.pp_toplevel_simple ast;
277 );
278 );
279
280
281 ()
ae4735db
C
282
283
34e49164
C
284(* ---------------------------------------------------------------------- *)
285(* used by generic_makefile now *)
ae4735db 286let test_compare_c file1 file2 =
34e49164
C
287 let (correct, diffxs) = Compare_c.compare_default file1 file2 in
288 let res = Compare_c.compare_result_to_bool correct in
ae4735db 289 if res
34e49164
C
290 then raise (Common.UnixExit 0)
291 else raise (Common.UnixExit (-1))
292
293
294let test_compare_c_hardcoded () =
ae4735db
C
295 Compare_c.compare_default
296 "tests/compare1.c"
297 "tests/compare2.c"
34e49164 298 (*
ae4735db
C
299 "tests/equal_modulo1.c"
300 "tests/equal_modulo2.c"
34e49164 301 *)
ae4735db 302 +> Compare_c.compare_result_to_string
34e49164
C
303 +> pr2
304
305
306
91eba41f 307(* ---------------------------------------------------------------------- *)
ae4735db 308let test_attributes file =
91eba41f
C
309 let (ast2, _stat) = Parse_c.parse_c_and_cpp file in
310 let ast = Parse_c.program_of_program2 ast2 in
311
312 Visitor_c.vk_program { Visitor_c.default_visitor_c with
ae4735db 313 Visitor_c.kdef = (fun (k, bigf) (defbis, ii) ->
91eba41f 314 let sattr = Ast_c.s_of_attr defbis.f_attr in
b1b2de81 315 pr2 (spf "%-30s: %s" (Ast_c.str_of_name (defbis.f_name)) sattr);
91eba41f 316 );
ae4735db 317 Visitor_c.kdecl = (fun (k, bigf) decl ->
91eba41f 318 match decl with
ae4735db
C
319 | DeclList (xs, ii) ->
320 xs +> List.iter (fun (onedecl, iicomma) ->
321
91eba41f 322 let sattr = Ast_c.s_of_attr onedecl.v_attr in
ae4735db 323 let idname =
91eba41f 324 match onedecl.v_namei with
b1b2de81 325 | Some (name, ini) -> Ast_c.str_of_name name
91eba41f
C
326 | None -> "novar"
327 in
328 pr2 (spf "%-30s: %s" idname sattr);
329 );
330 | _ -> ()
ae4735db 331
91eba41f
C
332 );
333 } ast;
334 ()
335
336
337let cpp_options () = [
338 Cpp_ast_c.I "/home/yyzhou/pad/linux/include";
ae4735db
C
339] ++
340 Cpp_ast_c.cpp_option_of_cmdline
91eba41f
C
341 (!Flag_parsing_c.cpp_i_opts,!Flag_parsing_c.cpp_d_opts)
342
ae4735db 343let test_cpp file =
91eba41f
C
344 let (ast2, _stat) = Parse_c.parse_c_and_cpp file in
345 let dirname = Filename.dirname file in
346 let ast = Parse_c.program_of_program2 ast2 in
978fd7e5
C
347 let ast = Cpp_ast_c.cpp_expand_include (cpp_options()) dirname ast in
348 let _ast = Cpp_ast_c.cpp_ifdef_statementize ast in
ae4735db
C
349
350
91eba41f
C
351 ()
352
353
354
ae4735db 355(* CONFIG [ch] ? also do for .c ? maybe less needed now that I
978fd7e5
C
356 * add local_macros.
357 *)
ae4735db
C
358let extract_macros ~selection dir =
359 let ext = "h" in
978fd7e5 360 let fullxs = Common.files_of_dir_or_files_no_vcs ext [dir] in
ae4735db
C
361 let macros_and_filename =
362 fullxs +> List.map (fun file ->
978fd7e5
C
363 pr2 (spf "processing: %s" file);
364 let xs = Parse_c.extract_macros file in
365 file, xs
366 )
367 in
368
ae4735db 369 let macros =
978fd7e5 370 if selection
ae4735db 371 then Cpp_analysis_c.extract_dangerous_macros macros_and_filename
978fd7e5
C
372 else macros_and_filename
373 in
ae4735db 374 macros +> List.iter (fun (file, defs) ->
708f4980 375 pr ("/* PARSING: " ^ file ^ " */");
ae4735db 376 defs +> List.iter (fun (s, def) ->
978fd7e5
C
377 let str = Cpp_token_c.string_of_define_def def in
378 pr str;
379 )
380 );
381 ()
382
383
ae4735db 384let test_parse xs =
978fd7e5
C
385
386 Flag_parsing_c.filter_msg_define_error := true;
387 Flag_parsing_c.filter_define_error := true;
388 Flag_parsing_c.verbose_lexing := false;
389 Flag_parsing_c.verbose_parsing := false;
390
ae4735db 391 let dirname_opt =
978fd7e5
C
392 match xs with
393 | [x] when is_directory x -> Some x
394 | _ -> None
395 in
ae4735db 396 dirname_opt +> Common.do_option (fun dir ->
978fd7e5 397
ae4735db 398 let ext = "h" in
978fd7e5
C
399 let fullxs = Common.files_of_dir_or_files_no_vcs ext [dir] in
400
ae4735db
C
401 let macros_and_filename =
402 fullxs +> List.map (fun file ->
978fd7e5
C
403 pr2 (spf "processing: %s" file);
404 let xs = Parse_c.extract_macros file in
405 file, xs
406 )
407 in
ae4735db
C
408 let macros =
409 Cpp_analysis_c.extract_dangerous_macros macros_and_filename
978fd7e5 410 in
ae4735db
C
411 macros +> List.iter (fun (file, xs) ->
412 xs +> List.iter (fun (x, def) ->
413 let (s, params, body) = def in
978fd7e5
C
414 let str = Cpp_token_c.string_of_define_def def in
415 pr str;
416 (* builtins ? *)
417 Hashtbl.replace !Parse_c._defs_builtins s (s, params, body);
708f4980
C
418 );
419 );
420 );
978fd7e5
C
421
422 let ext = "[ch]" in
423
424 let fullxs = Common.files_of_dir_or_files_no_vcs ext xs in
425
426 let stat_list = ref [] in
427 Common.check_stack_nbfiles (List.length fullxs);
428
ae4735db 429 fullxs +> List.iter (fun file ->
978fd7e5
C
430 if not (file =~ (".*\\."^ext))
431 then pr2 ("warning: seems not a ."^ext^" file");
432
433 pr2 "";
434 pr2 ("PARSING: " ^ file);
435
436 let (xs, stat) = Parse_c.parse_c_and_cpp file in
ae4735db 437 xs +> List.iter (fun (ast, (s, toks)) ->
978fd7e5
C
438 Parse_c.print_commentized toks
439 );
440
441 Common.push2 stat stat_list;
442 );
ae4735db
C
443
444 if not (null !stat_list)
445 then begin
978fd7e5
C
446 Parsing_stat.print_recurring_problematic_tokens !stat_list;
447 Parsing_stat.print_parsing_stat_list !stat_list;
448 end;
708f4980
C
449 ()
450
451
91eba41f 452
978fd7e5
C
453
454
455
456
457
34e49164 458(* ---------------------------------------------------------------------- *)
ae4735db 459let test_xxx a =
34e49164
C
460 ()
461
462(*
463 ignore(Parse_c.parse_cpp_define_file "standard.h")
464 pr2 "pr2";
465 pr "pr"
466
467 Format.print_newline();
468 Format.printf "@[<v 5>--@,--@,@[<v 5>--@,--@,@]--@,--@,@]";
469 Format.print_newline();
470 Format.printf "@[<v>(---@[<v>(---@[<v>(---@,)@]@,)@]@,)@]"
471*)
472
473
474
475(*****************************************************************************)
476(* Main entry for Arg *)
477(*****************************************************************************)
478
479let actions () = [
ae4735db 480 "-tokens_c", " <file>",
34e49164 481 Common.mk_action_1_arg test_tokens_c;
ae4735db 482 "-parse_c", " <file or dir>",
34e49164 483 Common.mk_action_n_arg test_parse_c;
ae4735db 484 "-parse_h", " <file or dir>",
34e49164 485 Common.mk_action_n_arg test_parse_h;
ae4735db 486 "-parse_ch", " <file or dir>",
34e49164 487 Common.mk_action_n_arg test_parse_ch;
ae4735db 488 "-parse_i", " <file or dir>",
978fd7e5 489 Common.mk_action_n_arg test_parse_i;
34e49164 490
ae4735db 491 "-parse", " <file or dir>",
708f4980
C
492 Common.mk_action_n_arg test_parse;
493
ae4735db 494 "-show_flow", " <file or file:function>",
c491d8ee 495 Common.mk_action_1_arg (local_test_cfg true);
ae4735db 496 "-control_flow", " <file or file:function>",
c491d8ee
C
497 Common.mk_action_1_arg (local_test_cfg true);
498 "-control_flow_to_file", " <file or file:function>",
499 Common.mk_action_1_arg (local_test_cfg false);
91eba41f
C
500 "-test_cfg_ifdef", " <file>",
501 Common.mk_action_1_arg test_cfg_ifdef;
ae4735db 502 "-parse_unparse", " <file>",
34e49164 503 Common.mk_action_1_arg test_parse_unparse;
1eddfd50
C
504(* "-parse_and_print_sexp", " <file>",
505 Common.mk_action_1_arg parse_and_print_sexp;*)
ae4735db 506 "-type_c", " <file>",
34e49164 507 Common.mk_action_1_arg test_type_c;
ae4735db 508 "-compare_c", " <file1> <file2>",
34e49164 509 Common.mk_action_2_arg test_compare_c (* result is in unix code *);
ae4735db 510 "-comment_annotater_c", " <file>",
0708f913 511 Common.mk_action_1_arg test_comment_annotater;
34e49164 512
ae4735db 513 "-compare_c_hardcoded", " ",
34e49164
C
514 Common.mk_action_0_arg test_compare_c_hardcoded;
515
91eba41f
C
516 "-test_attributes", " <file>",
517 Common.mk_action_1_arg test_attributes;
518 "-test_cpp", " <file>",
519 Common.mk_action_1_arg test_cpp;
520
708f4980
C
521 "-extract_macros", " <file or dir>",
522 Common.mk_action_1_arg (extract_macros ~selection:false) ;
523
524 "-extract_macros_select", " <file or dir>",
525 Common.mk_action_1_arg (extract_macros ~selection:true);
91eba41f
C
526
527
ae4735db 528 "-xxx", " <file1> <>",
34e49164
C
529 Common.mk_action_n_arg test_xxx;
530]
531