permit multiline comments and strings in macros
[bpt/coccinelle.git] / parsing_cocci / type_cocci.ml
... / ...
CommitLineData
1(*
2 * Copyright 2012, INRIA
3 * Julia Lawall, Gilles Muller
4 * Copyright 2010-2011, INRIA, University of Copenhagen
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
27# 0 "./type_cocci.ml"
28(* for metavariables in general, but here because needed for metatypes *)
29type inherited = bool (* true if inherited *)
30type keep_binding = Unitary (* need no info *)
31 | Nonunitary (* need an env entry *) | Saved (* need a witness *)
32
33type meta_name = string * string (*Ast_cocci.meta_name*)
34
35type typeC =
36 ConstVol of const_vol * typeC
37 | BaseType of baseType
38 | SignedT of sign * typeC option
39 | Pointer of typeC
40 | FunctionPointer of typeC (* only return type *)
41 | Array of typeC (* drop size info *)
42 | EnumName of name
43 | StructUnionName of structUnion * name
44 | TypeName of string
45 | MetaType of meta_name * keep_binding * inherited
46 | Unknown (* for metavariables of type expression *^* *)
47
48and name =
49 NoName
50 | Name of string
51 | MV of meta_name * keep_binding * inherited
52
53and tagged_string = string
54
55and baseType = VoidType | CharType | ShortType | ShortIntType | IntType
56| DoubleType | LongDoubleType | FloatType
57| LongType | LongIntType | LongLongType | LongLongIntType
58| SizeType | SSizeType | PtrDiffType | BoolType
59
60and structUnion = Struct | Union
61
62and sign = Signed | Unsigned
63
64and const_vol = Const | Volatile
65
66(* --------------------------------------------------------------------- *)
67(* Printer *)
68open Format
69
70let rec type2c = function
71 ConstVol(cv,ty) -> (const_vol cv) ^ (type2c ty)
72 | BaseType(ty) -> baseType ty
73 | SignedT(sgn,None) -> sign sgn
74 | SignedT(sgn,Some ty) -> (sign sgn) ^ (type2c ty)
75 | Pointer(ty) -> (type2c ty) ^ "*"
76 | FunctionPointer(ty) -> (type2c ty) ^ "(*)(...)"
77 | Array(ty) -> (type2c ty) ^ "[] "
78 | EnumName(name) -> "enum " ^ (print_name name)
79 | StructUnionName(kind,name) -> (structUnion kind) ^ (print_name name)
80 | TypeName(name) -> name ^ " "
81 | MetaType((rule,name),keep,inherited) -> name ^ " "
82 (*
83 let print_unitary = function
84 Unitary -> print_string "unitary"
85 | Nonunitary -> print_string "nonunitary"
86 | Saved -> print_string "saved" in
87 print_string "/* ";
88 print_string "keep:"; print_unitary keep;
89 print_string " inherited:"; print_bool inherited;
90 print_string " */"
91 *)
92 | Unknown -> "unknown "
93
94and print_name = function
95 NoName -> ""
96 | MV ((_,name),_,_) -> name ^ " "
97 | Name name -> name ^ " "
98
99and baseType = function
100 VoidType -> "void "
101 | CharType -> "char "
102 | ShortType -> "short "
103 | ShortIntType -> "short int "
104 | IntType -> "int "
105 | DoubleType -> "double "
106 | LongDoubleType -> "long double "
107 | FloatType -> "float "
108 | LongType -> "long "
109 | LongIntType -> "long int "
110 | LongLongType -> "long long "
111 | LongLongIntType -> "long long int "
112 | BoolType -> "bool "
113 | SizeType -> "size_t "
114 | SSizeType -> "ssize_t "
115 | PtrDiffType -> "ptrdiff_t "
116
117
118and structUnion = function
119 Struct -> "struct "
120 | Union -> "union "
121
122and sign = function
123 Signed -> "signed "
124 | Unsigned -> "unsigned "
125
126and const_vol = function
127 Const -> "const "
128 | Volatile -> "volatile "
129
130let typeC t = print_string (type2c t)
131
132(* t1 should be less informative than t1, eg t1 = Pointer(Unknown) and t2 =
133Pointer(int) *)
134(* only used in iso *)
135(* needs to do something for MetaType *)
136let compatible t1 = function
137 None -> t1 = Unknown
138 | Some t2 ->
139 let rec loop = function
140 (Unknown,_) -> true
141 | (ConstVol(cv1,ty1),ConstVol(cv2,ty2)) when cv1 = cv2 ->
142 loop(ty1,ty2)
143 | (Pointer(ty1),Pointer(ty2)) -> loop(ty1,ty2)
144 | (FunctionPointer(ty1),_) -> false (* not enough info *)
145 | (_,FunctionPointer(ty2)) -> false (* not enough info *)
146 | (Array(ty1),Array(ty2)) -> loop(ty1,ty2)
147 | (_,_) -> t1=t2 in
148 loop (t1,t2)