Coccinelle release 0.2.5-rc7.
[bpt/coccinelle.git] / parsing_cocci / arity.ml
CommitLineData
c491d8ee
C
1(*
2 * Copyright 2010, INRIA, University of Copenhagen
3 * Julia Lawall, Rene Rydhof Hansen, Gilles Muller, Nicolas Palix
4 * Copyright 2005-2009, Ecole des Mines de Nantes, University of Copenhagen
5 * Yoann Padioleau, Julia Lawall, Rene Rydhof Hansen, Henrik Stuart, Gilles Muller, Nicolas Palix
6 * This file is part of Coccinelle.
7 *
8 * Coccinelle is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, according to version 2 of the License.
11 *
12 * Coccinelle is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with Coccinelle. If not, see <http://www.gnu.org/licenses/>.
19 *
20 * The authors reserve the right to distribute this or future versions of
21 * Coccinelle under other licenses.
22 *)
23
24
34e49164
C
25(* Arities matter for the minus slice, but not for the plus slice. *)
26
27(* ? only allowed on rule_elems, and on subterms if the context is ? also. *)
28
29module Ast0 = Ast0_cocci
30module Ast = Ast_cocci
31
32(* --------------------------------------------------------------------- *)
33
34let warning s = Printf.printf "warning: %s\n" s
35
36let fail w str =
37 failwith
0708f913
C
38 (Printf.sprintf "cocci line %d: %s"
39 ((Ast0.get_info w).Ast0.pos_info.Ast0.line_start)
34e49164
C
40 str)
41
42let make_opt_unique optfn uniquefn info tgt arity term =
43 let term = Ast0.rewrap info term in
44 if tgt = arity
45 then term
46 else (* tgt must be NONE *)
47 match arity with
48 Ast0.OPT -> Ast0.copywrap info (optfn term)
49 | Ast0.UNIQUE -> Ast0.copywrap info (uniquefn term)
50 | Ast0.NONE -> failwith "tgt must be NONE"
51
52let all_same opt_allowed tgt line arities =
53 let tgt =
54 match tgt with
55 Ast0.NONE ->
56 (match List.hd arities with
57 Ast0.OPT when not opt_allowed ->
58 failwith "opt only allowed for the elements of a statement list"
59 | x -> x)
60 | _ -> tgt in
61 if not(List.for_all (function x -> x = tgt) arities)
62 then warning (Printf.sprintf "incompatible arity found on line %d" line);
63 tgt
64
65let get_option fn = function
66 None -> None
67 | Some x -> Some (fn x)
68
69let anyopt l fn = List.exists (function w -> fn(Ast0.unwrap w)) l
70
71let allopt l fn =
72 let rec loop = function
73 [] -> []
74 | x::xs ->
75 match fn (Ast0.unwrap x) with
76 Some x -> x :: (loop xs)
77 | None -> [] in
78 let res = loop l in
79 if List.length res = List.length l then Some res else None
80
81(* --------------------------------------------------------------------- *)
82(* --------------------------------------------------------------------- *)
83(* Mcode *)
84
708f4980
C
85let mcode2line (_,_,info,_,_,_) = info.Ast0.pos_info.Ast0.line_start
86let mcode2arity (_,arity,_,_,_,_) = arity
34e49164
C
87
88let mcode x = x (* nothing to do ... *)
89
90(* --------------------------------------------------------------------- *)
91(* Dots *)
92
93let dots fn d =
94 Ast0.rewrap d
95 (match Ast0.unwrap d with
96 Ast0.DOTS(x) -> Ast0.DOTS(List.map fn x)
97 | Ast0.CIRCLES(x) -> Ast0.CIRCLES(List.map fn x)
98 | Ast0.STARS(x) -> Ast0.STARS(List.map fn x))
99
100let only_dots l =
101 not
102 (List.exists
103 (function x ->
104 match Ast0.unwrap x with
105 Ast0.Circles(_,_) | Ast0.Stars(_,_) -> true
106 | _ -> false)
107 l)
108
109let only_circles l =
110 not (List.exists
111 (function x ->
112 match Ast0.unwrap x with
113 Ast0.Dots(_,_) | Ast0.Stars(_,_) -> true
114 | _ -> false)
115 l)
116
117let only_stars l =
118 not (List.exists
119 (function x ->
120 match Ast0.unwrap x with
121 Ast0.Dots(_,_) | Ast0.Circles(_,_) -> true
122 | _ -> false)
123 l)
124
125let concat_dots fn d =
126 Ast0.rewrap d
127 (match Ast0.unwrap d with
128 Ast0.DOTS(x) ->
129 let l = List.map fn x in
130 if only_dots l
131 then Ast0.DOTS(l)
132 else fail d "inconsistent dots usage"
133 | Ast0.CIRCLES(x) ->
134 let l = List.map fn x in
135 if only_circles l
136 then Ast0.CIRCLES(l)
137 else fail d "inconsistent dots usage"
138 | Ast0.STARS(x) ->
139 let l = List.map fn x in
140 if only_stars l
141 then Ast0.STARS(l)
142 else fail d "inconsistent dots usage")
143
144let flat_concat_dots fn d =
145 match Ast0.unwrap d with
146 Ast0.DOTS(x) -> List.map fn x
147 | Ast0.CIRCLES(x) -> List.map fn x
148 | Ast0.STARS(x) -> List.map fn x
149
150(* --------------------------------------------------------------------- *)
151(* Identifier *)
152
153let make_id =
154 make_opt_unique
155 (function x -> Ast0.OptIdent x)
156 (function x -> Ast0.UniqueIdent x)
157
d3f655c6 158let rec ident opt_allowed tgt i =
34e49164 159 match Ast0.unwrap i with
d3f655c6
C
160 Ast0.Id(name) ->
161 let arity =
162 all_same opt_allowed tgt (mcode2line name)
163 [mcode2arity name] in
164 let name = mcode name in
165 make_id i tgt arity (Ast0.Id(name))
166 | Ast0.MetaId(name,constraints,pure) ->
167 let arity =
168 all_same opt_allowed tgt (mcode2line name)
169 [mcode2arity name] in
170 let name = mcode name in
171 make_id i tgt arity (Ast0.MetaId(name,constraints,pure))
172 | Ast0.MetaFunc(name,constraints,pure) ->
173 let arity =
174 all_same opt_allowed tgt (mcode2line name)
175 [mcode2arity name] in
176 let name = mcode name in
177 make_id i tgt arity (Ast0.MetaFunc(name,constraints,pure))
178 | Ast0.MetaLocalFunc(name,constraints,pure) ->
179 let arity =
180 all_same opt_allowed tgt (mcode2line name)
181 [mcode2arity name] in
182 let name = mcode name in
183 make_id i tgt arity (Ast0.MetaLocalFunc(name,constraints,pure))
184 | Ast0.DisjId(starter,id_list,mids,ender) ->
185 let id_list = List.map (ident opt_allowed tgt) id_list in
186 (match List.rev id_list with
187 _::xs ->
188 if anyopt xs (function Ast0.OptIdent(_) -> true | _ -> false)
189 then fail i "opt only allowed in the last disjunct"
190 | _ -> ());
191 Ast0.rewrap i (Ast0.DisjId(starter,id_list,mids,ender))
192 | Ast0.OptIdent(_) | Ast0.UniqueIdent(_) ->
193 failwith "unexpected code"
194
34e49164
C
195(* --------------------------------------------------------------------- *)
196(* Expression *)
d3f655c6 197
34e49164
C
198let make_exp =
199 make_opt_unique
200 (function x -> Ast0.OptExp x)
201 (function x -> Ast0.UniqueExp x)
202
203let rec top_expression opt_allowed tgt expr =
204 let exp_same = all_same opt_allowed tgt in
205 match Ast0.unwrap expr with
206 Ast0.Ident(id) ->
207 let new_id = ident opt_allowed tgt id in
208 Ast0.rewrap expr
209 (match Ast0.unwrap new_id with
210 Ast0.OptIdent(id) ->
211 Ast0.OptExp(Ast0.rewrap expr (Ast0.Ident(id)))
212 | Ast0.UniqueIdent(id) ->
213 Ast0.UniqueExp(Ast0.rewrap expr (Ast0.Ident(id)))
214 | _ -> Ast0.Ident(new_id))
215 | Ast0.Constant(const) ->
216 let arity = exp_same (mcode2line const) [mcode2arity const] in
217 let const = mcode const in
218 make_exp expr tgt arity (Ast0.Constant(const))
219 | Ast0.FunCall(fn,lp,args,rp) ->
220 let arity = exp_same (mcode2line lp) [mcode2arity lp;mcode2arity rp] in
221 let fn = expression arity fn in
222 let lp = mcode lp in
223 let args = dots (expression arity) args in
224 let rp = mcode rp in
225 make_exp expr tgt arity (Ast0.FunCall(fn,lp,args,rp))
226 | Ast0.Assignment(left,op,right,simple) ->
227 let arity = exp_same (mcode2line op) [mcode2arity op] in
228 let left = expression arity left in
229 let op = mcode op in
230 let right = expression arity right in
231 make_exp expr tgt arity (Ast0.Assignment(left,op,right,simple))
232 | Ast0.CondExpr(exp1,why,exp2,colon,exp3) ->
233 let arity =
234 exp_same (mcode2line why) [mcode2arity why; mcode2arity colon] in
235 let exp1 = expression arity exp1 in
236 let why = mcode why in
237 let exp2 = get_option (expression arity) exp2 in
238 let colon = mcode colon in
239 let exp3 = expression arity exp3 in
240 make_exp expr tgt arity (Ast0.CondExpr(exp1,why,exp2,colon,exp3))
241 | Ast0.Postfix(exp,op) ->
242 let arity = exp_same (mcode2line op) [mcode2arity op] in
243 let exp = expression arity exp in
244 let op = mcode op in
245 make_exp expr tgt arity (Ast0.Postfix(exp,op))
246 | Ast0.Infix(exp,op) ->
247 let arity = exp_same (mcode2line op) [mcode2arity op] in
248 let exp = expression arity exp in
249 let op = mcode op in
250 make_exp expr tgt arity (Ast0.Infix(exp,op))
251 | Ast0.Unary(exp,op) ->
252 let arity = exp_same (mcode2line op) [mcode2arity op] in
253 let exp = expression arity exp in
254 let op = mcode op in
255 make_exp expr tgt arity (Ast0.Unary(exp,op))
256 | Ast0.Binary(left,op,right) ->
257 let arity = exp_same (mcode2line op) [mcode2arity op] in
258 let left = expression arity left in
259 let op = mcode op in
260 let right = expression arity right in
261 make_exp expr tgt arity (Ast0.Binary(left,op,right))
262 | Ast0.Nested(left,op,right) -> failwith "nested in arity not possible"
263 | Ast0.Paren(lp,exp,rp) ->
264 let arity = exp_same (mcode2line lp) [mcode2arity lp;mcode2arity rp] in
265 let lp = mcode lp in
266 let exp = expression arity exp in
267 let rp = mcode rp in
268 make_exp expr tgt arity (Ast0.Paren(lp,exp,rp))
269 | Ast0.ArrayAccess(exp1,lb,exp2,rb) ->
270 let arity = exp_same (mcode2line lb) [mcode2arity lb; mcode2arity rb] in
271 let exp1 = expression arity exp1 in
272 let lb = mcode lb in
273 let exp2 = expression arity exp2 in
274 let rb = mcode rb in
275 make_exp expr tgt arity (Ast0.ArrayAccess(exp1,lb,exp2,rb))
276 | Ast0.RecordAccess(exp,pt,field) ->
277 let arity = exp_same (mcode2line pt) [mcode2arity pt] in
278 let exp = expression arity exp in
279 let pt = mcode pt in
280 let field = ident false arity field in
281 make_exp expr tgt arity (Ast0.RecordAccess(exp,pt,field))
282 | Ast0.RecordPtAccess(exp,ar,field) ->
283 let arity = exp_same (mcode2line ar) [mcode2arity ar] in
284 let exp = expression arity exp in
285 let ar = mcode ar in
286 let field = ident false arity field in
287 make_exp expr tgt arity (Ast0.RecordPtAccess(exp,ar,field))
288 | Ast0.Cast(lp,ty,rp,exp) ->
289 let arity = exp_same (mcode2line lp) [mcode2arity lp;mcode2arity rp] in
290 let lp = mcode lp in
291 let ty = typeC arity ty in
292 let rp = mcode rp in
293 let exp = expression arity exp in
294 make_exp expr tgt arity (Ast0.Cast(lp,ty,rp,exp))
295 | Ast0.SizeOfExpr(szf,exp) ->
296 let arity = exp_same (mcode2line szf) [mcode2arity szf] in
297 let szf = mcode szf in
298 let exp = expression arity exp in
299 make_exp expr tgt arity (Ast0.SizeOfExpr(szf,exp))
300 | Ast0.SizeOfType(szf,lp,ty,rp) ->
301 let arity =
302 exp_same (mcode2line szf) (List.map mcode2arity [szf;lp;rp]) in
303 let szf = mcode szf in
304 let lp = mcode lp in
305 let ty = typeC arity ty in
306 let rp = mcode rp in
307 make_exp expr tgt arity (Ast0.SizeOfType(szf,lp,ty,rp))
308 | Ast0.TypeExp(ty) -> Ast0.rewrap expr (Ast0.TypeExp(typeC tgt ty))
309 | Ast0.MetaErr(name,constraints,pure) ->
310 let arity = exp_same (mcode2line name) [mcode2arity name] in
311 let name = mcode name in
312 make_exp expr tgt arity (Ast0.MetaErr(name,constraints,pure))
313 | Ast0.MetaExpr(name,constraints,ty,form,pure) ->
314 let arity = exp_same (mcode2line name) [mcode2arity name] in
315 let name = mcode name in
316 make_exp expr tgt arity (Ast0.MetaExpr(name,constraints,ty,form,pure))
317 | Ast0.MetaExprList(name,lenname,pure) ->
318 let arity = exp_same (mcode2line name) [mcode2arity name] in
319 let name = mcode name in
320 make_exp expr tgt arity (Ast0.MetaExprList(name,lenname,pure))
321 | Ast0.EComma(cm) ->
322 let arity = exp_same (mcode2line cm) [mcode2arity cm] in
323 let cm = mcode cm in
324 make_exp expr tgt arity (Ast0.EComma(cm))
325 | Ast0.DisjExpr(starter,exps,mids,ender) ->
326 let exps = List.map (top_expression opt_allowed tgt) exps in
327 (match List.rev exps with
328 _::xs ->
329 if anyopt xs (function Ast0.OptExp(_) -> true | _ -> false)
330 then fail expr "opt only allowed in the last disjunct"
331 | _ -> ());
332 Ast0.rewrap expr (Ast0.DisjExpr(starter,exps,mids,ender))
333 | Ast0.NestExpr(starter,exp_dots,ender,whencode,multi) ->
334 let res =
335 Ast0.NestExpr(starter,
336 dots (top_expression true Ast0.NONE) exp_dots,
337 ender,whencode,multi) in
338 Ast0.rewrap expr res
339 | Ast0.Edots(dots,whencode) ->
340 let arity = exp_same (mcode2line dots) [mcode2arity dots] in
341 let dots = mcode dots in
342 let whencode = get_option (expression Ast0.NONE) whencode in
343 make_exp expr tgt arity (Ast0.Edots(dots,whencode))
344 | Ast0.Ecircles(dots,whencode) ->
345 let arity = exp_same (mcode2line dots) [mcode2arity dots] in
346 let dots = mcode dots in
347 let whencode = get_option (expression Ast0.NONE) whencode in
348 make_exp expr tgt arity (Ast0.Ecircles(dots,whencode))
349 | Ast0.Estars(dots,whencode) ->
350 let arity = exp_same (mcode2line dots) [mcode2arity dots] in
351 let dots = mcode dots in
352 let whencode = get_option (expression Ast0.NONE) whencode in
353 make_exp expr tgt arity (Ast0.Estars(dots,whencode))
fc1ad971 354 (* why does optexp exist???? *)
34e49164
C
355 | Ast0.OptExp(_) | Ast0.UniqueExp(_) ->
356 failwith "unexpected code"
357
358and expression tgt exp = top_expression false tgt exp
359
360(* --------------------------------------------------------------------- *)
361(* Types *)
362
363and make_typeC =
364 make_opt_unique
365 (function x -> Ast0.OptType x)
366 (function x -> Ast0.UniqueType x)
367
368and top_typeC tgt opt_allowed typ =
369 match Ast0.unwrap typ with
370 Ast0.ConstVol(cv,ty) ->
371 let arity = all_same opt_allowed tgt (mcode2line cv)
372 [mcode2arity cv] in
373 let cv = mcode cv in
374 let ty = typeC arity ty in
375 make_typeC typ tgt arity (Ast0.ConstVol(cv,ty))
faf9a90c 376 | Ast0.BaseType(ty,strings) ->
34e49164 377 let arity =
faf9a90c
C
378 all_same opt_allowed tgt (mcode2line (List.hd strings))
379 (List.map mcode2arity strings) in
380 let strings = List.map mcode strings in
381 make_typeC typ tgt arity (Ast0.BaseType(ty,strings))
382 | Ast0.Signed(sign,ty) ->
34e49164
C
383 let arity =
384 all_same opt_allowed tgt (mcode2line sign) [mcode2arity sign] in
385 let sign = mcode sign in
faf9a90c
C
386 let ty = get_option (typeC arity) ty in
387 make_typeC typ tgt arity (Ast0.Signed(sign,ty))
34e49164
C
388 | Ast0.Pointer(ty,star) ->
389 let arity =
390 all_same opt_allowed tgt (mcode2line star) [mcode2arity star] in
391 let ty = typeC arity ty in
392 let star = mcode star in
393 make_typeC typ tgt arity (Ast0.Pointer(ty,star))
394 | Ast0.FunctionPointer(ty,lp1,star,rp1,lp2,params,rp2) ->
395 let arity =
396 all_same opt_allowed tgt (mcode2line lp1)
397 (List.map mcode2arity [lp1;star;rp1;lp2;rp2]) in
398 let ty = typeC arity ty in
399 let params = parameter_list tgt params in
400 make_typeC typ tgt arity
401 (Ast0.FunctionPointer(ty,lp1,star,rp1,lp2,params,rp2))
402 | Ast0.FunctionType(ty,lp1,params,rp1) ->
403 let arity =
404 all_same opt_allowed tgt (mcode2line lp1)
405 (List.map mcode2arity [lp1;rp1]) in
406 let ty = get_option (typeC arity) ty in
407 let params = parameter_list tgt params in
408 make_typeC typ tgt arity (Ast0.FunctionType(ty,lp1,params,rp1))
409 | Ast0.Array(ty,lb,size,rb) ->
410 let arity =
411 all_same opt_allowed tgt (mcode2line lb)
412 [mcode2arity lb;mcode2arity rb] in
413 let ty = typeC arity ty in
414 let lb = mcode lb in
415 let size = get_option (expression arity) size in
416 let rb = mcode rb in
417 make_typeC typ tgt arity (Ast0.Array(ty,lb,size,rb))
faf9a90c
C
418 | Ast0.EnumName(kind,name) ->
419 let arity =
420 all_same opt_allowed tgt (mcode2line kind) [mcode2arity kind] in
421 let kind = mcode kind in
c491d8ee 422 let name = get_option (ident false arity) name in
faf9a90c 423 make_typeC typ tgt arity (Ast0.EnumName(kind,name))
c491d8ee
C
424 | Ast0.EnumDef(ty,lb,decls,rb) ->
425 let arity =
426 all_same opt_allowed tgt (mcode2line lb)
427 (List.map mcode2arity [lb;rb]) in
428 let ty = typeC arity ty in
429 let lb = mcode lb in
430 let ids = dots (expression tgt) decls in
431 let rb = mcode rb in
432 make_typeC typ tgt arity (Ast0.EnumDef(ty,lb,ids,rb))
34e49164
C
433 | Ast0.StructUnionName(kind,name) ->
434 let arity =
435 all_same opt_allowed tgt (mcode2line kind)
436 [mcode2arity kind] in
437 let kind = mcode kind in
438 let name = get_option (ident false arity) name in
439 make_typeC typ tgt arity (Ast0.StructUnionName(kind,name))
440 | Ast0.StructUnionDef(ty,lb,decls,rb) ->
441 let arity =
442 all_same opt_allowed tgt (mcode2line lb)
443 (List.map mcode2arity [lb;rb]) in
444 let ty = typeC arity ty in
445 let lb = mcode lb in
446 let decls = dots (declaration tgt) decls in
447 let rb = mcode rb in
448 make_typeC typ tgt arity (Ast0.StructUnionDef(ty,lb,decls,rb))
449 | Ast0.TypeName(name) ->
450 let arity =
451 all_same opt_allowed tgt (mcode2line name) [mcode2arity name] in
452 let name = mcode name in
453 make_typeC typ tgt arity (Ast0.TypeName(name))
454 | Ast0.MetaType(name,pure) ->
455 let arity =
456 all_same opt_allowed tgt (mcode2line name) [mcode2arity name] in
457 let name = mcode name in
458 make_typeC typ tgt arity (Ast0.MetaType(name,pure))
459 | Ast0.DisjType(starter,types,mids,ender) ->
460 let types = List.map (typeC tgt) types in
461 (match List.rev types with
462 _::xs ->
463 if anyopt xs (function Ast0.OptType(_) -> true | _ -> false)
464 then fail typ "opt only allowed in the last disjunct"
465 | _ -> ());
466 let res = Ast0.DisjType(starter,types,mids,ender) in
467 Ast0.rewrap typ res
468 | Ast0.OptType(_) | Ast0.UniqueType(_) ->
469 failwith "unexpected code"
470
471and typeC tgt ty = top_typeC tgt false ty
472
473(* --------------------------------------------------------------------- *)
474(* Variable declaration *)
475(* Even if the Cocci program specifies a list of declarations, they are
476 split out into multiple declarations of a single variable each. *)
477
478and make_decl =
479 make_opt_unique
480 (function x -> Ast0.OptDecl x)
481 (function x -> Ast0.UniqueDecl x)
482
483and declaration tgt decl =
484 match Ast0.unwrap decl with
413ffc02
C
485 Ast0.MetaDecl(name,pure) ->
486 let arity = all_same true tgt (mcode2line name) [mcode2arity name] in
487 let name = mcode name in
488 make_decl decl tgt arity (Ast0.MetaDecl(name,pure))
489 | Ast0.MetaField(name,pure) ->
490 let arity = all_same true tgt (mcode2line name) [mcode2arity name] in
491 let name = mcode name in
492 make_decl decl tgt arity (Ast0.MetaField(name,pure))
493 | Ast0.Init(stg,ty,id,eq,exp,sem) ->
34e49164
C
494 let arity =
495 all_same true tgt (mcode2line eq)
496 ((match stg with None -> [] | Some x -> [mcode2arity x]) @
497 (List.map mcode2arity [eq;sem])) in
498 let stg = get_option mcode stg in
499 let ty = typeC arity ty in
500 let id = ident false arity id in
501 let eq = mcode eq in
502 let exp = initialiser arity exp in
503 let sem = mcode sem in
504 make_decl decl tgt arity (Ast0.Init(stg,ty,id,eq,exp,sem))
505 | Ast0.UnInit(stg,ty,id,sem) ->
506 let arity =
507 all_same true tgt (mcode2line sem)
508 ((match stg with None -> [] | Some x -> [mcode2arity x]) @
509 [mcode2arity sem]) in
510 let stg = get_option mcode stg in
511 let ty = typeC arity ty in
512 let id = ident false arity id in
513 let sem = mcode sem in
514 make_decl decl tgt arity (Ast0.UnInit(stg,ty,id,sem))
515 | Ast0.MacroDecl(name,lp,args,rp,sem) ->
516 let arity =
517 all_same true tgt (mcode2line lp) (List.map mcode2arity [lp;rp;sem]) in
518 let name = ident false arity name in
519 let lp = mcode lp in
520 let args = dots (expression arity) args in
521 let rp = mcode rp in
522 let sem = mcode sem in
523 make_decl decl tgt arity (Ast0.MacroDecl(name,lp,args,rp,sem))
524 | Ast0.TyDecl(ty,sem) ->
525 let arity =
526 all_same true tgt (mcode2line sem) [mcode2arity sem] in
527 let ty = typeC arity ty in
528 let sem = mcode sem in
529 make_decl decl tgt arity (Ast0.TyDecl(ty,sem))
530 | Ast0.Typedef(stg,ty,id,sem) ->
531 let arity =
532 all_same true tgt (mcode2line sem)
533 [mcode2arity stg;mcode2arity sem] in
534 let stg = mcode stg in
535 let ty = typeC arity ty in
536 let id = typeC arity id in
537 let sem = mcode sem in
538 make_decl decl tgt arity (Ast0.Typedef(stg,ty,id,sem))
539 | Ast0.DisjDecl(starter,decls,mids,ender) ->
540 let decls = List.map (declaration tgt) decls in
541 (match List.rev decls with
542 _::xs ->
543 if anyopt xs (function Ast0.OptDecl(_) -> true | _ -> false)
544 then fail decl "opt only allowed in the last disjunct"
545 | _ -> ());
546 let res = Ast0.DisjDecl(starter,decls,mids,ender) in
547 Ast0.rewrap decl res
548 | Ast0.Ddots(dots,whencode) ->
549 let arity = all_same true tgt (mcode2line dots) [mcode2arity dots] in
550 let dots = mcode dots in
551 let whencode = get_option (declaration Ast0.NONE) whencode in
552 make_decl decl tgt arity (Ast0.Ddots(dots,whencode))
553 | Ast0.OptDecl(_) | Ast0.UniqueDecl(_) ->
554 failwith "unexpected code"
555
556(* --------------------------------------------------------------------- *)
557(* Initializer *)
558
559and make_init =
560 make_opt_unique
561 (function x -> Ast0.OptIni x)
562 (function x -> Ast0.UniqueIni x)
563
564and initialiser tgt i =
565 let init_same = all_same true tgt in
566 match Ast0.unwrap i with
113803cf
C
567 Ast0.MetaInit(name,pure) ->
568 let arity = init_same (mcode2line name) [mcode2arity name] in
569 let name = mcode name in
570 make_init i tgt arity (Ast0.MetaInit(name,pure))
571 | Ast0.InitExpr(exp) ->
34e49164 572 Ast0.rewrap i (Ast0.InitExpr(expression tgt exp))
c491d8ee 573 | Ast0.InitList(lb,initlist,rb,ordered) ->
34e49164
C
574 let arity = init_same (mcode2line lb) [mcode2arity lb; mcode2arity rb] in
575 let lb = mcode lb in
576 let initlist = dots (initialiser arity) initlist in
577 let rb = mcode rb in
c491d8ee 578 make_init i tgt arity (Ast0.InitList(lb,initlist,rb,ordered))
113803cf
C
579 | Ast0.InitGccExt(designators,eq,ini) ->
580 let arity = init_same (mcode2line eq) [mcode2arity eq] in
581 let designators = List.map (designator arity) designators in
34e49164
C
582 let eq = mcode eq in
583 let ini = initialiser arity ini in
113803cf 584 make_init i tgt arity (Ast0.InitGccExt(designators,eq,ini))
34e49164
C
585 | Ast0.InitGccName(name,eq,ini) ->
586 let arity = init_same (mcode2line eq) [mcode2arity eq] in
587 let name = ident true arity name in
588 let eq = mcode eq in
589 let ini = initialiser arity ini in
590 make_init i tgt arity (Ast0.InitGccName(name,eq,ini))
34e49164
C
591 | Ast0.IComma(cm) ->
592 let arity = init_same (mcode2line cm) [mcode2arity cm] in
593 let cm = mcode cm in
594 make_init i tgt arity (Ast0.IComma(cm))
595 | Ast0.Idots(dots,whencode) ->
596 let arity = init_same (mcode2line dots) [mcode2arity dots] in
597 let dots = mcode dots in
598 let whencode = get_option (initialiser Ast0.NONE) whencode in
599 make_init i tgt arity (Ast0.Idots(dots,whencode))
600 | Ast0.OptIni(_) | Ast0.UniqueIni(_) ->
601 failwith "unexpected code"
602
113803cf
C
603and designator tgt d =
604 let dsame = all_same false tgt in
605 match d with
606 Ast0.DesignatorField(dot,id) ->
607 let arity = dsame (mcode2line dot) [mcode2arity dot] in
608 let dot = mcode dot in
609 let id = ident false arity id in
610 Ast0.DesignatorField(dot,id)
611 | Ast0.DesignatorIndex(lb,exp,rb) ->
612 let arity = dsame (mcode2line lb) [mcode2arity lb;mcode2arity rb] in
613 let lb = mcode lb in
614 let exp = top_expression false arity exp in
615 let rb = mcode rb in
616 Ast0.DesignatorIndex(lb,exp,rb)
617 | Ast0.DesignatorRange(lb,min,dots,max,rb) ->
618 let arity =
619 dsame (mcode2line lb)
620 [mcode2arity lb;mcode2arity dots;mcode2arity rb] in
621 let lb = mcode lb in
622 let min = top_expression false arity min in
623 let dots = mcode dots in
624 let max = top_expression false arity max in
625 let rb = mcode rb in
626 Ast0.DesignatorRange(lb,min,dots,max,rb)
627
34e49164
C
628(* --------------------------------------------------------------------- *)
629(* Parameter *)
630
631and make_param =
632 make_opt_unique
633 (function x -> Ast0.OptParam x)
634 (function x -> Ast0.UniqueParam x)
635
636and parameterTypeDef tgt param =
637 let param_same = all_same true tgt in
638 match Ast0.unwrap param with
639 Ast0.VoidParam(ty) -> Ast0.rewrap param (Ast0.VoidParam(typeC tgt ty))
640 | Ast0.Param(ty,Some id) ->
641 let ty = top_typeC tgt true ty in
642 let id = ident true tgt id in
faf9a90c 643 Ast0.rewrap param
34e49164
C
644 (match (Ast0.unwrap ty,Ast0.unwrap id) with
645 (Ast0.OptType(ty),Ast0.OptIdent(id)) ->
646 Ast0.OptParam(Ast0.rewrap param (Ast0.Param(ty,Some id)))
647 | (Ast0.UniqueType(ty),Ast0.UniqueIdent(id)) ->
648 Ast0.UniqueParam(Ast0.rewrap param (Ast0.Param(ty,Some id)))
649 | (Ast0.OptType(ty),_) ->
650 fail param "arity mismatch in param declaration"
651 | (_,Ast0.OptIdent(id)) ->
652 fail param "arity mismatch in param declaration"
653 | _ -> Ast0.Param(ty,Some id))
654 | Ast0.Param(ty,None) ->
655 let ty = top_typeC tgt true ty in
faf9a90c 656 Ast0.rewrap param
34e49164
C
657 (match Ast0.unwrap ty with
658 Ast0.OptType(ty) ->
659 Ast0.OptParam(Ast0.rewrap param (Ast0.Param(ty,None)))
660 | Ast0.UniqueType(ty) ->
661 Ast0.UniqueParam(Ast0.rewrap param (Ast0.Param(ty,None)))
662 | _ -> Ast0.Param(ty,None))
663 | Ast0.MetaParam(name,pure) ->
664 let arity = param_same (mcode2line name) [mcode2arity name] in
665 let name = mcode name in
666 make_param param tgt arity (Ast0.MetaParam(name,pure))
667 | Ast0.MetaParamList(name,lenname,pure) ->
668 let arity = param_same (mcode2line name) [mcode2arity name] in
669 let name = mcode name in
670 make_param param tgt arity (Ast0.MetaParamList(name,lenname,pure))
671 | Ast0.PComma(cm) ->
672 let arity = param_same (mcode2line cm) [mcode2arity cm] in
673 let cm = mcode cm in
674 make_param param tgt arity (Ast0.PComma(cm))
675 | Ast0.Pdots(dots) ->
676 let arity = param_same (mcode2line dots) [mcode2arity dots] in
677 let dots = mcode dots in
678 make_param param tgt arity (Ast0.Pdots(dots))
679 | Ast0.Pcircles(dots) ->
680 let arity = param_same (mcode2line dots) [mcode2arity dots] in
681 let dots = mcode dots in
682 make_param param tgt arity (Ast0.Pcircles(dots))
683 | Ast0.OptParam(_) | Ast0.UniqueParam(_) ->
684 failwith "unexpected code"
685
686and parameter_list tgt = dots (parameterTypeDef tgt)
687
688(* --------------------------------------------------------------------- *)
689(* Top-level code *)
690
691and make_rule_elem x =
692 make_opt_unique
693 (function x -> Ast0.OptStm x)
694 (function x -> Ast0.UniqueStm x)
695 x
696
697and statement tgt stm =
698 let stm_same = all_same true tgt in
699 match Ast0.unwrap stm with
700 Ast0.Decl(bef,decl) ->
701 let new_decl = declaration tgt decl in
faf9a90c 702 Ast0.rewrap stm
34e49164
C
703 (match Ast0.unwrap new_decl with
704 Ast0.OptDecl(decl) ->
705 Ast0.OptStm(Ast0.rewrap stm (Ast0.Decl(bef,decl)))
706 | Ast0.UniqueDecl(decl) ->
707 Ast0.UniqueStm(Ast0.rewrap stm (Ast0.Decl(bef,decl)))
708 | _ -> Ast0.Decl(bef,new_decl))
faf9a90c 709 | Ast0.Seq(lbrace,body,rbrace) ->
34e49164
C
710 let arity =
711 stm_same (mcode2line lbrace)
712 [mcode2arity lbrace; mcode2arity rbrace] in
713 let lbrace = mcode lbrace in
714 let body = dots (statement arity) body in
715 let rbrace = mcode rbrace in
716 make_rule_elem stm tgt arity (Ast0.Seq(lbrace,body,rbrace))
717 | Ast0.ExprStatement(exp,sem) ->
718 let arity = stm_same (mcode2line sem) [mcode2arity sem] in
719 let exp = expression arity exp in
720 let sem = mcode sem in
721 make_rule_elem stm tgt arity (Ast0.ExprStatement(exp,sem))
722 | Ast0.IfThen(iff,lp,exp,rp,branch,aft) ->
723 let arity =
724 stm_same (mcode2line iff) (List.map mcode2arity [iff;lp;rp]) in
725 let iff = mcode iff in
726 let lp = mcode lp in
727 let exp = expression arity exp in
728 let rp = mcode rp in
729 let branch = statement arity branch in
730 make_rule_elem stm tgt arity (Ast0.IfThen(iff,lp,exp,rp,branch,aft))
731 | Ast0.IfThenElse(iff,lp,exp,rp,branch1,els,branch2,aft) ->
732 let arity =
733 stm_same (mcode2line iff) (List.map mcode2arity [iff;lp;rp;els]) in
734 let iff = mcode iff in
735 let lp = mcode lp in
736 let exp = expression arity exp in
737 let rp = mcode rp in
738 let branch1 = statement arity branch1 in
739 let els = mcode els in
740 let branch2 = statement arity branch2 in
741 make_rule_elem stm tgt arity
742 (Ast0.IfThenElse(iff,lp,exp,rp,branch1,els,branch2,aft))
743 | Ast0.While(wh,lp,exp,rp,body,aft) ->
744 let arity =
745 stm_same (mcode2line wh)
746 (List.map mcode2arity [wh;lp;rp]) in
747 let wh = mcode wh in
748 let lp = mcode lp in
749 let exp = expression arity exp in
750 let rp = mcode rp in
751 let body = statement arity body in
752 make_rule_elem stm tgt arity (Ast0.While(wh,lp,exp,rp,body,aft))
753 | Ast0.Do(d,body,wh,lp,exp,rp,sem) ->
754 let arity =
755 stm_same (mcode2line wh) (List.map mcode2arity [d;wh;lp;rp;sem]) in
756 let d = mcode d in
757 let body = statement arity body in
758 let wh = mcode wh in
759 let lp = mcode lp in
760 let exp = expression arity exp in
761 let rp = mcode rp in
762 let sem = mcode sem in
763 make_rule_elem stm tgt arity (Ast0.Do(d,body,wh,lp,exp,rp,sem))
764 | Ast0.For(fr,lp,exp1,sem1,exp2,sem2,exp3,rp,body,aft) ->
765 let arity =
766 stm_same (mcode2line fr) (List.map mcode2arity [fr;lp;sem1;sem2;rp]) in
767 let fr = mcode fr in
768 let lp = mcode lp in
769 let exp1 = get_option (expression arity) exp1 in
770 let sem1 = mcode sem1 in
771 let exp2 = get_option (expression arity) exp2 in
772 let sem2= mcode sem2 in
773 let exp3 = get_option (expression arity) exp3 in
774 let rp = mcode rp in
775 let body = statement arity body in
776 make_rule_elem stm tgt arity
777 (Ast0.For(fr,lp,exp1,sem1,exp2,sem2,exp3,rp,body,aft))
778 | Ast0.Iterator(nm,lp,args,rp,body,aft) ->
779 let arity = stm_same (mcode2line lp) (List.map mcode2arity [lp;rp]) in
780 let nm = ident false arity nm in
781 let lp = mcode lp in
782 let args = dots (expression arity) args in
783 let rp = mcode rp in
784 let body = statement arity body in
785 make_rule_elem stm tgt arity (Ast0.Iterator(nm,lp,args,rp,body,aft))
fc1ad971 786 | Ast0.Switch(switch,lp,exp,rp,lb,decls,cases,rb) ->
34e49164
C
787 let arity =
788 stm_same (mcode2line switch)
789 (List.map mcode2arity [switch;lp;rp;lb;rb]) in
790 let switch = mcode switch in
791 let lp = mcode lp in
792 let exp = expression arity exp in
793 let rp = mcode rp in
794 let lb = mcode lb in
fc1ad971 795 let decls = dots (statement arity) decls in
34e49164
C
796 let cases = dots (case_line arity) cases in
797 let rb = mcode rb in
798 make_rule_elem stm tgt arity
fc1ad971 799 (Ast0.Switch(switch,lp,exp,rp,lb,decls,cases,rb))
34e49164
C
800 | Ast0.Break(br,sem) ->
801 let arity = stm_same (mcode2line br) (List.map mcode2arity [br;sem]) in
802 let br = mcode br in
803 let sem = mcode sem in
804 make_rule_elem stm tgt arity (Ast0.Break(br,sem))
805 | Ast0.Continue(cont,sem) ->
806 let arity =
807 stm_same (mcode2line cont) (List.map mcode2arity [cont;sem]) in
808 let cont = mcode cont in
809 let sem = mcode sem in
810 make_rule_elem stm tgt arity (Ast0.Continue(cont,sem))
811 | Ast0.Label(l,dd) ->
812 let arity = mcode2arity dd in
813 let l = ident false tgt l in
814 let dd = mcode dd in
815 make_rule_elem stm tgt arity (Ast0.Label(l,dd))
816 | Ast0.Goto(goto,l,sem) ->
817 let arity =
818 stm_same (mcode2line goto) (List.map mcode2arity [goto;sem]) in
819 let goto = mcode goto in
5636bb2c 820 let l = ident false arity l in
34e49164
C
821 let sem = mcode sem in
822 make_rule_elem stm tgt arity (Ast0.Goto(goto,l,sem))
823 | Ast0.Return(ret,sem) ->
824 let arity = stm_same (mcode2line ret) (List.map mcode2arity [ret;sem]) in
825 let ret = mcode ret in
826 let sem = mcode sem in
827 make_rule_elem stm tgt arity (Ast0.Return(ret,sem))
828 | Ast0.ReturnExpr(ret,exp,sem) ->
829 let arity = stm_same (mcode2line ret) (List.map mcode2arity [ret;sem]) in
830 let ret = mcode ret in
831 let exp = expression arity exp in
832 let sem = mcode sem in
833 make_rule_elem stm tgt arity (Ast0.ReturnExpr(ret,exp,sem))
834 | Ast0.MetaStmt(name,pure) ->
835 let arity = stm_same (mcode2line name) [mcode2arity name] in
836 let name = mcode name in
837 make_rule_elem stm tgt arity (Ast0.MetaStmt(name,pure))
838 | Ast0.MetaStmtList(name,pure) ->
839 let arity = stm_same (mcode2line name) [mcode2arity name] in
840 let name = mcode name in
841 make_rule_elem stm tgt arity (Ast0.MetaStmtList(name,pure))
842 | Ast0.Exp(exp) ->
843 let new_exp = top_expression true tgt exp in
faf9a90c 844 Ast0.rewrap stm
34e49164
C
845 (match Ast0.unwrap new_exp with
846 Ast0.OptExp(exp) ->
847 Ast0.OptStm(Ast0.rewrap stm (Ast0.Exp(exp)))
848 | Ast0.UniqueExp(exp) ->
849 Ast0.UniqueStm(Ast0.rewrap stm (Ast0.Exp(exp)))
850 | _ -> Ast0.Exp(new_exp))
851 | Ast0.TopExp(exp) ->
852 let new_exp = top_expression true tgt exp in
faf9a90c 853 Ast0.rewrap stm
34e49164
C
854 (match Ast0.unwrap new_exp with
855 Ast0.OptExp(exp) ->
856 Ast0.OptStm(Ast0.rewrap stm (Ast0.TopExp(exp)))
857 | Ast0.UniqueExp(exp) ->
858 Ast0.UniqueStm(Ast0.rewrap stm (Ast0.TopExp(exp)))
859 | _ -> Ast0.TopExp(new_exp))
860 | Ast0.Ty(ty) ->
861 let new_ty = typeC tgt ty in (* opt makes no sense alone at top level *)
faf9a90c 862 Ast0.rewrap stm
34e49164
C
863 (match Ast0.unwrap new_ty with
864 Ast0.OptType(ty) ->
865 Ast0.OptStm(Ast0.rewrap stm (Ast0.Ty(ty)))
866 | Ast0.UniqueType(ty) ->
867 Ast0.UniqueStm(Ast0.rewrap stm (Ast0.Ty(ty)))
868 | _ -> Ast0.Ty(new_ty))
1be43e12
C
869 | Ast0.TopInit(init) ->
870 let new_init = initialiser tgt init in
871 Ast0.rewrap stm
872 (match Ast0.unwrap new_init with
873 Ast0.OptIni(init) ->
874 Ast0.OptStm(Ast0.rewrap stm (Ast0.TopInit(init)))
875 | Ast0.UniqueIni(init) ->
876 Ast0.UniqueStm(Ast0.rewrap stm (Ast0.TopInit(init)))
877 | _ -> Ast0.TopInit(new_init))
34e49164
C
878 | Ast0.Disj(starter,rule_elem_dots_list,mids,ender) ->
879 let stms =
880 List.map (function x -> concat_dots (statement tgt) x)
881 rule_elem_dots_list in
882 let (found_opt,unopt) =
883 List.fold_left
884 (function (found_opt,lines) ->
885 function x ->
886 let rebuild l =
887 (* previously just checked the last thing in the list,
888 but everything should be optional for the whole thing to
889 be optional *)
890 let is_opt x =
891 match Ast0.unwrap x with
892 Ast0.OptStm(x) -> true
893 | _ -> false in
894 let unopt x =
895 match Ast0.unwrap x with
896 Ast0.OptStm(x) -> x
897 | _ -> x in
898 if List.for_all is_opt l
899 then (true,List.map unopt l)
900 else (false, l) in
901 let (l,k) =
902 match Ast0.unwrap x with
903 Ast0.DOTS(l) ->
904 (l,function l -> Ast0.rewrap x (Ast0.DOTS l))
905 | Ast0.CIRCLES(l) ->
906 (l,function l -> Ast0.rewrap x (Ast0.CIRCLES l))
907 | Ast0.STARS(l) ->
908 (l,function l -> Ast0.rewrap x (Ast0.STARS l)) in
909 let (found_opt,l) = rebuild l in
910 (found_opt,(k l)::lines))
911 (false,[]) stms in
912 let unopt = List.rev unopt in
913 if found_opt
914 then
915 make_rule_elem stm tgt Ast0.OPT (Ast0.Disj(starter,unopt,mids,ender))
916 else Ast0.rewrap stm (Ast0.Disj(starter,stms,mids,ender))
917 | Ast0.Nest(starter,rule_elem_dots,ender,whn,multi) ->
918 let new_rule_elem_dots =
919 concat_dots (statement Ast0.NONE) rule_elem_dots in
920 let whn =
921 List.map
1be43e12
C
922 (whencode (concat_dots (statement Ast0.NONE)) (statement Ast0.NONE)
923 (expression Ast0.NONE))
34e49164
C
924 whn in
925 Ast0.rewrap stm
926 (Ast0.Nest(starter,new_rule_elem_dots,ender,whn,multi))
927 | Ast0.Dots(dots,whn) ->
928 let arity = stm_same (mcode2line dots) [mcode2arity dots] in
929 let dots = mcode dots in
930 let whn =
931 List.map
1be43e12
C
932 (whencode (concat_dots (statement Ast0.NONE)) (statement Ast0.NONE)
933 (expression Ast0.NONE))
34e49164
C
934 whn in
935 make_rule_elem stm tgt arity (Ast0.Dots(dots,whn))
936 | Ast0.Circles(dots,whn) ->
937 let arity = stm_same (mcode2line dots) [mcode2arity dots] in
938 let dots = mcode dots in
939 let whn =
940 List.map
1be43e12
C
941 (whencode (concat_dots (statement Ast0.NONE)) (statement Ast0.NONE)
942 (expression Ast0.NONE))
34e49164
C
943 whn in
944 make_rule_elem stm tgt arity (Ast0.Circles(dots,whn))
945 | Ast0.Stars(dots,whn) ->
946 let arity = stm_same (mcode2line dots) [mcode2arity dots] in
947 let dots = mcode dots in
948 let whn =
949 List.map
1be43e12
C
950 (whencode (concat_dots (statement Ast0.NONE)) (statement Ast0.NONE)
951 (expression Ast0.NONE))
34e49164
C
952 whn in
953 make_rule_elem stm tgt arity (Ast0.Stars(dots,whn))
954 | Ast0.FunDecl(bef,fi,name,lp,params,rp,lbrace,body,rbrace) ->
955 let arity =
956 all_same true tgt (mcode2line lp)
957 ((List.map mcode2arity [lp;rp;lbrace;rbrace]) @ (fninfo2arity fi)) in
958 let fi = List.map (fninfo arity) fi in
959 let name = ident false arity name in
960 let lp = mcode lp in
961 let params = parameter_list arity params in
962 let rp = mcode rp in
963 let lbrace = mcode lbrace in
964 let body = dots (statement arity) body in
965 let rbrace = mcode rbrace in
966 make_rule_elem stm tgt arity
967 (Ast0.FunDecl(bef,fi,name,lp,params,rp,lbrace,body,rbrace))
faf9a90c 968 | Ast0.Include(inc,s) ->
34e49164
C
969 let arity =
970 all_same true tgt (mcode2line inc) [mcode2arity inc; mcode2arity s] in
971 let inc = mcode inc in
972 let s = mcode s in
973 make_rule_elem stm tgt arity (Ast0.Include(inc,s))
3a314143
C
974 | Ast0.Undef(def,id) ->
975 let arity = all_same true tgt (mcode2line def) [mcode2arity def] in
976 let def = mcode def in
977 let id = ident false arity id in
978 make_rule_elem stm tgt arity (Ast0.Undef(def,id))
34e49164
C
979 | Ast0.Define(def,id,params,body) ->
980 let arity = all_same true tgt (mcode2line def) [mcode2arity def] in
981 let def = mcode def in
982 let id = ident false arity id in
983 let params = define_parameters arity params in
984 let body = dots (statement arity) body in
985 make_rule_elem stm tgt arity (Ast0.Define(def,id,params,body))
986 | Ast0.OptStm(_) | Ast0.UniqueStm(_) ->
987 failwith "unexpected code"
988
989and define_parameters tgt params =
990 match Ast0.unwrap params with
991 Ast0.NoParams -> params
992 | Ast0.DParams(lp,params,rp) ->
993 let arity =
994 all_same true tgt (mcode2line lp) [mcode2arity lp;mcode2arity rp] in
995 let lp = mcode lp in
996 let params = dots (define_param arity) params in
997 let rp = mcode rp in
998 Ast0.rewrap params (Ast0.DParams(lp,params,rp))
999
1000and make_define_param x =
1001 make_opt_unique
1002 (function x -> Ast0.OptDParam x)
1003 (function x -> Ast0.UniqueDParam x)
1004 x
1005
1006and define_param tgt param =
1007 match Ast0.unwrap param with
1008 Ast0.DParam(id) ->
1009 let new_id = ident true tgt id in
1010 Ast0.rewrap param
1011 (match Ast0.unwrap new_id with
1012 Ast0.OptIdent(id) ->
1013 Ast0.OptDParam(Ast0.rewrap param (Ast0.DParam(id)))
1014 | Ast0.UniqueIdent(decl) ->
1015 Ast0.UniqueDParam(Ast0.rewrap param (Ast0.DParam(id)))
1016 | _ -> Ast0.DParam(new_id))
1017 | Ast0.DPComma(cm) ->
1018 let arity =
1019 all_same true tgt (mcode2line cm) [mcode2arity cm] in
1020 let cm = mcode cm in
1021 make_define_param param tgt arity (Ast0.DPComma(cm))
1022 | Ast0.DPdots(dots) ->
1023 let arity =
1024 all_same true tgt (mcode2line dots) [mcode2arity dots] in
1025 let dots = mcode dots in
1026 make_define_param param tgt arity (Ast0.DPdots(dots))
1027 | Ast0.DPcircles(circles) ->
1028 let arity =
1029 all_same true tgt (mcode2line circles) [mcode2arity circles] in
1030 let circles = mcode circles in
1031 make_define_param param tgt arity (Ast0.DPcircles(circles))
1032 | Ast0.OptDParam(dp) | Ast0.UniqueDParam(dp) ->
1033 failwith "unexpected code"
1034
1035and fninfo arity = function
1036 Ast0.FStorage(stg) -> Ast0.FStorage(mcode stg)
1037 | Ast0.FType(ty) -> Ast0.FType(typeC arity ty)
1038 | Ast0.FInline(inline) -> Ast0.FInline(mcode inline)
1039 | Ast0.FAttr(attr) -> Ast0.FAttr(mcode attr)
1040
1041and fninfo2arity fninfo =
1042 List.concat
1043 (List.map
1044 (function
1045 Ast0.FStorage(stg) -> [mcode2arity stg]
1046 | Ast0.FType(ty) -> []
1047 | Ast0.FInline(inline) -> [mcode2arity inline]
1048 | Ast0.FAttr(attr) -> [mcode2arity attr])
1049 fninfo)
1050
1be43e12 1051and whencode notfn alwaysfn expression = function
34e49164
C
1052 Ast0.WhenNot a -> Ast0.WhenNot (notfn a)
1053 | Ast0.WhenAlways a -> Ast0.WhenAlways (alwaysfn a)
1054 | Ast0.WhenModifier(x) -> Ast0.WhenModifier(x)
1be43e12
C
1055 | Ast0.WhenNotTrue a -> Ast0.WhenNotTrue (expression a)
1056 | Ast0.WhenNotFalse a -> Ast0.WhenNotFalse (expression a)
34e49164
C
1057
1058and make_case_line =
1059 make_opt_unique
1060 (function x -> Ast0.OptCase x)
1061 (function x -> failwith "unique not allowed for case_line")
1062
1063and case_line tgt c =
1064 match Ast0.unwrap c with
1065 Ast0.Default(def,colon,code) ->
1066 let arity =
1067 all_same true tgt (mcode2line def)
1068 [mcode2arity def; mcode2arity colon] in
1069 let def = mcode def in
1070 let colon = mcode colon in
1071 let code = dots (statement arity) code in
1072 make_case_line c tgt arity (Ast0.Default(def,colon,code))
1073 | Ast0.Case(case,exp,colon,code) ->
1074 let arity =
1075 all_same true tgt (mcode2line case)
1076 [mcode2arity case; mcode2arity colon] in
1077 let case = mcode case in
1078 let exp = expression arity exp in
1079 let colon = mcode colon in
1080 let code = dots (statement arity) code in
1081 make_case_line c tgt arity (Ast0.Case(case,exp,colon,code))
fc1ad971
C
1082 | Ast0.DisjCase(starter,case_lines,mids,ender) ->
1083 let case_lines = List.map (case_line tgt) case_lines in
1084 (match List.rev case_lines with
1085 _::xs ->
1086 if anyopt xs (function Ast0.OptCase(_) -> true | _ -> false)
1087 then fail c "opt only allowed in the last disjunct"
1088 | _ -> ());
1089 Ast0.rewrap c (Ast0.DisjCase(starter,case_lines,mids,ender))
34e49164
C
1090 | Ast0.OptCase(_) -> failwith "unexpected OptCase"
1091
1092(* --------------------------------------------------------------------- *)
1093(* Function declaration *)
1094(* Haven't thought much about arity here... *)
1095
1096let top_level tgt t =
1097 Ast0.rewrap t
1098 (match Ast0.unwrap t with
faf9a90c 1099 Ast0.FILEINFO(old_file,new_file) ->
34e49164
C
1100 if mcode2arity old_file = Ast0.NONE && mcode2arity new_file = Ast0.NONE
1101 then Ast0.FILEINFO(mcode old_file,mcode new_file)
1102 else fail t "unexpected arity for file info"
1103 | Ast0.DECL(stmt) ->
1104 Ast0.DECL(statement tgt stmt)
1105 | Ast0.CODE(rule_elem_dots) ->
1106 Ast0.CODE(concat_dots (statement tgt) rule_elem_dots)
1107 | Ast0.ERRORWORDS(exps) ->
1108 Ast0.ERRORWORDS(List.map (top_expression false Ast0.NONE) exps)
1109 | Ast0.OTHER(_) -> fail t "eliminated by top_level")
1110
1111let rule tgt = List.map (top_level tgt)
1112
1113(* --------------------------------------------------------------------- *)
1114(* Entry points *)
1115
1116let minus_arity code =
1117 rule Ast0.NONE code