Coccinelle release 1.0.0-rc14
[bpt/coccinelle.git] / parsing_cocci / data.mli
index 272302e..5b96fc2 100644 (file)
@@ -1,4 +1,8 @@
 (*
+ * 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.
@@ -20,6 +24,7 @@
  *)
 
 
+# 0 "./data.mli"
 (* types that clutter the .mly file *)
 (* for iso metavariables, true if they can only match nonmodified, unitary
    metavariables *)
@@ -31,9 +36,9 @@ type incl_iso =
 
 type clt =
     line_type * int * int * int * int (* starting spaces *) *
-      (string * Ast0_cocci.position_info) list (* code before *) *
-      (string * Ast0_cocci.position_info) list (* code after *) *
-      Ast0_cocci.meta_pos (* position variable, minus only *)
+      (Ast_cocci.added_string * Ast0_cocci.position_info) list (*code before*) *
+      (Ast_cocci.added_string * Ast0_cocci.position_info) list (*code after *) *
+      Ast0_cocci.anything list (* position variable, minus only *)
 
 (* ---------------------------------------------------------------------- *)
 
@@ -61,19 +66,30 @@ 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
 
-val add_fresh_id_meta: (Ast_cocci.meta_name -> unit) ref
+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 -> 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:
@@ -96,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