Coccinelle release 1.0.0-rc14
[bpt/coccinelle.git] / parsing_cocci / data.mli
index 2ca4644..5b96fc2 100644 (file)
@@ -1,27 +1,9 @@
 (*
- * 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 <http://www.gnu.org/licenses/>.
- *
- * The authors reserve the right to distribute this or future versions of
- * Coccinelle under other licenses.
- *)
-
-
-(*
- * Copyright 2005-2010, Ecole des Mines de Nantes, University of Copenhagen
+ * Copyright 2012, INRIA
+ * Julia Lawall, Gilles Muller
+ * Copyright 2010-2011, INRIA, University of Copenhagen
+ * Julia Lawall, Rene Rydhof Hansen, Gilles Muller, Nicolas Palix
+ * Copyright 2005-2009, 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.
  *
@@ -42,6 +24,7 @@
  *)
 
 
+# 0 "./data.mli"
 (* types that clutter the .mly file *)
 (* for iso metavariables, true if they can only match nonmodified, unitary
    metavariables *)
@@ -55,7 +38,7 @@ type clt =
     line_type * int * int * int * int (* starting spaces *) *
       (Ast_cocci.added_string * Ast0_cocci.position_info) list (*code before*) *
       (Ast_cocci.added_string * Ast0_cocci.position_info) list (*code after *) *
-      Ast0_cocci.meta_pos (* position variable, minus only *)
+      Ast0_cocci.anything list (* position variable, minus only *)
 
 (* ---------------------------------------------------------------------- *)
 
@@ -83,6 +66,8 @@ val all_metadecls : (string, Ast_cocci.metavar list) Hashtbl.t
 
 val clear_meta: (unit -> unit) ref
 
+val add_meta_meta: (Ast_cocci.meta_name -> Ast0_cocci.pure -> unit) ref
+
 val add_id_meta:
     (Ast_cocci.meta_name -> iconstraints -> Ast0_cocci.pure -> unit) ref
 
@@ -91,16 +76,20 @@ val add_virt_id_meta_found: (string -> string -> unit) ref
 val add_virt_id_meta_not_found:
     (Ast_cocci.meta_name -> Ast0_cocci.pure -> unit) ref
 
-val add_fresh_id_meta: (Ast_cocci.meta_name -> unit) ref
+val add_fresh_id_meta: (Ast_cocci.meta_name -> Ast_cocci.seed -> unit) ref
 
 val add_type_meta: (Ast_cocci.meta_name -> Ast0_cocci.pure -> unit) ref
 
 val add_init_meta: (Ast_cocci.meta_name -> Ast0_cocci.pure -> unit) ref
 
+val add_initlist_meta:
+    (Ast_cocci.meta_name -> Ast_cocci.list_len -> Ast0_cocci.pure ->
+      unit) ref
+
 val add_param_meta: (Ast_cocci.meta_name -> Ast0_cocci.pure -> unit) ref
 
 val add_paramlist_meta:
-    (Ast_cocci.meta_name -> Ast_cocci.meta_name option -> Ast0_cocci.pure ->
+    (Ast_cocci.meta_name -> Ast_cocci.list_len -> Ast0_cocci.pure ->
       unit) ref
 
 val add_const_meta:
@@ -123,9 +112,18 @@ val add_local_idexp_meta:
       econstraints -> Ast0_cocci.pure -> unit) ref
 
 val add_explist_meta:
-    (Ast_cocci.meta_name -> Ast_cocci.meta_name option -> Ast0_cocci.pure ->
+    (Ast_cocci.meta_name -> Ast_cocci.list_len -> Ast0_cocci.pure ->
       unit) ref
 
+val add_decl_meta: (Ast_cocci.meta_name -> Ast0_cocci.pure -> unit) ref
+
+val add_field_meta: (Ast_cocci.meta_name -> Ast0_cocci.pure -> unit) ref
+
+val add_symbol_meta: (string -> unit) ref
+
+val add_field_list_meta:
+    (Ast_cocci.meta_name -> Ast_cocci.list_len -> Ast0_cocci.pure -> unit) ref
+
 val add_stm_meta: (Ast_cocci.meta_name -> Ast0_cocci.pure -> unit) ref
 
 val add_stmlist_meta: (Ast_cocci.meta_name -> Ast0_cocci.pure -> unit) ref