Home | History | Annotate | Line # | Download | only in indent
parse.c revision 1.66
      1  1.66  rillig /*	$NetBSD: parse.c,v 1.66 2023/06/05 07:35:05 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.66  rillig __RCSID("$NetBSD: parse.c,v 1.66 2023/06/05 07:35:05 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.9   kamil static void reduce(void);
     48   1.1     cgd 
     49  1.45  rillig static int
     50  1.45  rillig decl_level(void)
     51  1.45  rillig {
     52  1.60  rillig 	int level = 0;
     53  1.60  rillig 	for (int i = ps.tos - 1; i > 0; i--)
     54  1.60  rillig 		if (ps.s_sym[i] == psym_decl)
     55  1.60  rillig 			level++;
     56  1.60  rillig 	return level;
     57  1.45  rillig }
     58  1.45  rillig 
     59  1.64  rillig static void
     60  1.64  rillig ps_push(parser_symbol psym)
     61  1.64  rillig {
     62  1.64  rillig 	ps.s_sym[++ps.tos] = psym;
     63  1.64  rillig 	ps.s_ind_level[ps.tos] = ps.ind_level;
     64  1.64  rillig }
     65  1.64  rillig 
     66  1.64  rillig static void
     67  1.64  rillig ps_push_follow(parser_symbol psym)
     68  1.64  rillig {
     69  1.64  rillig 	ps.s_sym[++ps.tos] = psym;
     70  1.64  rillig 	ps.s_ind_level[ps.tos] = ps.ind_level_follow;
     71  1.64  rillig }
     72  1.64  rillig 
     73  1.65  rillig static bool
     74  1.65  rillig is_lbrace(parser_symbol psym)
     75  1.65  rillig {
     76  1.65  rillig 	return psym == psym_lbrace_block
     77  1.65  rillig 	    || psym == psym_lbrace_struct
     78  1.65  rillig 	    || psym == psym_lbrace_union
     79  1.65  rillig 	    || psym == psym_lbrace_enum;
     80  1.65  rillig }
     81  1.65  rillig 
     82  1.31  rillig /*
     83  1.31  rillig  * Shift the token onto the parser stack, or reduce it by combining it with
     84  1.31  rillig  * previous tokens.
     85  1.31  rillig  */
     86   1.5   lukem void
     87  1.39  rillig parse(parser_symbol psym)
     88   1.1     cgd {
     89  1.62  rillig 	debug_blank_line();
     90  1.60  rillig 	debug_println("parse token: %s", psym_name[psym]);
     91   1.1     cgd 
     92  1.60  rillig 	if (psym != psym_else) {
     93  1.60  rillig 		while (ps.s_sym[ps.tos] == psym_if_expr_stmt) {
     94  1.60  rillig 			ps.s_sym[ps.tos] = psym_stmt;
     95  1.60  rillig 			reduce();
     96  1.60  rillig 		}
     97  1.34  rillig 	}
     98   1.1     cgd 
     99  1.60  rillig 	switch (psym) {
    100   1.1     cgd 
    101  1.60  rillig 	case psym_decl:
    102  1.60  rillig 		if (ps.s_sym[ps.tos] == psym_decl)
    103  1.60  rillig 			break;	/* only put one declaration onto stack */
    104  1.60  rillig 
    105  1.63  rillig 		ps.break_after_comma = true;
    106  1.64  rillig 		ps_push_follow(psym_decl);
    107  1.60  rillig 
    108  1.66  rillig 		if (opt.left_justify_decl)
    109  1.60  rillig 			ps.ind_level_follow = ps.ind_level = decl_level();
    110  1.60  rillig 		break;
    111  1.60  rillig 
    112  1.60  rillig 	case psym_if_expr:
    113  1.66  rillig 		if (ps.s_sym[ps.tos] == psym_if_expr_stmt_else
    114  1.66  rillig 		    && opt.else_if_in_same_line)
    115  1.60  rillig 			ps.ind_level_follow = ps.s_ind_level[ps.tos--];
    116  1.60  rillig 		/* FALLTHROUGH */
    117  1.60  rillig 	case psym_do:
    118  1.60  rillig 	case psym_for_exprs:
    119  1.64  rillig 		ps.ind_level = ps.ind_level_follow++;
    120  1.64  rillig 		ps_push(psym);
    121  1.60  rillig 		break;
    122  1.60  rillig 
    123  1.65  rillig 	case psym_lbrace_block:
    124  1.65  rillig 	case psym_lbrace_struct:
    125  1.65  rillig 	case psym_lbrace_union:
    126  1.65  rillig 	case psym_lbrace_enum:
    127  1.63  rillig 		ps.break_after_comma = false;
    128  1.61  rillig 		if (ps.s_sym[ps.tos] == psym_stmt
    129  1.61  rillig 		    || ps.s_sym[ps.tos] == psym_decl
    130  1.60  rillig 		    || ps.s_sym[ps.tos] == psym_stmt_list)
    131  1.60  rillig 			++ps.ind_level_follow;	/* it is a random, isolated
    132  1.60  rillig 						 * stmt group or a declaration
    133  1.60  rillig 						 */
    134  1.60  rillig 		else {
    135  1.60  rillig 			if (code.len == 0) {
    136  1.60  rillig 				/* it is a group as part of a while, for, etc.
    137  1.60  rillig 				 */
    138  1.60  rillig 				--ps.ind_level;
    139  1.60  rillig 
    140  1.60  rillig 				/* for a switch, brace should be two levels out
    141  1.60  rillig 				 * from the code */
    142  1.60  rillig 				if (ps.s_sym[ps.tos] == psym_switch_expr &&
    143  1.60  rillig 				    opt.case_indent >= 1.0F)
    144  1.60  rillig 					--ps.ind_level;
    145  1.60  rillig 			}
    146  1.60  rillig 		}
    147  1.60  rillig 
    148  1.65  rillig 		ps_push(psym);
    149  1.64  rillig 		ps_push_follow(psym_stmt);
    150  1.60  rillig 		break;
    151  1.60  rillig 
    152  1.60  rillig 	case psym_while_expr:
    153  1.60  rillig 		if (ps.s_sym[ps.tos] == psym_do_stmt) {
    154  1.61  rillig 			ps.ind_level =
    155  1.61  rillig 			    ps.ind_level_follow = ps.s_ind_level[ps.tos];
    156  1.64  rillig 			ps_push(psym_while_expr);
    157  1.64  rillig 		} else {
    158  1.64  rillig 			ps_push_follow(psym_while_expr);
    159  1.60  rillig 			++ps.ind_level_follow;
    160  1.60  rillig 		}
    161  1.60  rillig 
    162  1.60  rillig 		break;
    163  1.60  rillig 
    164  1.60  rillig 	case psym_else:
    165  1.64  rillig 		if (ps.s_sym[ps.tos] != psym_if_expr_stmt) {
    166  1.60  rillig 			diag(1, "Unmatched 'else'");
    167  1.64  rillig 			break;
    168  1.60  rillig 		}
    169  1.64  rillig 		ps.ind_level = ps.s_ind_level[ps.tos];
    170  1.64  rillig 		ps.ind_level_follow = ps.ind_level + 1;
    171  1.64  rillig 		ps.s_sym[ps.tos] = psym_if_expr_stmt_else;
    172  1.60  rillig 		break;
    173  1.60  rillig 
    174  1.60  rillig 	case psym_rbrace:
    175  1.60  rillig 		/* stack should have <lbrace> <stmt> or <lbrace> <stmt_list> */
    176  1.65  rillig 		if (!(ps.tos > 0 && is_lbrace(ps.s_sym[ps.tos - 1]))) {
    177  1.60  rillig 			diag(1, "Statement nesting error");
    178  1.64  rillig 			break;
    179  1.64  rillig 		}
    180  1.64  rillig 		ps.ind_level = ps.ind_level_follow = ps.s_ind_level[--ps.tos];
    181  1.64  rillig 		ps.s_sym[ps.tos] = psym_stmt;
    182  1.60  rillig 		break;
    183  1.60  rillig 
    184  1.60  rillig 	case psym_switch_expr:
    185  1.64  rillig 		ps_push_follow(psym_switch_expr);
    186  1.60  rillig 		ps.s_case_ind_level[ps.tos] = case_ind;
    187  1.60  rillig 		case_ind = (float)ps.ind_level_follow + opt.case_indent;
    188  1.60  rillig 		ps.ind_level_follow += (int)opt.case_indent + 1;
    189  1.60  rillig 		break;
    190  1.60  rillig 
    191  1.64  rillig 	case psym_stmt:
    192  1.63  rillig 		ps.break_after_comma = false;
    193  1.64  rillig 		ps_push(psym_stmt);
    194  1.60  rillig 		break;
    195  1.60  rillig 
    196  1.60  rillig 	default:
    197  1.60  rillig 		diag(1, "Unknown code to parser");
    198  1.60  rillig 		return;
    199  1.17  rillig 	}
    200   1.5   lukem 
    201  1.60  rillig 	if (ps.tos >= STACKSIZE - 1)
    202  1.60  rillig 		errx(1, "Parser stack overflow");
    203   1.1     cgd 
    204  1.60  rillig 	debug_parse_stack("before reduction");
    205  1.60  rillig 	reduce();		/* see if any reduction can be done */
    206  1.60  rillig 	debug_parse_stack("after reduction");
    207   1.1     cgd }
    208   1.9   kamil 
    209  1.16  rillig /*
    210  1.16  rillig  * Try to combine the statement on the top of the parse stack with the symbol
    211  1.16  rillig  * directly below it, replacing these two symbols with a single symbol.
    212  1.16  rillig  */
    213  1.25  rillig static bool
    214  1.16  rillig reduce_stmt(void)
    215  1.16  rillig {
    216  1.60  rillig 	switch (ps.s_sym[ps.tos - 1]) {
    217  1.60  rillig 
    218  1.60  rillig 	case psym_stmt:
    219  1.60  rillig 	case psym_stmt_list:
    220  1.60  rillig 		ps.s_sym[--ps.tos] = psym_stmt_list;
    221  1.60  rillig 		return true;
    222  1.60  rillig 
    223  1.60  rillig 	case psym_do:
    224  1.60  rillig 		ps.s_sym[--ps.tos] = psym_do_stmt;
    225  1.60  rillig 		ps.ind_level_follow = ps.s_ind_level[ps.tos];
    226  1.60  rillig 		return true;
    227  1.60  rillig 
    228  1.60  rillig 	case psym_if_expr:
    229  1.60  rillig 		ps.s_sym[--ps.tos] = psym_if_expr_stmt;
    230  1.60  rillig 		int i = ps.tos - 1;
    231  1.60  rillig 		while (ps.s_sym[i] != psym_stmt &&
    232  1.60  rillig 		    ps.s_sym[i] != psym_stmt_list &&
    233  1.65  rillig 		    ps.s_sym[i] != psym_lbrace_block)
    234  1.60  rillig 			--i;
    235  1.60  rillig 		ps.ind_level_follow = ps.s_ind_level[i];
    236  1.60  rillig 		/* For the time being, assume that there is no 'else' on this
    237  1.60  rillig 		 * 'if', and set the indentation level accordingly. If an
    238  1.60  rillig 		 * 'else' is scanned, it will be fixed up later. */
    239  1.60  rillig 		return true;
    240  1.60  rillig 
    241  1.60  rillig 	case psym_switch_expr:
    242  1.60  rillig 		case_ind = ps.s_case_ind_level[ps.tos - 1];
    243  1.60  rillig 		/* FALLTHROUGH */
    244  1.60  rillig 	case psym_decl:		/* finish of a declaration */
    245  1.60  rillig 	case psym_if_expr_stmt_else:
    246  1.60  rillig 	case psym_for_exprs:
    247  1.60  rillig 	case psym_while_expr:
    248  1.60  rillig 		ps.s_sym[--ps.tos] = psym_stmt;
    249  1.60  rillig 		ps.ind_level_follow = ps.s_ind_level[ps.tos];
    250  1.60  rillig 		return true;
    251  1.16  rillig 
    252  1.60  rillig 	default:
    253  1.60  rillig 		return false;
    254  1.60  rillig 	}
    255  1.16  rillig }
    256  1.16  rillig 
    257   1.1     cgd /*
    258  1.59  rillig  * Repeatedly try to reduce the top two symbols on the parse stack to a single
    259  1.59  rillig  * symbol, until no more reductions are possible.
    260   1.1     cgd  */
    261   1.9   kamil static void
    262   1.6     wiz reduce(void)
    263   1.1     cgd {
    264  1.16  rillig again:
    265  1.60  rillig 	if (ps.s_sym[ps.tos] == psym_stmt && reduce_stmt())
    266  1.60  rillig 		goto again;
    267  1.60  rillig 	if (ps.s_sym[ps.tos] == psym_while_expr &&
    268  1.44  rillig 	    ps.s_sym[ps.tos - 1] == psym_do_stmt) {
    269  1.60  rillig 		ps.tos -= 2;
    270  1.60  rillig 		goto again;
    271  1.60  rillig 	}
    272   1.1     cgd }
    273