X-Git-Url: https://git.hcoop.net/bpt/coccinelle.git/blobdiff_plain/b1b2de814d2c59af2526bc19d41bb22a0c1fd16d..ae4735db5e7e9386036cf7b496ebdc994514dc53:/cocci.mli diff --git a/cocci.mli b/cocci.mli index c596fa7..f715356 100644 --- a/cocci.mli +++ b/cocci.mli @@ -1,3 +1,25 @@ +(* + * Copyright 2005-2010, Ecole des Mines de Nantes, University of Copenhagen + * Yoann Padioleau, Julia Lawall, Rene Rydhof Hansen, Henrik Stuart, Gilles Muller, Nicolas Palix + * This file is part of Coccinelle. + * + * Coccinelle 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. + * + * Coccinelle 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 Coccinelle. If not, see . + * + * The authors reserve the right to distribute this or future versions of + * Coccinelle under other licenses. + *) + + open Common (* full_engine takes (coccifile, isofile) and cfiles in parameters and @@ -7,8 +29,8 @@ open Common * pre_engine does the compilation of the SmPL code and runs any initially * scripts * post_engine runs any finally scripts - * - * This function uses memoisation internally, which is useful when + * + * This function uses memoisation internally, which is useful when * using -dir to not redo twice the same work. So take care! *) type cocci_info @@ -17,13 +39,13 @@ val full_engine : cocci_info -> filename list -> (filename * filename option) list val post_engine : cocci_info -> unit -(* because of the #include "toto.c" and also because we may associate the +(* because of the #include "toto.c" and also because we may associate the * same C file to multiple drivers because they share code, we can - * modify multiple times the same file when use -dir. This check - * remove duplicates and check that the modification are consistent + * modify multiple times the same file when use -dir. This check + * remove duplicates and check that the modification are consistent * among the different drivers. *) -val check_duplicate_modif : +val check_duplicate_modif : (filename * filename option) list -> (filename * filename option) list (* provides memoization *) @@ -32,7 +54,12 @@ val sp_of_file : Ast_cocci.metavar list list * Ast_cocci.rule list * Ast_cocci.meta_name list list list * Ast_cocci.meta_name list list list * - Ast_cocci.meta_name list list list * Ast_cocci.meta_name list list list * + (Ast_cocci.meta_name list list list (*used after list*) * + (*fresh used after list*) + Ast_cocci.meta_name list list list * + (*fresh used after list seeds*) + Ast_cocci.meta_name list list list) * + Ast_cocci.meta_name list list list * string list list * - string option + string list option