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