Home | History | Annotate | Line # | Download | only in indent
parse.c revision 1.74
      1  1.74  rillig /*	$NetBSD: parse.c,v 1.74 2023/06/14 16:14:30 rillig Exp $	*/
      2   1.3     tls 
      3   1.9   kamil /*-
      4   1.9   kamil  * SPDX-License-Identifier: BSD-4-Clause
      5   1.9   kamil  *
      6   1.9   kamil  * Copyright (c) 1985 Sun Microsystems, Inc.
      7   1.4     mrg  * Copyright (c) 1980, 1993
      8   1.4     mrg  *	The Regents of the University of California.  All rights reserved.
      9   1.1     cgd  * All rights reserved.
     10   1.1     cgd  *
     11   1.1     cgd  * Redistribution and use in source and binary forms, with or without
     12   1.1     cgd  * modification, are permitted provided that the following conditions
     13   1.1     cgd  * are met:
     14   1.1     cgd  * 1. Redistributions of source code must retain the above copyright
     15   1.1     cgd  *    notice, this list of conditions and the following disclaimer.
     16   1.1     cgd  * 2. Redistributions in binary form must reproduce the above copyright
     17   1.1     cgd  *    notice, this list of conditions and the following disclaimer in the
     18   1.1     cgd  *    documentation and/or other materials provided with the distribution.
     19   1.1     cgd  * 3. All advertising materials mentioning features or use of this software
     20   1.1     cgd  *    must display the following acknowledgement:
     21   1.1     cgd  *	This product includes software developed by the University of
     22   1.1     cgd  *	California, Berkeley and its contributors.
     23   1.1     cgd  * 4. Neither the name of the University nor the names of its contributors
     24   1.1     cgd  *    may be used to endorse or promote products derived from this software
     25   1.1     cgd  *    without specific prior written permission.
     26   1.1     cgd  *
     27   1.1     cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     28   1.1     cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     29   1.1     cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     30   1.1     cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     31   1.1     cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     32   1.1     cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     33   1.1     cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     34   1.1     cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     35   1.1     cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     36   1.1     cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     37   1.1     cgd  * SUCH DAMAGE.
     38   1.1     cgd  */
     39   1.1     cgd 
     40   1.5   lukem #include <sys/cdefs.h>
     41  1.74  rillig __RCSID("$NetBSD: parse.c,v 1.74 2023/06/14 16:14:30 rillig Exp $");
     42   1.1     cgd 
     43   1.9   kamil #include <err.h>
     44  1.12  rillig 
     45   1.9   kamil #include "indent.h"
     46   1.9   kamil 
     47  1.68  rillig /*
     48  1.68  rillig  * Try to combine the statement on the top of the parse stack with the symbol
     49  1.68  rillig  * directly below it, replacing these two symbols with a single symbol.
     50  1.68  rillig  */
     51  1.68  rillig static bool
     52  1.69  rillig psyms_reduce_stmt(struct psym_stack *psyms)
     53  1.68  rillig {
     54  1.74  rillig 	switch (psyms->sym[psyms->len - 2]) {
     55  1.68  rillig 
     56  1.68  rillig 	case psym_stmt:
     57  1.74  rillig 		psyms->sym[psyms->len-- - 2] = psym_stmt;
     58  1.68  rillig 		return true;
     59  1.68  rillig 
     60  1.68  rillig 	case psym_do:
     61  1.74  rillig 		psyms->sym[psyms->len-- - 2] = psym_do_stmt;
     62  1.74  rillig 		ps.ind_level_follow = psyms->ind_level[psyms->len - 1];
     63  1.68  rillig 		return true;
     64  1.68  rillig 
     65  1.68  rillig 	case psym_if_expr:
     66  1.74  rillig 		psyms->sym[psyms->len-- - 2] = psym_if_expr_stmt;
     67  1.74  rillig 		size_t i = psyms->len - 2;
     68  1.69  rillig 		while (psyms->sym[i] != psym_stmt &&
     69  1.69  rillig 		    psyms->sym[i] != psym_lbrace_block)
     70  1.68  rillig 			--i;
     71  1.69  rillig 		ps.ind_level_follow = psyms->ind_level[i];
     72  1.68  rillig 		/* For the time being, assume that there is no 'else' on this
     73  1.68  rillig 		 * 'if', and set the indentation level accordingly. If an
     74  1.68  rillig 		 * 'else' is scanned, it will be fixed up later. */
     75  1.68  rillig 		return true;
     76  1.68  rillig 
     77  1.68  rillig 	case psym_switch_expr:
     78  1.68  rillig 	case psym_decl:
     79  1.68  rillig 	case psym_if_expr_stmt_else:
     80  1.68  rillig 	case psym_for_exprs:
     81  1.68  rillig 	case psym_while_expr:
     82  1.74  rillig 		psyms->sym[psyms->len-- - 2] = psym_stmt;
     83  1.74  rillig 		ps.ind_level_follow = psyms->ind_level[psyms->len - 1];
     84  1.68  rillig 		return true;
     85  1.68  rillig 
     86  1.68  rillig 	default:
     87  1.68  rillig 		return false;
     88  1.68  rillig 	}
     89  1.68  rillig }
     90   1.1     cgd 
     91  1.45  rillig static int
     92  1.45  rillig decl_level(void)
     93  1.45  rillig {
     94  1.60  rillig 	int level = 0;
     95  1.74  rillig 	for (size_t i = ps.psyms.len - 2; i > 0; i--)
     96  1.69  rillig 		if (ps.psyms.sym[i] == psym_decl)
     97  1.60  rillig 			level++;
     98  1.60  rillig 	return level;
     99  1.45  rillig }
    100  1.45  rillig 
    101  1.64  rillig static void
    102  1.72  rillig ps_push(parser_symbol psym, bool follow)
    103  1.64  rillig {
    104  1.74  rillig 	if (ps.psyms.len >= STACKSIZE)
    105  1.72  rillig 		errx(1, "Parser stack overflow");
    106  1.74  rillig 	ps.psyms.sym[++ps.psyms.len - 1] = psym;
    107  1.74  rillig 	ps.psyms.ind_level[ps.psyms.len - 1] =
    108  1.72  rillig 	    follow ? ps.ind_level_follow : ps.ind_level;
    109  1.64  rillig }
    110  1.64  rillig 
    111  1.68  rillig /*
    112  1.68  rillig  * Repeatedly try to reduce the top two symbols on the parse stack to a single
    113  1.68  rillig  * symbol, until no more reductions are possible.
    114  1.68  rillig  */
    115  1.68  rillig static void
    116  1.69  rillig psyms_reduce(struct psym_stack *psyms)
    117  1.68  rillig {
    118  1.68  rillig again:
    119  1.74  rillig 	if (psyms->sym[psyms->len - 1] == psym_stmt
    120  1.74  rillig 	    && psyms_reduce_stmt(psyms))
    121  1.68  rillig 		goto again;
    122  1.74  rillig 	if (psyms->sym[psyms->len - 1] == psym_while_expr &&
    123  1.74  rillig 	    psyms->sym[psyms->len - 2] == psym_do_stmt) {
    124  1.74  rillig 		psyms->len -= 2;
    125  1.68  rillig 		goto again;
    126  1.68  rillig 	}
    127  1.68  rillig }
    128  1.68  rillig 
    129  1.65  rillig static bool
    130  1.65  rillig is_lbrace(parser_symbol psym)
    131  1.65  rillig {
    132  1.65  rillig 	return psym == psym_lbrace_block
    133  1.65  rillig 	    || psym == psym_lbrace_struct
    134  1.65  rillig 	    || psym == psym_lbrace_union
    135  1.65  rillig 	    || psym == psym_lbrace_enum;
    136  1.65  rillig }
    137  1.65  rillig 
    138  1.31  rillig /*
    139  1.71  rillig  * Shift the token onto the parser stack, then try to reduce it by combining it with
    140  1.31  rillig  * previous tokens.
    141  1.31  rillig  */
    142   1.5   lukem void
    143  1.39  rillig parse(parser_symbol psym)
    144   1.1     cgd {
    145  1.62  rillig 	debug_blank_line();
    146  1.60  rillig 	debug_println("parse token: %s", psym_name[psym]);
    147   1.1     cgd 
    148  1.69  rillig 	struct psym_stack *psyms = &ps.psyms;
    149  1.60  rillig 	if (psym != psym_else) {
    150  1.74  rillig 		while (psyms->sym[psyms->len - 1] == psym_if_expr_stmt) {
    151  1.74  rillig 			psyms->sym[psyms->len - 1] = psym_stmt;
    152  1.69  rillig 			psyms_reduce(&ps.psyms);
    153  1.60  rillig 		}
    154  1.34  rillig 	}
    155   1.1     cgd 
    156  1.60  rillig 	switch (psym) {
    157   1.1     cgd 
    158  1.71  rillig 	case psym_lbrace_block:
    159  1.71  rillig 	case psym_lbrace_struct:
    160  1.71  rillig 	case psym_lbrace_union:
    161  1.71  rillig 	case psym_lbrace_enum:
    162  1.71  rillig 		ps.break_after_comma = false;
    163  1.74  rillig 		if (psyms->sym[psyms->len - 1] == psym_decl
    164  1.74  rillig 		    || psyms->sym[psyms->len - 1] == psym_stmt)
    165  1.71  rillig 			++ps.ind_level_follow;
    166  1.71  rillig 		else if (code.len == 0) {
    167  1.71  rillig 			/* It is part of a while, for, etc. */
    168  1.71  rillig 			--ps.ind_level;
    169  1.71  rillig 
    170  1.71  rillig 			/* for a switch, brace should be two levels out from
    171  1.71  rillig 			 * the code */
    172  1.74  rillig 			if (psyms->sym[psyms->len - 1] == psym_switch_expr
    173  1.71  rillig 			    && opt.case_indent >= 1.0F)
    174  1.71  rillig 				--ps.ind_level;
    175  1.71  rillig 		}
    176  1.71  rillig 
    177  1.72  rillig 		ps_push(psym, false);
    178  1.72  rillig 		ps_push(psym_stmt, true);
    179  1.71  rillig 		break;
    180  1.71  rillig 
    181  1.71  rillig 	case psym_rbrace:
    182  1.71  rillig 		/* stack should have <lbrace> <stmt> or <lbrace> <stmt_list> */
    183  1.74  rillig 		if (!(psyms->len >= 2
    184  1.74  rillig 			&& is_lbrace(psyms->sym[psyms->len - 2]))) {
    185  1.71  rillig 			diag(1, "Statement nesting error");
    186  1.71  rillig 			break;
    187  1.71  rillig 		}
    188  1.71  rillig 		ps.ind_level = ps.ind_level_follow =
    189  1.74  rillig 		    psyms->ind_level[psyms->len-- - 2];
    190  1.74  rillig 		psyms->sym[psyms->len - 1] = psym_stmt;
    191  1.71  rillig 		break;
    192  1.71  rillig 
    193  1.60  rillig 	case psym_decl:
    194  1.74  rillig 		if (psyms->sym[psyms->len - 1] == psym_decl)
    195  1.60  rillig 			break;	/* only put one declaration onto stack */
    196  1.60  rillig 
    197  1.63  rillig 		ps.break_after_comma = true;
    198  1.72  rillig 		ps_push(psym_decl, true);
    199  1.60  rillig 
    200  1.66  rillig 		if (opt.left_justify_decl)
    201  1.60  rillig 			ps.ind_level_follow = ps.ind_level = decl_level();
    202  1.60  rillig 		break;
    203  1.60  rillig 
    204  1.71  rillig 	case psym_stmt:
    205  1.71  rillig 		ps.break_after_comma = false;
    206  1.72  rillig 		ps_push(psym_stmt, false);
    207  1.71  rillig 		break;
    208  1.71  rillig 
    209  1.60  rillig 	case psym_if_expr:
    210  1.74  rillig 		if (psyms->sym[psyms->len - 1] == psym_if_expr_stmt_else
    211  1.66  rillig 		    && opt.else_if_in_same_line)
    212  1.74  rillig 			ps.ind_level_follow =
    213  1.74  rillig 			    psyms->ind_level[psyms->len-- - 1];
    214  1.60  rillig 		/* FALLTHROUGH */
    215  1.60  rillig 	case psym_do:
    216  1.60  rillig 	case psym_for_exprs:
    217  1.64  rillig 		ps.ind_level = ps.ind_level_follow++;
    218  1.72  rillig 		ps_push(psym, false);
    219  1.60  rillig 		break;
    220  1.60  rillig 
    221  1.60  rillig 	case psym_else:
    222  1.74  rillig 		if (psyms->sym[psyms->len - 1] != psym_if_expr_stmt) {
    223  1.60  rillig 			diag(1, "Unmatched 'else'");
    224  1.64  rillig 			break;
    225  1.60  rillig 		}
    226  1.74  rillig 		ps.ind_level = psyms->ind_level[psyms->len - 1];
    227  1.64  rillig 		ps.ind_level_follow = ps.ind_level + 1;
    228  1.74  rillig 		psyms->sym[psyms->len - 1] = psym_if_expr_stmt_else;
    229  1.60  rillig 		break;
    230  1.60  rillig 
    231  1.60  rillig 	case psym_switch_expr:
    232  1.72  rillig 		ps_push(psym_switch_expr, true);
    233  1.60  rillig 		ps.ind_level_follow += (int)opt.case_indent + 1;
    234  1.60  rillig 		break;
    235  1.60  rillig 
    236  1.71  rillig 	case psym_while_expr:
    237  1.74  rillig 		if (psyms->sym[psyms->len - 1] == psym_do_stmt) {
    238  1.71  rillig 			ps.ind_level = ps.ind_level_follow =
    239  1.74  rillig 			    psyms->ind_level[psyms->len - 1];
    240  1.72  rillig 			ps_push(psym_while_expr, false);
    241  1.71  rillig 		} else {
    242  1.72  rillig 			ps_push(psym_while_expr, true);
    243  1.71  rillig 			++ps.ind_level_follow;
    244  1.71  rillig 		}
    245  1.60  rillig 		break;
    246  1.60  rillig 
    247  1.60  rillig 	default:
    248  1.60  rillig 		diag(1, "Unknown code to parser");
    249  1.60  rillig 		return;
    250  1.17  rillig 	}
    251   1.5   lukem 
    252  1.71  rillig 	debug_psyms_stack("before reduction");
    253  1.69  rillig 	psyms_reduce(&ps.psyms);
    254  1.71  rillig 	debug_psyms_stack("after reduction");
    255   1.1     cgd }
    256