permit multiline comments and strings in macros
[bpt/coccinelle.git] / engine / isomorphisms_c_c.ml
CommitLineData
f537ebc4 1(*
17ba0788
C
2 * Copyright 2012, INRIA
3 * Julia Lawall, Gilles Muller
4 * Copyright 2010-2011, INRIA, University of Copenhagen
f537ebc4
C
5 * Julia Lawall, Rene Rydhof Hansen, Gilles Muller, Nicolas Palix
6 * Copyright 2005-2009, Ecole des Mines de Nantes, University of Copenhagen
7 * Yoann Padioleau, Julia Lawall, Rene Rydhof Hansen, Henrik Stuart, Gilles Muller, Nicolas Palix
8 * This file is part of Coccinelle.
9 *
10 * Coccinelle is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation, according to version 2 of the License.
13 *
14 * Coccinelle is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with Coccinelle. If not, see <http://www.gnu.org/licenses/>.
21 *
22 * The authors reserve the right to distribute this or future versions of
23 * Coccinelle under other licenses.
24 *)
25
26
feec80c3 27# 0 "./isomorphisms_c_c.ml"
34e49164
C
28open Common
29
30(* When in a semantic patch there is f(X) ... f(X) we want to force
31 * the two X to be equal in the concrete code, but we would like that
32 * there be equal modulo some isomorphisms, so that the following
33 * concrete code also match: f(a && b) g(); f(b && a)
34
35 * Maybe would be easier to transform ast_c in ast_cocci and call the
36 * iso engine of julia. *)
37
38open Ast_c
39
ae4735db 40let rec (iso_e_e: expression -> expression -> bool) = fun a b ->
34e49164
C
41 raise Todo
42 (*
ae4735db 43 let rec (=~=) a b =
34e49164
C
44 match (a, b) with
45 | (Ident a, typa, iia), (Ident b, typb, iib) -> a = b
46 | (Constant a, typa, iia), (Constant b, typb, iib) -> a = b
ae4735db 47 | (FunCall (ea, eas), typa, iia), (FunCall (eb, ebs), typb, iib) ->
34e49164 48 ea =~= eb &&
ae4735db
C
49 List.length eas = List.length ebs &&
50 List.for_all (fun (a, b) ->
34e49164
C
51 match (a, b) with
52 | (Left ea, iia), (Left eb, iib) -> ea =~= eb
53 | _ -> raise Todo
54 )
55 (zip eas ebs)
ae4735db
C
56 | (Binary (ea1,Logical AndLog,ea2),typa, iia), (Binary (eb1,Logical AndLog, eb2), typb, iib) ->
57 (ea1 =~= eb1 && ea2 =~= eb2)
34e49164
C
58 ||
59 (ea1 =~= eb2 && ea2 =~= eb1)
60
61 | _ -> raise Todo
62 in
63 a =~= b
64 *)
65
ae4735db 66and (iso_st_st: statement -> statement -> bool) = fun a b ->
34e49164 67 raise Todo
ae4735db 68and (iso_t_t: fullType -> fullType -> bool) = fun a b ->
34e49164
C
69 raise Todo
70
ae4735db 71
34e49164 72(*
ae4735db 73let _ = assert (iso_e_e
34e49164
C
74 (cexpression_of_string "a&&b")
75 (cexpression_of_string "b&&a")
76*)
77