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
|
enum declarationkind {
DECLTYPE,
DECLOBJECT,
DECLFUNC,
DECLCONST,
DECLBUILTIN,
};
enum linkage {
LINKNONE,
LINKINTERN,
LINKEXTERN,
};
enum builtinkind {
BUILTINVALIST,
BUILTINVASTART,
BUILTINVAARG,
BUILTINVACOPY,
BUILTINVAEND,
BUILTINOFFSETOF,
BUILTINALLOCA,
BUILTINNANF,
BUILTININFF,
};
struct declaration {
enum declarationkind kind;
enum linkage linkage;
struct type *type;
struct value *value;
/* objects and functions */
struct list link;
int align; /* may be more strict than type requires */
_Bool tentative, defined;
/* built-ins */
enum builtinkind builtin;
};
struct scope;
struct function;
struct declaration *mkdecl(enum declarationkind, struct type *, enum linkage);
_Bool decl(struct scope *, struct function *);
struct type *typename(struct scope *);
struct expression;
struct declaration *stringdecl(struct expression *);
void emittentativedefns(void);
|