2 * Copyright (c) 1985 Sun Microsystems, Inc.
3 * Copyright (c) 1980, 1993
4 * The Regents of the University of California. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the University nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * @(#)parse.c 8.1 (Berkeley) 6/6/93
32 * $FreeBSD: src/usr.bin/indent/parse.c,v 1.10 2003/06/15 09:28:17 charnier Exp $
36 #include "indent_globs.h"
37 #include "indent_codes.h"
40 static void reduce(void);
43 parse(int tk
) /* tk: the code for the construct scanned */
48 printf("%2d - %s\n", tk
, token
);
51 while (ps
.p_stack
[ps
.tos
] == ifhead
&& tk
!= elselit
) {
52 /* true if we have an if without an else */
53 ps
.p_stack
[ps
.tos
] = stmt
; /* apply the if(..) stmt ::= stmt
55 reduce(); /* see if this allows any reduction */
59 switch (tk
) { /* go on and figure out what to do with the
62 case decl
: /* scanned a declaration word */
63 ps
.search_brace
= btype_2
;
64 /* indicate that following brace should be on same line */
65 if (ps
.p_stack
[ps
.tos
] != decl
) { /* only put one declaration
67 break_comma
= true; /* while in declaration, newline should be
68 * forced after comma */
69 ps
.p_stack
[++ps
.tos
] = decl
;
70 ps
.il
[ps
.tos
] = ps
.i_l_follow
;
72 if (ps
.ljust_decl
) {/* only do if we want left justified
75 for (i
= ps
.tos
- 1; i
> 0; --i
)
76 if (ps
.p_stack
[i
] == decl
)
77 ++ps
.ind_level
; /* indentation is number of
78 * declaration levels deep we are */
79 ps
.i_l_follow
= ps
.ind_level
;
84 case ifstmt
: /* scanned if (...) */
85 if (ps
.p_stack
[ps
.tos
] == elsehead
&& ps
.else_if
) /* "else if ..." */
86 ps
.i_l_follow
= ps
.il
[ps
.tos
];
88 case dolit
: /* 'do' */
89 case forstmt
: /* for (...) */
90 ps
.p_stack
[++ps
.tos
] = tk
;
91 ps
.il
[ps
.tos
] = ps
.ind_level
= ps
.i_l_follow
;
92 ++ps
.i_l_follow
; /* subsequent statements should be indented 1 */
93 ps
.search_brace
= btype_2
;
96 case lbrace
: /* scanned { */
97 break_comma
= false; /* don't break comma in an initial list */
98 if (ps
.p_stack
[ps
.tos
] == stmt
|| ps
.p_stack
[ps
.tos
] == decl
99 || ps
.p_stack
[ps
.tos
] == stmtl
)
100 ++ps
.i_l_follow
; /* it is a random, isolated stmt group or a
103 if (s_code
== e_code
) {
105 * only do this if there is nothing on the line
109 * it is a group as part of a while, for, etc.
111 if (ps
.p_stack
[ps
.tos
] == swstmt
&& ps
.case_indent
>= 1)
114 * for a switch, brace should be two levels out from the code
119 ps
.p_stack
[++ps
.tos
] = lbrace
;
120 ps
.il
[ps
.tos
] = ps
.ind_level
;
121 ps
.p_stack
[++ps
.tos
] = stmt
;
122 /* allow null stmt between braces */
123 ps
.il
[ps
.tos
] = ps
.i_l_follow
;
126 case whilestmt
: /* scanned while (...) */
127 if (ps
.p_stack
[ps
.tos
] == dohead
) {
128 /* it is matched with do stmt */
129 ps
.ind_level
= ps
.i_l_follow
= ps
.il
[ps
.tos
];
130 ps
.p_stack
[++ps
.tos
] = whilestmt
;
131 ps
.il
[ps
.tos
] = ps
.ind_level
= ps
.i_l_follow
;
133 else { /* it is a while loop */
134 ps
.p_stack
[++ps
.tos
] = whilestmt
;
135 ps
.il
[ps
.tos
] = ps
.i_l_follow
;
137 ps
.search_brace
= btype_2
;
142 case elselit
: /* scanned an else */
144 if (ps
.p_stack
[ps
.tos
] != ifhead
)
145 diag2(1, "Unmatched 'else'");
147 ps
.ind_level
= ps
.il
[ps
.tos
]; /* indentation for else should
148 * be same as for if */
149 ps
.i_l_follow
= ps
.ind_level
+ 1; /* everything following should
151 ps
.p_stack
[ps
.tos
] = elsehead
;
152 /* remember if with else */
153 ps
.search_brace
= btype_2
| ps
.else_if
;
157 case rbrace
: /* scanned a } */
158 /* stack should have <lbrace> <stmt> or <lbrace> <stmtl> */
159 if (ps
.p_stack
[ps
.tos
- 1] == lbrace
) {
160 ps
.ind_level
= ps
.i_l_follow
= ps
.il
[--ps
.tos
];
161 ps
.p_stack
[ps
.tos
] = stmt
;
164 diag2(1, "Statement nesting error");
167 case swstmt
: /* had switch (...) */
168 ps
.p_stack
[++ps
.tos
] = swstmt
;
169 ps
.cstk
[ps
.tos
] = case_ind
;
170 /* save current case indent level */
171 ps
.il
[ps
.tos
] = ps
.i_l_follow
;
172 case_ind
= ps
.i_l_follow
+ ps
.case_indent
; /* cases should be one
175 ps
.i_l_follow
+= ps
.case_indent
+ 1; /* statements should be two
177 ps
.search_brace
= btype_2
;
180 case semicolon
: /* this indicates a simple stmt */
181 break_comma
= false; /* turn off flag to break after commas in a
183 ps
.p_stack
[++ps
.tos
] = stmt
;
184 ps
.il
[ps
.tos
] = ps
.ind_level
;
187 default: /* this is an error */
188 diag2(1, "Unknown code to parser");
192 } /* end of switch */
194 reduce(); /* see if any reduction can be done */
197 for (i
= 1; i
<= ps
.tos
; ++i
)
198 printf("(%d %d)", ps
.p_stack
[i
], ps
.il
[i
]);
208 * FUNCTION: Implements the reduce part of the parsing algorithm
210 * ALGORITHM: The following reductions are done. Reductions are repeated
211 * until no more are possible.
214 * <stmt> <stmt> <stmtl>
215 * <stmtl> <stmt> <stmtl>
218 * switch <stmt> <stmt>
220 * "ifelse" <stmt> <stmt>
222 * while <stmt> <stmt>
223 * "dostmt" while <stmt>
225 * On each reduction, ps.i_l_follow (the indentation for the following line)
226 * is set to the indentation level associated with the old TOS.
232 * GLOBALS: ps.cstk ps.i_l_follow = ps.il ps.p_stack = ps.tos =
238 * HISTORY: initial coding November 1976 D A Willcox of CAC
241 /*----------------------------------------------*\
243 \*----------------------------------------------*/
249 for (;;) { /* keep looping until there is nothing left to
252 switch (ps
.p_stack
[ps
.tos
]) {
255 switch (ps
.p_stack
[ps
.tos
- 1]) {
259 /* stmtl stmt or stmt stmt */
260 ps
.p_stack
[--ps
.tos
] = stmtl
;
263 case dolit
: /* <do> <stmt> */
264 ps
.p_stack
[--ps
.tos
] = dohead
;
265 ps
.i_l_follow
= ps
.il
[ps
.tos
];
270 ps
.p_stack
[--ps
.tos
] = ifhead
;
273 ps
.p_stack
[i
] != stmt
275 ps
.p_stack
[i
] != stmtl
277 ps
.p_stack
[i
] != lbrace
280 ps
.i_l_follow
= ps
.il
[i
];
282 * for the time being, we will assume that there is no else on
283 * this if, and set the indentation level accordingly. If an
284 * else is scanned, it will be fixed up later
289 /* <switch> <stmt> */
290 case_ind
= ps
.cstk
[ps
.tos
- 1];
292 case decl
: /* finish of a declaration */
294 /* <<if> <stmt> else> <stmt> */
299 ps
.p_stack
[--ps
.tos
] = stmt
;
300 ps
.i_l_follow
= ps
.il
[ps
.tos
];
303 default: /* <anything else> <stmt> */
306 } /* end of section for <stmt> on top of stack */
309 case whilestmt
: /* while (...) on top */
310 if (ps
.p_stack
[ps
.tos
- 1] == dohead
) {
311 /* it is termination of a do while */
318 default: /* anything else on top */