externs1.h revision 1.225
1/*	$NetBSD: externs1.h,v 1.225 2024/05/09 11:08:07 rillig Exp $	*/
2
3/*
4 * Copyright (c) 1994, 1995 Jochen Pohl
5 * All Rights Reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 *    notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 *    notice, this list of conditions and the following disclaimer in the
14 *    documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 *    must display the following acknowledgement:
17 *	This product includes software developed by Jochen Pohl for
18 *	The NetBSD Project.
19 * 4. The name of the author may not be used to endorse or promote products
20 *    derived from this software without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 */
33
34#include <signal.h>
35
36/*
37 * main1.c
38 */
39extern bool Fflag;
40extern bool Pflag;
41extern bool Tflag;
42extern int aflag;
43extern bool bflag;
44extern bool cflag;
45extern bool eflag;
46extern bool hflag;
47extern bool pflag;
48extern bool rflag;
49extern bool uflag;
50extern bool vflag;
51extern bool wflag;
52extern bool yflag;
53extern bool zflag;
54
55extern bool allow_trad;
56extern bool allow_c90;
57extern bool allow_c99;
58extern bool allow_c11;
59extern bool allow_c23;
60extern bool allow_gcc;
61
62extern sig_atomic_t fpe;
63
64void norecover(void);
65
66/*
67 * cgram.y
68 */
69extern int block_level;
70extern size_t mem_block_level;
71extern int yydebug;
72
73int yyerror(const char *);
74int yyparse(void);
75
76/*
77 * lex.c
78 */
79extern bool in_gcc_attribute;
80extern pos_t curr_pos;
81extern pos_t csrc_pos;
82extern bool in_system_header;
83extern symbol_kind sym_kind;
84extern FILE *yyin;
85
86void init_lex(void);
87int64_t convert_integer(int64_t, tspec_t, unsigned int);
88void reset_suppressions(void);
89sym_t *getsym(sbuf_t *);
90void clean_up_after_error(void);
91sym_t *pushdown(const sym_t *);
92sym_t *mktempsym(type_t *);
93void symtab_remove_forever(sym_t *);
94void symtab_remove_level(sym_t *);
95void inssym(int, sym_t *);
96void freeyyv(void *, int);
97int yylex(void);
98
99/*
100 * mem1.c
101 */
102const char *record_filename(const char *, size_t);
103int get_filename_id(const char *);
104void add_directory_replacement(char *);
105const char *transform_filename(const char *, size_t);
106
107#ifdef DEBUG_MEM
108void *block_zero_alloc(size_t, const char *);
109void *level_zero_alloc(size_t, size_t, const char *);
110#else
111void *block_zero_alloc(size_t);
112void *level_zero_alloc(size_t, size_t);
113#define block_zero_alloc(size, descr) (block_zero_alloc)(size)
114#define level_zero_alloc(level, size, descr) (level_zero_alloc)(level, size)
115#endif
116void level_free_all(size_t);
117
118#ifdef DEBUG_MEM
119void *expr_zero_alloc(size_t, const char *);
120#else
121void *expr_zero_alloc(size_t);
122#define expr_zero_alloc(size, descr) (expr_zero_alloc)(size)
123#endif
124tnode_t *expr_alloc_tnode(void);
125void expr_free_all(void);
126memory_pool expr_save_memory(void);
127void expr_restore_memory(memory_pool);
128
129/*
130 * debug.c
131 */
132
133#ifdef DEBUG
134const char *decl_level_kind_name(decl_level_kind);
135const char *scl_name(scl_t);
136const char *symbol_kind_name(symbol_kind);
137const char *type_qualifiers_string(type_qualifiers);
138const char *function_specifier_name(function_specifier);
139const char *named_constant_name(named_constant);
140void debug_dcs(void);
141void debug_dcs_all(void);
142void debug_node(const tnode_t *);
143void debug_type(const type_t *);
144void debug_sym(const char *, const sym_t *, const char *);
145void debug_symtab(void);
146void debug_printf(const char *fmt, ...) __printflike(1, 2);
147void debug_skip_indent(void);
148void debug_indent_inc(void);
149void debug_indent_dec(void);
150bool debug_push_indented(bool);
151void debug_pop_indented(bool);
152void debug_enter_func(const char *);
153void debug_step(const char *fmt, ...) __printflike(1, 2);
154void debug_leave_func(const char *);
155#define	debug_enter()		debug_enter_func(__func__)
156#define	debug_leave()		debug_leave_func(__func__)
157#else
158#define	debug_noop()		do { } while (false)
159#define	debug_dcs()		debug_noop()
160#define	debug_dcs_all()		debug_noop()
161#define	debug_sym(p, sym, s)	debug_noop()
162#define	debug_symtab()		debug_noop()
163#define	debug_node(tn)		debug_noop()
164#define	debug_type(tp)		debug_noop()
165#define	debug_printf(...)	debug_noop()
166#define	debug_skip_indent()	debug_noop()
167#define	debug_indent_inc()	debug_noop()
168#define	debug_indent_dec()	debug_noop()
169#define debug_push_indented(c)	true
170#define debug_pop_indented(c)	(void)(c)
171#define	debug_enter()		debug_noop()
172#define	debug_step(...)		debug_noop()
173#define	debug_leave()		debug_noop()
174#endif
175
176/*
177 * err.c
178 */
179extern bool seen_error;
180extern bool seen_warning;
181extern int sytxerr;
182extern bool any_query_enabled;
183extern bool is_query_enabled[];
184
185void msglist(void);
186void error_at(int, const pos_t *, ...);
187void warning_at(int, const pos_t *, ...);
188void message_at(int, const pos_t *, ...);
189void error(int, ...);
190void warning(int, ...);
191bool gnuism(int, ...);
192void c99ism(int, ...);
193void c11ism(int, ...);
194void c23ism(int, ...);
195void assert_failed(const char *, int, const char *, const char *) __dead;
196void update_location(const char *, int, bool, bool);
197void suppress_messages(const char *);
198
199void query_message(int, ...);
200void enable_queries(const char *);
201
202/*
203 * decl.c
204 */
205extern decl_level *dcs;
206extern const char unnamed[];
207extern int enumval;
208
209void init_decl(void);
210type_t *gettyp(tspec_t);
211type_t *block_dup_type(const type_t *);
212type_t *expr_dup_type(const type_t *);
213type_t *expr_unqualified_type(const type_t *);
214bool is_incomplete(const type_t *);
215void dcs_add_function_specifier(function_specifier);
216void dcs_add_storage_class(scl_t);
217void dcs_add_type(type_t *);
218void dcs_add_qualifiers(type_qualifiers);
219void dcs_add_alignas(tnode_t *);
220void dcs_add_packed(void);
221void dcs_set_used(void);
222void begin_declaration_level(decl_level_kind);
223void end_declaration_level(void);
224void dcs_set_asm(void);
225void dcs_begin_type(void);
226void dcs_end_type(void);
227int length_in_bits(const type_t *, const char *);
228unsigned int alignment(const type_t *);
229sym_t *concat_symbols(sym_t *, sym_t *);
230void check_type(sym_t *);
231sym_t *declare_unnamed_member(void);
232sym_t *declare_member(sym_t *);
233sym_t *set_bit_field_width(sym_t *, int);
234void add_type_qualifiers(type_qualifiers *, type_qualifiers);
235qual_ptr *append_qualified_pointer(qual_ptr *, qual_ptr *);
236sym_t *add_pointer(sym_t *, qual_ptr *);
237sym_t *add_array(sym_t *, bool, int);
238sym_t *add_function(sym_t *, parameter_list);
239void check_extern_declaration(const sym_t *);
240void check_function_definition(sym_t *, bool);
241sym_t *declarator_name(sym_t *);
242sym_t *old_style_function_parameter_name(sym_t *);
243type_t *make_tag_type(sym_t *, tspec_t, bool, bool);
244type_t *complete_struct_or_union(sym_t *);
245type_t *complete_enum(sym_t *);
246sym_t *enumeration_constant(sym_t *, int, bool);
247void declare(sym_t *, bool, sbuf_t *);
248void copy_usage_info(sym_t *, sym_t *);
249bool check_redeclaration(sym_t *, bool *);
250bool pointer_types_are_compatible(const type_t *, const type_t *, bool);
251bool types_compatible(const type_t *, const type_t *, bool, bool, bool *);
252void complete_type(sym_t *, sym_t *);
253sym_t *declare_parameter(sym_t *, bool);
254void check_func_lint_directives(void);
255void check_func_old_style_parameters(void);
256
257void declare_local(sym_t *, bool);
258sym_t *abstract_name(void);
259sym_t *abstract_enclosing_name(void);
260void global_clean_up(void);
261sym_t *declare_abstract_type(sym_t *);
262void check_size(const sym_t *);
263void mark_as_set(sym_t *);
264void mark_as_used(sym_t *, bool, bool);
265void check_usage(const decl_level *);
266void check_usage_sym(bool, const sym_t *);
267void end_translation_unit(void);
268void print_previous_declaration(const sym_t *);
269int to_int_constant(tnode_t *, bool);
270
271/*
272 * tree.c
273 */
274const tnode_t *before_conversion(const tnode_t *);
275type_t *block_derive_type(type_t *, tspec_t);
276type_t *expr_derive_type(type_t *, tspec_t);
277bool is_compiler_builtin(const char *);
278tnode_t *build_constant(type_t *, val_t *);
279tnode_t *build_name(sym_t *, bool);
280tnode_t *build_string(buffer *);
281tnode_t *build_generic_selection(const tnode_t *,
282		    struct generic_association *);
283
284tnode_t *build_binary(tnode_t *, op_t, bool, tnode_t *);
285tnode_t *build_unary(op_t, bool, tnode_t *);
286tnode_t *build_member_access(tnode_t *, op_t, bool, sbuf_t *);
287tnode_t *cconv(tnode_t *);
288bool is_typeok_bool_compares_with_zero(const tnode_t *);
289bool typeok(op_t, int, const tnode_t *, const tnode_t *);
290tnode_t *promote(op_t, bool, tnode_t *);
291tnode_t *convert(op_t, int, type_t *, tnode_t *);
292void convert_constant(op_t, int, const type_t *, val_t *, val_t *);
293tnode_t *build_sizeof(const type_t *);
294tnode_t *build_offsetof(const type_t *, designation);
295tnode_t *build_alignof(const type_t *);
296tnode_t *cast(tnode_t *, bool, type_t *);
297void add_function_argument(function_call *, tnode_t *);
298tnode_t *build_function_call(tnode_t *, bool, function_call *);
299val_t *integer_constant(tnode_t *, bool);
300void expr(tnode_t *, bool, bool, bool, bool);
301void check_expr_misc(const tnode_t *, bool, bool, bool, bool, bool, bool);
302bool constant_addr(const tnode_t *, const sym_t **, ptrdiff_t *);
303buffer *cat_strings(buffer *, buffer *);
304unsigned int type_size_in_bits(const type_t *);
305sym_t *find_member(const struct_or_union *, const char *);
306uint64_t possible_bits(const tnode_t *);
307
308void begin_statement_expr(void);
309void do_statement_expr(tnode_t *);
310tnode_t *end_statement_expr(void);
311bool in_statement_expr(void);
312
313/*
314 * func.c
315 */
316extern sym_t *funcsym;
317extern bool reached;
318extern bool warn_about_unreachable;
319extern bool suppress_fallthrough;
320extern int nargusg;
321extern pos_t argsused_pos;
322extern int nvararg;
323extern pos_t vapos;
324extern int printflike_argnum;
325extern pos_t printflike_pos;
326extern int scanflike_argnum;
327extern pos_t scanflike_pos;
328extern bool suppress_constcond;
329extern bool llibflg;
330extern int lwarn;
331extern bool suppress_bitfieldtype;
332extern bool plibflg;
333extern bool suppress_longlong;
334
335void begin_control_statement(control_statement_kind);
336void end_control_statement(control_statement_kind);
337void check_statement_reachable(void);
338void begin_function(sym_t *);
339void end_function(void);
340void named_label(sym_t *);
341void case_label(tnode_t *);
342void default_label(void);
343void stmt_if_expr(tnode_t *);
344void stmt_if_then_stmt(void);
345void stmt_if_else_stmt(bool);
346void stmt_switch_expr(tnode_t *);
347void stmt_switch_expr_stmt(void);
348void stmt_while_expr(tnode_t *);
349void stmt_while_expr_stmt(void);
350void stmt_do(void);
351void stmt_do_while_expr(tnode_t *);
352void stmt_for_exprs(tnode_t *, tnode_t *, tnode_t *);
353void stmt_for_exprs_stmt(void);
354void stmt_goto(sym_t *);
355void stmt_continue(void);
356void stmt_break(void);
357void stmt_return(bool, tnode_t *);
358void global_clean_up_decl(bool);
359void handle_lint_comment(lint_comment, int);
360
361/*
362 * init.c
363 */
364void begin_initialization(sym_t *);
365void end_initialization(void);
366sym_t *current_initsym(void);
367
368void init_rbrace(void);
369void init_lbrace(void);
370void init_expr(tnode_t *);
371void begin_designation(void);
372void add_designator_member(sbuf_t *);
373void add_designator_subscript(range_t);
374void designation_push(designation *, designator_kind, const sym_t *, size_t);
375
376/*
377 * emit.c
378 */
379void outtype(const type_t *);
380void outsym(const sym_t *, scl_t, def_t);
381void outfdef(const sym_t *, const pos_t *, bool, bool, const sym_t *);
382void outcall(const tnode_t *, bool, bool);
383void outusg(const sym_t *);
384
385/*
386 * lex.c
387 */
388int lex_name(const char *, size_t);
389int lex_integer_constant(const char *, size_t, int);
390int lex_floating_constant(const char *, size_t);
391int lex_operator(int, op_t);
392int lex_string(void);
393int lex_wide_string(void);
394int lex_character_constant(void);
395int lex_wide_character_constant(void);
396void lex_directive(const char *);
397void lex_next_line(void);
398void lex_comment(void);
399void lex_slash_slash_comment(void);
400void lex_unknown_character(int);
401int lex_input(void);
402bool quoted_next(const buffer *, quoted_iterator *);
403
404/*
405 * ckbool.c
406 */
407bool typeok_scalar_strict_bool(op_t, const mod_t *, int,
408		    const tnode_t *, const tnode_t *);
409bool fallback_symbol_strict_bool(sym_t *);
410
411/*
412 * ckctype.c
413 */
414void check_ctype_function_call(const function_call *);
415void check_ctype_macro_invocation(const tnode_t *, const tnode_t *);
416
417/*
418 * ckgetopt.c
419 */
420void check_getopt_begin_while(const tnode_t *);
421void check_getopt_begin_switch(void);
422void check_getopt_case_label(int64_t);
423void check_getopt_end_switch(void);
424void check_getopt_end_while(void);
425
426/* cksnprintb.c */
427void check_snprintb(const function_call *);
428