Release coccinelle-0.2.5-rc2
[bpt/coccinelle.git] / parsing_cocci / ast0_cocci.mli
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(* --------------------------------------------------------------------- *)
26(* Modified code *)
27
28type arity = OPT | UNIQUE | NONE
29
30type token_info =
31 { tline_start : int; tline_end : int;
32 left_offset : int; right_offset : int }
33val default_token_info : token_info
34
35type mcodekind =
36 MINUS of (Ast_cocci.anything list list * token_info) ref
951c7801 37 | PLUS of Ast_cocci.count
34e49164
C
38 | CONTEXT of (Ast_cocci.anything Ast_cocci.befaft *
39 token_info * token_info) ref
40 | MIXED of (Ast_cocci.anything Ast_cocci.befaft *
41 token_info * token_info) ref
42
0708f913
C
43type position_info = { line_start : int; line_end : int;
44 logical_start : int; logical_end : int;
45 column : int; offset : int; }
46
47type info = { pos_info : position_info;
34e49164
C
48 attachable_start : bool; attachable_end : bool;
49 mcode_start : mcodekind list; mcode_end : mcodekind list;
34e49164 50 (* the following are only for + code *)
c3e37e97
C
51 strings_before : (Ast_cocci.added_string * position_info) list;
52 strings_after : (Ast_cocci.added_string * position_info) list }
34e49164 53
708f4980
C
54type 'a mcode =
55 'a * arity * info * mcodekind * meta_pos ref (* pos, - only *) *
56 int (* adjacency_index *)
57
34e49164
C
58and 'a wrap =
59 { node : 'a;
60 info : info;
61 index : int ref;
62 mcodekind : mcodekind ref;
63 exp_ty : Type_cocci.typeC option ref; (* only for expressions *)
64 bef_aft : dots_bef_aft; (* only for statements *)
65 true_if_arg : bool; (* true if "arg_exp", only for exprs *)
66 true_if_test : bool; (* true if "test position", only for exprs *)
67 true_if_test_exp : bool;(* true if "test_exp from iso", only for exprs *)
68 (*nonempty if this represents the use of an iso*)
69 iso_info : (string*anything) list }
70
71and dots_bef_aft =
72 NoDots | AddingBetweenDots of statement | DroppingBetweenDots of statement
73
74(* for iso metavariables, true if they can only match nonmodified, unitary
75 metavariables
76 for SP metavariables, true if the metavariable is unitary (valid up to
77 isomorphism phase only) *)
78and pure = Impure | Pure | Context | PureContext (* pure and only context *)
79
80(* --------------------------------------------------------------------- *)
81(* --------------------------------------------------------------------- *)
82(* Dots *)
83
84and 'a base_dots =
85 DOTS of 'a list
86 | CIRCLES of 'a list
87 | STARS of 'a list
88
89and 'a dots = 'a base_dots wrap
90
91(* --------------------------------------------------------------------- *)
92(* Identifier *)
93
94and base_ident =
951c7801
C
95 Id of string mcode
96 | MetaId of Ast_cocci.meta_name mcode * Ast_cocci.idconstraint * pure
97 | MetaFunc of Ast_cocci.meta_name mcode * Ast_cocci.idconstraint * pure
98 | MetaLocalFunc of Ast_cocci.meta_name mcode * Ast_cocci.idconstraint * pure
34e49164
C
99 | OptIdent of ident
100 | UniqueIdent of ident
101
102and ident = base_ident wrap
103
104(* --------------------------------------------------------------------- *)
105(* Expression *)
106
faf9a90c 107and base_expression =
34e49164
C
108 Ident of ident
109 | Constant of Ast_cocci.constant mcode
110 | FunCall of expression * string mcode (* ( *) *
111 expression dots * string mcode (* ) *)
112 | Assignment of expression * Ast_cocci.assignOp mcode * expression *
113 bool (* true if it can match an initialization *)
114 | CondExpr of expression * string mcode (* ? *) * expression option *
115 string mcode (* : *) * expression
116 | Postfix of expression * Ast_cocci.fixOp mcode
117 | Infix of expression * Ast_cocci.fixOp mcode
118 | Unary of expression * Ast_cocci.unaryOp mcode
119 | Binary of expression * Ast_cocci.binaryOp mcode * expression
120 | Nested of expression * Ast_cocci.binaryOp mcode * expression
121 | Paren of string mcode (* ( *) * expression *
122 string mcode (* ) *)
123 | ArrayAccess of expression * string mcode (* [ *) * expression *
124 string mcode (* ] *)
125 | RecordAccess of expression * string mcode (* . *) * ident
126 | RecordPtAccess of expression * string mcode (* -> *) * ident
127 | Cast of string mcode (* ( *) * typeC * string mcode (* ) *) *
128 expression
129 | SizeOfExpr of string mcode (* sizeof *) * expression
130 | SizeOfType of string mcode (* sizeof *) * string mcode (* ( *) *
131 typeC * string mcode (* ) *)
132 | TypeExp of typeC
951c7801
C
133 | MetaErr of Ast_cocci.meta_name mcode * constraints * pure
134 | MetaExpr of Ast_cocci.meta_name mcode * constraints *
34e49164
C
135 Type_cocci.typeC list option * Ast_cocci.form * pure
136 | MetaExprList of Ast_cocci.meta_name mcode (* only in arglists *) *
137 listlen * pure
138 | EComma of string mcode (* only in arglists *)
139 | DisjExpr of string mcode * expression list * string mcode list *
140 string mcode
141 | NestExpr of string mcode * expression dots * string mcode *
142 expression option * Ast_cocci.multi
143 | Edots of string mcode (* ... *) * expression option
144 | Ecircles of string mcode (* ooo *) * expression option
145 | Estars of string mcode (* *** *) * expression option
146 | OptExp of expression
147 | UniqueExp of expression
148
149and expression = base_expression wrap
150
951c7801
C
151and constraints =
152 NoConstraint
5636bb2c 153 | NotIdCstrt of Ast_cocci.reconstraint
951c7801 154 | NotExpCstrt of expression list
5636bb2c 155 | SubExpCstrt of Ast_cocci.meta_name list
951c7801 156
88e71198
C
157and listlen =
158 MetaListLen of Ast_cocci.meta_name mcode
159 | CstListLen of int
160 | AnyListLen
34e49164
C
161
162(* --------------------------------------------------------------------- *)
163(* Types *)
164
faf9a90c 165and base_typeC =
34e49164 166 ConstVol of Ast_cocci.const_vol mcode * typeC
faf9a90c
C
167 | BaseType of Ast_cocci.baseType * string mcode list
168 | Signed of Ast_cocci.sign mcode * typeC option
34e49164
C
169 | Pointer of typeC * string mcode (* * *)
170 | FunctionPointer of typeC *
171 string mcode(* ( *)*string mcode(* * *)*string mcode(* ) *)*
172 string mcode (* ( *)*parameter_list*string mcode(* ) *)
173 | FunctionType of typeC option *
174 string mcode (* ( *) * parameter_list *
175 string mcode (* ) *)
176 | Array of typeC * string mcode (* [ *) *
177 expression option * string mcode (* ] *)
c491d8ee
C
178 | EnumName of string mcode (*enum*) * ident option (* name *)
179 | EnumDef of typeC (* either StructUnionName or metavar *) *
180 string mcode (* { *) * expression dots * string mcode (* } *)
34e49164
C
181 | StructUnionName of Ast_cocci.structUnion mcode * ident option (* name *)
182 | StructUnionDef of typeC (* either StructUnionName or metavar *) *
183 string mcode (* { *) * declaration dots * string mcode (* } *)
184 | TypeName of string mcode
185 | MetaType of Ast_cocci.meta_name mcode * pure
186 | DisjType of string mcode * typeC list * (* only after iso *)
187 string mcode list (* the |s *) * string mcode
188 | OptType of typeC
189 | UniqueType of typeC
190
191and typeC = base_typeC wrap
192
193(* --------------------------------------------------------------------- *)
194(* Variable declaration *)
195(* Even if the Cocci program specifies a list of declarations, they are
196 split out into multiple declarations of a single variable each. *)
197
198and base_declaration =
413ffc02
C
199 MetaDecl of Ast_cocci.meta_name mcode * pure
200 | MetaField of Ast_cocci.meta_name mcode * pure (* structure fields *)
201 | Init of Ast_cocci.storage mcode option * typeC * ident *
34e49164
C
202 string mcode (*=*) * initialiser * string mcode (*;*)
203 | UnInit of Ast_cocci.storage mcode option * typeC * ident *
204 string mcode (* ; *)
205 | TyDecl of typeC * string mcode (* ; *)
206 | MacroDecl of ident (* name *) * string mcode (* ( *) *
207 expression dots * string mcode (* ) *) * string mcode (* ; *)
208 | Typedef of string mcode (* typedef *) * typeC * typeC * string mcode (*;*)
209 | DisjDecl of string mcode * declaration list * string mcode list *
210 string mcode
211 | Ddots of string mcode (* ... *) * declaration option (* whencode *)
212 | OptDecl of declaration
213 | UniqueDecl of declaration
214
215and declaration = base_declaration wrap
216
217(* --------------------------------------------------------------------- *)
218(* Initializers *)
219
220and base_initialiser =
113803cf
C
221 MetaInit of Ast_cocci.meta_name mcode * pure
222 | InitExpr of expression
c491d8ee
C
223 | InitList of string mcode (*{*) * initialiser_list * string mcode (*}*) *
224 bool (* true if ordered, false if unordered *)
113803cf
C
225 | InitGccExt of
226 designator list (* name *) * string mcode (*=*) *
34e49164
C
227 initialiser (* gccext: *)
228 | InitGccName of ident (* name *) * string mcode (*:*) *
229 initialiser
34e49164
C
230 | IComma of string mcode
231 | Idots of string mcode (* ... *) * initialiser option (* whencode *)
232 | OptIni of initialiser
233 | UniqueIni of initialiser
234
113803cf
C
235and designator =
236 DesignatorField of string mcode (* . *) * ident
237 | DesignatorIndex of string mcode (* [ *) * expression * string mcode (* ] *)
238 | DesignatorRange of
239 string mcode (* [ *) * expression * string mcode (* ... *) *
240 expression * string mcode (* ] *)
241
34e49164
C
242and initialiser = base_initialiser wrap
243
244and initialiser_list = initialiser dots
245
246(* --------------------------------------------------------------------- *)
247(* Parameter *)
248
249and base_parameterTypeDef =
250 VoidParam of typeC
251 | Param of typeC * ident option
252 | MetaParam of Ast_cocci.meta_name mcode * pure
253 | MetaParamList of Ast_cocci.meta_name mcode * listlen * pure
254 | PComma of string mcode
255 | Pdots of string mcode (* ... *)
256 | Pcircles of string mcode (* ooo *)
257 | OptParam of parameterTypeDef
258 | UniqueParam of parameterTypeDef
259
260and parameterTypeDef = base_parameterTypeDef wrap
261
262and parameter_list = parameterTypeDef dots
263
264(* --------------------------------------------------------------------- *)
265(* #define Parameters *)
266
267and base_define_param =
268 DParam of ident
269 | DPComma of string mcode
270 | DPdots of string mcode (* ... *)
271 | DPcircles of string mcode (* ooo *)
272 | OptDParam of define_param
273 | UniqueDParam of define_param
274
275and define_param = base_define_param wrap
276
277and base_define_parameters =
278 NoParams
279 | DParams of string mcode(*( *) * define_param dots * string mcode(* )*)
280
281and define_parameters = base_define_parameters wrap
282
283(* --------------------------------------------------------------------- *)
284(* Statement*)
285
286and base_statement =
287 Decl of (info * mcodekind) (* before the decl *) * declaration
288 | Seq of string mcode (* { *) * statement dots *
289 string mcode (* } *)
290 | ExprStatement of expression * string mcode (*;*)
291 | IfThen of string mcode (* if *) * string mcode (* ( *) *
292 expression * string mcode (* ) *) *
293 statement * (info * mcodekind)
294 | IfThenElse of string mcode (* if *) * string mcode (* ( *) *
295 expression * string mcode (* ) *) *
296 statement * string mcode (* else *) * statement *
297 (info * mcodekind)
298 | While of string mcode (* while *) * string mcode (* ( *) *
299 expression * string mcode (* ) *) *
300 statement * (info * mcodekind) (* after info *)
301 | Do of string mcode (* do *) * statement *
302 string mcode (* while *) * string mcode (* ( *) *
303 expression * string mcode (* ) *) *
304 string mcode (* ; *)
305 | For of string mcode (* for *) * string mcode (* ( *) *
306 expression option * string mcode (*;*) *
307 expression option * string mcode (*;*) *
308 expression option * string mcode (* ) *) * statement *
309 (info * mcodekind) (* after info *)
310 | Iterator of ident (* name *) * string mcode (* ( *) *
311 expression dots * string mcode (* ) *) *
312 statement * (info * mcodekind) (* after info *)
313 | Switch of string mcode (* switch *) * string mcode (* ( *) *
314 expression * string mcode (* ) *) * string mcode (* { *) *
fc1ad971 315 statement (*decl*) dots *
34e49164
C
316 case_line dots * string mcode (* } *)
317 | Break of string mcode (* break *) * string mcode (* ; *)
318 | Continue of string mcode (* continue *) * string mcode (* ; *)
319 | Label of ident * string mcode (* : *)
320 | Goto of string mcode (* goto *) * ident * string mcode (* ; *)
321 | Return of string mcode (* return *) * string mcode (* ; *)
322 | ReturnExpr of string mcode (* return *) * expression *
323 string mcode (* ; *)
324 | MetaStmt of Ast_cocci.meta_name mcode * pure
325 | MetaStmtList of Ast_cocci.meta_name mcode (*only in statement lists*) *
326 pure
327 | Exp of expression (* only in dotted statement lists *)
328 | TopExp of expression (* for macros body *)
329 | Ty of typeC (* only at top level *)
1be43e12 330 | TopInit of initialiser (* only at top level *)
34e49164
C
331 | Disj of string mcode * statement dots list * string mcode list *
332 string mcode
333 | Nest of string mcode * statement dots * string mcode *
334 (statement dots,statement) whencode list * Ast_cocci.multi
335 | Dots of string mcode (* ... *) *
336 (statement dots,statement) whencode list
337 | Circles of string mcode (* ooo *) *
338 (statement dots,statement) whencode list
339 | Stars of string mcode (* *** *) *
340 (statement dots,statement) whencode list
341 | FunDecl of (info * mcodekind) (* before the function decl *) *
342 fninfo list * ident (* name *) *
343 string mcode (* ( *) * parameter_list * string mcode (* ) *) *
344 string mcode (* { *) * statement dots *
345 string mcode (* } *)
346 | Include of string mcode (* #include *) * Ast_cocci.inc_file mcode(* file *)
3a314143 347 | Undef of string mcode (* #define *) * ident (* name *)
34e49164
C
348 | Define of string mcode (* #define *) * ident (* name *) *
349 define_parameters (*params*) * statement dots
350 | OptStm of statement
351 | UniqueStm of statement
352
353and fninfo =
354 FStorage of Ast_cocci.storage mcode
355 | FType of typeC
356 | FInline of string mcode
357 | FAttr of string mcode
358
359and ('a,'b) whencode =
360 WhenNot of 'a
361 | WhenAlways of 'b
362 | WhenModifier of Ast_cocci.when_modifier
1be43e12
C
363 | WhenNotTrue of expression
364 | WhenNotFalse of expression
34e49164
C
365
366and statement = base_statement wrap
367
368and base_case_line =
369 Default of string mcode (* default *) * string mcode (*:*) * statement dots
370 | Case of string mcode (* case *) * expression * string mcode (*:*) *
371 statement dots
fc1ad971
C
372 | DisjCase of string mcode * case_line list *
373 string mcode list (* the |s *) * string mcode
34e49164
C
374 | OptCase of case_line
375
376and case_line = base_case_line wrap
377
378(* --------------------------------------------------------------------- *)
379(* Positions *)
380
381and meta_pos =
382 MetaPos of Ast_cocci.meta_name mcode * Ast_cocci.meta_name list *
383 Ast_cocci.meta_collect
384 | NoMetaPos
385
386(* --------------------------------------------------------------------- *)
387(* Top-level code *)
388
389and base_top_level =
390 DECL of statement
391 | CODE of statement dots
392 | FILEINFO of string mcode (* old file *) * string mcode (* new file *)
393 | ERRORWORDS of expression list
394 | OTHER of statement (* temporary, disappears after top_level.ml *)
395
396and top_level = base_top_level wrap
397and rule = top_level list
398
399and parsed_rule =
400 CocciRule of
401 (rule * Ast_cocci.metavar list *
402 (string list * string list * Ast_cocci.dependency * string *
403 Ast_cocci.exists)) *
faf9a90c 404 (rule * Ast_cocci.metavar list) * Ast_cocci.ruletype
174d1640
C
405 | ScriptRule of string (* name *) *
406 string * Ast_cocci.dependency *
aba5c457 407 (Ast_cocci.script_meta_name *
413ffc02
C
408 Ast_cocci.meta_name * Ast_cocci.metavar) list (*inherited vars*) *
409 Ast_cocci.meta_name list (*script vars*) *
34e49164 410 string
174d1640 411 | InitialScriptRule of string (* name *) *
c3e37e97 412 string (*language*) * Ast_cocci.dependency * string (*code*)
174d1640 413 | FinalScriptRule of string (* name *) *
c3e37e97 414 string (*language*) * Ast_cocci.dependency * string (*code*)
34e49164
C
415
416(* --------------------------------------------------------------------- *)
417
418and anything =
419 DotsExprTag of expression dots
420 | DotsInitTag of initialiser dots
421 | DotsParamTag of parameterTypeDef dots
422 | DotsStmtTag of statement dots
423 | DotsDeclTag of declaration dots
424 | DotsCaseTag of case_line dots
425 | IdentTag of ident
426 | ExprTag of expression
427 | ArgExprTag of expression (* for isos *)
428 | TestExprTag of expression (* for isos *)
429 | TypeCTag of typeC
430 | ParamTag of parameterTypeDef
431 | InitTag of initialiser
432 | DeclTag of declaration
433 | StmtTag of statement
434 | CaseLineTag of case_line
435 | TopTag of top_level
436 | IsoWhenTag of Ast_cocci.when_modifier (*only for when code, in iso phase*)
1be43e12
C
437 | IsoWhenTTag of expression(*only for when code, in iso phase*)
438 | IsoWhenFTag of expression(*only for when code, in iso phase*)
34e49164
C
439 | MetaPosTag of meta_pos (* only in iso phase *)
440
441val dotsExpr : expression dots -> anything
442val dotsInit : initialiser dots -> anything
443val dotsParam : parameterTypeDef dots -> anything
444val dotsStmt : statement dots -> anything
445val dotsDecl : declaration dots -> anything
446val dotsCase : case_line dots -> anything
447val ident : ident -> anything
448val expr : expression -> anything
449val typeC : typeC -> anything
450val param : parameterTypeDef -> anything
451val ini : initialiser -> anything
452val decl : declaration -> anything
453val stmt : statement -> anything
454val case_line : case_line -> anything
455val top : top_level -> anything
456
457(* --------------------------------------------------------------------- *)
458
459val undots : 'a dots -> 'a list
460
461(* --------------------------------------------------------------------- *)
462(* Avoid cluttering the parser. Calculated in compute_lines.ml. *)
463
464val default_info : unit -> info
465val default_befaft : unit -> mcodekind
466val context_befaft : unit -> mcodekind
467val wrap : 'a -> 'a wrap
468val context_wrap : 'a -> 'a wrap
469val unwrap : 'a wrap -> 'a
470val unwrap_mcode : 'a mcode -> 'a
471val rewrap : 'a wrap -> 'b -> 'b wrap
472val rewrap_mcode : 'a mcode -> 'b -> 'b mcode
473val copywrap : 'a wrap -> 'b -> 'b wrap
474val get_pos : 'a mcode -> meta_pos
475val get_pos_ref : 'a mcode -> meta_pos ref
476val set_pos : meta_pos -> 'a mcode -> 'a mcode
477val get_info : 'a wrap -> info
478val set_info : 'a wrap -> info -> 'a wrap
479val get_index : 'a wrap -> int
480val set_index : 'a wrap -> int -> unit
481val get_line : 'a wrap -> int
482val get_line_end : 'a wrap -> int
483val get_mcodekind : 'a wrap -> mcodekind
484val get_mcode_mcodekind : 'a mcode -> mcodekind
485val get_mcodekind_ref : 'a wrap -> mcodekind ref
486val set_mcodekind : 'a wrap -> mcodekind -> unit
487val set_type : 'a wrap -> Type_cocci.typeC option -> unit
488val get_type : 'a wrap -> Type_cocci.typeC option
489val set_dots_bef_aft : statement -> dots_bef_aft -> statement
490val get_dots_bef_aft : 'a wrap -> dots_bef_aft
491val set_arg_exp : expression -> expression
492val get_arg_exp : expression -> bool
493val set_test_pos : expression -> expression
494val get_test_pos : 'a wrap -> bool
495val set_test_exp : expression -> expression
496val get_test_exp : 'a wrap -> bool
497val set_iso : 'a wrap -> (string*anything) list -> 'a wrap
498val get_iso : 'a wrap -> (string*anything) list
499val fresh_index : unit -> int
500val set_mcode_data : 'a -> 'a mcode -> 'a mcode
501val make_mcode : 'a -> 'a mcode
502val make_mcode_info : 'a -> info -> 'a mcode
c491d8ee 503val make_minus_mcode : 'a -> 'a mcode
34e49164
C
504
505val ast0_type_to_type : typeC -> Type_cocci.typeC
506val reverse_type : Type_cocci.typeC -> base_typeC
507exception TyConv
508
509val lub_pure : pure -> pure -> pure
510
511(* --------------------------------------------------------------------- *)
512
513val rule_name : string ref (* for the convenience of the parser *)