Add a few manpages to Maintainers.pl
[p5sagit/p5-mst-13.2.git] / parser.h
CommitLineData
5912531f 1/* parser.h
2 *
bc641c27 3 * Copyright (c) 2006, 2007, Larry Wall and others
5912531f 4 *
5 * You may distribute under the terms of either the GNU General Public
6 * License or the Artistic License, as specified in the README file.
7 *
8 * This file defines the layout of the parser object used by the parser
9 * and lexer (perly.c, toke,c).
10 */
11
acdf0a21 12#define YYEMPTY (-2)
13
5912531f 14typedef struct {
15 YYSTYPE val; /* semantic value */
16 short state;
17 AV *comppad; /* value of PL_comppad when this value was created */
18#ifdef DEBUGGING
19 const char *name; /* token/rule name for -Dpv */
20#endif
21} yy_stack_frame;
22
22735491 23typedef struct yy_parser {
199e78b7 24
25 /* parser state */
26
22735491 27 struct yy_parser *old_parser; /* previous value of PL_parser */
5912531f 28 YYSTYPE yylval; /* value of lookahead symbol, set by yylex() */
9bd87817 29 int yychar; /* The lookahead symbol. */
5912531f 30
31 /* Number of tokens to shift before error messages enabled. */
32 int yyerrstatus;
33
34 int stack_size;
35 int yylen; /* length of active reduction */
22735491 36 yy_stack_frame *stack; /* base of stack */
5912531f 37 yy_stack_frame *ps; /* current stack frame */
199e78b7 38
39 /* lexer state */
40
41 I32 lex_brackets; /* bracket count */
42 I32 lex_casemods; /* casemod count */
43 char *lex_brackstack;/* what kind of brackets to pop */
44 char *lex_casestack; /* what kind of case mods in effect */
651b5b28 45 U8 lex_defer; /* state after determined token */
46 bool lex_dojoin; /* doing an array interpolation */
47 U8 lex_expect; /* expect after determined token */
53a7735b 48 U8 expect; /* how to interpret ambiguous tokens */
199e78b7 49 I32 lex_formbrack; /* bracket count at outer format level */
50 OP *lex_inpat; /* in pattern $) and $| are special */
199e78b7 51 OP *lex_op; /* extra info to pass back on op */
52 SV *lex_repl; /* runtime replacement from s/// */
651b5b28 53 U16 lex_inwhat; /* what kind of quoting are we in */
199e78b7 54 I32 lex_starts; /* how many interps done on level */
55 SV *lex_stuff; /* runtime pattern from m// or s/// */
56 I32 multi_start; /* 1st line of multi-line string */
651b5b28 57 char multi_open; /* delimiter of said string */
58 char multi_close; /* delimiter of said string */
199e78b7 59 char pending_ident; /* pending identifier lookup */
60 bool preambled;
61 SUBLEXINFO sublex_info;
bdc0bf6f 62 SV *linestr; /* current chunk of src text */
53a7735b 63 line_t copline; /* current line number */
199e78b7 64
65#ifdef PERL_MAD
66 SV *endwhite;
67 I32 faketokens;
68 I32 lasttoke;
69 SV *nextwhite;
70 I32 realtokenstart;
71 SV *skipwhite;
72 SV *thisclose;
73 MADPROP * thismad;
74 SV *thisopen;
75 SV *thisstuff;
76 SV *thistoken;
77 SV *thiswhite;
78#endif
5912531f 79} yy_parser;
80
81