package pfff

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file ast_c.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
(* Yoann Padioleau
 *
 * Copyright (C) 2012, 2014 Facebook
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public License
 * version 2.1 as published by the Free Software Foundation, with the
 * special exception on linking described in file license.txt.
 *
 * This library is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the file
 * license.txt for more details.
 *)
open Common2.Infix

(*****************************************************************************)
(* Prelude *)
(*****************************************************************************)
(* 
 * A (real) Abstract Syntax Tree for C, not a Concrete Syntax Tree
 * as in ast_cpp.ml.
 * 
 * This file contains a simplified C abstract syntax tree. The original
 * C/C++ syntax tree (ast_cpp.ml) is good for code refactoring or
 * code visualization; the types used match exactly the source. However,
 * for other algorithms, the nature of the AST makes the code a bit
 * redundant. Moreover many analysis are far simpler to write on
 * C than C++. Hence the idea of a SimpleAST which is the
 * original AST where certain constructions have been factorized
 * or even removed.

 * Here is a list of the simplications/factorizations:
 *  - no C++ constructs, just plain C
 *  - no purely syntactical tokens in the AST like parenthesis, brackets, 
 *    braces, commas, semicolons, etc. No ParenExpr. No FinalDef. No
 *    NotParsedCorrectly. The only token information kept is for identifiers
 *    for error reporting. See name below.
 *  - ...
 *  - no nested struct, they are lifted to the toplevel
 *  - no anonymous structure (an artificial name is gensym'ed)
 *  - no mix of typedef with decl
 *  - sugar is removed, no RecordAccess vs RecordPtAccess, ...
 *  - no init vs expr
 *  - no Case/Default in statement but instead a focused 'case' type
 * 
 * less: ast_c_simple_build.ml is probably incomplete, but for now
 * is good enough for codegraph purposes on xv6, plan9 and other small C
 * projects.
 * 
 * related work: 
 *  - CIL, but it works after preprocessing; it makes it harder to connect
 *    analysis results to tools like codemap. It also does not handle some of
 *    the kencc extensions and does not allow to analyze cpp constructs.
 *    CIL has two pointer analysis but they were written with bug finding
 *    in mind I think, not code comprehension which we really care about 
 *    in pfff.
 *    In the end I thought generating datalog facts for plan9 using lang_c/ 
 *    was simpler that modifying CIL (moreover fixing lang_cpp/ and lang_c/
 *    to handle plan9 code was anyway needed for codemap).
 *  - SIL's monoidics. SIL looks a bit complicated, but it might be a good
 *    candidate, unforunately their API are not easily accessible in
 *    a findlib library form yet.
 *  - Clang, but like CIL it works after preprocessing, does not handle kencc,
 *    and does not provide by default a convenient ocaml AST. I could use
 *    clang-ocaml though but it's not easily accessible in a findlib
 *    library form yet.
 *  - we could also use the AST used by cc in plan9 :)
 * 
 * See lang_cpp/parsing/ast_cpp.ml.
 *
 *)

(*****************************************************************************)
(* The AST related types *)
(*****************************************************************************)

type tok = Parse_info.t
 (* with tarzan *)

type 'a wrap = 'a * tok
 (* with tarzan *)

(* ------------------------------------------------------------------------- *)
(* Name *)
(* ------------------------------------------------------------------------- *)

type name = string wrap
 (* with tarzan *)

(* ------------------------------------------------------------------------- *)
(* Types *)
(* ------------------------------------------------------------------------- *)

(* less: qualifier (const/volatile) *)
type type_ =
  | TBase of name (* int, float, etc *)
  | TPointer of type_
  | TArray of const_expr option * type_
  | TFunction of function_type
  | TStructName of struct_kind * name
  (* hmmm but in C it's really like an int no? but scheck could be
   * extended at some point to do more strict type checking! 
   *)
  | TEnumName of name
  | TTypeName of name

 (* less:  '...' varargs support *)
 and function_type = (type_ * parameter list)

  and parameter = {
    p_type: type_;
    (* when part of a prototype, the name is not always mentionned *)
    p_name: name option;
  }

 and struct_kind = Struct | Union

