Home | History | Annotate | Line # | Download | only in lint1
emit1.c revision 1.45
      1  1.45    rillig /* $NetBSD: emit1.c,v 1.45 2021/07/05 19:39:12 rillig Exp $ */
      2   1.2       cgd 
      3   1.1       cgd /*
      4   1.5       cgd  * Copyright (c) 1996 Christopher G. Demetriou.  All Rights Reserved.
      5   1.1       cgd  * Copyright (c) 1994, 1995 Jochen Pohl
      6   1.1       cgd  * All Rights Reserved.
      7   1.1       cgd  *
      8   1.1       cgd  * Redistribution and use in source and binary forms, with or without
      9   1.1       cgd  * modification, are permitted provided that the following conditions
     10   1.1       cgd  * are met:
     11   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     12   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     13   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     14   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     15   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     16   1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     17   1.1       cgd  *    must display the following acknowledgement:
     18   1.1       cgd  *      This product includes software developed by Jochen Pohl for
     19   1.1       cgd  *	The NetBSD Project.
     20   1.1       cgd  * 4. The name of the author may not be used to endorse or promote products
     21   1.1       cgd  *    derived from this software without specific prior written permission.
     22   1.1       cgd  *
     23   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     24   1.1       cgd  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     25   1.1       cgd  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     26   1.1       cgd  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     27   1.1       cgd  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     28   1.1       cgd  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     29   1.1       cgd  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     30   1.1       cgd  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     31   1.1       cgd  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     32   1.1       cgd  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     33   1.1       cgd  */
     34   1.1       cgd 
     35  1.14       jmc #if HAVE_NBTOOL_CONFIG_H
     36  1.14       jmc #include "nbtool_config.h"
     37  1.14       jmc #endif
     38  1.14       jmc 
     39   1.7  christos #include <sys/cdefs.h>
     40  1.11        tv #if defined(__RCSID) && !defined(lint)
     41  1.45    rillig __RCSID("$NetBSD: emit1.c,v 1.45 2021/07/05 19:39:12 rillig Exp $");
     42   1.1       cgd #endif
     43   1.1       cgd 
     44   1.1       cgd #include "lint1.h"
     45   1.1       cgd 
     46  1.10     lukem static	void	outtt(sym_t *, sym_t *);
     47  1.10     lukem static	void	outfstrg(strg_t *);
     48   1.1       cgd 
     49   1.1       cgd /*
     50   1.1       cgd  * Write type into the output buffer.
     51   1.1       cgd  * The type is written as a sequence of substrings, each of which describes a
     52   1.1       cgd  * node of type type_t
     53  1.23    rillig  * a node is encoded as follows:
     54  1.15      yamt  *	_Bool			B
     55  1.18  christos  *	_Complex float		s X
     56  1.21    rillig  *	_Complex double		X
     57  1.21    rillig  *	_Complex long double	l X
     58   1.1       cgd  *	char			C
     59   1.1       cgd  *	signed char		s C
     60   1.1       cgd  *	unsigned char		u C
     61   1.1       cgd  *	short			S
     62   1.1       cgd  *	unsigned short		u S
     63   1.1       cgd  *	int			I
     64   1.1       cgd  *	unsigned int		u I
     65   1.1       cgd  *	long			L
     66   1.1       cgd  *	unsigned long		u L
     67   1.1       cgd  *	long long		Q
     68   1.1       cgd  *	unsigned long long	u Q
     69   1.1       cgd  *	float			s D
     70   1.1       cgd  *	double			D
     71   1.1       cgd  *	long double		l D
     72   1.1       cgd  *	void			V
     73   1.1       cgd  *	*			P
     74   1.1       cgd  *	[n]			A n
     75   1.1       cgd  *	()			F
     76   1.1       cgd  *	(void)			F 0
     77  1.44    rillig  *	(n parameters)		F n arg1 arg2 ... argn
     78  1.44    rillig  *	(n parameters, ...)	F n arg1 arg2 ... argn-1 E
     79   1.1       cgd  *	enum tag		e T tag_or_typename
     80   1.1       cgd  *	struct tag		s T tag_or_typename
     81   1.1       cgd  *	union tag		u T tag_or_typename
     82   1.1       cgd  *
     83  1.44    rillig  *	tag_or_typename		0 (obsolete)		no tag or type name
     84  1.44    rillig  *				1 n tag			tagged type
     85   1.1       cgd  *				2 n typename		only type name
     86  1.44    rillig  *				3 line.file.uniq	anonymous types
     87   1.1       cgd  *
     88   1.1       cgd  * spaces are only for better readability
     89  1.34    rillig  * additionally it is possible to prepend the characters 'c' (for const)
     90   1.1       cgd  * and 'v' (for volatile)
     91   1.1       cgd  */
     92   1.1       cgd void
     93  1.36    rillig outtype(const type_t *tp)
     94   1.1       cgd {
     95   1.1       cgd 	int	t, s, na;
     96   1.1       cgd 	sym_t	*arg;
     97   1.1       cgd 	tspec_t	ts;
     98   1.1       cgd 
     99   1.1       cgd 	while (tp != NULL) {
    100  1.42    rillig 		if ((ts = tp->t_tspec) == INT && tp->t_is_enum)
    101   1.1       cgd 			ts = ENUM;
    102   1.1       cgd 		switch (ts) {
    103  1.15      yamt 		case BOOL:	t = 'B';	s = '\0';	break;
    104   1.1       cgd 		case CHAR:	t = 'C';	s = '\0';	break;
    105   1.1       cgd 		case SCHAR:	t = 'C';	s = 's';	break;
    106   1.1       cgd 		case UCHAR:	t = 'C';	s = 'u';	break;
    107   1.1       cgd 		case SHORT:	t = 'S';	s = '\0';	break;
    108   1.1       cgd 		case USHORT:	t = 'S';	s = 'u';	break;
    109   1.1       cgd 		case INT:	t = 'I';	s = '\0';	break;
    110   1.1       cgd 		case UINT:	t = 'I';	s = 'u';	break;
    111   1.1       cgd 		case LONG:	t = 'L';	s = '\0';	break;
    112   1.1       cgd 		case ULONG:	t = 'L';	s = 'u';	break;
    113   1.1       cgd 		case QUAD:	t = 'Q';	s = '\0';	break;
    114   1.1       cgd 		case UQUAD:	t = 'Q';	s = 'u';	break;
    115   1.1       cgd 		case FLOAT:	t = 'D';	s = 's';	break;
    116   1.1       cgd 		case DOUBLE:	t = 'D';	s = '\0';	break;
    117   1.1       cgd 		case LDOUBLE:	t = 'D';	s = 'l';	break;
    118   1.1       cgd 		case VOID:	t = 'V';	s = '\0';	break;
    119   1.1       cgd 		case PTR:	t = 'P';	s = '\0';	break;
    120   1.1       cgd 		case ARRAY:	t = 'A';	s = '\0';	break;
    121   1.1       cgd 		case FUNC:	t = 'F';	s = '\0';	break;
    122   1.1       cgd 		case ENUM:	t = 'T';	s = 'e';	break;
    123   1.1       cgd 		case STRUCT:	t = 'T';	s = 's';	break;
    124   1.1       cgd 		case UNION:	t = 'T';	s = 'u';	break;
    125  1.17  christos 		case FCOMPLEX:	t = 'X';	s = 's';	break;
    126  1.18  christos 		case DCOMPLEX:	t = 'X';	s = '\0';	break;
    127  1.19      matt 		case LCOMPLEX:	t = 'X';	s = 'l';	break;
    128   1.1       cgd 		default:
    129  1.38    rillig 			lint_assert(/*CONSTCOND*/false);
    130   1.1       cgd 		}
    131   1.1       cgd 		if (tp->t_const)
    132   1.1       cgd 			outchar('c');
    133   1.1       cgd 		if (tp->t_volatile)
    134   1.1       cgd 			outchar('v');
    135   1.1       cgd 		if (s != '\0')
    136   1.1       cgd 			outchar(s);
    137   1.1       cgd 		outchar(t);
    138   1.1       cgd 		if (ts == ARRAY) {
    139   1.1       cgd 			outint(tp->t_dim);
    140   1.1       cgd 		} else if (ts == ENUM) {
    141  1.41    rillig 			outtt(tp->t_enum->en_tag, tp->t_enum->en_first_typedef);
    142   1.1       cgd 		} else if (ts == STRUCT || ts == UNION) {
    143  1.40    rillig 			outtt(tp->t_str->sou_tag, tp->t_str->sou_first_typedef);
    144   1.1       cgd 		} else if (ts == FUNC && tp->t_proto) {
    145   1.1       cgd 			na = 0;
    146  1.26    rillig 			for (arg = tp->t_args; arg != NULL; arg = arg->s_next)
    147  1.45    rillig 				na++;
    148   1.1       cgd 			if (tp->t_vararg)
    149   1.1       cgd 				na++;
    150   1.1       cgd 			outint(na);
    151  1.26    rillig 			for (arg = tp->t_args; arg != NULL; arg = arg->s_next)
    152   1.1       cgd 				outtype(arg->s_type);
    153   1.1       cgd 			if (tp->t_vararg)
    154   1.1       cgd 				outchar('E');
    155   1.1       cgd 		}
    156   1.1       cgd 		tp = tp->t_subt;
    157   1.1       cgd 	}
    158   1.1       cgd }
    159   1.1       cgd 
    160   1.1       cgd /*
    161   1.1       cgd  * type to string
    162   1.1       cgd  * used for debugging output
    163   1.1       cgd  *
    164   1.1       cgd  * it uses its own output buffer for conversion
    165   1.1       cgd  */
    166   1.1       cgd const char *
    167  1.36    rillig ttos(const type_t *tp)
    168   1.1       cgd {
    169   1.1       cgd 	static	ob_t	tob;
    170   1.1       cgd 	ob_t	tmp;
    171   1.1       cgd 
    172   1.1       cgd 	if (tob.o_buf == NULL) {
    173   1.1       cgd 		tob.o_len = 64;
    174  1.27    rillig 		tob.o_buf = tob.o_next = xmalloc(tob.o_len);
    175   1.1       cgd 		tob.o_end = tob.o_buf + tob.o_len;
    176   1.1       cgd 	}
    177   1.1       cgd 
    178   1.1       cgd 	tmp = ob;
    179   1.1       cgd 	ob = tob;
    180  1.27    rillig 	ob.o_next = ob.o_buf;
    181   1.1       cgd 	outtype(tp);
    182   1.1       cgd 	outchar('\0');
    183   1.1       cgd 	tob = ob;
    184   1.1       cgd 	ob = tmp;
    185   1.1       cgd 
    186  1.24    rillig 	return tob.o_buf;
    187   1.1       cgd }
    188   1.1       cgd 
    189   1.1       cgd /*
    190   1.1       cgd  * write the name of a tag or typename
    191   1.1       cgd  *
    192  1.44    rillig  * if the tag is named, the name of the tag is written,
    193  1.44    rillig  * otherwise, if a typename exists which refers to this tag,
    194  1.44    rillig  * this typename is written
    195   1.1       cgd  */
    196   1.1       cgd static void
    197  1.10     lukem outtt(sym_t *tag, sym_t *tdef)
    198   1.1       cgd {
    199   1.5       cgd 
    200  1.44    rillig 	/* 0 is no longer used. */
    201  1.44    rillig 
    202   1.1       cgd 	if (tag->s_name != unnamed) {
    203   1.1       cgd 		outint(1);
    204   1.1       cgd 		outname(tag->s_name);
    205   1.1       cgd 	} else if (tdef != NULL) {
    206   1.1       cgd 		outint(2);
    207   1.1       cgd 		outname(tdef->s_name);
    208   1.1       cgd 	} else {
    209   1.5       cgd 		outint(3);
    210  1.29    rillig 		outint(tag->s_def_pos.p_line);
    211   1.5       cgd 		outchar('.');
    212  1.43    rillig 		outint(get_filename_id(tag->s_def_pos.p_file));
    213   1.5       cgd 		outchar('.');
    214  1.29    rillig 		outint(tag->s_def_pos.p_uniq);
    215   1.1       cgd 	}
    216   1.1       cgd }
    217   1.1       cgd 
    218   1.1       cgd /*
    219  1.23    rillig  * write information about a globally declared/defined symbol
    220   1.3       jpo  * with storage class extern
    221   1.1       cgd  *
    222  1.23    rillig  * information about function definitions are written in outfdef(),
    223   1.1       cgd  * not here
    224   1.1       cgd  */
    225   1.1       cgd void
    226  1.36    rillig outsym(const sym_t *sym, scl_t sc, def_t def)
    227   1.1       cgd {
    228  1.10     lukem 
    229   1.1       cgd 	/*
    230   1.1       cgd 	 * Static function declarations must also be written to the output
    231   1.1       cgd 	 * file. Compatibility of function declarations (for both static
    232   1.1       cgd 	 * and extern functions) must be checked in lint2. Lint1 can't do
    233  1.23    rillig 	 * this, especially not if functions are declared at block level
    234   1.1       cgd 	 * before their first declaration at level 0.
    235   1.1       cgd 	 */
    236   1.1       cgd 	if (sc != EXTERN && !(sc == STATIC && sym->s_type->t_tspec == FUNC))
    237   1.1       cgd 		return;
    238   1.1       cgd 
    239   1.1       cgd 	/* reset buffer */
    240   1.1       cgd 	outclr();
    241   1.1       cgd 
    242   1.1       cgd 	/*
    243   1.1       cgd 	 * line number of .c source, 'd' for declaration, Id of current
    244   1.1       cgd 	 * source (.c or .h), and line in current source.
    245   1.1       cgd 	 */
    246   1.1       cgd 	outint(csrc_pos.p_line);
    247   1.1       cgd 	outchar('d');
    248  1.43    rillig 	outint(get_filename_id(sym->s_def_pos.p_file));
    249   1.1       cgd 	outchar('.');
    250  1.29    rillig 	outint(sym->s_def_pos.p_line);
    251   1.1       cgd 
    252   1.1       cgd 	/* flags */
    253   1.1       cgd 
    254   1.3       jpo 	switch (def) {
    255   1.1       cgd 	case DEF:
    256   1.1       cgd 		/* defined */
    257   1.1       cgd 		outchar('d');
    258   1.1       cgd 		break;
    259   1.1       cgd 	case TDEF:
    260   1.1       cgd 		/* tentative defined */
    261   1.1       cgd 		outchar('t');
    262   1.1       cgd 		break;
    263   1.1       cgd 	case DECL:
    264   1.1       cgd 		/* declared */
    265   1.1       cgd 		outchar('e');
    266   1.1       cgd 		break;
    267   1.1       cgd 	default:
    268  1.38    rillig 		lint_assert(/*CONSTCOND*/false);
    269   1.1       cgd 	}
    270   1.3       jpo 	if (llibflg && def != DECL) {
    271   1.1       cgd 		/*
    272   1.1       cgd 		 * mark it as used so we get no warnings from lint2 about
    273   1.1       cgd 		 * unused symbols in libraries.
    274   1.1       cgd 		 */
    275   1.1       cgd 		outchar('u');
    276   1.1       cgd 	}
    277   1.1       cgd 
    278   1.1       cgd 	if (sc == STATIC)
    279   1.1       cgd 		outchar('s');
    280   1.1       cgd 
    281   1.1       cgd 	/* name of the symbol */
    282   1.1       cgd 	outname(sym->s_name);
    283   1.1       cgd 
    284   1.6       cgd 	/* renamed name of symbol, if necessary */
    285  1.37    rillig 	if (sym->s_rename != NULL) {
    286   1.6       cgd 		outchar('r');
    287   1.6       cgd 		outname(sym->s_rename);
    288   1.6       cgd 	}
    289   1.6       cgd 
    290   1.1       cgd 	/* type of the symbol */
    291   1.1       cgd 	outtype(sym->s_type);
    292   1.1       cgd }
    293   1.1       cgd 
    294   1.1       cgd /*
    295   1.1       cgd  * write information about function definition
    296   1.1       cgd  *
    297   1.1       cgd  * this is also done for static functions so we are able to check if
    298   1.1       cgd  * they are called with proper argument types
    299   1.1       cgd  */
    300   1.1       cgd void
    301  1.37    rillig outfdef(const sym_t *fsym, const pos_t *posp, bool rval, bool osdef,
    302  1.36    rillig 	const sym_t *args)
    303   1.1       cgd {
    304  1.36    rillig 	int narg;
    305  1.36    rillig 	const sym_t *arg;
    306   1.1       cgd 
    307   1.1       cgd 	/* reset the buffer */
    308   1.1       cgd 	outclr();
    309   1.1       cgd 
    310   1.1       cgd 	/*
    311   1.1       cgd 	 * line number of .c source, 'd' for declaration, Id of current
    312   1.1       cgd 	 * source (.c or .h), and line in current source
    313   1.1       cgd 	 *
    314   1.1       cgd 	 * we are already at the end of the function. If we are in the
    315   1.1       cgd 	 * .c source, posp->p_line is correct, otherwise csrc_pos.p_line
    316   1.1       cgd 	 * (for functions defined in header files).
    317   1.1       cgd 	 */
    318   1.1       cgd 	if (posp->p_file == csrc_pos.p_file) {
    319   1.1       cgd 		outint(posp->p_line);
    320   1.1       cgd 	} else {
    321   1.1       cgd 		outint(csrc_pos.p_line);
    322   1.1       cgd 	}
    323   1.1       cgd 	outchar('d');
    324  1.43    rillig 	outint(get_filename_id(posp->p_file));
    325   1.1       cgd 	outchar('.');
    326   1.1       cgd 	outint(posp->p_line);
    327   1.1       cgd 
    328   1.1       cgd 	/* flags */
    329   1.1       cgd 
    330   1.1       cgd 	/* both SCANFLIKE and PRINTFLIKE imply VARARGS */
    331  1.33    rillig 	if (printflike_argnum != -1) {
    332  1.33    rillig 		nvararg = printflike_argnum;
    333  1.33    rillig 	} else if (scanflike_argnum != -1) {
    334  1.33    rillig 		nvararg = scanflike_argnum;
    335   1.1       cgd 	}
    336   1.1       cgd 
    337   1.1       cgd 	if (nvararg != -1) {
    338   1.1       cgd 		outchar('v');
    339   1.1       cgd 		outint(nvararg);
    340   1.1       cgd 	}
    341  1.33    rillig 	if (scanflike_argnum != -1) {
    342   1.1       cgd 		outchar('S');
    343  1.33    rillig 		outint(scanflike_argnum);
    344   1.1       cgd 	}
    345  1.33    rillig 	if (printflike_argnum != -1) {
    346   1.1       cgd 		outchar('P');
    347  1.33    rillig 		outint(printflike_argnum);
    348   1.1       cgd 	}
    349  1.33    rillig 	nvararg = printflike_argnum = scanflike_argnum = -1;
    350   1.1       cgd 
    351   1.1       cgd 	outchar('d');
    352   1.1       cgd 
    353   1.1       cgd 	if (rval)
    354   1.1       cgd 		/* has return value */
    355   1.1       cgd 		outchar('r');
    356   1.1       cgd 
    357   1.1       cgd 	if (llibflg)
    358   1.1       cgd 		/*
    359   1.1       cgd 		 * mark it as used so lint2 does not complain about
    360   1.1       cgd 		 * unused symbols in libraries
    361   1.1       cgd 		 */
    362   1.1       cgd 		outchar('u');
    363   1.1       cgd 
    364   1.1       cgd 	if (osdef)
    365   1.1       cgd 		/* old style function definition */
    366   1.1       cgd 		outchar('o');
    367   1.1       cgd 
    368  1.20  christos 	if (fsym->s_inline)
    369  1.20  christos 		outchar('i');
    370  1.20  christos 
    371   1.1       cgd 	if (fsym->s_scl == STATIC)
    372   1.1       cgd 		outchar('s');
    373   1.1       cgd 
    374   1.1       cgd 	/* name of function */
    375   1.1       cgd 	outname(fsym->s_name);
    376   1.6       cgd 
    377   1.6       cgd 	/* renamed name of function, if necessary */
    378  1.37    rillig 	if (fsym->s_rename != NULL) {
    379   1.6       cgd 		outchar('r');
    380   1.6       cgd 		outname(fsym->s_rename);
    381   1.6       cgd 	}
    382   1.1       cgd 
    383   1.1       cgd 	/* argument types and return value */
    384   1.1       cgd 	if (osdef) {
    385   1.1       cgd 		narg = 0;
    386  1.26    rillig 		for (arg = args; arg != NULL; arg = arg->s_next)
    387   1.1       cgd 			narg++;
    388   1.1       cgd 		outchar('f');
    389   1.1       cgd 		outint(narg);
    390  1.26    rillig 		for (arg = args; arg != NULL; arg = arg->s_next)
    391   1.1       cgd 			outtype(arg->s_type);
    392   1.4       jpo 		outtype(fsym->s_type->t_subt);
    393   1.1       cgd 	} else {
    394   1.4       jpo 		outtype(fsym->s_type);
    395   1.1       cgd 	}
    396   1.1       cgd }
    397   1.1       cgd 
    398   1.1       cgd /*
    399   1.1       cgd  * write out all information necessary for lint2 to check function
    400   1.1       cgd  * calls
    401   1.1       cgd  *
    402  1.34    rillig  * rvused is set if the return value is used (assigned to a variable)
    403   1.1       cgd  * rvdisc is set if the return value is not used and not ignored
    404   1.1       cgd  * (casted to void)
    405   1.1       cgd  */
    406   1.1       cgd void
    407  1.37    rillig outcall(const tnode_t *tn, bool rvused, bool rvdisc)
    408   1.1       cgd {
    409   1.1       cgd 	tnode_t	*args, *arg;
    410   1.1       cgd 	int	narg, n, i;
    411  1.12   thorpej 	int64_t	q;
    412   1.1       cgd 	tspec_t	t;
    413   1.1       cgd 
    414   1.1       cgd 	/* reset buffer */
    415   1.1       cgd 	outclr();
    416   1.1       cgd 
    417   1.1       cgd 	/*
    418   1.1       cgd 	 * line number of .c source, 'c' for function call, Id of current
    419   1.1       cgd 	 * source (.c or .h), and line in current source
    420   1.1       cgd 	 */
    421   1.1       cgd 	outint(csrc_pos.p_line);
    422   1.1       cgd 	outchar('c');
    423  1.43    rillig 	outint(get_filename_id(curr_pos.p_file));
    424   1.1       cgd 	outchar('.');
    425   1.1       cgd 	outint(curr_pos.p_line);
    426   1.1       cgd 
    427   1.1       cgd 	/*
    428   1.1       cgd 	 * flags; 'u' and 'i' must be last to make sure a letter
    429   1.1       cgd 	 * is between the numeric argument of a flag and the name of
    430   1.1       cgd 	 * the function
    431   1.1       cgd 	 */
    432   1.1       cgd 	narg = 0;
    433   1.1       cgd 	args = tn->tn_right;
    434   1.1       cgd 	for (arg = args; arg != NULL; arg = arg->tn_right)
    435   1.1       cgd 		narg++;
    436  1.25    rillig 	/* information about arguments */
    437   1.1       cgd 	for (n = 1; n <= narg; n++) {
    438   1.1       cgd 		/* the last argument is the top one in the tree */
    439  1.10     lukem 		for (i = narg, arg = args; i > n; i--, arg = arg->tn_right)
    440  1.10     lukem 			continue;
    441   1.1       cgd 		arg = arg->tn_left;
    442   1.1       cgd 		if (arg->tn_op == CON) {
    443  1.35    rillig 			if (is_integer(t = arg->tn_type->t_tspec)) {
    444   1.1       cgd 				/*
    445   1.1       cgd 				 * XXX it would probably be better to
    446  1.16     perry 				 * explicitly test the sign
    447   1.1       cgd 				 */
    448   1.1       cgd 				if ((q = arg->tn_val->v_quad) == 0) {
    449   1.1       cgd 					/* zero constant */
    450   1.1       cgd 					outchar('z');
    451   1.1       cgd 				} else if (msb(q, t, 0) == 0) {
    452   1.1       cgd 					/* positive if casted to signed */
    453   1.1       cgd 					outchar('p');
    454   1.1       cgd 				} else {
    455   1.1       cgd 					/* negative if casted to signed */
    456   1.1       cgd 					outchar('n');
    457   1.1       cgd 				}
    458   1.1       cgd 				outint(n);
    459   1.1       cgd 			}
    460  1.39    rillig 		} else if (arg->tn_op == ADDR &&
    461   1.1       cgd 			   arg->tn_left->tn_op == STRING &&
    462  1.28    rillig 			   arg->tn_left->tn_string->st_tspec == CHAR) {
    463   1.1       cgd 			/* constant string, write all format specifiers */
    464   1.1       cgd 			outchar('s');
    465   1.1       cgd 			outint(n);
    466  1.28    rillig 			outfstrg(arg->tn_left->tn_string);
    467   1.1       cgd 		}
    468   1.1       cgd 
    469   1.1       cgd 	}
    470   1.1       cgd 	/* return value discarded/used/ignored */
    471   1.1       cgd 	outchar(rvdisc ? 'd' : (rvused ? 'u' : 'i'));
    472   1.1       cgd 
    473   1.1       cgd 	/* name of the called function */
    474   1.1       cgd 	outname(tn->tn_left->tn_left->tn_sym->s_name);
    475   1.1       cgd 
    476   1.1       cgd 	/* types of arguments */
    477   1.1       cgd 	outchar('f');
    478   1.1       cgd 	outint(narg);
    479   1.1       cgd 	for (n = 1; n <= narg; n++) {
    480   1.1       cgd 		/* the last argument is the top one in the tree */
    481  1.10     lukem 		for (i = narg, arg = args; i > n; i--, arg = arg->tn_right)
    482  1.10     lukem 			continue;
    483   1.1       cgd 		outtype(arg->tn_left->tn_type);
    484   1.1       cgd 	}
    485   1.1       cgd 	/* expected type of return value */
    486   1.1       cgd 	outtype(tn->tn_type);
    487   1.1       cgd }
    488   1.1       cgd 
    489   1.1       cgd /*
    490   1.1       cgd  * extracts potential format specifiers for printf() and scanf() and
    491  1.34    rillig  * writes them, enclosed in "" and quoted if necessary, to the output buffer
    492   1.1       cgd  */
    493   1.1       cgd static void
    494  1.10     lukem outfstrg(strg_t *strg)
    495   1.1       cgd {
    496  1.45    rillig 	unsigned char c, oc;
    497  1.37    rillig 	bool	first;
    498   1.1       cgd 	u_char	*cp;
    499   1.1       cgd 
    500  1.30    rillig 	lint_assert(strg->st_tspec == CHAR);
    501   1.1       cgd 
    502   1.1       cgd 	cp = strg->st_cp;
    503   1.1       cgd 
    504   1.1       cgd 	outchar('"');
    505   1.1       cgd 
    506   1.1       cgd 	c = *cp++;
    507   1.1       cgd 
    508   1.1       cgd 	while (c != '\0') {
    509   1.1       cgd 
    510   1.1       cgd 		if (c != '%') {
    511   1.1       cgd 			c = *cp++;
    512   1.1       cgd 			continue;
    513   1.1       cgd 		}
    514   1.1       cgd 
    515   1.1       cgd 		outqchar('%');
    516   1.1       cgd 		c = *cp++;
    517   1.1       cgd 
    518   1.1       cgd 		/* flags for printf and scanf and *-fieldwidth for printf */
    519   1.1       cgd 		while (c != '\0' && (c == '-' || c == '+' || c == ' ' ||
    520   1.1       cgd 				     c == '#' || c == '0' || c == '*')) {
    521   1.1       cgd 			outqchar(c);
    522   1.1       cgd 			c = *cp++;
    523   1.1       cgd 		}
    524   1.1       cgd 
    525   1.1       cgd 		/* numeric field width */
    526  1.45    rillig 		while (c != '\0' && ch_isdigit((char)c)) {
    527   1.1       cgd 			outqchar(c);
    528   1.1       cgd 			c = *cp++;
    529   1.1       cgd 		}
    530   1.1       cgd 
    531   1.1       cgd 		/* precision for printf */
    532   1.1       cgd 		if (c == '.') {
    533   1.1       cgd 			outqchar(c);
    534   1.1       cgd 			if ((c = *cp++) == '*') {
    535   1.1       cgd 				outqchar(c);
    536   1.1       cgd 				c = *cp++;
    537   1.1       cgd 			} else {
    538  1.45    rillig 				while (c != '\0' && ch_isdigit((char)c)) {
    539   1.1       cgd 					outqchar(c);
    540   1.1       cgd 					c = *cp++;
    541   1.1       cgd 				}
    542   1.1       cgd 			}
    543   1.1       cgd 		}
    544   1.1       cgd 
    545   1.1       cgd 		/* h, l, L and q flags fpr printf and scanf */
    546   1.1       cgd 		if (c == 'h' || c == 'l' || c == 'L' || c == 'q') {
    547   1.1       cgd 			outqchar(c);
    548   1.1       cgd 			c = *cp++;
    549   1.1       cgd 		}
    550   1.1       cgd 
    551   1.1       cgd 		/*
    552   1.1       cgd 		 * The last character. It is always written so we can detect
    553   1.1       cgd 		 * invalid format specifiers.
    554   1.1       cgd 		 */
    555   1.1       cgd 		if (c != '\0') {
    556   1.1       cgd 			outqchar(c);
    557   1.1       cgd 			oc = c;
    558   1.1       cgd 			c = *cp++;
    559   1.1       cgd 			/*
    560   1.1       cgd 			 * handle [ for scanf. [-] means that a minus sign
    561   1.1       cgd 			 * was found at an undefined position.
    562   1.1       cgd 			 */
    563   1.1       cgd 			if (oc == '[') {
    564   1.1       cgd 				if (c == '^')
    565   1.1       cgd 					c = *cp++;
    566   1.1       cgd 				if (c == ']')
    567   1.1       cgd 					c = *cp++;
    568  1.37    rillig 				first = true;
    569   1.1       cgd 				while (c != '\0' && c != ']') {
    570   1.1       cgd 					if (c == '-') {
    571   1.1       cgd 						if (!first && *cp != ']')
    572   1.1       cgd 							outqchar(c);
    573   1.1       cgd 					}
    574  1.37    rillig 					first = false;
    575   1.1       cgd 					c = *cp++;
    576   1.1       cgd 				}
    577   1.1       cgd 				if (c == ']') {
    578   1.1       cgd 					outqchar(c);
    579   1.1       cgd 					c = *cp++;
    580   1.1       cgd 				}
    581   1.1       cgd 			}
    582   1.1       cgd 		}
    583   1.1       cgd 
    584   1.1       cgd 	}
    585   1.1       cgd 
    586   1.1       cgd 	outchar('"');
    587   1.1       cgd }
    588   1.1       cgd 
    589   1.1       cgd /*
    590   1.1       cgd  * writes a record if sym was used
    591   1.1       cgd  */
    592   1.1       cgd void
    593  1.36    rillig outusg(const sym_t *sym)
    594   1.1       cgd {
    595   1.1       cgd 	/* reset buffer */
    596   1.1       cgd 	outclr();
    597   1.1       cgd 
    598   1.1       cgd 	/*
    599   1.1       cgd 	 * line number of .c source, 'u' for used, Id of current
    600   1.1       cgd 	 * source (.c or .h), and line in current source
    601   1.1       cgd 	 */
    602   1.1       cgd 	outint(csrc_pos.p_line);
    603   1.1       cgd 	outchar('u');
    604  1.43    rillig 	outint(get_filename_id(curr_pos.p_file));
    605   1.1       cgd 	outchar('.');
    606   1.1       cgd 	outint(curr_pos.p_line);
    607   1.1       cgd 
    608   1.1       cgd 	/* necessary to delimit both numbers */
    609   1.1       cgd 	outchar('x');
    610   1.1       cgd 
    611   1.1       cgd 	outname(sym->s_name);
    612   1.1       cgd }
    613