]>
Commit | Line | Data |
---|---|---|
a70083a3 | 1 | /* Input parser for bison |
76514394 | 2 | Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc. |
a70083a3 AD |
3 | |
4 | This file is part of Bison, the GNU Compiler Compiler. | |
5 | ||
6 | Bison is free software; you can redistribute it and/or modify | |
7 | it under the terms of the GNU General Public License as published by | |
8 | the Free Software Foundation; either version 2, or (at your option) | |
9 | any later version. | |
10 | ||
11 | Bison is distributed in the hope that it will be useful, | |
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | GNU General Public License for more details. | |
15 | ||
16 | You should have received a copy of the GNU General Public License | |
17 | along with Bison; see the file COPYING. If not, write to | |
18 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
19 | Boston, MA 02111-1307, USA. */ | |
20 | ||
21 | #ifndef READER_H_ | |
22 | # define READER_H_ | |
23 | ||
56c47203 | 24 | # include "symlist.h" |
e9955c83 AD |
25 | # include "parse-gram.h" |
26 | ||
676385e2 PH |
27 | typedef struct merger_list |
28 | { | |
29 | struct merger_list* next; | |
30 | const char* name; | |
31 | const char* type; | |
e0e5bf84 | 32 | } |
676385e2 PH |
33 | merger_list; |
34 | ||
e9955c83 AD |
35 | typedef struct gram_control_s |
36 | { | |
37 | int errcode; | |
38 | } gram_control_t; | |
39 | ||
40 | /* From the scanner. */ | |
41 | extern FILE *gram_in; | |
42 | extern int gram__flex_debug; | |
4cdb01db | 43 | void scanner_last_string_free PARAMS ((void)); |
1d6412ad | 44 | void scanner_initialize PARAMS ((void)); |
4cdb01db | 45 | void scanner_free PARAMS ((void)); |
e9955c83 AD |
46 | |
47 | # define YY_DECL \ | |
0c15323d | 48 | int gram_lex (yystype *yylval, location_t *yylloc, \ |
e9955c83 AD |
49 | gram_control_t *yycontrol) |
50 | YY_DECL; | |
51 | ||
52 | ||
53 | /* From the parser. */ | |
54 | extern int gram_debug; | |
fc5734fe | 55 | void gram_error (location_t *loc, const char *msg); |
e9955c83 AD |
56 | int gram_parse (void *control); |
57 | ||
9280d3ef AD |
58 | /* The sort of braced code we are in. */ |
59 | typedef enum braced_code_e | |
60 | { | |
61 | action_braced_code, | |
366eea36 AD |
62 | destructor_braced_code, |
63 | printer_braced_code | |
9280d3ef AD |
64 | } braced_code_t; |
65 | /* FIXME: This is really a dirty hack which demonstrates that we | |
66 | should probably not try to parse the actions now. */ | |
67 | extern braced_code_t current_braced_code; | |
68 | ||
e9955c83 AD |
69 | |
70 | /* From reader.c. */ | |
8efe435c | 71 | void grammar_start_symbol_set PARAMS ((symbol_t *s, location_t l)); |
e9955c83 AD |
72 | void prologue_augment PARAMS ((const char *prologue, location_t location)); |
73 | void epilogue_set PARAMS ((const char *epilogue, location_t location)); | |
8efe435c AD |
74 | void grammar_symbol_append PARAMS ((symbol_t *s, location_t l)); |
75 | void grammar_rule_begin PARAMS ((symbol_t *lhs, location_t l)); | |
76 | void grammar_rule_end PARAMS ((location_t l)); | |
e9955c83 | 77 | void grammar_midrule_action PARAMS ((void)); |
e776192e AD |
78 | void grammar_current_rule_prec_set PARAMS ((symbol_t *precsym, |
79 | location_t l)); | |
676385e2 PH |
80 | void grammar_current_rule_dprec_set PARAMS ((int dprec, |
81 | location_t l)); | |
e0e5bf84 | 82 | void grammar_current_rule_merge_set PARAMS ((const char* name, |
676385e2 PH |
83 | location_t l)); |
84 | ||
8efe435c AD |
85 | void grammar_current_rule_symbol_append PARAMS ((symbol_t *symbol, |
86 | location_t l)); | |
e9955c83 | 87 | void grammar_current_rule_action_append PARAMS ((const char *action, |
8efe435c | 88 | location_t l)); |
56c47203 | 89 | extern symbol_list_t *current_rule; |
e9955c83 | 90 | void reader PARAMS ((void)); |
676385e2 PH |
91 | void free_merger_functions PARAMS ((void)); |
92 | ||
93 | extern merger_list *merge_functions; | |
94 | ||
9280d3ef | 95 | extern int typed; |
a70083a3 AD |
96 | |
97 | #endif /* !READER_H_ */ |