parse.c revision 1.43 1 1.43 rillig /* $NetBSD: parse.c,v 1.43 2021/10/28 21:51:43 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.9 kamil #if 0
41 1.9 kamil static char sccsid[] = "@(#)parse.c 8.1 (Berkeley) 6/6/93";
42 1.9 kamil #endif
43 1.9 kamil
44 1.5 lukem #include <sys/cdefs.h>
45 1.9 kamil #if defined(__NetBSD__)
46 1.9 kamil __RCSID("$FreeBSD$");
47 1.4 mrg #else
48 1.9 kamil __FBSDID("$FreeBSD: head/usr.bin/indent/parse.c 337651 2018-08-11 19:20:06Z pstef $");
49 1.9 kamil #endif
50 1.1 cgd
51 1.39 rillig #include <assert.h>
52 1.9 kamil #include <err.h>
53 1.1 cgd #include <stdio.h>
54 1.12 rillig
55 1.9 kamil #include "indent.h"
56 1.9 kamil
57 1.9 kamil static void reduce(void);
58 1.1 cgd
59 1.39 rillig #ifdef debug
60 1.41 rillig static const char *
61 1.39 rillig psym_name(parser_symbol psym)
62 1.39 rillig {
63 1.39 rillig static const char *const name[] = {
64 1.39 rillig "semicolon",
65 1.39 rillig "lbrace",
66 1.39 rillig "rbrace",
67 1.39 rillig "decl",
68 1.39 rillig "stmt",
69 1.39 rillig "stmt_list",
70 1.39 rillig "for_exprs",
71 1.39 rillig "if_expr",
72 1.39 rillig "if_expr_stmt",
73 1.39 rillig "if_expr_stmt_else",
74 1.39 rillig "else",
75 1.39 rillig "switch_expr",
76 1.39 rillig "do",
77 1.39 rillig "do_stmt",
78 1.39 rillig "while_expr",
79 1.39 rillig };
80 1.39 rillig
81 1.39 rillig assert(array_length(name) == (int)psym_while_expr + 1);
82 1.39 rillig
83 1.39 rillig return name[psym];
84 1.39 rillig }
85 1.39 rillig #endif
86 1.39 rillig
87 1.31 rillig /*
88 1.31 rillig * Shift the token onto the parser stack, or reduce it by combining it with
89 1.31 rillig * previous tokens.
90 1.31 rillig */
91 1.5 lukem void
92 1.39 rillig parse(parser_symbol psym)
93 1.1 cgd {
94 1.41 rillig debug_println("parse token: '%s'", psym_name(psym));
95 1.1 cgd
96 1.39 rillig if (psym != psym_else) {
97 1.39 rillig while (ps.s_sym[ps.tos] == psym_if_expr_stmt) {
98 1.39 rillig ps.s_sym[ps.tos] = psym_stmt;
99 1.34 rillig reduce();
100 1.34 rillig }
101 1.9 kamil }
102 1.1 cgd
103 1.39 rillig switch (psym) {
104 1.1 cgd
105 1.39 rillig case psym_decl:
106 1.40 rillig ps.search_stmt = opt.brace_same_line;
107 1.9 kamil /* indicate that following brace should be on same line */
108 1.32 rillig
109 1.39 rillig if (ps.s_sym[ps.tos] != psym_decl) { /* only put one declaration
110 1.9 kamil * onto stack */
111 1.9 kamil break_comma = true; /* while in declaration, newline should be
112 1.9 kamil * forced after comma */
113 1.39 rillig ps.s_sym[++ps.tos] = psym_decl;
114 1.36 rillig ps.s_ind_level[ps.tos] = ps.ind_level_follow;
115 1.9 kamil
116 1.30 rillig if (opt.ljust_decl) {
117 1.9 kamil ps.ind_level = 0;
118 1.28 rillig for (int i = ps.tos - 1; i > 0; --i)
119 1.39 rillig if (ps.s_sym[i] == psym_decl)
120 1.9 kamil ++ps.ind_level; /* indentation is number of
121 1.9 kamil * declaration levels deep we are */
122 1.26 rillig ps.ind_level_follow = ps.ind_level;
123 1.9 kamil }
124 1.9 kamil }
125 1.9 kamil break;
126 1.5 lukem
127 1.39 rillig case psym_if_expr: /* 'if' '(' <expr> ')' */
128 1.39 rillig if (ps.s_sym[ps.tos] == psym_if_expr_stmt_else && opt.else_if) {
129 1.17 rillig /*
130 1.30 rillig * Reduce "else if" to "if". This saves a lot of stack space in
131 1.27 rillig * case of a long "if-else-if ... else-if" sequence.
132 1.17 rillig */
133 1.36 rillig ps.ind_level_follow = ps.s_ind_level[ps.tos--];
134 1.17 rillig }
135 1.9 kamil /* FALLTHROUGH */
136 1.39 rillig case psym_do:
137 1.42 rillig case psym_for_exprs: /* 'for' (...) */
138 1.39 rillig ps.s_sym[++ps.tos] = psym;
139 1.36 rillig ps.s_ind_level[ps.tos] = ps.ind_level = ps.ind_level_follow;
140 1.26 rillig ++ps.ind_level_follow; /* subsequent statements should be indented 1 */
141 1.40 rillig ps.search_stmt = opt.brace_same_line;
142 1.9 kamil break;
143 1.9 kamil
144 1.39 rillig case psym_lbrace:
145 1.35 rillig break_comma = false; /* don't break comma in an initializer list */
146 1.39 rillig if (ps.s_sym[ps.tos] == psym_stmt || ps.s_sym[ps.tos] == psym_decl
147 1.39 rillig || ps.s_sym[ps.tos] == psym_stmt_list)
148 1.37 rillig ++ps.ind_level_follow; /* it is a random, isolated stmt group
149 1.37 rillig * or a declaration */
150 1.9 kamil else {
151 1.20 rillig if (code.s == code.e) {
152 1.31 rillig /* it is a group as part of a while, for, etc. */
153 1.9 kamil --ps.ind_level;
154 1.32 rillig
155 1.9 kamil /*
156 1.31 rillig * for a switch, brace should be two levels out from the code
157 1.9 kamil */
158 1.39 rillig if (ps.s_sym[ps.tos] == psym_switch_expr &&
159 1.39 rillig opt.case_indent >= 1)
160 1.9 kamil --ps.ind_level;
161 1.9 kamil }
162 1.9 kamil }
163 1.5 lukem
164 1.39 rillig ps.s_sym[++ps.tos] = psym_lbrace;
165 1.36 rillig ps.s_ind_level[ps.tos] = ps.ind_level;
166 1.39 rillig ps.s_sym[++ps.tos] = psym_stmt;
167 1.9 kamil /* allow null stmt between braces */
168 1.36 rillig ps.s_ind_level[ps.tos] = ps.ind_level_follow;
169 1.9 kamil break;
170 1.9 kamil
171 1.39 rillig case psym_while_expr: /* 'while' '(' <expr> ')' */
172 1.39 rillig if (ps.s_sym[ps.tos] == psym_do_stmt) {
173 1.9 kamil /* it is matched with do stmt */
174 1.36 rillig ps.ind_level = ps.ind_level_follow = ps.s_ind_level[ps.tos];
175 1.39 rillig ps.s_sym[++ps.tos] = psym_while_expr;
176 1.36 rillig ps.s_ind_level[ps.tos] = ps.ind_level = ps.ind_level_follow;
177 1.32 rillig
178 1.18 rillig } else { /* it is a while loop */
179 1.39 rillig ps.s_sym[++ps.tos] = psym_while_expr;
180 1.36 rillig ps.s_ind_level[ps.tos] = ps.ind_level_follow;
181 1.26 rillig ++ps.ind_level_follow;
182 1.40 rillig ps.search_stmt = opt.brace_same_line;
183 1.9 kamil }
184 1.5 lukem
185 1.9 kamil break;
186 1.5 lukem
187 1.39 rillig case psym_else:
188 1.39 rillig if (ps.s_sym[ps.tos] != psym_if_expr_stmt)
189 1.10 christos diag(1, "Unmatched 'else'");
190 1.9 kamil else {
191 1.36 rillig /* The indentation for 'else' should be the same as for 'if'. */
192 1.36 rillig ps.ind_level = ps.s_ind_level[ps.tos];
193 1.30 rillig ps.ind_level_follow = ps.ind_level + 1;
194 1.39 rillig ps.s_sym[ps.tos] = psym_if_expr_stmt_else;
195 1.9 kamil /* remember if with else */
196 1.40 rillig ps.search_stmt = opt.brace_same_line || opt.else_if;
197 1.9 kamil }
198 1.9 kamil break;
199 1.1 cgd
200 1.39 rillig case psym_rbrace:
201 1.17 rillig /* stack should have <lbrace> <stmt> or <lbrace> <stmt_list> */
202 1.39 rillig if (ps.tos > 0 && ps.s_sym[ps.tos - 1] == psym_lbrace) {
203 1.36 rillig ps.ind_level = ps.ind_level_follow = ps.s_ind_level[--ps.tos];
204 1.39 rillig ps.s_sym[ps.tos] = psym_stmt;
205 1.18 rillig } else
206 1.10 christos diag(1, "Statement nesting error");
207 1.9 kamil break;
208 1.9 kamil
209 1.39 rillig case psym_switch_expr: /* had switch (...) */
210 1.39 rillig ps.s_sym[++ps.tos] = psym_switch_expr;
211 1.36 rillig ps.s_case_ind_level[ps.tos] = case_ind;
212 1.9 kamil /* save current case indent level */
213 1.36 rillig ps.s_ind_level[ps.tos] = ps.ind_level_follow;
214 1.29 rillig /* cases should be one level deeper than the switch */
215 1.29 rillig case_ind = (float)ps.ind_level_follow + opt.case_indent;
216 1.29 rillig /* statements should be two levels deeper */
217 1.29 rillig ps.ind_level_follow += (int)opt.case_indent + 1;
218 1.40 rillig ps.search_stmt = opt.brace_same_line;
219 1.9 kamil break;
220 1.9 kamil
221 1.39 rillig case psym_semicolon: /* this indicates a simple stmt */
222 1.9 kamil break_comma = false; /* turn off flag to break after commas in a
223 1.9 kamil * declaration */
224 1.39 rillig ps.s_sym[++ps.tos] = psym_stmt;
225 1.36 rillig ps.s_ind_level[ps.tos] = ps.ind_level;
226 1.9 kamil break;
227 1.9 kamil
228 1.30 rillig default:
229 1.10 christos diag(1, "Unknown code to parser");
230 1.9 kamil return;
231 1.30 rillig }
232 1.1 cgd
233 1.9 kamil if (ps.tos >= STACKSIZE - 1)
234 1.9 kamil errx(1, "Parser stack overflow");
235 1.1 cgd
236 1.9 kamil reduce(); /* see if any reduction can be done */
237 1.1 cgd
238 1.1 cgd #ifdef debug
239 1.14 rillig printf("parse stack:");
240 1.28 rillig for (int i = 1; i <= ps.tos; ++i)
241 1.39 rillig printf(" ('%s' at %d)", psym_name(ps.s_sym[i]), ps.s_ind_level[i]);
242 1.14 rillig if (ps.tos == 0)
243 1.27 rillig printf(" empty");
244 1.9 kamil printf("\n");
245 1.1 cgd #endif
246 1.1 cgd }
247 1.9 kamil
248 1.39 rillig void
249 1.39 rillig parse_hd(stmt_head hd)
250 1.39 rillig {
251 1.39 rillig static const parser_symbol psym[] = {
252 1.39 rillig [hd_for] = psym_for_exprs,
253 1.39 rillig [hd_if] = psym_if_expr,
254 1.39 rillig [hd_switch] = psym_switch_expr,
255 1.39 rillig [hd_while] = psym_while_expr
256 1.39 rillig };
257 1.39 rillig parse(psym[hd]);
258 1.39 rillig }
259 1.39 rillig
260 1.16 rillig /*----------------------------------------------*\
261 1.16 rillig | REDUCTION PHASE |
262 1.16 rillig \*----------------------------------------------*/
263 1.16 rillig
264 1.16 rillig /*
265 1.16 rillig * Try to combine the statement on the top of the parse stack with the symbol
266 1.16 rillig * directly below it, replacing these two symbols with a single symbol.
267 1.16 rillig */
268 1.25 rillig static bool
269 1.16 rillig reduce_stmt(void)
270 1.16 rillig {
271 1.39 rillig switch (ps.s_sym[ps.tos - 1]) {
272 1.16 rillig
273 1.43 rillig case psym_stmt:
274 1.43 rillig case psym_stmt_list:
275 1.39 rillig ps.s_sym[--ps.tos] = psym_stmt_list;
276 1.16 rillig return true;
277 1.16 rillig
278 1.43 rillig case psym_do:
279 1.39 rillig ps.s_sym[--ps.tos] = psym_do_stmt;
280 1.36 rillig ps.ind_level_follow = ps.s_ind_level[ps.tos];
281 1.16 rillig return true;
282 1.16 rillig
283 1.43 rillig case psym_if_expr:
284 1.39 rillig ps.s_sym[--ps.tos] = psym_if_expr_stmt;
285 1.16 rillig int i = ps.tos - 1;
286 1.39 rillig while (ps.s_sym[i] != psym_stmt &&
287 1.42 rillig ps.s_sym[i] != psym_stmt_list &&
288 1.42 rillig ps.s_sym[i] != psym_lbrace)
289 1.16 rillig --i;
290 1.36 rillig ps.ind_level_follow = ps.s_ind_level[i];
291 1.16 rillig /*
292 1.43 rillig * For the time being, assume that there is no 'else' on this 'if',
293 1.43 rillig * and set the indentation level accordingly. If an 'else' is
294 1.43 rillig * scanned, it will be fixed up later.
295 1.16 rillig */
296 1.16 rillig return true;
297 1.16 rillig
298 1.43 rillig case psym_switch_expr:
299 1.36 rillig case_ind = ps.s_case_ind_level[ps.tos - 1];
300 1.16 rillig /* FALLTHROUGH */
301 1.39 rillig case psym_decl: /* finish of a declaration */
302 1.43 rillig case psym_if_expr_stmt_else:
303 1.43 rillig case psym_for_exprs:
304 1.43 rillig case psym_while_expr:
305 1.39 rillig ps.s_sym[--ps.tos] = psym_stmt;
306 1.36 rillig ps.ind_level_follow = ps.s_ind_level[ps.tos];
307 1.16 rillig return true;
308 1.16 rillig
309 1.43 rillig default:
310 1.16 rillig return false;
311 1.16 rillig }
312 1.16 rillig }
313 1.16 rillig
314 1.1 cgd /*
315 1.16 rillig * Repeatedly try to reduce the top two symbols on the parse stack to a
316 1.16 rillig * single symbol, until no more reductions are possible.
317 1.5 lukem *
318 1.1 cgd * On each reduction, ps.i_l_follow (the indentation for the following line)
319 1.1 cgd * is set to the indentation level associated with the old TOS.
320 1.1 cgd */
321 1.9 kamil static void
322 1.6 wiz reduce(void)
323 1.1 cgd {
324 1.16 rillig again:
325 1.39 rillig if (ps.s_sym[ps.tos] == psym_stmt) {
326 1.16 rillig if (reduce_stmt())
327 1.16 rillig goto again;
328 1.39 rillig } else if (ps.s_sym[ps.tos] == psym_while_expr) {
329 1.39 rillig if (ps.s_sym[ps.tos - 1] == psym_do_stmt) {
330 1.16 rillig ps.tos -= 2;
331 1.16 rillig goto again;
332 1.1 cgd }
333 1.9 kamil }
334 1.1 cgd }
335