xref: /freebsd/usr.bin/indent/parse.c (revision 89463812e316d1bb9dbc55874546d930ba832b8d)
170a3049eSPedro F. Giffuni /*-
2df57947fSPedro F. Giffuni  * SPDX-License-Identifier: BSD-4-Clause
3df57947fSPedro F. Giffuni  *
49b50d902SRodney W. Grimes  * Copyright (c) 1985 Sun Microsystems, Inc.
59b50d902SRodney W. Grimes  * Copyright (c) 1980, 1993
69b50d902SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
79b50d902SRodney W. Grimes  * All rights reserved.
89b50d902SRodney W. Grimes  *
99b50d902SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
109b50d902SRodney W. Grimes  * modification, are permitted provided that the following conditions
119b50d902SRodney W. Grimes  * are met:
129b50d902SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
139b50d902SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
149b50d902SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
159b50d902SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
169b50d902SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
179b50d902SRodney W. Grimes  * 3. All advertising materials mentioning features or use of this software
189b50d902SRodney W. Grimes  *    must display the following acknowledgement:
199b50d902SRodney W. Grimes  *	This product includes software developed by the University of
209b50d902SRodney W. Grimes  *	California, Berkeley and its contributors.
219b50d902SRodney W. Grimes  * 4. Neither the name of the University nor the names of its contributors
229b50d902SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
239b50d902SRodney W. Grimes  *    without specific prior written permission.
249b50d902SRodney W. Grimes  *
259b50d902SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
269b50d902SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
279b50d902SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
289b50d902SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
299b50d902SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
309b50d902SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
319b50d902SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
329b50d902SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
339b50d902SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
349b50d902SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
359b50d902SRodney W. Grimes  * SUCH DAMAGE.
369b50d902SRodney W. Grimes  */
37d0054952SPhilippe Charnier 
387916863dSJens Schweikhardt #if 0
399b50d902SRodney W. Grimes #ifndef lint
409b50d902SRodney W. Grimes static char sccsid[] = "@(#)parse.c	8.1 (Berkeley) 6/6/93";
419b50d902SRodney W. Grimes #endif /* not lint */
427916863dSJens Schweikhardt #endif
43d0054952SPhilippe Charnier 
44e026a48cSDavid E. O'Brien #include <sys/cdefs.h>
4588b24a62SPiotr Pawel Stefaniak #include <sys/param.h>
46e026a48cSDavid E. O'Brien __FBSDID("$FreeBSD$");
479b50d902SRodney W. Grimes 
485467ab90SPedro F. Giffuni #include <err.h>
499b50d902SRodney W. Grimes #include <stdio.h>
5088b24a62SPiotr Pawel Stefaniak 
519b50d902SRodney W. Grimes #include "indent_globs.h"
529b50d902SRodney W. Grimes #include "indent_codes.h"
537916863dSJens Schweikhardt #include "indent.h"
549b50d902SRodney W. Grimes 
557916863dSJens Schweikhardt static void reduce(void);
567916863dSJens Schweikhardt 
577916863dSJens Schweikhardt void
587916863dSJens Schweikhardt parse(int tk) /* tk: the code for the construct scanned */
599b50d902SRodney W. Grimes {
609b50d902SRodney W. Grimes     int         i;
619b50d902SRodney W. Grimes 
629b50d902SRodney W. Grimes #ifdef debug
639b50d902SRodney W. Grimes     printf("%2d - %s\n", tk, token);
649b50d902SRodney W. Grimes #endif
659b50d902SRodney W. Grimes 
669b50d902SRodney W. Grimes     while (ps.p_stack[ps.tos] == ifhead && tk != elselit) {
679b50d902SRodney W. Grimes 	/* true if we have an if without an else */
689b50d902SRodney W. Grimes 	ps.p_stack[ps.tos] = stmt;	/* apply the if(..) stmt ::= stmt
699b50d902SRodney W. Grimes 					 * reduction */
709b50d902SRodney W. Grimes 	reduce();		/* see if this allows any reduction */
719b50d902SRodney W. Grimes     }
729b50d902SRodney W. Grimes 
739b50d902SRodney W. Grimes 
749b50d902SRodney W. Grimes     switch (tk) {		/* go on and figure out what to do with the
759b50d902SRodney W. Grimes 				 * input */
769b50d902SRodney W. Grimes 
779b50d902SRodney W. Grimes     case decl:			/* scanned a declaration word */
787e53aaedSPiotr Pawel Stefaniak 	ps.search_brace = opt.btype_2;
799b50d902SRodney W. Grimes 	/* indicate that following brace should be on same line */
809b50d902SRodney W. Grimes 	if (ps.p_stack[ps.tos] != decl) {	/* only put one declaration
819b50d902SRodney W. Grimes 						 * onto stack */
829b50d902SRodney W. Grimes 	    break_comma = true;	/* while in declaration, newline should be
839b50d902SRodney W. Grimes 				 * forced after comma */
849b50d902SRodney W. Grimes 	    ps.p_stack[++ps.tos] = decl;
859b50d902SRodney W. Grimes 	    ps.il[ps.tos] = ps.i_l_follow;
869b50d902SRodney W. Grimes 
877e53aaedSPiotr Pawel Stefaniak 	    if (opt.ljust_decl) {/* only do if we want left justified
889b50d902SRodney W. Grimes 				 * declarations */
899b50d902SRodney W. Grimes 		ps.ind_level = 0;
909b50d902SRodney W. Grimes 		for (i = ps.tos - 1; i > 0; --i)
919b50d902SRodney W. Grimes 		    if (ps.p_stack[i] == decl)
929b50d902SRodney W. Grimes 			++ps.ind_level;	/* indentation is number of
939b50d902SRodney W. Grimes 					 * declaration levels deep we are */
949b50d902SRodney W. Grimes 		ps.i_l_follow = ps.ind_level;
959b50d902SRodney W. Grimes 	    }
969b50d902SRodney W. Grimes 	}
979b50d902SRodney W. Grimes 	break;
989b50d902SRodney W. Grimes 
999b50d902SRodney W. Grimes     case ifstmt:		/* scanned if (...) */
1007e53aaedSPiotr Pawel Stefaniak 	if (ps.p_stack[ps.tos] == elsehead && opt.else_if) /* "else if ..." */
101b30bb755SPedro F. Giffuni 		/*
102b30bb755SPedro F. Giffuni 		 * Note that the stack pointer here is decremented, effectively
103b30bb755SPedro F. Giffuni 		 * reducing "else if" to "if". This saves a lot of stack space
104b30bb755SPedro F. Giffuni 		 * in case of a long "if-else-if ... else-if" sequence.
105b30bb755SPedro F. Giffuni 		 */
106b30bb755SPedro F. Giffuni 		ps.i_l_follow = ps.il[ps.tos--];
10716c2e360SPedro F. Giffuni 	/* the rest is the same as for dolit and forstmt */
1089b50d902SRodney W. Grimes     case dolit:		/* 'do' */
1099b50d902SRodney W. Grimes     case forstmt:		/* for (...) */
1109b50d902SRodney W. Grimes 	ps.p_stack[++ps.tos] = tk;
1119b50d902SRodney W. Grimes 	ps.il[ps.tos] = ps.ind_level = ps.i_l_follow;
1129b50d902SRodney W. Grimes 	++ps.i_l_follow;	/* subsequent statements should be indented 1 */
1137e53aaedSPiotr Pawel Stefaniak 	ps.search_brace = opt.btype_2;
1149b50d902SRodney W. Grimes 	break;
1159b50d902SRodney W. Grimes 
1169b50d902SRodney W. Grimes     case lbrace:		/* scanned { */
1179b50d902SRodney W. Grimes 	break_comma = false;	/* don't break comma in an initial list */
1189b50d902SRodney W. Grimes 	if (ps.p_stack[ps.tos] == stmt || ps.p_stack[ps.tos] == decl
1199b50d902SRodney W. Grimes 		|| ps.p_stack[ps.tos] == stmtl)
1209b50d902SRodney W. Grimes 	    ++ps.i_l_follow;	/* it is a random, isolated stmt group or a
1219b50d902SRodney W. Grimes 				 * declaration */
1229b50d902SRodney W. Grimes 	else {
1239b50d902SRodney W. Grimes 	    if (s_code == e_code) {
1249b50d902SRodney W. Grimes 		/*
1259b50d902SRodney W. Grimes 		 * only do this if there is nothing on the line
1269b50d902SRodney W. Grimes 		 */
1279b50d902SRodney W. Grimes 		--ps.ind_level;
1289b50d902SRodney W. Grimes 		/*
1299b50d902SRodney W. Grimes 		 * it is a group as part of a while, for, etc.
1309b50d902SRodney W. Grimes 		 */
131*89463812SPiotr Pawel Stefaniak 		if (ps.p_stack[ps.tos] == swstmt && opt.case_indent >= 1)
1329b50d902SRodney W. Grimes 		    --ps.ind_level;
1339b50d902SRodney W. Grimes 		/*
1349b50d902SRodney W. Grimes 		 * for a switch, brace should be two levels out from the code
1359b50d902SRodney W. Grimes 		 */
1369b50d902SRodney W. Grimes 	    }
1379b50d902SRodney W. Grimes 	}
1389b50d902SRodney W. Grimes 
1399b50d902SRodney W. Grimes 	ps.p_stack[++ps.tos] = lbrace;
1409b50d902SRodney W. Grimes 	ps.il[ps.tos] = ps.ind_level;
1419b50d902SRodney W. Grimes 	ps.p_stack[++ps.tos] = stmt;
1429b50d902SRodney W. Grimes 	/* allow null stmt between braces */
1439b50d902SRodney W. Grimes 	ps.il[ps.tos] = ps.i_l_follow;
1449b50d902SRodney W. Grimes 	break;
1459b50d902SRodney W. Grimes 
1469b50d902SRodney W. Grimes     case whilestmt:		/* scanned while (...) */
1479b50d902SRodney W. Grimes 	if (ps.p_stack[ps.tos] == dohead) {
1489b50d902SRodney W. Grimes 	    /* it is matched with do stmt */
1499b50d902SRodney W. Grimes 	    ps.ind_level = ps.i_l_follow = ps.il[ps.tos];
1509b50d902SRodney W. Grimes 	    ps.p_stack[++ps.tos] = whilestmt;
1519b50d902SRodney W. Grimes 	    ps.il[ps.tos] = ps.ind_level = ps.i_l_follow;
1529b50d902SRodney W. Grimes 	}
1539b50d902SRodney W. Grimes 	else {			/* it is a while loop */
1549b50d902SRodney W. Grimes 	    ps.p_stack[++ps.tos] = whilestmt;
1559b50d902SRodney W. Grimes 	    ps.il[ps.tos] = ps.i_l_follow;
1569b50d902SRodney W. Grimes 	    ++ps.i_l_follow;
1577e53aaedSPiotr Pawel Stefaniak 	    ps.search_brace = opt.btype_2;
1589b50d902SRodney W. Grimes 	}
1599b50d902SRodney W. Grimes 
1609b50d902SRodney W. Grimes 	break;
1619b50d902SRodney W. Grimes 
1629b50d902SRodney W. Grimes     case elselit:		/* scanned an else */
1639b50d902SRodney W. Grimes 
1649b50d902SRodney W. Grimes 	if (ps.p_stack[ps.tos] != ifhead)
1657916863dSJens Schweikhardt 	    diag2(1, "Unmatched 'else'");
1669b50d902SRodney W. Grimes 	else {
1679b50d902SRodney W. Grimes 	    ps.ind_level = ps.il[ps.tos];	/* indentation for else should
1689b50d902SRodney W. Grimes 						 * be same as for if */
1699b50d902SRodney W. Grimes 	    ps.i_l_follow = ps.ind_level + 1;	/* everything following should
1709b50d902SRodney W. Grimes 						 * be in 1 level */
1719b50d902SRodney W. Grimes 	    ps.p_stack[ps.tos] = elsehead;
1729b50d902SRodney W. Grimes 	    /* remember if with else */
1737e53aaedSPiotr Pawel Stefaniak 	    ps.search_brace = opt.btype_2 | opt.else_if;
1749b50d902SRodney W. Grimes 	}
1759b50d902SRodney W. Grimes 	break;
1769b50d902SRodney W. Grimes 
1779b50d902SRodney W. Grimes     case rbrace:		/* scanned a } */
1789b50d902SRodney W. Grimes 	/* stack should have <lbrace> <stmt> or <lbrace> <stmtl> */
179488f1486SPedro F. Giffuni 	if (ps.tos > 0 && ps.p_stack[ps.tos - 1] == lbrace) {
1809b50d902SRodney W. Grimes 	    ps.ind_level = ps.i_l_follow = ps.il[--ps.tos];
1819b50d902SRodney W. Grimes 	    ps.p_stack[ps.tos] = stmt;
1829b50d902SRodney W. Grimes 	}
1839b50d902SRodney W. Grimes 	else
184d0054952SPhilippe Charnier 	    diag2(1, "Statement nesting error");
1859b50d902SRodney W. Grimes 	break;
1869b50d902SRodney W. Grimes 
1879b50d902SRodney W. Grimes     case swstmt:		/* had switch (...) */
1889b50d902SRodney W. Grimes 	ps.p_stack[++ps.tos] = swstmt;
1899b50d902SRodney W. Grimes 	ps.cstk[ps.tos] = case_ind;
1909b50d902SRodney W. Grimes 	/* save current case indent level */
1919b50d902SRodney W. Grimes 	ps.il[ps.tos] = ps.i_l_follow;
192*89463812SPiotr Pawel Stefaniak 	case_ind = ps.i_l_follow + opt.case_indent;	/* cases should be one
1939b50d902SRodney W. Grimes 							 * level down from
1949b50d902SRodney W. Grimes 							 * switch */
195*89463812SPiotr Pawel Stefaniak 	ps.i_l_follow += opt.case_indent + 1;	/* statements should be two
1969b50d902SRodney W. Grimes 						 * levels in */
1977e53aaedSPiotr Pawel Stefaniak 	ps.search_brace = opt.btype_2;
1989b50d902SRodney W. Grimes 	break;
1999b50d902SRodney W. Grimes 
2009b50d902SRodney W. Grimes     case semicolon:		/* this indicates a simple stmt */
2019b50d902SRodney W. Grimes 	break_comma = false;	/* turn off flag to break after commas in a
2029b50d902SRodney W. Grimes 				 * declaration */
2039b50d902SRodney W. Grimes 	ps.p_stack[++ps.tos] = stmt;
2049b50d902SRodney W. Grimes 	ps.il[ps.tos] = ps.ind_level;
2059b50d902SRodney W. Grimes 	break;
2069b50d902SRodney W. Grimes 
2079b50d902SRodney W. Grimes     default:			/* this is an error */
2087916863dSJens Schweikhardt 	diag2(1, "Unknown code to parser");
2099b50d902SRodney W. Grimes 	return;
2109b50d902SRodney W. Grimes 
2119b50d902SRodney W. Grimes 
2129b50d902SRodney W. Grimes     }				/* end of switch */
2139b50d902SRodney W. Grimes 
2140929b3d9SPiotr Pawel Stefaniak     if (ps.tos >= (int)nitems(ps.p_stack) - 1)
2155467ab90SPedro F. Giffuni 	errx(1, "Parser stack overflow");
2165467ab90SPedro F. Giffuni 
2179b50d902SRodney W. Grimes     reduce();			/* see if any reduction can be done */
2189b50d902SRodney W. Grimes 
2199b50d902SRodney W. Grimes #ifdef debug
2209b50d902SRodney W. Grimes     for (i = 1; i <= ps.tos; ++i)
2219b50d902SRodney W. Grimes 	printf("(%d %d)", ps.p_stack[i], ps.il[i]);
2229b50d902SRodney W. Grimes     printf("\n");
2239b50d902SRodney W. Grimes #endif
2249b50d902SRodney W. Grimes 
2259b50d902SRodney W. Grimes     return;
2269b50d902SRodney W. Grimes }
2279b50d902SRodney W. Grimes 
2289b50d902SRodney W. Grimes /*
2299b50d902SRodney W. Grimes  * NAME: reduce
2309b50d902SRodney W. Grimes  *
2319b50d902SRodney W. Grimes  * FUNCTION: Implements the reduce part of the parsing algorithm
2329b50d902SRodney W. Grimes  *
2339b50d902SRodney W. Grimes  * ALGORITHM: The following reductions are done.  Reductions are repeated
2349b50d902SRodney W. Grimes  *	until no more are possible.
2359b50d902SRodney W. Grimes  *
2369b50d902SRodney W. Grimes  * Old TOS		New TOS
2379b50d902SRodney W. Grimes  * <stmt> <stmt>	<stmtl>
2389b50d902SRodney W. Grimes  * <stmtl> <stmt>	<stmtl>
2399b50d902SRodney W. Grimes  * do <stmt>		"dostmt"
2409b50d902SRodney W. Grimes  * if <stmt>		"ifstmt"
2419b50d902SRodney W. Grimes  * switch <stmt>	<stmt>
2429b50d902SRodney W. Grimes  * decl <stmt>		<stmt>
2439b50d902SRodney W. Grimes  * "ifelse" <stmt>	<stmt>
2449b50d902SRodney W. Grimes  * for <stmt>		<stmt>
2459b50d902SRodney W. Grimes  * while <stmt>		<stmt>
2469b50d902SRodney W. Grimes  * "dostmt" while	<stmt>
2479b50d902SRodney W. Grimes  *
2489b50d902SRodney W. Grimes  * On each reduction, ps.i_l_follow (the indentation for the following line)
2499b50d902SRodney W. Grimes  * is set to the indentation level associated with the old TOS.
2509b50d902SRodney W. Grimes  *
2519b50d902SRodney W. Grimes  * PARAMETERS: None
2529b50d902SRodney W. Grimes  *
2539b50d902SRodney W. Grimes  * RETURNS: Nothing
2549b50d902SRodney W. Grimes  *
2559b50d902SRodney W. Grimes  * GLOBALS: ps.cstk ps.i_l_follow = ps.il ps.p_stack = ps.tos =
2569b50d902SRodney W. Grimes  *
2579b50d902SRodney W. Grimes  * CALLS: None
2589b50d902SRodney W. Grimes  *
2599b50d902SRodney W. Grimes  * CALLED BY: parse
2609b50d902SRodney W. Grimes  *
2619b50d902SRodney W. Grimes  * HISTORY: initial coding 	November 1976	D A Willcox of CAC
2629b50d902SRodney W. Grimes  *
2639b50d902SRodney W. Grimes  */
2649b50d902SRodney W. Grimes /*----------------------------------------------*\
2659b50d902SRodney W. Grimes |   REDUCTION PHASE				    |
2669b50d902SRodney W. Grimes \*----------------------------------------------*/
2677916863dSJens Schweikhardt static void
2687916863dSJens Schweikhardt reduce(void)
2699b50d902SRodney W. Grimes {
27090af6a72SJuli Mallett     int i;
2719b50d902SRodney W. Grimes 
2729b50d902SRodney W. Grimes     for (;;) {			/* keep looping until there is nothing left to
2739b50d902SRodney W. Grimes 				 * reduce */
2749b50d902SRodney W. Grimes 
2759b50d902SRodney W. Grimes 	switch (ps.p_stack[ps.tos]) {
2769b50d902SRodney W. Grimes 
2779b50d902SRodney W. Grimes 	case stmt:
2789b50d902SRodney W. Grimes 	    switch (ps.p_stack[ps.tos - 1]) {
2799b50d902SRodney W. Grimes 
2809b50d902SRodney W. Grimes 	    case stmt:
2819b50d902SRodney W. Grimes 	    case stmtl:
2829b50d902SRodney W. Grimes 		/* stmtl stmt or stmt stmt */
2839b50d902SRodney W. Grimes 		ps.p_stack[--ps.tos] = stmtl;
2849b50d902SRodney W. Grimes 		break;
2859b50d902SRodney W. Grimes 
2869b50d902SRodney W. Grimes 	    case dolit:	/* <do> <stmt> */
2879b50d902SRodney W. Grimes 		ps.p_stack[--ps.tos] = dohead;
2889b50d902SRodney W. Grimes 		ps.i_l_follow = ps.il[ps.tos];
2899b50d902SRodney W. Grimes 		break;
2909b50d902SRodney W. Grimes 
2919b50d902SRodney W. Grimes 	    case ifstmt:
2929b50d902SRodney W. Grimes 		/* <if> <stmt> */
2939b50d902SRodney W. Grimes 		ps.p_stack[--ps.tos] = ifhead;
2949b50d902SRodney W. Grimes 		for (i = ps.tos - 1;
2959b50d902SRodney W. Grimes 			(
2969b50d902SRodney W. Grimes 			 ps.p_stack[i] != stmt
2979b50d902SRodney W. Grimes 			 &&
2989b50d902SRodney W. Grimes 			 ps.p_stack[i] != stmtl
2999b50d902SRodney W. Grimes 			 &&
3009b50d902SRodney W. Grimes 			 ps.p_stack[i] != lbrace
3019b50d902SRodney W. Grimes 			 );
3029b50d902SRodney W. Grimes 			--i);
3039b50d902SRodney W. Grimes 		ps.i_l_follow = ps.il[i];
3049b50d902SRodney W. Grimes 		/*
3059b50d902SRodney W. Grimes 		 * for the time being, we will assume that there is no else on
3069b50d902SRodney W. Grimes 		 * this if, and set the indentation level accordingly. If an
3079b50d902SRodney W. Grimes 		 * else is scanned, it will be fixed up later
3089b50d902SRodney W. Grimes 		 */
3099b50d902SRodney W. Grimes 		break;
3109b50d902SRodney W. Grimes 
3119b50d902SRodney W. Grimes 	    case swstmt:
3129b50d902SRodney W. Grimes 		/* <switch> <stmt> */
3139b50d902SRodney W. Grimes 		case_ind = ps.cstk[ps.tos - 1];
31416c2e360SPedro F. Giffuni 		/* FALLTHROUGH */
3159b50d902SRodney W. Grimes 	    case decl:		/* finish of a declaration */
3169b50d902SRodney W. Grimes 	    case elsehead:
3179b50d902SRodney W. Grimes 		/* <<if> <stmt> else> <stmt> */
3189b50d902SRodney W. Grimes 	    case forstmt:
3199b50d902SRodney W. Grimes 		/* <for> <stmt> */
3209b50d902SRodney W. Grimes 	    case whilestmt:
3219b50d902SRodney W. Grimes 		/* <while> <stmt> */
3229b50d902SRodney W. Grimes 		ps.p_stack[--ps.tos] = stmt;
3239b50d902SRodney W. Grimes 		ps.i_l_follow = ps.il[ps.tos];
3249b50d902SRodney W. Grimes 		break;
3259b50d902SRodney W. Grimes 
3269b50d902SRodney W. Grimes 	    default:		/* <anything else> <stmt> */
3279b50d902SRodney W. Grimes 		return;
3289b50d902SRodney W. Grimes 
3299b50d902SRodney W. Grimes 	    }			/* end of section for <stmt> on top of stack */
3309b50d902SRodney W. Grimes 	    break;
3319b50d902SRodney W. Grimes 
3329b50d902SRodney W. Grimes 	case whilestmt:	/* while (...) on top */
3339b50d902SRodney W. Grimes 	    if (ps.p_stack[ps.tos - 1] == dohead) {
3349b50d902SRodney W. Grimes 		/* it is termination of a do while */
33534ba7379SRobert Nordier 		ps.tos -= 2;
3369b50d902SRodney W. Grimes 		break;
3379b50d902SRodney W. Grimes 	    }
3389b50d902SRodney W. Grimes 	    else
3399b50d902SRodney W. Grimes 		return;
3409b50d902SRodney W. Grimes 
3419b50d902SRodney W. Grimes 	default:		/* anything else on top */
3429b50d902SRodney W. Grimes 	    return;
3439b50d902SRodney W. Grimes 
3449b50d902SRodney W. Grimes 	}
3459b50d902SRodney W. Grimes     }
3469b50d902SRodney W. Grimes }
347