4 * Basic helper routine descriptions for 'sparse'.
6 * Copyright (C) 2003 Transmeta Corp, all rights reserved.
9 extern unsigned int hexval(unsigned int c
);
25 struct statement_list
;
27 struct expression_list
;
29 struct token
*skip_to(struct token
*, int);
30 struct token
*expect(struct token
*, int, const char *);
31 extern void warn(struct position
, const char *, ...);
32 extern void error(struct position
, const char *, ...);
34 #define __DECLARE_ALLOCATOR(type, x) \
35 extern type *__alloc_##x(int); \
36 extern void show_##x##_alloc(void); \
37 extern void clear_##x##_alloc(void);
38 #define DECLARE_ALLOCATOR(x) __DECLARE_ALLOCATOR(struct x, x)
40 DECLARE_ALLOCATOR(ident
);
41 DECLARE_ALLOCATOR(token
);
42 DECLARE_ALLOCATOR(symbol
);
43 DECLARE_ALLOCATOR(expression
);
44 DECLARE_ALLOCATOR(statement
);
45 DECLARE_ALLOCATOR(string
);
46 __DECLARE_ALLOCATOR(void, bytes
);
48 #define LIST_NODE_NR (29)
52 struct ptr_list
*prev
;
53 struct ptr_list
*next
;
54 void *list
[LIST_NODE_NR
];
57 #define ITERATE_FIRST 1
58 #define ITERATE_LAST 2
59 void iterate(struct ptr_list
*,void (*callback
)(void *, void *, int), void*);
60 extern void add_ptr_list(struct ptr_list
**, void *);
61 extern int ptr_list_size(struct ptr_list
*);
63 #define symbol_list_size(list) ptr_list_size((struct ptr_list *)(list))
64 #define statement_list_size(list) ptr_list_size((struct ptr_list *)(list))
65 #define expression_list_size(list) ptr_list_size((struct ptr_list *)(list))
67 static inline void add_symbol(struct symbol_list
**list
, struct symbol
*sym
)
69 add_ptr_list((struct ptr_list
**)list
, sym
);
72 static inline void add_statement(struct statement_list
**list
, struct statement
*stmt
)
74 add_ptr_list((struct ptr_list
**)list
, stmt
);
77 static inline void add_expression(struct expression_list
**list
, struct expression
*expr
)
79 add_ptr_list((struct ptr_list
**)list
, expr
);
82 static inline void symbol_iterate(struct symbol_list
*list
, void (*callback
)(struct symbol
*, void *, int), void *data
)
84 iterate((struct ptr_list
*)list
, (void (*)(void *, void *, int))callback
, data
);
87 static inline void statement_iterate(struct statement_list
*list
, void (*callback
)(struct statement
*, void *, int), void *data
)
89 iterate((struct ptr_list
*)list
, (void (*)(void *, void *, int))callback
, data
);
92 static inline void expression_iterate(struct expression_list
*list
, void (*callback
)(struct expression
*, void *, int), void *data
)
94 iterate((struct ptr_list
*)list
, (void (*)(void *, void *, int))callback
, data
);