]> git.saurik.com Git - bison.git/blame - src/reader.h
(escaped_file_name_output): New function.
[bison.git] / src / reader.h
CommitLineData
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
27typedef struct merger_list
28{
29 struct merger_list* next;
30 const char* name;
31 const char* type;
e0e5bf84 32}
676385e2
PH
33merger_list;
34
e9955c83
AD
35typedef struct gram_control_s
36{
37 int errcode;
38} gram_control_t;
39
40/* From the scanner. */
41extern FILE *gram_in;
42extern int gram__flex_debug;
d33cb3ae
PE
43void scanner_initialize (void);
44void scanner_free (void);
e9955c83
AD
45
46# define YY_DECL \
0c15323d 47 int gram_lex (yystype *yylval, location_t *yylloc, \
e9955c83
AD
48 gram_control_t *yycontrol)
49YY_DECL;
50
51
52/* From the parser. */
53extern int gram_debug;
fc5734fe 54void gram_error (location_t *loc, const char *msg);
e9955c83
AD
55int gram_parse (void *control);
56
9280d3ef
AD
57/* The sort of braced code we are in. */
58typedef enum braced_code_e
59 {
60 action_braced_code,
366eea36
AD
61 destructor_braced_code,
62 printer_braced_code
9280d3ef
AD
63 } braced_code_t;
64/* FIXME: This is really a dirty hack which demonstrates that we
65 should probably not try to parse the actions now. */
66extern braced_code_t current_braced_code;
67
e9955c83
AD
68
69/* From reader.c. */
d33cb3ae
PE
70void grammar_start_symbol_set (symbol_t *s, location_t l);
71void prologue_augment (const char *prologue, location_t location);
72void epilogue_set (const char *epilogue, location_t location);
73void grammar_symbol_append (symbol_t *s, location_t l);
74void grammar_rule_begin (symbol_t *lhs, location_t l);
75void grammar_rule_end (location_t l);
76void grammar_midrule_action (void);
77void grammar_current_rule_prec_set (symbol_t *precsym, location_t l);
78void grammar_current_rule_dprec_set (int dprec, location_t l);
79void grammar_current_rule_merge_set (const char* name, location_t l);
80
81void grammar_current_rule_symbol_append (symbol_t *symbol, location_t l);
82void grammar_current_rule_action_append (const char *action, location_t l);
56c47203 83extern symbol_list_t *current_rule;
d33cb3ae
PE
84void reader (void);
85void free_merger_functions (void);
676385e2
PH
86
87extern merger_list *merge_functions;
88
9280d3ef 89extern int typed;
a70083a3
AD
90
91#endif /* !READER_H_ */