(* ------------------------------------------------------------------------- *)
(* Expression *)
(* ------------------------------------------------------------------------- *)
and expr =
  | Int of string wrap
  | Float of string wrap
  | String of string wrap
  | Char of string wrap

  (* can be a cpp or enum constant (e.g. FOO), or a local/global/parameter
   * variable, or a function name.
   *)
  | Id of name

  | Call of expr * argument list

  (* should be a statement ... but see Datalog_c.instr *)
  | Assign of Cst_cpp.assignOp wrap * expr * expr

  | ArrayAccess of expr * expr (* x[y] *)
  (* Why x->y instead of x.y choice? it's easier then with datalog
   * and it's more consistent with ArrayAccess where expr has to be
   * a kind of pointer too. That means x.y is actually unsugared in (&x)->y
   *)
  | RecordPtAccess of expr * name (* x->y,  and not x.y!! *)

  | Cast of type_ * expr

  (* less: transform into Call (builtin ...) ? *)
  | Postfix of expr * Cst_cpp.fixOp wrap
  | Infix of expr * Cst_cpp.fixOp wrap
  (* contains GetRef and Deref!! todo: lift up? *)
  | Unary of expr * Cst_cpp.unaryOp wrap
  | Binary of expr * Cst_cpp.binaryOp wrap * expr

  | CondExpr of expr * expr * expr
  (* should be a statement ... *)
  | Sequence of expr * expr

  | SizeOf of (expr, type_) Common.either

  (* should appear only in a variable initializer, or after GccConstructor *)
  | ArrayInit of (expr option * expr) list
  | RecordInit of (name * expr) list
  (* gccext: kenccext: *)
  | GccConstructor  of type_ * expr (* always an ArrayInit (or RecordInit?) *)

  (* sgrep-ext: *)
  | Ellipses of tok

and argument = expr

(* really should just contain constants and Id that are #define *)
and const_expr = expr

 (* with tarzan *)

(* ------------------------------------------------------------------------- *)
(* Statement *)
(* ------------------------------------------------------------------------- *)
type stmt = 
  | ExprSt of expr
  | Block of stmt list

  | If of expr * stmt * stmt
  | Switch of expr * case list

  | While of expr * stmt
  | DoWhile of stmt * expr
  | For of expr option * expr option * expr option * stmt

  | Return of expr option
  | Continue | Break

  | Label of name * stmt
  | Goto of name

  | Vars of var_decl list
  (* todo: it's actually a special kind of format, not just an expr *)
  | Asm of expr list

  and case =
    | Case of expr * stmt list
    | Default of stmt list

(* ------------------------------------------------------------------------- *)
(* Variables *)
(* ------------------------------------------------------------------------- *)

and var_decl = {
  v_name: name;
  v_type: type_;
  v_storage: storage;
  v_init: initialiser option;
}
 (* can have ArrayInit and RecordInit here in addition to other expr *)
 and initialiser = expr
 and storage = Extern | Static | DefaultStorage

 (* with tarzan *)

(* ------------------------------------------------------------------------- *)
(* Definitions *)
(* ------------------------------------------------------------------------- *)

type func_def = {
  f_name: name;
  f_type: function_type;
  f_body: stmt list;
  f_static: bool;
}
 (* with tarzan *)


type struct_def = {
  s_name: name;
  s_kind: struct_kind;
  s_flds: field_def list;
}
  (* less: could merge with var_decl, but field have no storage normally *)
  and field_def = { 
   (* less: bitfield annotation
    * kenccext: the option on fld_name is for inlined anonymous structure.
    *)
    fld_name: name option;
    fld_type: type_;
  }
 (* with tarzan *)

(* less: use a record *)
type enum_def = name * (name * const_expr option) list
 (* with tarzan *)

(* less: use a record *)
type type_def = name * type_
 (* with tarzan *)

(* ------------------------------------------------------------------------- *)
(* Cpp *)
(* ------------------------------------------------------------------------- *)

type define_body = 
  | CppExpr of expr (* actually const_expr when in Define context *)
  (* todo: we want that? even dowhile0 are actually transformed in CppExpr.
   * We have no way to reference a CppStmt in 'stmt' since MacroStmt
   * is not here? So we can probably remove this constructor no?
   *)
  | CppStmt of stmt
 (* with tarzan *)

(* ------------------------------------------------------------------------- *)
(* Program *)
(* ------------------------------------------------------------------------- *)
type toplevel =
  | Include of string wrap (* path *)
  | Define of name * define_body 
  | Macro of name * (name list) * define_body

  (* less: what about ForwardStructDecl? for mutually recursive structures? 
   * probably can deal with it by using typedefs as intermediates.
   *)
  | StructDef of struct_def
  | TypeDef of type_def
  | EnumDef of enum_def
  | FuncDef of func_def
  | Global of var_decl (* also contain extern decl *)
  | Prototype of func_def (* empty body *)
 (* with tarzan *)

type program = toplevel list
 (* with tarzan *)

(* ------------------------------------------------------------------------- *)
(* Any *)
(* ------------------------------------------------------------------------- *)
type any =
  | Expr of expr
  | Stmt of stmt
  | Stmts of stmt list
  | Type of type_
  | Toplevel of toplevel
  | Program of program
 (* with tarzan *)

(*****************************************************************************)
(* Helpers *)
(*****************************************************************************)

let str_of_name (s, _) = s

let looks_like_macro name =
  let s = str_of_name name in
  s =~ "^[A-Z][A-Z_0-9]*$"

let unwrap x = fst x
OCaml

Innovation. Community. Security.