9 * Basic helper routine descriptions for 'sparse'.
11 * Copyright (C) 2003 Transmeta Corp.
15 * Permission is hereby granted, free of charge, to any person obtaining a copy
16 * of this software and associated documentation files (the "Software"), to deal
17 * in the Software without restriction, including without limitation the rights
18 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
19 * copies of the Software, and to permit persons to whom the Software is
20 * furnished to do so, subject to the following conditions:
22 * The above copyright notice and this permission notice shall be included in
23 * all copies or substantial portions of the Software.
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
26 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
28 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
29 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
30 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
40 #define DO_STRINGIFY(x) #x
41 #define STRINGIFY(x) DO_STRINGIFY(x)
44 #define ARRAY_SIZE(x) (sizeof(x)/sizeof((x)[0]))
47 extern int parse_error
;
50 #define PATH_MAX 4096 // Hurd doesn't define this
53 extern const char *sparse_version
;
77 DECLARE_PTR_LIST(symbol_list
, struct symbol
);
78 DECLARE_PTR_LIST(statement_list
, struct statement
);
79 DECLARE_PTR_LIST(asm_operand_list
, struct asm_operand
);
80 DECLARE_PTR_LIST(expression_list
, struct expression
);
81 DECLARE_PTR_LIST(basic_block_list
, struct basic_block
);
82 DECLARE_PTR_LIST(instruction_list
, struct instruction
);
83 DECLARE_PTR_LIST(multijmp_list
, struct multijmp
);
84 DECLARE_PTR_LIST(pseudo_list
, struct pseudo
);
85 DECLARE_PTR_LIST(ident_list
, struct ident
);
86 DECLARE_PTR_LIST(string_list
, char);
88 typedef struct pseudo
*pseudo_t
;
91 #define FORMAT_ATTR(pos) __attribute__ ((__format__ (__printf__, pos, pos+1)))
92 #define NORETURN_ATTR __attribute__ ((__noreturn__))
93 #define SENTINEL_ATTR __attribute__ ((__sentinel__))
95 #define FORMAT_ATTR(pos)
100 FORMAT_ATTR(1) NORETURN_ATTR
101 extern void die(const char *, ...);
103 FORMAT_ATTR(2) NORETURN_ATTR
104 extern void error_die(struct position
, const char *, ...);
106 extern void info(struct position
, const char *, ...) FORMAT_ATTR(2);
107 extern void warning(struct position
, const char *, ...) FORMAT_ATTR(2);
108 extern void sparse_error(struct position
, const char *, ...) FORMAT_ATTR(2);
109 extern void expression_error(struct expression
*, const char *, ...) FORMAT_ATTR(2);
111 #define ERROR_CURR_PHASE (1 << 0)
112 #define ERROR_PREV_PHASE (1 << 1)
113 extern int has_error
;
124 #define PASS_PARSE (1UL << PASS__PARSE)
125 #define PASS_LINEARIZE (1UL << PASS__LINEARIZE)
126 #define PASS_MEM2REG (1UL << PASS__MEM2REG)
127 #define PASS_OPTIM (1UL << PASS__OPTIM)
128 #define PASS_FINAL (1UL << PASS__FINAL)
131 extern void add_pre_buffer(const char *fmt
, ...) FORMAT_ATTR(1);
132 extern void predefine(const char *name
, int weak
, const char *fmt
, ...) FORMAT_ATTR(3);
134 extern void predefine_strong(const char *name
, ...) FORMAT_ATTR(1);
135 extern void predefine_weak(const char *name
, ...) FORMAT_ATTR(1);
136 extern void predefine_nostd(const char *name
);
137 extern void predefined_macros(void);
139 extern void dump_macro_definitions(void);
140 extern struct symbol_list
*sparse_initialize(int argc
, char **argv
, struct string_list
**files
);
141 extern struct symbol_list
*__sparse(char *filename
);
142 extern struct symbol_list
*sparse_keep_tokens(char *filename
);
143 extern struct symbol_list
*sparse(char *filename
);
144 extern void report_stats(void);
146 static inline int symbol_list_size(struct symbol_list
*list
)
148 return ptr_list_size((struct ptr_list
*)(list
));
151 static inline int statement_list_size(struct statement_list
*list
)
153 return ptr_list_size((struct ptr_list
*)(list
));
156 static inline int expression_list_size(struct expression_list
*list
)
158 return ptr_list_size((struct ptr_list
*)(list
));
161 static inline int instruction_list_size(struct instruction_list
*list
)
163 return ptr_list_size((struct ptr_list
*)(list
));
166 static inline int pseudo_list_size(struct pseudo_list
*list
)
168 return ptr_list_size((struct ptr_list
*)(list
));
171 static inline int bb_list_size(struct basic_block_list
*list
)
173 return ptr_list_size((struct ptr_list
*)(list
));
176 static inline void free_instruction_list(struct instruction_list
**head
)
181 static inline struct instruction
* delete_last_instruction(struct instruction_list
**head
)
183 return undo_ptr_list_last((struct ptr_list
**)head
);
186 static inline struct basic_block
*first_basic_block(struct basic_block_list
*head
)
188 return first_ptr_list((struct ptr_list
*)head
);
190 static inline struct instruction
*last_instruction(struct instruction_list
*head
)
192 return last_ptr_list((struct ptr_list
*)head
);
195 static inline struct instruction
*first_instruction(struct instruction_list
*head
)
197 return first_ptr_list((struct ptr_list
*)head
);
200 static inline struct expression
*first_expression(struct expression_list
*head
)
202 return first_ptr_list((struct ptr_list
*)head
);
205 static inline pseudo_t
first_pseudo(struct pseudo_list
*head
)
207 return first_ptr_list((struct ptr_list
*)head
);
210 static inline struct symbol
*first_symbol(struct symbol_list
*head
)
212 return first_ptr_list((struct ptr_list
*)head
);
215 static inline void concat_symbol_list(struct symbol_list
*from
, struct symbol_list
**to
)
217 concat_ptr_list((struct ptr_list
*)from
, (struct ptr_list
**)to
);
220 static inline void concat_basic_block_list(struct basic_block_list
*from
, struct basic_block_list
**to
)
222 concat_ptr_list((struct ptr_list
*)from
, (struct ptr_list
**)to
);
225 static inline void concat_instruction_list(struct instruction_list
*from
, struct instruction_list
**to
)
227 concat_ptr_list((struct ptr_list
*)from
, (struct ptr_list
**)to
);
230 static inline void add_symbol(struct symbol_list
**list
, struct symbol
*sym
)
232 add_ptr_list(list
, sym
);
235 static inline void add_statement(struct statement_list
**list
, struct statement
*stmt
)
237 add_ptr_list(list
, stmt
);
240 static inline void add_expression(struct expression_list
**list
, struct expression
*expr
)
242 add_ptr_list(list
, expr
);
245 static inline void add_ident(struct ident_list
**list
, struct ident
*ident
)
247 add_ptr_list(list
, ident
);
250 #define hashval(x) ((unsigned long)(x))