mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 04:11:08 +00:00
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@24344 65c4cc65-6c06-0410-ace0-fbb531ad65f3
3245 lines
90 KiB
C
3245 lines
90 KiB
C
/* A Bison parser, made by GNU Bison 2.1. */
|
||
|
||
/* Skeleton parser for Yacc-like parsing with Bison,
|
||
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
|
||
|
||
This program is free software; you can redistribute it and/or modify
|
||
it under the terms of the GNU General Public License as published by
|
||
the Free Software Foundation; either version 2, or (at your option)
|
||
any later version.
|
||
|
||
This program is distributed in the hope that it will be useful,
|
||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
GNU General Public License for more details.
|
||
|
||
You should have received a copy of the GNU General Public License
|
||
along with this program; if not, write to the Free Software
|
||
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||
Boston, MA 02110-1301, USA. */
|
||
|
||
/* As a special exception, when this file is copied by Bison into a
|
||
Bison output file, you may use that output file without restriction.
|
||
This special exception was added by the Free Software Foundation
|
||
in version 1.24 of Bison. */
|
||
|
||
/* Written by Richard Stallman by simplifying the original so called
|
||
``semantic'' parser. */
|
||
|
||
/* All symbols defined below should begin with yy or YY, to avoid
|
||
infringing on user name space. This should be done even for local
|
||
variables, as they might otherwise be expanded by user macros.
|
||
There are some unavoidable exceptions within include files to
|
||
define necessary library symbols; they are noted "INFRINGES ON
|
||
USER NAME SPACE" below. */
|
||
|
||
/* Identify Bison output. */
|
||
#define YYBISON 1
|
||
|
||
/* Bison version. */
|
||
#define YYBISON_VERSION "2.1"
|
||
|
||
/* Skeleton name. */
|
||
#define YYSKELETON_NAME "yacc.c"
|
||
|
||
/* Pure parsers. */
|
||
#define YYPURE 1
|
||
|
||
/* Using locations. */
|
||
#define YYLSP_NEEDED 1
|
||
|
||
/* Substitute the variable and function names. */
|
||
#define yyparse ael_yyparse
|
||
#define yylex ael_yylex
|
||
#define yyerror ael_yyerror
|
||
#define yylval ael_yylval
|
||
#define yychar ael_yychar
|
||
#define yydebug ael_yydebug
|
||
#define yynerrs ael_yynerrs
|
||
#define yylloc ael_yylloc
|
||
|
||
/* Tokens. */
|
||
#ifndef YYTOKENTYPE
|
||
# define YYTOKENTYPE
|
||
/* Put the tokens into the symbol table, so that GDB and other debuggers
|
||
know about them. */
|
||
enum yytokentype {
|
||
KW_CONTEXT = 258,
|
||
LC = 259,
|
||
RC = 260,
|
||
LP = 261,
|
||
RP = 262,
|
||
SEMI = 263,
|
||
EQ = 264,
|
||
COMMA = 265,
|
||
COLON = 266,
|
||
AMPER = 267,
|
||
BAR = 268,
|
||
AT = 269,
|
||
KW_MACRO = 270,
|
||
KW_GLOBALS = 271,
|
||
KW_IGNOREPAT = 272,
|
||
KW_SWITCH = 273,
|
||
KW_IF = 274,
|
||
KW_IFTIME = 275,
|
||
KW_ELSE = 276,
|
||
KW_RANDOM = 277,
|
||
KW_ABSTRACT = 278,
|
||
EXTENMARK = 279,
|
||
KW_GOTO = 280,
|
||
KW_JUMP = 281,
|
||
KW_RETURN = 282,
|
||
KW_BREAK = 283,
|
||
KW_CONTINUE = 284,
|
||
KW_REGEXTEN = 285,
|
||
KW_HINT = 286,
|
||
KW_FOR = 287,
|
||
KW_WHILE = 288,
|
||
KW_CASE = 289,
|
||
KW_PATTERN = 290,
|
||
KW_DEFAULT = 291,
|
||
KW_CATCH = 292,
|
||
KW_SWITCHES = 293,
|
||
KW_ESWITCHES = 294,
|
||
KW_INCLUDES = 295,
|
||
word = 296
|
||
};
|
||
#endif
|
||
/* Tokens. */
|
||
#define KW_CONTEXT 258
|
||
#define LC 259
|
||
#define RC 260
|
||
#define LP 261
|
||
#define RP 262
|
||
#define SEMI 263
|
||
#define EQ 264
|
||
#define COMMA 265
|
||
#define COLON 266
|
||
#define AMPER 267
|
||
#define BAR 268
|
||
#define AT 269
|
||
#define KW_MACRO 270
|
||
#define KW_GLOBALS 271
|
||
#define KW_IGNOREPAT 272
|
||
#define KW_SWITCH 273
|
||
#define KW_IF 274
|
||
#define KW_IFTIME 275
|
||
#define KW_ELSE 276
|
||
#define KW_RANDOM 277
|
||
#define KW_ABSTRACT 278
|
||
#define EXTENMARK 279
|
||
#define KW_GOTO 280
|
||
#define KW_JUMP 281
|
||
#define KW_RETURN 282
|
||
#define KW_BREAK 283
|
||
#define KW_CONTINUE 284
|
||
#define KW_REGEXTEN 285
|
||
#define KW_HINT 286
|
||
#define KW_FOR 287
|
||
#define KW_WHILE 288
|
||
#define KW_CASE 289
|
||
#define KW_PATTERN 290
|
||
#define KW_DEFAULT 291
|
||
#define KW_CATCH 292
|
||
#define KW_SWITCHES 293
|
||
#define KW_ESWITCHES 294
|
||
#define KW_INCLUDES 295
|
||
#define word 296
|
||
|
||
|
||
|
||
|
||
/* Copy the first part of user declarations. */
|
||
#line 1 "ael.y"
|
||
|
||
/*
|
||
* Asterisk -- An open source telephony toolkit.
|
||
*
|
||
* Copyright (C) 2006, Digium, Inc.
|
||
*
|
||
* Steve Murphy <murf@parsetree.com>
|
||
*
|
||
* See http://www.asterisk.org for more information about
|
||
* the Asterisk project. Please do not directly contact
|
||
* any of the maintainers of this project for assistance;
|
||
* the project provides a web site, mailing lists and IRC
|
||
* channels for your use.
|
||
*
|
||
* This program is free software, distributed under the terms of
|
||
* the GNU General Public License Version 2. See the LICENSE file
|
||
* at the top of the source tree.
|
||
*/
|
||
/*! \file
|
||
*
|
||
* \brief Bison Grammar description of AEL2.
|
||
*
|
||
*/
|
||
#include <stdio.h>
|
||
#include <stdlib.h>
|
||
#include <string.h>
|
||
#include "asterisk/logger.h"
|
||
#include "asterisk/ael_structs.h"
|
||
|
||
static pval * linku1(pval *head, pval *tail);
|
||
|
||
void reset_parencount(yyscan_t yyscanner);
|
||
void reset_semicount(yyscan_t yyscanner);
|
||
void reset_argcount(yyscan_t yyscanner );
|
||
|
||
#define YYLEX_PARAM ((struct parse_io *)parseio)->scanner
|
||
#define YYERROR_VERBOSE 1
|
||
|
||
extern char *my_file;
|
||
#ifdef AAL_ARGCHECK
|
||
int ael_is_funcname(char *name);
|
||
#endif
|
||
static char *ael_token_subst(char *mess);
|
||
|
||
|
||
|
||
/* Enabling traces. */
|
||
#ifndef YYDEBUG
|
||
# define YYDEBUG 0
|
||
#endif
|
||
|
||
/* Enabling verbose error messages. */
|
||
#ifdef YYERROR_VERBOSE
|
||
# undef YYERROR_VERBOSE
|
||
# define YYERROR_VERBOSE 1
|
||
#else
|
||
# define YYERROR_VERBOSE 1
|
||
#endif
|
||
|
||
/* Enabling the token table. */
|
||
#ifndef YYTOKEN_TABLE
|
||
# define YYTOKEN_TABLE 0
|
||
#endif
|
||
|
||
#if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
|
||
#line 48 "ael.y"
|
||
typedef union YYSTYPE {
|
||
int intval; /* integer value, typically flags */
|
||
char *str; /* strings */
|
||
struct pval *pval; /* full objects */
|
||
} YYSTYPE;
|
||
/* Line 196 of yacc.c. */
|
||
#line 227 "ael.tab.c"
|
||
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
||
# define YYSTYPE_IS_DECLARED 1
|
||
# define YYSTYPE_IS_TRIVIAL 1
|
||
#endif
|
||
|
||
#if ! defined (YYLTYPE) && ! defined (YYLTYPE_IS_DECLARED)
|
||
typedef struct YYLTYPE
|
||
{
|
||
int first_line;
|
||
int first_column;
|
||
int last_line;
|
||
int last_column;
|
||
} YYLTYPE;
|
||
# define yyltype YYLTYPE /* obsolescent; will be withdrawn */
|
||
# define YYLTYPE_IS_DECLARED 1
|
||
# define YYLTYPE_IS_TRIVIAL 1
|
||
#endif
|
||
|
||
|
||
/* Copy the second part of user declarations. */
|
||
#line 54 "ael.y"
|
||
|
||
/* declaring these AFTER the union makes things a lot simpler! */
|
||
void yyerror(YYLTYPE *locp, struct parse_io *parseio, char const *s);
|
||
int ael_yylex (YYSTYPE * yylval_param, YYLTYPE * yylloc_param , void * yyscanner);
|
||
|
||
/* create a new object with start-end marker */
|
||
static pval *npval(pvaltype type, int first_line, int last_line,
|
||
int first_column, int last_column);
|
||
|
||
/* create a new object with start-end marker, simplified interface.
|
||
* Must be declared here because YYLTYPE is not known before
|
||
*/
|
||
static pval *npval2(pvaltype type, YYLTYPE *first, YYLTYPE *last);
|
||
|
||
/* another frontend for npval, this time for a string */
|
||
static pval *nword(char *string, YYLTYPE *pos);
|
||
|
||
/* update end position of an object, return the object */
|
||
static pval *update_last(pval *, YYLTYPE *);
|
||
|
||
|
||
/* Line 219 of yacc.c. */
|
||
#line 271 "ael.tab.c"
|
||
|
||
#if ! defined (YYSIZE_T) && defined (__SIZE_TYPE__)
|
||
# define YYSIZE_T __SIZE_TYPE__
|
||
#endif
|
||
#if ! defined (YYSIZE_T) && defined (size_t)
|
||
# define YYSIZE_T size_t
|
||
#endif
|
||
#if ! defined (YYSIZE_T) && (defined (__STDC__) || defined (__cplusplus))
|
||
# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
|
||
# define YYSIZE_T size_t
|
||
#endif
|
||
#if ! defined (YYSIZE_T)
|
||
# define YYSIZE_T unsigned int
|
||
#endif
|
||
|
||
#ifndef YY_
|
||
# if YYENABLE_NLS
|
||
# if ENABLE_NLS
|
||
# include <libintl.h> /* INFRINGES ON USER NAME SPACE */
|
||
# define YY_(msgid) dgettext ("bison-runtime", msgid)
|
||
# endif
|
||
# endif
|
||
# ifndef YY_
|
||
# define YY_(msgid) msgid
|
||
# endif
|
||
#endif
|
||
|
||
#if ! defined (yyoverflow) || YYERROR_VERBOSE
|
||
|
||
/* The parser invokes alloca or malloc; define the necessary symbols. */
|
||
|
||
# ifdef YYSTACK_USE_ALLOCA
|
||
# if YYSTACK_USE_ALLOCA
|
||
# ifdef __GNUC__
|
||
# define YYSTACK_ALLOC __builtin_alloca
|
||
# else
|
||
# define YYSTACK_ALLOC alloca
|
||
# if defined (__STDC__) || defined (__cplusplus)
|
||
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
|
||
# define YYINCLUDED_STDLIB_H
|
||
# endif
|
||
# endif
|
||
# endif
|
||
# endif
|
||
|
||
# ifdef YYSTACK_ALLOC
|
||
/* Pacify GCC's `empty if-body' warning. */
|
||
# define YYSTACK_FREE(Ptr) do { /* empty */; } while (0)
|
||
# ifndef YYSTACK_ALLOC_MAXIMUM
|
||
/* The OS might guarantee only one guard page at the bottom of the stack,
|
||
and a page size can be as small as 4096 bytes. So we cannot safely
|
||
invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
|
||
to allow for a few compiler-allocated temporary stack slots. */
|
||
# define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2005 */
|
||
# endif
|
||
# else
|
||
# define YYSTACK_ALLOC YYMALLOC
|
||
# define YYSTACK_FREE YYFREE
|
||
# ifndef YYSTACK_ALLOC_MAXIMUM
|
||
# define YYSTACK_ALLOC_MAXIMUM ((YYSIZE_T) -1)
|
||
# endif
|
||
# ifdef __cplusplus
|
||
extern "C" {
|
||
# endif
|
||
# ifndef YYMALLOC
|
||
# define YYMALLOC malloc
|
||
# if (! defined (malloc) && ! defined (YYINCLUDED_STDLIB_H) \
|
||
&& (defined (__STDC__) || defined (__cplusplus)))
|
||
void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
|
||
# endif
|
||
# endif
|
||
# ifndef YYFREE
|
||
# define YYFREE free
|
||
# if (! defined (free) && ! defined (YYINCLUDED_STDLIB_H) \
|
||
&& (defined (__STDC__) || defined (__cplusplus)))
|
||
void free (void *); /* INFRINGES ON USER NAME SPACE */
|
||
# endif
|
||
# endif
|
||
# ifdef __cplusplus
|
||
}
|
||
# endif
|
||
# endif
|
||
#endif /* ! defined (yyoverflow) || YYERROR_VERBOSE */
|
||
|
||
|
||
#if (! defined (yyoverflow) \
|
||
&& (! defined (__cplusplus) \
|
||
|| (defined (YYLTYPE_IS_TRIVIAL) && YYLTYPE_IS_TRIVIAL \
|
||
&& defined (YYSTYPE_IS_TRIVIAL) && YYSTYPE_IS_TRIVIAL)))
|
||
|
||
/* A type that is properly aligned for any stack member. */
|
||
union yyalloc
|
||
{
|
||
short int yyss;
|
||
YYSTYPE yyvs;
|
||
YYLTYPE yyls;
|
||
};
|
||
|
||
/* The size of the maximum gap between one aligned stack and the next. */
|
||
# define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
|
||
|
||
/* The size of an array large to enough to hold all stacks, each with
|
||
N elements. */
|
||
# define YYSTACK_BYTES(N) \
|
||
((N) * (sizeof (short int) + sizeof (YYSTYPE) + sizeof (YYLTYPE)) \
|
||
+ 2 * YYSTACK_GAP_MAXIMUM)
|
||
|
||
/* Copy COUNT objects from FROM to TO. The source and destination do
|
||
not overlap. */
|
||
# ifndef YYCOPY
|
||
# if defined (__GNUC__) && 1 < __GNUC__
|
||
# define YYCOPY(To, From, Count) \
|
||
__builtin_memcpy (To, From, (Count) * sizeof (*(From)))
|
||
# else
|
||
# define YYCOPY(To, From, Count) \
|
||
do \
|
||
{ \
|
||
YYSIZE_T yyi; \
|
||
for (yyi = 0; yyi < (Count); yyi++) \
|
||
(To)[yyi] = (From)[yyi]; \
|
||
} \
|
||
while (0)
|
||
# endif
|
||
# endif
|
||
|
||
/* Relocate STACK from its old location to the new one. The
|
||
local variables YYSIZE and YYSTACKSIZE give the old and new number of
|
||
elements in the stack, and YYPTR gives the new location of the
|
||
stack. Advance YYPTR to a properly aligned location for the next
|
||
stack. */
|
||
# define YYSTACK_RELOCATE(Stack) \
|
||
do \
|
||
{ \
|
||
YYSIZE_T yynewbytes; \
|
||
YYCOPY (&yyptr->Stack, Stack, yysize); \
|
||
Stack = &yyptr->Stack; \
|
||
yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
|
||
yyptr += yynewbytes / sizeof (*yyptr); \
|
||
} \
|
||
while (0)
|
||
|
||
#endif
|
||
|
||
#if defined (__STDC__) || defined (__cplusplus)
|
||
typedef signed char yysigned_char;
|
||
#else
|
||
typedef short int yysigned_char;
|
||
#endif
|
||
|
||
/* YYFINAL -- State number of the termination state. */
|
||
#define YYFINAL 14
|
||
/* YYLAST -- Last index in YYTABLE. */
|
||
#define YYLAST 387
|
||
|
||
/* YYNTOKENS -- Number of terminals. */
|
||
#define YYNTOKENS 42
|
||
/* YYNNTS -- Number of nonterminals. */
|
||
#define YYNNTS 54
|
||
/* YYNRULES -- Number of rules. */
|
||
#define YYNRULES 140
|
||
/* YYNRULES -- Number of states. */
|
||
#define YYNSTATES 266
|
||
|
||
/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
|
||
#define YYUNDEFTOK 2
|
||
#define YYMAXUTOK 296
|
||
|
||
#define YYTRANSLATE(YYX) \
|
||
((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
|
||
|
||
/* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */
|
||
static const unsigned char yytranslate[] =
|
||
{
|
||
0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 1, 2, 3, 4,
|
||
5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
|
||
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
|
||
25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
|
||
35, 36, 37, 38, 39, 40, 41
|
||
};
|
||
|
||
#if YYDEBUG
|
||
/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
|
||
YYRHS. */
|
||
static const unsigned short int yyprhs[] =
|
||
{
|
||
0, 0, 3, 5, 7, 10, 13, 15, 17, 19,
|
||
21, 23, 25, 30, 32, 33, 42, 47, 51, 53,
|
||
56, 59, 60, 66, 67, 69, 73, 76, 79, 83,
|
||
85, 87, 90, 93, 95, 97, 99, 101, 103, 105,
|
||
108, 110, 115, 119, 124, 132, 141, 143, 146, 149,
|
||
155, 157, 165, 166, 171, 174, 177, 182, 184, 187,
|
||
189, 192, 196, 198, 201, 205, 209, 213, 215, 219,
|
||
223, 226, 227, 228, 229, 242, 246, 250, 254, 257,
|
||
260, 261, 267, 270, 273, 276, 280, 282, 285, 286,
|
||
288, 292, 296, 302, 308, 314, 320, 322, 326, 332,
|
||
336, 340, 341, 347, 351, 352, 356, 360, 363, 365,
|
||
366, 368, 369, 373, 374, 376, 379, 384, 388, 393,
|
||
397, 400, 404, 405, 407, 410, 412, 418, 421, 424,
|
||
428, 431, 434, 438, 441, 444, 449, 451, 454, 457,
|
||
462
|
||
};
|
||
|
||
/* YYRHS -- A `-1'-separated list of the rules' RHS. */
|
||
static const yysigned_char yyrhs[] =
|
||
{
|
||
43, 0, -1, 44, -1, 45, -1, 44, 45, -1,
|
||
44, 1, -1, 47, -1, 49, -1, 50, -1, 8,
|
||
-1, 41, -1, 36, -1, 48, 3, 46, 55, -1,
|
||
23, -1, -1, 15, 41, 6, 54, 7, 4, 87,
|
||
5, -1, 16, 4, 51, 5, -1, 16, 4, 5,
|
||
-1, 52, -1, 51, 52, -1, 51, 1, -1, -1,
|
||
41, 9, 53, 41, 8, -1, -1, 41, -1, 54,
|
||
10, 41, -1, 54, 1, -1, 4, 5, -1, 4,
|
||
56, 5, -1, 57, -1, 1, -1, 56, 57, -1,
|
||
56, 1, -1, 59, -1, 95, -1, 89, -1, 90,
|
||
-1, 58, -1, 52, -1, 41, 1, -1, 8, -1,
|
||
17, 24, 41, 8, -1, 41, 24, 70, -1, 30,
|
||
41, 24, 70, -1, 31, 6, 67, 7, 41, 24,
|
||
70, -1, 30, 31, 6, 67, 7, 41, 24, 70,
|
||
-1, 70, -1, 60, 70, -1, 60, 1, -1, 67,
|
||
11, 67, 11, 67, -1, 41, -1, 61, 13, 67,
|
||
13, 67, 13, 67, -1, -1, 6, 64, 66, 7,
|
||
-1, 19, 63, -1, 22, 63, -1, 20, 6, 62,
|
||
7, -1, 41, -1, 41, 41, -1, 41, -1, 41,
|
||
41, -1, 41, 41, 41, -1, 41, -1, 41, 41,
|
||
-1, 41, 11, 41, -1, 18, 63, 4, -1, 4,
|
||
60, 5, -1, 52, -1, 25, 76, 8, -1, 26,
|
||
77, 8, -1, 41, 11, -1, -1, -1, -1, 32,
|
||
6, 71, 41, 8, 72, 41, 8, 73, 41, 7,
|
||
70, -1, 33, 63, 70, -1, 69, 85, 5, -1,
|
||
12, 78, 8, -1, 82, 8, -1, 41, 8, -1,
|
||
-1, 82, 9, 74, 41, 8, -1, 28, 8, -1,
|
||
27, 8, -1, 29, 8, -1, 65, 70, 75, -1,
|
||
8, -1, 21, 70, -1, -1, 68, -1, 68, 13,
|
||
68, -1, 68, 10, 68, -1, 68, 13, 68, 13,
|
||
68, -1, 68, 10, 68, 10, 68, -1, 36, 13,
|
||
68, 13, 68, -1, 36, 10, 68, 10, 68, -1,
|
||
68, -1, 68, 10, 68, -1, 68, 10, 41, 14,
|
||
46, -1, 68, 14, 68, -1, 68, 14, 36, -1,
|
||
-1, 41, 6, 79, 84, 7, -1, 41, 6, 7,
|
||
-1, -1, 41, 6, 81, -1, 80, 84, 7, -1,
|
||
80, 7, -1, 41, -1, -1, 66, -1, -1, 84,
|
||
10, 83, -1, -1, 86, -1, 85, 86, -1, 34,
|
||
41, 11, 60, -1, 36, 11, 60, -1, 35, 41,
|
||
11, 60, -1, 34, 41, 11, -1, 36, 11, -1,
|
||
35, 41, 11, -1, -1, 88, -1, 87, 88, -1,
|
||
70, -1, 37, 41, 4, 60, 5, -1, 38, 91,
|
||
-1, 39, 91, -1, 4, 92, 5, -1, 4, 5,
|
||
-1, 41, 8, -1, 92, 41, 8, -1, 92, 1,
|
||
-1, 46, 8, -1, 46, 13, 62, 8, -1, 93,
|
||
-1, 94, 93, -1, 94, 1, -1, 40, 4, 94,
|
||
5, -1, 40, 4, 5, -1
|
||
};
|
||
|
||
/* YYRLINE[YYN] -- source line where rule number YYN was defined. */
|
||
static const unsigned short int yyrline[] =
|
||
{
|
||
0, 180, 180, 183, 184, 185, 188, 189, 190, 191,
|
||
194, 195, 198, 206, 207, 210, 215, 218, 222, 223,
|
||
224, 227, 227, 233, 234, 235, 236, 239, 240, 243,
|
||
244, 245, 246, 249, 250, 251, 252, 253, 254, 255,
|
||
256, 259, 264, 268, 273, 278, 287, 288, 289, 295,
|
||
300, 304, 312, 312, 317, 320, 323, 334, 335, 342,
|
||
343, 348, 356, 357, 361, 367, 375, 378, 379, 382,
|
||
385, 388, 389, 390, 388, 396, 400, 403, 405, 407,
|
||
410, 410, 443, 444, 445, 446, 450, 453, 454, 459,
|
||
460, 463, 466, 470, 474, 478, 485, 488, 491, 495,
|
||
499, 505, 505, 510, 518, 518, 529, 536, 539, 540,
|
||
543, 544, 547, 550, 551, 552, 555, 559, 563, 567,
|
||
570, 573, 578, 579, 580, 583, 584, 590, 595, 600,
|
||
601, 604, 605, 606, 609, 610, 617, 618, 619, 622,
|
||
625
|
||
};
|
||
#endif
|
||
|
||
#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
|
||
/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
|
||
First, the terminals, then, starting at YYNTOKENS, nonterminals. */
|
||
static const char *const yytname[] =
|
||
{
|
||
"$end", "error", "$undefined", "KW_CONTEXT", "LC", "RC", "LP", "RP",
|
||
"SEMI", "EQ", "COMMA", "COLON", "AMPER", "BAR", "AT", "KW_MACRO",
|
||
"KW_GLOBALS", "KW_IGNOREPAT", "KW_SWITCH", "KW_IF", "KW_IFTIME",
|
||
"KW_ELSE", "KW_RANDOM", "KW_ABSTRACT", "EXTENMARK", "KW_GOTO", "KW_JUMP",
|
||
"KW_RETURN", "KW_BREAK", "KW_CONTINUE", "KW_REGEXTEN", "KW_HINT",
|
||
"KW_FOR", "KW_WHILE", "KW_CASE", "KW_PATTERN", "KW_DEFAULT", "KW_CATCH",
|
||
"KW_SWITCHES", "KW_ESWITCHES", "KW_INCLUDES", "word", "$accept", "file",
|
||
"objects", "object", "context_name", "context", "opt_abstract", "macro",
|
||
"globals", "global_statements", "assignment", "@1", "arglist",
|
||
"elements_block", "elements", "element", "ignorepat", "extension",
|
||
"statements", "timerange", "timespec", "test_expr", "@2", "if_like_head",
|
||
"word_list", "word3_list", "goto_word", "switch_head", "statement", "@3",
|
||
"@4", "@5", "@6", "opt_else", "target", "jumptarget", "macro_call", "@7",
|
||
"application_call_head", "@8", "application_call", "opt_word",
|
||
"eval_arglist", "case_statements", "case_statement", "macro_statements",
|
||
"macro_statement", "switches", "eswitches", "switchlist_block",
|
||
"switchlist", "included_entry", "includeslist", "includes", 0
|
||
};
|
||
#endif
|
||
|
||
# ifdef YYPRINT
|
||
/* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
|
||
token YYLEX-NUM. */
|
||
static const unsigned short int yytoknum[] =
|
||
{
|
||
0, 256, 257, 258, 259, 260, 261, 262, 263, 264,
|
||
265, 266, 267, 268, 269, 270, 271, 272, 273, 274,
|
||
275, 276, 277, 278, 279, 280, 281, 282, 283, 284,
|
||
285, 286, 287, 288, 289, 290, 291, 292, 293, 294,
|
||
295, 296
|
||
};
|
||
# endif
|
||
|
||
/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
|
||
static const unsigned char yyr1[] =
|
||
{
|
||
0, 42, 43, 44, 44, 44, 45, 45, 45, 45,
|
||
46, 46, 47, 48, 48, 49, 50, 50, 51, 51,
|
||
51, 53, 52, 54, 54, 54, 54, 55, 55, 56,
|
||
56, 56, 56, 57, 57, 57, 57, 57, 57, 57,
|
||
57, 58, 59, 59, 59, 59, 60, 60, 60, 61,
|
||
61, 62, 64, 63, 65, 65, 65, 66, 66, 67,
|
||
67, 67, 68, 68, 68, 69, 70, 70, 70, 70,
|
||
70, 71, 72, 73, 70, 70, 70, 70, 70, 70,
|
||
74, 70, 70, 70, 70, 70, 70, 75, 75, 76,
|
||
76, 76, 76, 76, 76, 76, 77, 77, 77, 77,
|
||
77, 79, 78, 78, 81, 80, 82, 82, 83, 83,
|
||
84, 84, 84, 85, 85, 85, 86, 86, 86, 86,
|
||
86, 86, 87, 87, 87, 88, 88, 89, 90, 91,
|
||
91, 92, 92, 92, 93, 93, 94, 94, 94, 95,
|
||
95
|
||
};
|
||
|
||
/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
|
||
static const unsigned char yyr2[] =
|
||
{
|
||
0, 2, 1, 1, 2, 2, 1, 1, 1, 1,
|
||
1, 1, 4, 1, 0, 8, 4, 3, 1, 2,
|
||
2, 0, 5, 0, 1, 3, 2, 2, 3, 1,
|
||
1, 2, 2, 1, 1, 1, 1, 1, 1, 2,
|
||
1, 4, 3, 4, 7, 8, 1, 2, 2, 5,
|
||
1, 7, 0, 4, 2, 2, 4, 1, 2, 1,
|
||
2, 3, 1, 2, 3, 3, 3, 1, 3, 3,
|
||
2, 0, 0, 0, 12, 3, 3, 3, 2, 2,
|
||
0, 5, 2, 2, 2, 3, 1, 2, 0, 1,
|
||
3, 3, 5, 5, 5, 5, 1, 3, 5, 3,
|
||
3, 0, 5, 3, 0, 3, 3, 2, 1, 0,
|
||
1, 0, 3, 0, 1, 2, 4, 3, 4, 3,
|
||
2, 3, 0, 1, 2, 1, 5, 2, 2, 3,
|
||
2, 2, 3, 2, 2, 4, 1, 2, 2, 4,
|
||
3
|
||
};
|
||
|
||
/* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state
|
||
STATE-NUM when YYTABLE doesn't specify something else to do. Zero
|
||
means the default is an error. */
|
||
static const unsigned char yydefact[] =
|
||
{
|
||
14, 9, 0, 0, 13, 0, 0, 3, 6, 0,
|
||
7, 8, 0, 0, 1, 5, 4, 0, 23, 17,
|
||
0, 0, 18, 11, 10, 0, 24, 0, 21, 20,
|
||
16, 19, 0, 12, 26, 0, 0, 0, 30, 27,
|
||
40, 0, 0, 0, 0, 0, 0, 0, 38, 0,
|
||
29, 37, 33, 35, 36, 34, 122, 25, 0, 0,
|
||
0, 0, 0, 0, 127, 128, 0, 39, 0, 32,
|
||
28, 31, 0, 86, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 67, 0,
|
||
113, 125, 111, 0, 0, 123, 22, 0, 0, 0,
|
||
59, 0, 130, 0, 0, 140, 0, 136, 0, 42,
|
||
0, 46, 0, 0, 52, 0, 54, 0, 55, 0,
|
||
62, 89, 0, 96, 0, 83, 82, 84, 71, 0,
|
||
0, 104, 79, 70, 88, 0, 0, 0, 0, 114,
|
||
107, 57, 110, 0, 78, 80, 15, 124, 41, 0,
|
||
43, 60, 0, 131, 133, 129, 0, 134, 0, 138,
|
||
139, 137, 48, 66, 47, 101, 77, 0, 65, 50,
|
||
0, 0, 0, 0, 0, 0, 63, 0, 0, 68,
|
||
0, 0, 69, 0, 75, 0, 105, 0, 85, 0,
|
||
0, 120, 76, 115, 58, 106, 109, 0, 0, 61,
|
||
0, 132, 0, 103, 111, 0, 0, 56, 0, 0,
|
||
0, 64, 91, 90, 62, 97, 100, 99, 0, 0,
|
||
87, 119, 121, 0, 108, 112, 0, 0, 0, 135,
|
||
0, 53, 0, 0, 0, 0, 0, 0, 0, 72,
|
||
126, 0, 0, 81, 0, 44, 102, 0, 0, 95,
|
||
94, 93, 92, 98, 0, 45, 0, 49, 0, 0,
|
||
73, 51, 0, 0, 0, 74
|
||
};
|
||
|
||
/* YYDEFGOTO[NTERM-NUM]. */
|
||
static const short int yydefgoto[] =
|
||
{
|
||
-1, 5, 6, 7, 106, 8, 9, 10, 11, 21,
|
||
88, 37, 27, 33, 49, 50, 51, 52, 110, 170,
|
||
171, 115, 167, 89, 142, 172, 121, 90, 111, 183,
|
||
254, 262, 197, 188, 122, 124, 113, 204, 92, 186,
|
||
93, 225, 143, 138, 139, 94, 95, 53, 54, 64,
|
||
104, 107, 108, 55
|
||
};
|
||
|
||
/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
|
||
STATE-NUM. */
|
||
#define YYPACT_NINF -139
|
||
static const short int yypact[] =
|
||
{
|
||
120, -139, -30, 15, -139, 68, 180, -139, -139, 72,
|
||
-139, -139, 76, 24, -139, -139, -139, -21, 40, -139,
|
||
114, 5, -139, -139, -139, 125, -139, 23, -139, -139,
|
||
-139, -139, 20, -139, -139, 130, 109, 113, -139, -139,
|
||
-139, 137, -15, 164, 167, 167, 174, 8, -139, 136,
|
||
-139, -139, -139, -139, -139, -139, 320, -139, 171, 141,
|
||
178, 161, 156, 26, -139, -139, 52, -139, 346, -139,
|
||
-139, -139, 346, -139, 157, 193, 193, 194, 193, -14,
|
||
165, 199, 202, 203, 207, 193, 173, 154, -139, 346,
|
||
158, -139, 1, 27, 294, -139, -139, 208, 156, 346,
|
||
176, 216, -139, 222, 13, -139, 84, -139, 2, -139,
|
||
238, -139, 209, 223, -139, 220, -139, 196, -139, 97,
|
||
90, 135, 230, 132, 232, -139, -139, -139, -139, 346,
|
||
240, -139, -139, -139, 224, 206, 210, 237, 104, -139,
|
||
-139, 211, -139, 145, -139, -139, -139, -139, -139, 242,
|
||
-139, 212, 213, -139, -139, -139, 247, -139, 196, -139,
|
||
-139, -139, -139, -139, -139, 252, -139, 221, -139, 106,
|
||
248, 261, 263, 165, 165, 234, -139, 165, 165, -139,
|
||
236, 89, -139, 241, -139, 346, -139, 346, -139, 267,
|
||
270, 346, -139, -139, -139, -139, 243, 244, 250, -139,
|
||
259, -139, 281, -139, 221, 285, 156, -139, 156, 293,
|
||
291, -139, 295, 297, 75, -139, -139, -139, 299, 268,
|
||
-139, 346, 346, 44, -139, -139, 300, 287, 346, -139,
|
||
162, -139, 302, 306, 165, 165, 165, 165, -21, -139,
|
||
-139, 86, 200, -139, 346, -139, -139, 156, 156, -139,
|
||
-139, -139, -139, -139, 277, -139, 312, -139, 321, 156,
|
||
-139, -139, 289, 326, 346, -139
|
||
};
|
||
|
||
/* YYPGOTO[NTERM-NUM]. */
|
||
static const short int yypgoto[] =
|
||
{
|
||
-139, -139, -139, 328, -17, -139, -139, -139, -139, -139,
|
||
-9, -139, -139, -139, -139, 288, -139, -139, -138, -139,
|
||
183, 48, -139, -139, 169, -57, -78, -139, -55, -139,
|
||
-139, -139, -139, -139, -139, -139, -139, -139, -139, -139,
|
||
-139, -139, 139, -139, 217, -139, 257, -139, -139, 311,
|
||
-139, 251, -139, -139
|
||
};
|
||
|
||
/* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
|
||
positive, shift that token. If negative, reduce the rule which
|
||
number is the opposite. If zero, do what YYDEFACT says.
|
||
If YYTABLE_NINF, syntax error. */
|
||
#define YYTABLE_NINF -119
|
||
static const short int yytable[] =
|
||
{
|
||
25, 91, 123, 159, 22, 101, 29, 160, 140, 67,
|
||
30, 12, 31, 109, 154, 23, 60, 28, 155, 13,
|
||
24, 38, 119, 48, 34, 39, 61, 120, 40, 19,
|
||
35, 102, 68, 36, 134, 144, 145, 41, 23, 91,
|
||
48, 149, 141, 24, 150, 162, 20, 219, 72, -117,
|
||
42, 43, 73, 223, 156, 164, 74, 105, 44, 45,
|
||
46, 47, 75, 76, 77, 20, 78, 103, 14, 79,
|
||
80, 81, 82, 83, 184, 17, 84, 85, -117, -117,
|
||
-117, 26, 18, 241, 242, 87, 175, 162, 23, 238,
|
||
72, -116, 157, 24, 73, 209, 210, 158, 74, 212,
|
||
213, 175, 215, 217, 75, 76, 77, 173, 78, 192,
|
||
174, 79, 80, 81, 82, 83, 176, -59, 84, 85,
|
||
-116, -116, -116, 28, 116, 216, 118, 87, 1, 32,
|
||
120, 176, 220, 129, 56, 2, 3, 69, 135, 136,
|
||
137, 70, 180, 4, 40, 177, 181, 151, 178, 232,
|
||
57, 233, 195, 41, 58, 196, 249, 250, 251, 252,
|
||
131, 59, 132, 28, 164, 133, 42, 43, 164, 246,
|
||
62, 63, 196, 245, 44, 45, 46, 47, 66, 96,
|
||
-2, 15, 97, -14, 98, 99, 164, 164, 1, 255,
|
||
256, 257, 135, 136, 137, 2, 3, 100, 112, 114,
|
||
117, 162, 261, 4, 72, -118, 120, 125, 73, 265,
|
||
126, 127, 74, 128, 130, 165, 148, 151, 75, 76,
|
||
77, 253, 78, 152, 168, 79, 80, 81, 82, 83,
|
||
153, 166, 84, 85, -118, -118, -118, 169, 179, 162,
|
||
182, 87, 72, 163, 185, 187, 73, 189, 191, 198,
|
||
74, 190, 194, 199, 200, 201, 75, 76, 77, 203,
|
||
78, 206, 141, 79, 80, 81, 82, 83, 207, 162,
|
||
84, 85, 72, 240, 208, 211, 73, 214, 221, 87,
|
||
74, 222, 218, 228, 224, 226, 75, 76, 77, 229,
|
||
78, 227, 231, 79, 80, 81, 82, 83, 72, 146,
|
||
84, 85, 73, 234, 235, 236, 74, 239, 243, 87,
|
||
237, 244, 75, 76, 77, 247, 78, 248, 258, 79,
|
||
80, 81, 82, 83, 72, 259, 84, 85, 73, 260,
|
||
263, 86, 74, 264, 16, 87, 205, 71, 75, 76,
|
||
77, 202, 78, 230, 0, 79, 80, 81, 82, 83,
|
||
72, 147, 84, 85, 73, 193, 65, 86, 74, 161,
|
||
0, 87, 0, 0, 75, 76, 77, 0, 78, 0,
|
||
0, 79, 80, 81, 82, 83, 0, 0, 84, 85,
|
||
0, 0, 0, 0, 0, 0, 0, 87
|
||
};
|
||
|
||
static const short int yycheck[] =
|
||
{
|
||
17, 56, 80, 1, 13, 62, 1, 5, 7, 1,
|
||
5, 41, 21, 68, 1, 36, 31, 9, 5, 4,
|
||
41, 1, 36, 32, 1, 5, 41, 41, 8, 5,
|
||
7, 5, 24, 10, 89, 8, 9, 17, 36, 94,
|
||
49, 98, 41, 41, 99, 1, 41, 185, 4, 5,
|
||
30, 31, 8, 191, 41, 110, 12, 5, 38, 39,
|
||
40, 41, 18, 19, 20, 41, 22, 41, 0, 25,
|
||
26, 27, 28, 29, 129, 3, 32, 33, 34, 35,
|
||
36, 41, 6, 221, 222, 41, 11, 1, 36, 14,
|
||
4, 5, 8, 41, 8, 173, 174, 13, 12, 177,
|
||
178, 11, 180, 181, 18, 19, 20, 10, 22, 5,
|
||
13, 25, 26, 27, 28, 29, 41, 11, 32, 33,
|
||
34, 35, 36, 9, 76, 36, 78, 41, 8, 4,
|
||
41, 41, 187, 85, 4, 15, 16, 1, 34, 35,
|
||
36, 5, 10, 23, 8, 10, 14, 41, 13, 206,
|
||
41, 208, 7, 17, 41, 10, 234, 235, 236, 237,
|
||
6, 24, 8, 9, 219, 11, 30, 31, 223, 7,
|
||
6, 4, 10, 228, 38, 39, 40, 41, 4, 8,
|
||
0, 1, 41, 3, 6, 24, 241, 242, 8, 244,
|
||
247, 248, 34, 35, 36, 15, 16, 41, 41, 6,
|
||
6, 1, 259, 23, 4, 5, 41, 8, 8, 264,
|
||
8, 8, 12, 6, 41, 6, 8, 41, 18, 19,
|
||
20, 238, 22, 7, 4, 25, 26, 27, 28, 29,
|
||
8, 8, 32, 33, 34, 35, 36, 41, 8, 1,
|
||
8, 41, 4, 5, 4, 21, 8, 41, 11, 7,
|
||
12, 41, 41, 41, 41, 8, 18, 19, 20, 7,
|
||
22, 13, 41, 25, 26, 27, 28, 29, 7, 1,
|
||
32, 33, 4, 5, 11, 41, 8, 41, 11, 41,
|
||
12, 11, 41, 24, 41, 41, 18, 19, 20, 8,
|
||
22, 41, 7, 25, 26, 27, 28, 29, 4, 5,
|
||
32, 33, 8, 10, 13, 10, 12, 8, 8, 41,
|
||
13, 24, 18, 19, 20, 13, 22, 11, 41, 25,
|
||
26, 27, 28, 29, 4, 13, 32, 33, 8, 8,
|
||
41, 37, 12, 7, 6, 41, 167, 49, 18, 19,
|
||
20, 158, 22, 204, -1, 25, 26, 27, 28, 29,
|
||
4, 94, 32, 33, 8, 138, 45, 37, 12, 108,
|
||
-1, 41, -1, -1, 18, 19, 20, -1, 22, -1,
|
||
-1, 25, 26, 27, 28, 29, -1, -1, 32, 33,
|
||
-1, -1, -1, -1, -1, -1, -1, 41
|
||
};
|
||
|
||
/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
|
||
symbol of state STATE-NUM. */
|
||
static const unsigned char yystos[] =
|
||
{
|
||
0, 8, 15, 16, 23, 43, 44, 45, 47, 48,
|
||
49, 50, 41, 4, 0, 1, 45, 3, 6, 5,
|
||
41, 51, 52, 36, 41, 46, 41, 54, 9, 1,
|
||
5, 52, 4, 55, 1, 7, 10, 53, 1, 5,
|
||
8, 17, 30, 31, 38, 39, 40, 41, 52, 56,
|
||
57, 58, 59, 89, 90, 95, 4, 41, 41, 24,
|
||
31, 41, 6, 4, 91, 91, 4, 1, 24, 1,
|
||
5, 57, 4, 8, 12, 18, 19, 20, 22, 25,
|
||
26, 27, 28, 29, 32, 33, 37, 41, 52, 65,
|
||
69, 70, 80, 82, 87, 88, 8, 41, 6, 24,
|
||
41, 67, 5, 41, 92, 5, 46, 93, 94, 70,
|
||
60, 70, 41, 78, 6, 63, 63, 6, 63, 36,
|
||
41, 68, 76, 68, 77, 8, 8, 8, 6, 63,
|
||
41, 6, 8, 11, 70, 34, 35, 36, 85, 86,
|
||
7, 41, 66, 84, 8, 9, 5, 88, 8, 67,
|
||
70, 41, 7, 8, 1, 5, 41, 8, 13, 1,
|
||
5, 93, 1, 5, 70, 6, 8, 64, 4, 41,
|
||
61, 62, 67, 10, 13, 11, 41, 10, 13, 8,
|
||
10, 14, 8, 71, 70, 4, 81, 21, 75, 41,
|
||
41, 11, 5, 86, 41, 7, 10, 74, 7, 41,
|
||
41, 8, 62, 7, 79, 66, 13, 7, 11, 68,
|
||
68, 41, 68, 68, 41, 68, 36, 68, 41, 60,
|
||
70, 11, 11, 60, 41, 83, 41, 41, 24, 8,
|
||
84, 7, 67, 67, 10, 13, 10, 13, 14, 8,
|
||
5, 60, 60, 8, 24, 70, 7, 13, 11, 68,
|
||
68, 68, 68, 46, 72, 70, 67, 67, 41, 13,
|
||
8, 67, 73, 41, 7, 70
|
||
};
|
||
|
||
#define yyerrok (yyerrstatus = 0)
|
||
#define yyclearin (yychar = YYEMPTY)
|
||
#define YYEMPTY (-2)
|
||
#define YYEOF 0
|
||
|
||
#define YYACCEPT goto yyacceptlab
|
||
#define YYABORT goto yyabortlab
|
||
#define YYERROR goto yyerrorlab
|
||
|
||
|
||
/* Like YYERROR except do call yyerror. This remains here temporarily
|
||
to ease the transition to the new meaning of YYERROR, for GCC.
|
||
Once GCC version 2 has supplanted version 1, this can go. */
|
||
|
||
#define YYFAIL goto yyerrlab
|
||
|
||
#define YYRECOVERING() (!!yyerrstatus)
|
||
|
||
#define YYBACKUP(Token, Value) \
|
||
do \
|
||
if (yychar == YYEMPTY && yylen == 1) \
|
||
{ \
|
||
yychar = (Token); \
|
||
yylval = (Value); \
|
||
yytoken = YYTRANSLATE (yychar); \
|
||
YYPOPSTACK; \
|
||
goto yybackup; \
|
||
} \
|
||
else \
|
||
{ \
|
||
yyerror (&yylloc, parseio, YY_("syntax error: cannot back up")); \
|
||
YYERROR; \
|
||
} \
|
||
while (0)
|
||
|
||
|
||
#define YYTERROR 1
|
||
#define YYERRCODE 256
|
||
|
||
|
||
/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
|
||
If N is 0, then set CURRENT to the empty location which ends
|
||
the previous symbol: RHS[0] (always defined). */
|
||
|
||
#define YYRHSLOC(Rhs, K) ((Rhs)[K])
|
||
#ifndef YYLLOC_DEFAULT
|
||
# define YYLLOC_DEFAULT(Current, Rhs, N) \
|
||
do \
|
||
if (N) \
|
||
{ \
|
||
(Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
|
||
(Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
|
||
(Current).last_line = YYRHSLOC (Rhs, N).last_line; \
|
||
(Current).last_column = YYRHSLOC (Rhs, N).last_column; \
|
||
} \
|
||
else \
|
||
{ \
|
||
(Current).first_line = (Current).last_line = \
|
||
YYRHSLOC (Rhs, 0).last_line; \
|
||
(Current).first_column = (Current).last_column = \
|
||
YYRHSLOC (Rhs, 0).last_column; \
|
||
} \
|
||
while (0)
|
||
#endif
|
||
|
||
|
||
/* YY_LOCATION_PRINT -- Print the location on the stream.
|
||
This macro was not mandated originally: define only if we know
|
||
we won't break user code: when these are the locations we know. */
|
||
|
||
#ifndef YY_LOCATION_PRINT
|
||
# if YYLTYPE_IS_TRIVIAL
|
||
# define YY_LOCATION_PRINT(File, Loc) \
|
||
fprintf (File, "%d.%d-%d.%d", \
|
||
(Loc).first_line, (Loc).first_column, \
|
||
(Loc).last_line, (Loc).last_column)
|
||
# else
|
||
# define YY_LOCATION_PRINT(File, Loc) ((void) 0)
|
||
# endif
|
||
#endif
|
||
|
||
|
||
/* YYLEX -- calling `yylex' with the right arguments. */
|
||
|
||
#ifdef YYLEX_PARAM
|
||
# define YYLEX yylex (&yylval, &yylloc, YYLEX_PARAM)
|
||
#else
|
||
# define YYLEX yylex (&yylval, &yylloc)
|
||
#endif
|
||
|
||
/* Enable debugging if requested. */
|
||
#if YYDEBUG
|
||
|
||
# ifndef YYFPRINTF
|
||
# include <stdio.h> /* INFRINGES ON USER NAME SPACE */
|
||
# define YYFPRINTF fprintf
|
||
# endif
|
||
|
||
# define YYDPRINTF(Args) \
|
||
do { \
|
||
if (yydebug) \
|
||
YYFPRINTF Args; \
|
||
} while (0)
|
||
|
||
# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
|
||
do { \
|
||
if (yydebug) \
|
||
{ \
|
||
YYFPRINTF (stderr, "%s ", Title); \
|
||
yysymprint (stderr, \
|
||
Type, Value, Location); \
|
||
YYFPRINTF (stderr, "\n"); \
|
||
} \
|
||
} while (0)
|
||
|
||
/*------------------------------------------------------------------.
|
||
| yy_stack_print -- Print the state stack from its BOTTOM up to its |
|
||
| TOP (included). |
|
||
`------------------------------------------------------------------*/
|
||
|
||
#if defined (__STDC__) || defined (__cplusplus)
|
||
static void
|
||
yy_stack_print (short int *bottom, short int *top)
|
||
#else
|
||
static void
|
||
yy_stack_print (bottom, top)
|
||
short int *bottom;
|
||
short int *top;
|
||
#endif
|
||
{
|
||
YYFPRINTF (stderr, "Stack now");
|
||
for (/* Nothing. */; bottom <= top; ++bottom)
|
||
YYFPRINTF (stderr, " %d", *bottom);
|
||
YYFPRINTF (stderr, "\n");
|
||
}
|
||
|
||
# define YY_STACK_PRINT(Bottom, Top) \
|
||
do { \
|
||
if (yydebug) \
|
||
yy_stack_print ((Bottom), (Top)); \
|
||
} while (0)
|
||
|
||
|
||
/*------------------------------------------------.
|
||
| Report that the YYRULE is going to be reduced. |
|
||
`------------------------------------------------*/
|
||
|
||
#if defined (__STDC__) || defined (__cplusplus)
|
||
static void
|
||
yy_reduce_print (int yyrule)
|
||
#else
|
||
static void
|
||
yy_reduce_print (yyrule)
|
||
int yyrule;
|
||
#endif
|
||
{
|
||
int yyi;
|
||
unsigned long int yylno = yyrline[yyrule];
|
||
YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu), ",
|
||
yyrule - 1, yylno);
|
||
/* Print the symbols being reduced, and their result. */
|
||
for (yyi = yyprhs[yyrule]; 0 <= yyrhs[yyi]; yyi++)
|
||
YYFPRINTF (stderr, "%s ", yytname[yyrhs[yyi]]);
|
||
YYFPRINTF (stderr, "-> %s\n", yytname[yyr1[yyrule]]);
|
||
}
|
||
|
||
# define YY_REDUCE_PRINT(Rule) \
|
||
do { \
|
||
if (yydebug) \
|
||
yy_reduce_print (Rule); \
|
||
} while (0)
|
||
|
||
/* Nonzero means print parse trace. It is left uninitialized so that
|
||
multiple parsers can coexist. */
|
||
int yydebug;
|
||
#else /* !YYDEBUG */
|
||
# define YYDPRINTF(Args)
|
||
# define YY_SYMBOL_PRINT(Title, Type, Value, Location)
|
||
# define YY_STACK_PRINT(Bottom, Top)
|
||
# define YY_REDUCE_PRINT(Rule)
|
||
#endif /* !YYDEBUG */
|
||
|
||
|
||
/* YYINITDEPTH -- initial size of the parser's stacks. */
|
||
#ifndef YYINITDEPTH
|
||
# define YYINITDEPTH 200
|
||
#endif
|
||
|
||
/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
|
||
if the built-in stack extension method is used).
|
||
|
||
Do not make this value too large; the results are undefined if
|
||
YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
|
||
evaluated with infinite-precision integer arithmetic. */
|
||
|
||
#ifndef YYMAXDEPTH
|
||
# define YYMAXDEPTH 10000
|
||
#endif
|
||
|
||
|
||
|
||
#if YYERROR_VERBOSE
|
||
|
||
# ifndef yystrlen
|
||
# if defined (__GLIBC__) && defined (_STRING_H)
|
||
# define yystrlen strlen
|
||
# else
|
||
/* Return the length of YYSTR. */
|
||
static YYSIZE_T
|
||
# if defined (__STDC__) || defined (__cplusplus)
|
||
yystrlen (const char *yystr)
|
||
# else
|
||
yystrlen (yystr)
|
||
const char *yystr;
|
||
# endif
|
||
{
|
||
const char *yys = yystr;
|
||
|
||
while (*yys++ != '\0')
|
||
continue;
|
||
|
||
return yys - yystr - 1;
|
||
}
|
||
# endif
|
||
# endif
|
||
|
||
# ifndef yystpcpy
|
||
# if defined (__GLIBC__) && defined (_STRING_H) && defined (_GNU_SOURCE)
|
||
# define yystpcpy stpcpy
|
||
# else
|
||
/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
|
||
YYDEST. */
|
||
static char *
|
||
# if defined (__STDC__) || defined (__cplusplus)
|
||
yystpcpy (char *yydest, const char *yysrc)
|
||
# else
|
||
yystpcpy (yydest, yysrc)
|
||
char *yydest;
|
||
const char *yysrc;
|
||
# endif
|
||
{
|
||
char *yyd = yydest;
|
||
const char *yys = yysrc;
|
||
|
||
while ((*yyd++ = *yys++) != '\0')
|
||
continue;
|
||
|
||
return yyd - 1;
|
||
}
|
||
# endif
|
||
# endif
|
||
|
||
# ifndef yytnamerr
|
||
/* Copy to YYRES the contents of YYSTR after stripping away unnecessary
|
||
quotes and backslashes, so that it's suitable for yyerror. The
|
||
heuristic is that double-quoting is unnecessary unless the string
|
||
contains an apostrophe, a comma, or backslash (other than
|
||
backslash-backslash). YYSTR is taken from yytname. If YYRES is
|
||
null, do not copy; instead, return the length of what the result
|
||
would have been. */
|
||
static YYSIZE_T
|
||
yytnamerr (char *yyres, const char *yystr)
|
||
{
|
||
if (*yystr == '"')
|
||
{
|
||
size_t yyn = 0;
|
||
char const *yyp = yystr;
|
||
|
||
for (;;)
|
||
switch (*++yyp)
|
||
{
|
||
case '\'':
|
||
case ',':
|
||
goto do_not_strip_quotes;
|
||
|
||
case '\\':
|
||
if (*++yyp != '\\')
|
||
goto do_not_strip_quotes;
|
||
/* Fall through. */
|
||
default:
|
||
if (yyres)
|
||
yyres[yyn] = *yyp;
|
||
yyn++;
|
||
break;
|
||
|
||
case '"':
|
||
if (yyres)
|
||
yyres[yyn] = '\0';
|
||
return yyn;
|
||
}
|
||
do_not_strip_quotes: ;
|
||
}
|
||
|
||
if (! yyres)
|
||
return yystrlen (yystr);
|
||
|
||
return yystpcpy (yyres, yystr) - yyres;
|
||
}
|
||
# endif
|
||
|
||
#endif /* YYERROR_VERBOSE */
|
||
|
||
|
||
|
||
#if YYDEBUG
|
||
/*--------------------------------.
|
||
| Print this symbol on YYOUTPUT. |
|
||
`--------------------------------*/
|
||
|
||
#if defined (__STDC__) || defined (__cplusplus)
|
||
static void
|
||
yysymprint (FILE *yyoutput, int yytype, YYSTYPE *yyvaluep, YYLTYPE *yylocationp)
|
||
#else
|
||
static void
|
||
yysymprint (yyoutput, yytype, yyvaluep, yylocationp)
|
||
FILE *yyoutput;
|
||
int yytype;
|
||
YYSTYPE *yyvaluep;
|
||
YYLTYPE *yylocationp;
|
||
#endif
|
||
{
|
||
/* Pacify ``unused variable'' warnings. */
|
||
(void) yyvaluep;
|
||
(void) yylocationp;
|
||
|
||
if (yytype < YYNTOKENS)
|
||
YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
|
||
else
|
||
YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
|
||
|
||
YY_LOCATION_PRINT (yyoutput, *yylocationp);
|
||
YYFPRINTF (yyoutput, ": ");
|
||
|
||
# ifdef YYPRINT
|
||
if (yytype < YYNTOKENS)
|
||
YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
|
||
# endif
|
||
switch (yytype)
|
||
{
|
||
default:
|
||
break;
|
||
}
|
||
YYFPRINTF (yyoutput, ")");
|
||
}
|
||
|
||
#endif /* ! YYDEBUG */
|
||
/*-----------------------------------------------.
|
||
| Release the memory associated to this symbol. |
|
||
`-----------------------------------------------*/
|
||
|
||
#if defined (__STDC__) || defined (__cplusplus)
|
||
static void
|
||
yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep, YYLTYPE *yylocationp)
|
||
#else
|
||
static void
|
||
yydestruct (yymsg, yytype, yyvaluep, yylocationp)
|
||
const char *yymsg;
|
||
int yytype;
|
||
YYSTYPE *yyvaluep;
|
||
YYLTYPE *yylocationp;
|
||
#endif
|
||
{
|
||
/* Pacify ``unused variable'' warnings. */
|
||
(void) yyvaluep;
|
||
(void) yylocationp;
|
||
|
||
if (!yymsg)
|
||
yymsg = "Deleting";
|
||
YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
|
||
|
||
switch (yytype)
|
||
{
|
||
case 41: /* "word" */
|
||
#line 173 "ael.y"
|
||
{ free((yyvaluep->str));};
|
||
#line 1239 "ael.tab.c"
|
||
break;
|
||
case 44: /* "objects" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1247 "ael.tab.c"
|
||
break;
|
||
case 45: /* "object" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1255 "ael.tab.c"
|
||
break;
|
||
case 46: /* "context_name" */
|
||
#line 173 "ael.y"
|
||
{ free((yyvaluep->str));};
|
||
#line 1260 "ael.tab.c"
|
||
break;
|
||
case 47: /* "context" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1268 "ael.tab.c"
|
||
break;
|
||
case 49: /* "macro" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1276 "ael.tab.c"
|
||
break;
|
||
case 50: /* "globals" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1284 "ael.tab.c"
|
||
break;
|
||
case 51: /* "global_statements" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1292 "ael.tab.c"
|
||
break;
|
||
case 52: /* "assignment" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1300 "ael.tab.c"
|
||
break;
|
||
case 54: /* "arglist" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1308 "ael.tab.c"
|
||
break;
|
||
case 55: /* "elements_block" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1316 "ael.tab.c"
|
||
break;
|
||
case 56: /* "elements" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1324 "ael.tab.c"
|
||
break;
|
||
case 57: /* "element" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1332 "ael.tab.c"
|
||
break;
|
||
case 58: /* "ignorepat" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1340 "ael.tab.c"
|
||
break;
|
||
case 59: /* "extension" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1348 "ael.tab.c"
|
||
break;
|
||
case 60: /* "statements" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1356 "ael.tab.c"
|
||
break;
|
||
case 61: /* "timerange" */
|
||
#line 173 "ael.y"
|
||
{ free((yyvaluep->str));};
|
||
#line 1361 "ael.tab.c"
|
||
break;
|
||
case 62: /* "timespec" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1369 "ael.tab.c"
|
||
break;
|
||
case 63: /* "test_expr" */
|
||
#line 173 "ael.y"
|
||
{ free((yyvaluep->str));};
|
||
#line 1374 "ael.tab.c"
|
||
break;
|
||
case 65: /* "if_like_head" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1382 "ael.tab.c"
|
||
break;
|
||
case 66: /* "word_list" */
|
||
#line 173 "ael.y"
|
||
{ free((yyvaluep->str));};
|
||
#line 1387 "ael.tab.c"
|
||
break;
|
||
case 67: /* "word3_list" */
|
||
#line 173 "ael.y"
|
||
{ free((yyvaluep->str));};
|
||
#line 1392 "ael.tab.c"
|
||
break;
|
||
case 68: /* "goto_word" */
|
||
#line 173 "ael.y"
|
||
{ free((yyvaluep->str));};
|
||
#line 1397 "ael.tab.c"
|
||
break;
|
||
case 69: /* "switch_head" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1405 "ael.tab.c"
|
||
break;
|
||
case 70: /* "statement" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1413 "ael.tab.c"
|
||
break;
|
||
case 75: /* "opt_else" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1421 "ael.tab.c"
|
||
break;
|
||
case 76: /* "target" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1429 "ael.tab.c"
|
||
break;
|
||
case 77: /* "jumptarget" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1437 "ael.tab.c"
|
||
break;
|
||
case 78: /* "macro_call" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1445 "ael.tab.c"
|
||
break;
|
||
case 80: /* "application_call_head" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1453 "ael.tab.c"
|
||
break;
|
||
case 82: /* "application_call" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1461 "ael.tab.c"
|
||
break;
|
||
case 83: /* "opt_word" */
|
||
#line 173 "ael.y"
|
||
{ free((yyvaluep->str));};
|
||
#line 1466 "ael.tab.c"
|
||
break;
|
||
case 84: /* "eval_arglist" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1474 "ael.tab.c"
|
||
break;
|
||
case 85: /* "case_statements" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1482 "ael.tab.c"
|
||
break;
|
||
case 86: /* "case_statement" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1490 "ael.tab.c"
|
||
break;
|
||
case 87: /* "macro_statements" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1498 "ael.tab.c"
|
||
break;
|
||
case 88: /* "macro_statement" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1506 "ael.tab.c"
|
||
break;
|
||
case 89: /* "switches" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1514 "ael.tab.c"
|
||
break;
|
||
case 90: /* "eswitches" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1522 "ael.tab.c"
|
||
break;
|
||
case 91: /* "switchlist_block" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1530 "ael.tab.c"
|
||
break;
|
||
case 92: /* "switchlist" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1538 "ael.tab.c"
|
||
break;
|
||
case 93: /* "included_entry" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1546 "ael.tab.c"
|
||
break;
|
||
case 94: /* "includeslist" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1554 "ael.tab.c"
|
||
break;
|
||
case 95: /* "includes" */
|
||
#line 159 "ael.y"
|
||
{
|
||
destroy_pval((yyvaluep->pval));
|
||
prev_word=0;
|
||
};
|
||
#line 1562 "ael.tab.c"
|
||
break;
|
||
|
||
default:
|
||
break;
|
||
}
|
||
}
|
||
|
||
|
||
/* Prevent warnings from -Wmissing-prototypes. */
|
||
|
||
#ifdef YYPARSE_PARAM
|
||
# if defined (__STDC__) || defined (__cplusplus)
|
||
int yyparse (void *YYPARSE_PARAM);
|
||
# else
|
||
int yyparse ();
|
||
# endif
|
||
#else /* ! YYPARSE_PARAM */
|
||
#if defined (__STDC__) || defined (__cplusplus)
|
||
int yyparse (struct parse_io *parseio);
|
||
#else
|
||
int yyparse ();
|
||
#endif
|
||
#endif /* ! YYPARSE_PARAM */
|
||
|
||
|
||
|
||
|
||
|
||
|
||
/*----------.
|
||
| yyparse. |
|
||
`----------*/
|
||
|
||
#ifdef YYPARSE_PARAM
|
||
# if defined (__STDC__) || defined (__cplusplus)
|
||
int yyparse (void *YYPARSE_PARAM)
|
||
# else
|
||
int yyparse (YYPARSE_PARAM)
|
||
void *YYPARSE_PARAM;
|
||
# endif
|
||
#else /* ! YYPARSE_PARAM */
|
||
#if defined (__STDC__) || defined (__cplusplus)
|
||
int
|
||
yyparse (struct parse_io *parseio)
|
||
#else
|
||
int
|
||
yyparse (parseio)
|
||
struct parse_io *parseio;
|
||
#endif
|
||
#endif
|
||
{
|
||
/* The look-ahead symbol. */
|
||
int yychar;
|
||
|
||
/* The semantic value of the look-ahead symbol. */
|
||
YYSTYPE yylval;
|
||
|
||
/* Number of syntax errors so far. */
|
||
int yynerrs;
|
||
/* Location data for the look-ahead symbol. */
|
||
YYLTYPE yylloc;
|
||
|
||
int yystate;
|
||
int yyn;
|
||
int yyresult;
|
||
/* Number of tokens to shift before error messages enabled. */
|
||
int yyerrstatus;
|
||
/* Look-ahead token as an internal (translated) token number. */
|
||
int yytoken = 0;
|
||
|
||
/* Three stacks and their tools:
|
||
`yyss': related to states,
|
||
`yyvs': related to semantic values,
|
||
`yyls': related to locations.
|
||
|
||
Refer to the stacks thru separate pointers, to allow yyoverflow
|
||
to reallocate them elsewhere. */
|
||
|
||
/* The state stack. */
|
||
short int yyssa[YYINITDEPTH];
|
||
short int *yyss = yyssa;
|
||
short int *yyssp;
|
||
|
||
/* The semantic value stack. */
|
||
YYSTYPE yyvsa[YYINITDEPTH];
|
||
YYSTYPE *yyvs = yyvsa;
|
||
YYSTYPE *yyvsp;
|
||
|
||
/* The location stack. */
|
||
YYLTYPE yylsa[YYINITDEPTH];
|
||
YYLTYPE *yyls = yylsa;
|
||
YYLTYPE *yylsp;
|
||
/* The locations where the error started and ended. */
|
||
YYLTYPE yyerror_range[2];
|
||
|
||
#define YYPOPSTACK (yyvsp--, yyssp--, yylsp--)
|
||
|
||
YYSIZE_T yystacksize = YYINITDEPTH;
|
||
|
||
/* The variables used to return semantic value and location from the
|
||
action routines. */
|
||
YYSTYPE yyval;
|
||
YYLTYPE yyloc;
|
||
|
||
/* When reducing, the number of symbols on the RHS of the reduced
|
||
rule. */
|
||
int yylen;
|
||
|
||
YYDPRINTF ((stderr, "Starting parse\n"));
|
||
|
||
yystate = 0;
|
||
yyerrstatus = 0;
|
||
yynerrs = 0;
|
||
yychar = YYEMPTY; /* Cause a token to be read. */
|
||
|
||
/* Initialize stack pointers.
|
||
Waste one element of value and location stack
|
||
so that they stay on the same level as the state stack.
|
||
The wasted elements are never initialized. */
|
||
|
||
yyssp = yyss;
|
||
yyvsp = yyvs;
|
||
yylsp = yyls;
|
||
#if YYLTYPE_IS_TRIVIAL
|
||
/* Initialize the default location before parsing starts. */
|
||
yylloc.first_line = yylloc.last_line = 1;
|
||
yylloc.first_column = yylloc.last_column = 0;
|
||
#endif
|
||
|
||
goto yysetstate;
|
||
|
||
/*------------------------------------------------------------.
|
||
| yynewstate -- Push a new state, which is found in yystate. |
|
||
`------------------------------------------------------------*/
|
||
yynewstate:
|
||
/* In all cases, when you get here, the value and location stacks
|
||
have just been pushed. so pushing a state here evens the stacks.
|
||
*/
|
||
yyssp++;
|
||
|
||
yysetstate:
|
||
*yyssp = yystate;
|
||
|
||
if (yyss + yystacksize - 1 <= yyssp)
|
||
{
|
||
/* Get the current used size of the three stacks, in elements. */
|
||
YYSIZE_T yysize = yyssp - yyss + 1;
|
||
|
||
#ifdef yyoverflow
|
||
{
|
||
/* Give user a chance to reallocate the stack. Use copies of
|
||
these so that the &'s don't force the real ones into
|
||
memory. */
|
||
YYSTYPE *yyvs1 = yyvs;
|
||
short int *yyss1 = yyss;
|
||
YYLTYPE *yyls1 = yyls;
|
||
|
||
/* Each stack pointer address is followed by the size of the
|
||
data in use in that stack, in bytes. This used to be a
|
||
conditional around just the two extra args, but that might
|
||
be undefined if yyoverflow is a macro. */
|
||
yyoverflow (YY_("memory exhausted"),
|
||
&yyss1, yysize * sizeof (*yyssp),
|
||
&yyvs1, yysize * sizeof (*yyvsp),
|
||
&yyls1, yysize * sizeof (*yylsp),
|
||
&yystacksize);
|
||
yyls = yyls1;
|
||
yyss = yyss1;
|
||
yyvs = yyvs1;
|
||
}
|
||
#else /* no yyoverflow */
|
||
# ifndef YYSTACK_RELOCATE
|
||
goto yyexhaustedlab;
|
||
# else
|
||
/* Extend the stack our own way. */
|
||
if (YYMAXDEPTH <= yystacksize)
|
||
goto yyexhaustedlab;
|
||
yystacksize *= 2;
|
||
if (YYMAXDEPTH < yystacksize)
|
||
yystacksize = YYMAXDEPTH;
|
||
|
||
{
|
||
short int *yyss1 = yyss;
|
||
union yyalloc *yyptr =
|
||
(union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
|
||
if (! yyptr)
|
||
goto yyexhaustedlab;
|
||
YYSTACK_RELOCATE (yyss);
|
||
YYSTACK_RELOCATE (yyvs);
|
||
YYSTACK_RELOCATE (yyls);
|
||
# undef YYSTACK_RELOCATE
|
||
if (yyss1 != yyssa)
|
||
YYSTACK_FREE (yyss1);
|
||
}
|
||
# endif
|
||
#endif /* no yyoverflow */
|
||
|
||
yyssp = yyss + yysize - 1;
|
||
yyvsp = yyvs + yysize - 1;
|
||
yylsp = yyls + yysize - 1;
|
||
|
||
YYDPRINTF ((stderr, "Stack size increased to %lu\n",
|
||
(unsigned long int) yystacksize));
|
||
|
||
if (yyss + yystacksize - 1 <= yyssp)
|
||
YYABORT;
|
||
}
|
||
|
||
YYDPRINTF ((stderr, "Entering state %d\n", yystate));
|
||
|
||
goto yybackup;
|
||
|
||
/*-----------.
|
||
| yybackup. |
|
||
`-----------*/
|
||
yybackup:
|
||
|
||
/* Do appropriate processing given the current state. */
|
||
/* Read a look-ahead token if we need one and don't already have one. */
|
||
/* yyresume: */
|
||
|
||
/* First try to decide what to do without reference to look-ahead token. */
|
||
|
||
yyn = yypact[yystate];
|
||
if (yyn == YYPACT_NINF)
|
||
goto yydefault;
|
||
|
||
/* Not known => get a look-ahead token if don't already have one. */
|
||
|
||
/* YYCHAR is either YYEMPTY or YYEOF or a valid look-ahead symbol. */
|
||
if (yychar == YYEMPTY)
|
||
{
|
||
YYDPRINTF ((stderr, "Reading a token: "));
|
||
yychar = YYLEX;
|
||
}
|
||
|
||
if (yychar <= YYEOF)
|
||
{
|
||
yychar = yytoken = YYEOF;
|
||
YYDPRINTF ((stderr, "Now at end of input.\n"));
|
||
}
|
||
else
|
||
{
|
||
yytoken = YYTRANSLATE (yychar);
|
||
YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
|
||
}
|
||
|
||
/* If the proper action on seeing token YYTOKEN is to reduce or to
|
||
detect an error, take that action. */
|
||
yyn += yytoken;
|
||
if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
|
||
goto yydefault;
|
||
yyn = yytable[yyn];
|
||
if (yyn <= 0)
|
||
{
|
||
if (yyn == 0 || yyn == YYTABLE_NINF)
|
||
goto yyerrlab;
|
||
yyn = -yyn;
|
||
goto yyreduce;
|
||
}
|
||
|
||
if (yyn == YYFINAL)
|
||
YYACCEPT;
|
||
|
||
/* Shift the look-ahead token. */
|
||
YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
|
||
|
||
/* Discard the token being shifted unless it is eof. */
|
||
if (yychar != YYEOF)
|
||
yychar = YYEMPTY;
|
||
|
||
*++yyvsp = yylval;
|
||
*++yylsp = yylloc;
|
||
|
||
/* Count tokens shifted since error; after three, turn off error
|
||
status. */
|
||
if (yyerrstatus)
|
||
yyerrstatus--;
|
||
|
||
yystate = yyn;
|
||
goto yynewstate;
|
||
|
||
|
||
/*-----------------------------------------------------------.
|
||
| yydefault -- do the default action for the current state. |
|
||
`-----------------------------------------------------------*/
|
||
yydefault:
|
||
yyn = yydefact[yystate];
|
||
if (yyn == 0)
|
||
goto yyerrlab;
|
||
goto yyreduce;
|
||
|
||
|
||
/*-----------------------------.
|
||
| yyreduce -- Do a reduction. |
|
||
`-----------------------------*/
|
||
yyreduce:
|
||
/* yyn is the number of a rule to reduce with. */
|
||
yylen = yyr2[yyn];
|
||
|
||
/* If YYLEN is nonzero, implement the default value of the action:
|
||
`$$ = $1'.
|
||
|
||
Otherwise, the following line sets YYVAL to garbage.
|
||
This behavior is undocumented and Bison
|
||
users should not rely upon it. Assigning to YYVAL
|
||
unconditionally makes the parser a bit smaller, and it avoids a
|
||
GCC warning that YYVAL may be used uninitialized. */
|
||
yyval = yyvsp[1-yylen];
|
||
|
||
/* Default location. */
|
||
YYLLOC_DEFAULT (yyloc, yylsp - yylen, yylen);
|
||
YY_REDUCE_PRINT (yyn);
|
||
switch (yyn)
|
||
{
|
||
case 2:
|
||
#line 180 "ael.y"
|
||
{ (yyval.pval) = parseio->pval = (yyvsp[0].pval); ;}
|
||
break;
|
||
|
||
case 3:
|
||
#line 183 "ael.y"
|
||
{(yyval.pval)=(yyvsp[0].pval);;}
|
||
break;
|
||
|
||
case 4:
|
||
#line 184 "ael.y"
|
||
{ (yyval.pval) = linku1((yyvsp[-1].pval), (yyvsp[0].pval)); ;}
|
||
break;
|
||
|
||
case 5:
|
||
#line 185 "ael.y"
|
||
{(yyval.pval)=(yyvsp[-1].pval);;}
|
||
break;
|
||
|
||
case 6:
|
||
#line 188 "ael.y"
|
||
{(yyval.pval)=(yyvsp[0].pval);;}
|
||
break;
|
||
|
||
case 7:
|
||
#line 189 "ael.y"
|
||
{(yyval.pval)=(yyvsp[0].pval);;}
|
||
break;
|
||
|
||
case 8:
|
||
#line 190 "ael.y"
|
||
{(yyval.pval)=(yyvsp[0].pval);;}
|
||
break;
|
||
|
||
case 9:
|
||
#line 191 "ael.y"
|
||
{(yyval.pval)=0;/* allow older docs to be read */;}
|
||
break;
|
||
|
||
case 10:
|
||
#line 194 "ael.y"
|
||
{ (yyval.str) = (yyvsp[0].str); ;}
|
||
break;
|
||
|
||
case 11:
|
||
#line 195 "ael.y"
|
||
{ (yyval.str) = strdup("default"); ;}
|
||
break;
|
||
|
||
case 12:
|
||
#line 198 "ael.y"
|
||
{
|
||
(yyval.pval) = npval2(PV_CONTEXT, &(yylsp[-3]), &(yylsp[0]));
|
||
(yyval.pval)->u1.str = (yyvsp[-1].str);
|
||
(yyval.pval)->u2.statements = (yyvsp[0].pval);
|
||
(yyval.pval)->u3.abstract = (yyvsp[-3].intval); ;}
|
||
break;
|
||
|
||
case 13:
|
||
#line 206 "ael.y"
|
||
{ (yyval.intval) = 1; ;}
|
||
break;
|
||
|
||
case 14:
|
||
#line 207 "ael.y"
|
||
{ (yyval.intval) = 0; ;}
|
||
break;
|
||
|
||
case 15:
|
||
#line 210 "ael.y"
|
||
{
|
||
(yyval.pval) = npval2(PV_MACRO, &(yylsp[-7]), &(yylsp[0]));
|
||
(yyval.pval)->u1.str = (yyvsp[-6].str); (yyval.pval)->u2.arglist = (yyvsp[-4].pval); (yyval.pval)->u3.macro_statements = (yyvsp[-1].pval); ;}
|
||
break;
|
||
|
||
case 16:
|
||
#line 215 "ael.y"
|
||
{
|
||
(yyval.pval) = npval2(PV_GLOBALS, &(yylsp[-3]), &(yylsp[0]));
|
||
(yyval.pval)->u1.statements = (yyvsp[-1].pval);;}
|
||
break;
|
||
|
||
case 17:
|
||
#line 218 "ael.y"
|
||
{ /* empty globals is OK */
|
||
(yyval.pval) = npval2(PV_GLOBALS, &(yylsp[-2]), &(yylsp[0])); ;}
|
||
break;
|
||
|
||
case 18:
|
||
#line 222 "ael.y"
|
||
{(yyval.pval)=(yyvsp[0].pval);;}
|
||
break;
|
||
|
||
case 19:
|
||
#line 223 "ael.y"
|
||
{(yyval.pval) = linku1((yyvsp[-1].pval), (yyvsp[0].pval)); ;}
|
||
break;
|
||
|
||
case 20:
|
||
#line 224 "ael.y"
|
||
{(yyval.pval)=(yyvsp[-1].pval);;}
|
||
break;
|
||
|
||
case 21:
|
||
#line 227 "ael.y"
|
||
{ reset_semicount(parseio->scanner); ;}
|
||
break;
|
||
|
||
case 22:
|
||
#line 227 "ael.y"
|
||
{
|
||
(yyval.pval) = npval2(PV_VARDEC, &(yylsp[-4]), &(yylsp[0]));
|
||
(yyval.pval)->u1.str = (yyvsp[-4].str);
|
||
(yyval.pval)->u2.val = (yyvsp[-1].str); ;}
|
||
break;
|
||
|
||
case 23:
|
||
#line 233 "ael.y"
|
||
{ (yyval.pval) = NULL; ;}
|
||
break;
|
||
|
||
case 24:
|
||
#line 234 "ael.y"
|
||
{ (yyval.pval) = nword((yyvsp[0].str), &(yylsp[0])); ;}
|
||
break;
|
||
|
||
case 25:
|
||
#line 235 "ael.y"
|
||
{ (yyval.pval) = linku1((yyvsp[-2].pval), nword((yyvsp[0].str), &(yylsp[0]))); ;}
|
||
break;
|
||
|
||
case 26:
|
||
#line 236 "ael.y"
|
||
{(yyval.pval)=(yyvsp[-1].pval);;}
|
||
break;
|
||
|
||
case 27:
|
||
#line 239 "ael.y"
|
||
{ (yyval.pval) = NULL; ;}
|
||
break;
|
||
|
||
case 28:
|
||
#line 240 "ael.y"
|
||
{ (yyval.pval) = (yyvsp[-1].pval); ;}
|
||
break;
|
||
|
||
case 29:
|
||
#line 243 "ael.y"
|
||
{ (yyval.pval)=(yyvsp[0].pval);;}
|
||
break;
|
||
|
||
case 30:
|
||
#line 244 "ael.y"
|
||
{(yyval.pval)=0;;}
|
||
break;
|
||
|
||
case 31:
|
||
#line 245 "ael.y"
|
||
{ (yyval.pval) = linku1((yyvsp[-1].pval), (yyvsp[0].pval)); ;}
|
||
break;
|
||
|
||
case 32:
|
||
#line 246 "ael.y"
|
||
{ (yyval.pval)=(yyvsp[-1].pval);;}
|
||
break;
|
||
|
||
case 33:
|
||
#line 249 "ael.y"
|
||
{(yyval.pval)=(yyvsp[0].pval);;}
|
||
break;
|
||
|
||
case 34:
|
||
#line 250 "ael.y"
|
||
{(yyval.pval)=(yyvsp[0].pval);;}
|
||
break;
|
||
|
||
case 35:
|
||
#line 251 "ael.y"
|
||
{(yyval.pval)=(yyvsp[0].pval);;}
|
||
break;
|
||
|
||
case 36:
|
||
#line 252 "ael.y"
|
||
{(yyval.pval)=(yyvsp[0].pval);;}
|
||
break;
|
||
|
||
case 37:
|
||
#line 253 "ael.y"
|
||
{(yyval.pval)=(yyvsp[0].pval);;}
|
||
break;
|
||
|
||
case 38:
|
||
#line 254 "ael.y"
|
||
{(yyval.pval)=(yyvsp[0].pval);;}
|
||
break;
|
||
|
||
case 39:
|
||
#line 255 "ael.y"
|
||
{free((yyvsp[-1].str)); (yyval.pval)=0;;}
|
||
break;
|
||
|
||
case 40:
|
||
#line 256 "ael.y"
|
||
{(yyval.pval)=0;/* allow older docs to be read */;}
|
||
break;
|
||
|
||
case 41:
|
||
#line 259 "ael.y"
|
||
{
|
||
(yyval.pval) = npval2(PV_IGNOREPAT, &(yylsp[-3]), &(yylsp[0]));
|
||
(yyval.pval)->u1.str = (yyvsp[-1].str);;}
|
||
break;
|
||
|
||
case 42:
|
||
#line 264 "ael.y"
|
||
{
|
||
(yyval.pval) = npval2(PV_EXTENSION, &(yylsp[-2]), &(yylsp[0]));
|
||
(yyval.pval)->u1.str = (yyvsp[-2].str);
|
||
(yyval.pval)->u2.statements = (yyvsp[0].pval); ;}
|
||
break;
|
||
|
||
case 43:
|
||
#line 268 "ael.y"
|
||
{
|
||
(yyval.pval) = npval2(PV_EXTENSION, &(yylsp[-3]), &(yylsp[0]));
|
||
(yyval.pval)->u1.str = (yyvsp[-2].str);
|
||
(yyval.pval)->u2.statements = (yyvsp[0].pval);
|
||
(yyval.pval)->u4.regexten=1;;}
|
||
break;
|
||
|
||
case 44:
|
||
#line 273 "ael.y"
|
||
{
|
||
(yyval.pval) = npval2(PV_EXTENSION, &(yylsp[-6]), &(yylsp[0]));
|
||
(yyval.pval)->u1.str = (yyvsp[-2].str);
|
||
(yyval.pval)->u2.statements = (yyvsp[0].pval);
|
||
(yyval.pval)->u3.hints = (yyvsp[-4].str);;}
|
||
break;
|
||
|
||
case 45:
|
||
#line 278 "ael.y"
|
||
{
|
||
(yyval.pval) = npval2(PV_EXTENSION, &(yylsp[-7]), &(yylsp[0]));
|
||
(yyval.pval)->u1.str = (yyvsp[-2].str);
|
||
(yyval.pval)->u2.statements = (yyvsp[0].pval);
|
||
(yyval.pval)->u4.regexten=1;
|
||
(yyval.pval)->u3.hints = (yyvsp[-4].str);;}
|
||
break;
|
||
|
||
case 46:
|
||
#line 287 "ael.y"
|
||
{(yyval.pval)=(yyvsp[0].pval);;}
|
||
break;
|
||
|
||
case 47:
|
||
#line 288 "ael.y"
|
||
{ (yyval.pval) = linku1((yyvsp[-1].pval), (yyvsp[0].pval)); ;}
|
||
break;
|
||
|
||
case 48:
|
||
#line 289 "ael.y"
|
||
{(yyval.pval)=(yyvsp[-1].pval);;}
|
||
break;
|
||
|
||
case 49:
|
||
#line 295 "ael.y"
|
||
{
|
||
asprintf(&(yyval.str), "%s:%s:%s", (yyvsp[-4].str), (yyvsp[-2].str), (yyvsp[0].str));
|
||
free((yyvsp[-4].str));
|
||
free((yyvsp[-2].str));
|
||
free((yyvsp[0].str)); ;}
|
||
break;
|
||
|
||
case 50:
|
||
#line 300 "ael.y"
|
||
{ (yyval.str) = (yyvsp[0].str); ;}
|
||
break;
|
||
|
||
case 51:
|
||
#line 304 "ael.y"
|
||
{
|
||
(yyval.pval) = nword((yyvsp[-6].str), &(yylsp[-6]));
|
||
(yyval.pval)->next = nword((yyvsp[-4].str), &(yylsp[-4]));
|
||
(yyval.pval)->next->next = nword((yyvsp[-2].str), &(yylsp[-2]));
|
||
(yyval.pval)->next->next->next = nword((yyvsp[0].str), &(yylsp[0])); ;}
|
||
break;
|
||
|
||
case 52:
|
||
#line 312 "ael.y"
|
||
{ reset_parencount(parseio->scanner); ;}
|
||
break;
|
||
|
||
case 53:
|
||
#line 312 "ael.y"
|
||
{
|
||
(yyval.str) = (yyvsp[-1].str); ;}
|
||
break;
|
||
|
||
case 54:
|
||
#line 317 "ael.y"
|
||
{
|
||
(yyval.pval)= npval2(PV_IF, &(yylsp[-1]), &(yylsp[0]));
|
||
(yyval.pval)->u1.str = (yyvsp[0].str); ;}
|
||
break;
|
||
|
||
case 55:
|
||
#line 320 "ael.y"
|
||
{
|
||
(yyval.pval) = npval2(PV_RANDOM, &(yylsp[-1]), &(yylsp[0]));
|
||
(yyval.pval)->u1.str=(yyvsp[0].str);;}
|
||
break;
|
||
|
||
case 56:
|
||
#line 323 "ael.y"
|
||
{
|
||
(yyval.pval) = npval2(PV_IFTIME, &(yylsp[-3]), &(yylsp[0]));
|
||
(yyval.pval)->u1.list = (yyvsp[-1].pval);
|
||
prev_word = 0; ;}
|
||
break;
|
||
|
||
case 57:
|
||
#line 334 "ael.y"
|
||
{ (yyval.str) = (yyvsp[0].str);;}
|
||
break;
|
||
|
||
case 58:
|
||
#line 335 "ael.y"
|
||
{
|
||
asprintf(&((yyval.str)), "%s%s", (yyvsp[-1].str), (yyvsp[0].str));
|
||
free((yyvsp[-1].str));
|
||
free((yyvsp[0].str));
|
||
prev_word = (yyval.str);;}
|
||
break;
|
||
|
||
case 59:
|
||
#line 342 "ael.y"
|
||
{ (yyval.str) = (yyvsp[0].str);;}
|
||
break;
|
||
|
||
case 60:
|
||
#line 343 "ael.y"
|
||
{
|
||
asprintf(&((yyval.str)), "%s%s", (yyvsp[-1].str), (yyvsp[0].str));
|
||
free((yyvsp[-1].str));
|
||
free((yyvsp[0].str));
|
||
prev_word = (yyval.str);;}
|
||
break;
|
||
|
||
case 61:
|
||
#line 348 "ael.y"
|
||
{
|
||
asprintf(&((yyval.str)), "%s%s%s", (yyvsp[-2].str), (yyvsp[-1].str), (yyvsp[0].str));
|
||
free((yyvsp[-2].str));
|
||
free((yyvsp[-1].str));
|
||
free((yyvsp[0].str));
|
||
prev_word=(yyval.str);;}
|
||
break;
|
||
|
||
case 62:
|
||
#line 356 "ael.y"
|
||
{ (yyval.str) = (yyvsp[0].str);;}
|
||
break;
|
||
|
||
case 63:
|
||
#line 357 "ael.y"
|
||
{
|
||
asprintf(&((yyval.str)), "%s%s", (yyvsp[-1].str), (yyvsp[0].str));
|
||
free((yyvsp[-1].str));
|
||
free((yyvsp[0].str));;}
|
||
break;
|
||
|
||
case 64:
|
||
#line 361 "ael.y"
|
||
{
|
||
asprintf(&((yyval.str)), "%s:%s", (yyvsp[-2].str), (yyvsp[0].str));
|
||
free((yyvsp[-2].str));
|
||
free((yyvsp[0].str));;}
|
||
break;
|
||
|
||
case 65:
|
||
#line 367 "ael.y"
|
||
{
|
||
(yyval.pval) = npval2(PV_SWITCH, &(yylsp[-2]), &(yylsp[0]));
|
||
(yyval.pval)->u1.str = (yyvsp[-1].str); ;}
|
||
break;
|
||
|
||
case 66:
|
||
#line 375 "ael.y"
|
||
{
|
||
(yyval.pval) = npval2(PV_STATEMENTBLOCK, &(yylsp[-2]), &(yylsp[0]));
|
||
(yyval.pval)->u1.list = (yyvsp[-1].pval); ;}
|
||
break;
|
||
|
||
case 67:
|
||
#line 378 "ael.y"
|
||
{ (yyval.pval) = (yyvsp[0].pval); ;}
|
||
break;
|
||
|
||
case 68:
|
||
#line 379 "ael.y"
|
||
{
|
||
(yyval.pval) = npval2(PV_GOTO, &(yylsp[-2]), &(yylsp[0]));
|
||
(yyval.pval)->u1.list = (yyvsp[-1].pval);;}
|
||
break;
|
||
|
||
case 69:
|
||
#line 382 "ael.y"
|
||
{
|
||
(yyval.pval) = npval2(PV_GOTO, &(yylsp[-2]), &(yylsp[0]));
|
||
(yyval.pval)->u1.list = (yyvsp[-1].pval);;}
|
||
break;
|
||
|
||
case 70:
|
||
#line 385 "ael.y"
|
||
{
|
||
(yyval.pval) = npval2(PV_LABEL, &(yylsp[-1]), &(yylsp[0]));
|
||
(yyval.pval)->u1.str = (yyvsp[-1].str); ;}
|
||
break;
|
||
|
||
case 71:
|
||
#line 388 "ael.y"
|
||
{reset_semicount(parseio->scanner);;}
|
||
break;
|
||
|
||
case 72:
|
||
#line 389 "ael.y"
|
||
{reset_semicount(parseio->scanner);;}
|
||
break;
|
||
|
||
case 73:
|
||
#line 390 "ael.y"
|
||
{reset_parencount(parseio->scanner);;}
|
||
break;
|
||
|
||
case 74:
|
||
#line 390 "ael.y"
|
||
{ /* XXX word_list maybe ? */
|
||
(yyval.pval) = npval2(PV_FOR, &(yylsp[-11]), &(yylsp[0]));
|
||
(yyval.pval)->u1.for_init = (yyvsp[-8].str);
|
||
(yyval.pval)->u2.for_test=(yyvsp[-5].str);
|
||
(yyval.pval)->u3.for_inc = (yyvsp[-2].str);
|
||
(yyval.pval)->u4.for_statements = (yyvsp[0].pval);;}
|
||
break;
|
||
|
||
case 75:
|
||
#line 396 "ael.y"
|
||
{
|
||
(yyval.pval) = npval2(PV_WHILE, &(yylsp[-2]), &(yylsp[0]));
|
||
(yyval.pval)->u1.str = (yyvsp[-1].str);
|
||
(yyval.pval)->u2.statements = (yyvsp[0].pval); ;}
|
||
break;
|
||
|
||
case 76:
|
||
#line 400 "ael.y"
|
||
{
|
||
(yyval.pval) = update_last((yyvsp[-2].pval), &(yylsp[0]));
|
||
(yyval.pval)->u2.statements = (yyvsp[-1].pval);;}
|
||
break;
|
||
|
||
case 77:
|
||
#line 403 "ael.y"
|
||
{
|
||
(yyval.pval) = update_last((yyvsp[-1].pval), &(yylsp[-1])); ;}
|
||
break;
|
||
|
||
case 78:
|
||
#line 405 "ael.y"
|
||
{
|
||
(yyval.pval) = update_last((yyvsp[-1].pval), &(yylsp[0])); ;}
|
||
break;
|
||
|
||
case 79:
|
||
#line 407 "ael.y"
|
||
{
|
||
(yyval.pval)= npval2(PV_APPLICATION_CALL, &(yylsp[-1]), &(yylsp[0]));
|
||
(yyval.pval)->u1.str = (yyvsp[-1].str);;}
|
||
break;
|
||
|
||
case 80:
|
||
#line 410 "ael.y"
|
||
{reset_semicount(parseio->scanner);;}
|
||
break;
|
||
|
||
case 81:
|
||
#line 410 "ael.y"
|
||
{
|
||
char *bufx;
|
||
int tot=0;
|
||
pval *pptr;
|
||
(yyval.pval) = npval2(PV_VARDEC, &(yylsp[-4]), &(yylsp[0]));
|
||
(yyval.pval)->u2.val=(yyvsp[-1].str);
|
||
/* rebuild the original string-- this is not an app call, it's an unwrapped vardec, with a func call on the LHS */
|
||
/* string to big to fit in the buffer? */
|
||
tot+=strlen((yyvsp[-4].pval)->u1.str);
|
||
for(pptr=(yyvsp[-4].pval)->u2.arglist;pptr;pptr=pptr->next) {
|
||
tot+=strlen(pptr->u1.str);
|
||
tot++; /* for a sep like a comma */
|
||
}
|
||
tot+=4; /* for safety */
|
||
bufx = calloc(1, tot);
|
||
strcpy(bufx,(yyvsp[-4].pval)->u1.str);
|
||
strcat(bufx,"(");
|
||
/* XXX need to advance the pointer or the loop is very inefficient */
|
||
for (pptr=(yyvsp[-4].pval)->u2.arglist;pptr;pptr=pptr->next) {
|
||
if ( pptr != (yyvsp[-4].pval)->u2.arglist )
|
||
strcat(bufx,",");
|
||
strcat(bufx,pptr->u1.str);
|
||
}
|
||
strcat(bufx,")");
|
||
#ifdef AAL_ARGCHECK
|
||
if ( !ael_is_funcname((yyvsp[-4].pval)->u1.str) )
|
||
ast_log(LOG_WARNING, "==== File: %s, Line %d, Cols: %d-%d: Function call? The name %s is not in my internal list of function names\n",
|
||
my_file, (yylsp[-4]).first_line, (yylsp[-4]).first_column, (yylsp[-4]).last_column, (yyvsp[-4].pval)->u1.str);
|
||
#endif
|
||
(yyval.pval)->u1.str = bufx;
|
||
destroy_pval((yyvsp[-4].pval)); /* the app call it is not, get rid of that chain */
|
||
prev_word = 0;
|
||
;}
|
||
break;
|
||
|
||
case 82:
|
||
#line 443 "ael.y"
|
||
{ (yyval.pval) = npval2(PV_BREAK, &(yylsp[-1]), &(yylsp[0])); ;}
|
||
break;
|
||
|
||
case 83:
|
||
#line 444 "ael.y"
|
||
{ (yyval.pval) = npval2(PV_RETURN, &(yylsp[-1]), &(yylsp[0])); ;}
|
||
break;
|
||
|
||
case 84:
|
||
#line 445 "ael.y"
|
||
{ (yyval.pval) = npval2(PV_CONTINUE, &(yylsp[-1]), &(yylsp[0])); ;}
|
||
break;
|
||
|
||
case 85:
|
||
#line 446 "ael.y"
|
||
{
|
||
(yyval.pval) = update_last((yyvsp[-2].pval), &(yylsp[-1]));
|
||
(yyval.pval)->u2.statements = (yyvsp[-1].pval);
|
||
(yyval.pval)->u3.else_statements = (yyvsp[0].pval);;}
|
||
break;
|
||
|
||
case 86:
|
||
#line 450 "ael.y"
|
||
{ (yyval.pval)=0; ;}
|
||
break;
|
||
|
||
case 87:
|
||
#line 453 "ael.y"
|
||
{ (yyval.pval) = (yyvsp[0].pval); ;}
|
||
break;
|
||
|
||
case 88:
|
||
#line 454 "ael.y"
|
||
{ (yyval.pval) = NULL ; ;}
|
||
break;
|
||
|
||
case 89:
|
||
#line 459 "ael.y"
|
||
{ (yyval.pval) = nword((yyvsp[0].str), &(yylsp[0])); ;}
|
||
break;
|
||
|
||
case 90:
|
||
#line 460 "ael.y"
|
||
{
|
||
(yyval.pval) = nword((yyvsp[-2].str), &(yylsp[-2]));
|
||
(yyval.pval)->next = nword((yyvsp[0].str), &(yylsp[0])); ;}
|
||
break;
|
||
|
||
case 91:
|
||
#line 463 "ael.y"
|
||
{
|
||
(yyval.pval) = nword((yyvsp[-2].str), &(yylsp[-2]));
|
||
(yyval.pval)->next = nword((yyvsp[0].str), &(yylsp[0])); ;}
|
||
break;
|
||
|
||
case 92:
|
||
#line 466 "ael.y"
|
||
{
|
||
(yyval.pval) = nword((yyvsp[-4].str), &(yylsp[-4]));
|
||
(yyval.pval)->next = nword((yyvsp[-2].str), &(yylsp[-2]));
|
||
(yyval.pval)->next->next = nword((yyvsp[0].str), &(yylsp[0])); ;}
|
||
break;
|
||
|
||
case 93:
|
||
#line 470 "ael.y"
|
||
{
|
||
(yyval.pval) = nword((yyvsp[-4].str), &(yylsp[-4]));
|
||
(yyval.pval)->next = nword((yyvsp[-2].str), &(yylsp[-2]));
|
||
(yyval.pval)->next->next = nword((yyvsp[0].str), &(yylsp[0])); ;}
|
||
break;
|
||
|
||
case 94:
|
||
#line 474 "ael.y"
|
||
{
|
||
(yyval.pval) = nword(strdup("default"), &(yylsp[-4]));
|
||
(yyval.pval)->next = nword((yyvsp[-2].str), &(yylsp[-2]));
|
||
(yyval.pval)->next->next = nword((yyvsp[0].str), &(yylsp[0])); ;}
|
||
break;
|
||
|
||
case 95:
|
||
#line 478 "ael.y"
|
||
{
|
||
(yyval.pval) = nword(strdup("default"), &(yylsp[-4]));
|
||
(yyval.pval)->next = nword((yyvsp[-2].str), &(yylsp[-2]));
|
||
(yyval.pval)->next->next = nword((yyvsp[0].str), &(yylsp[0])); ;}
|
||
break;
|
||
|
||
case 96:
|
||
#line 485 "ael.y"
|
||
{ /* ext, 1 */
|
||
(yyval.pval) = nword((yyvsp[0].str), &(yylsp[0]));
|
||
(yyval.pval)->next = nword(strdup("1"), &(yylsp[0])); ;}
|
||
break;
|
||
|
||
case 97:
|
||
#line 488 "ael.y"
|
||
{ /* ext, pri */
|
||
(yyval.pval) = nword((yyvsp[-2].str), &(yylsp[-2]));
|
||
(yyval.pval)->next = nword((yyvsp[0].str), &(yylsp[0])); ;}
|
||
break;
|
||
|
||
case 98:
|
||
#line 491 "ael.y"
|
||
{ /* context, ext, pri */
|
||
(yyval.pval) = nword((yyvsp[0].str), &(yylsp[0]));
|
||
(yyval.pval)->next = nword((yyvsp[-4].str), &(yylsp[-4]));
|
||
(yyval.pval)->next->next = nword((yyvsp[-2].str), &(yylsp[-2])); ;}
|
||
break;
|
||
|
||
case 99:
|
||
#line 495 "ael.y"
|
||
{ /* context, ext, 1 */
|
||
(yyval.pval) = nword((yyvsp[0].str), &(yylsp[0]));
|
||
(yyval.pval)->next = nword((yyvsp[-2].str), &(yylsp[-2]));
|
||
(yyval.pval)->next->next = nword(strdup("1"), &(yylsp[0])); ;}
|
||
break;
|
||
|
||
case 100:
|
||
#line 499 "ael.y"
|
||
{ /* default, ext, 1 */
|
||
(yyval.pval) = nword(strdup("default"), &(yylsp[-2]));
|
||
(yyval.pval)->next = nword((yyvsp[-2].str), &(yylsp[0]));
|
||
(yyval.pval)->next->next = nword( strdup("1"), &(yylsp[0])); ;}
|
||
break;
|
||
|
||
case 101:
|
||
#line 505 "ael.y"
|
||
{reset_argcount(parseio->scanner);;}
|
||
break;
|
||
|
||
case 102:
|
||
#line 505 "ael.y"
|
||
{
|
||
/* XXX original code had @2 but i think we need @5 */
|
||
(yyval.pval) = npval2(PV_MACRO_CALL, &(yylsp[-4]), &(yylsp[0]));
|
||
(yyval.pval)->u1.str = (yyvsp[-4].str);
|
||
(yyval.pval)->u2.arglist = (yyvsp[-1].pval);;}
|
||
break;
|
||
|
||
case 103:
|
||
#line 510 "ael.y"
|
||
{
|
||
(yyval.pval)= npval2(PV_MACRO_CALL, &(yylsp[-2]), &(yylsp[0]));
|
||
(yyval.pval)->u1.str = (yyvsp[-2].str); ;}
|
||
break;
|
||
|
||
case 104:
|
||
#line 518 "ael.y"
|
||
{reset_argcount(parseio->scanner);;}
|
||
break;
|
||
|
||
case 105:
|
||
#line 518 "ael.y"
|
||
{
|
||
if (strcasecmp((yyvsp[-2].str),"goto") == 0) {
|
||
(yyval.pval) = npval2(PV_GOTO, &(yylsp[-2]), &(yylsp[-1]));
|
||
free((yyvsp[-2].str)); /* won't be using this */
|
||
ast_log(LOG_WARNING, "==== File: %s, Line %d, Cols: %d-%d: Suggestion: Use the goto statement instead of the Goto() application call in AEL.\n", my_file, (yylsp[-2]).first_line, (yylsp[-2]).first_column, (yylsp[-2]).last_column );
|
||
} else {
|
||
(yyval.pval)= npval2(PV_APPLICATION_CALL, &(yylsp[-2]), &(yylsp[-1]));
|
||
(yyval.pval)->u1.str = (yyvsp[-2].str);
|
||
} ;}
|
||
break;
|
||
|
||
case 106:
|
||
#line 529 "ael.y"
|
||
{
|
||
(yyval.pval) = update_last((yyvsp[-2].pval), &(yylsp[0]));
|
||
if( (yyval.pval)->type == PV_GOTO )
|
||
(yyval.pval)->u1.list = (yyvsp[-1].pval);
|
||
else
|
||
(yyval.pval)->u2.arglist = (yyvsp[-1].pval);
|
||
;}
|
||
break;
|
||
|
||
case 107:
|
||
#line 536 "ael.y"
|
||
{ (yyval.pval) = update_last((yyvsp[-1].pval), &(yylsp[0])); ;}
|
||
break;
|
||
|
||
case 108:
|
||
#line 539 "ael.y"
|
||
{ (yyval.str) = (yyvsp[0].str) ;}
|
||
break;
|
||
|
||
case 109:
|
||
#line 540 "ael.y"
|
||
{ (yyval.str) = strdup(""); ;}
|
||
break;
|
||
|
||
case 110:
|
||
#line 543 "ael.y"
|
||
{ (yyval.pval) = nword((yyvsp[0].str), &(yylsp[0])); ;}
|
||
break;
|
||
|
||
case 111:
|
||
#line 544 "ael.y"
|
||
{
|
||
(yyval.pval)= npval(PV_WORD,0/*@1.first_line*/,0/*@1.last_line*/,0/* @1.first_column*/, 0/*@1.last_column*/);
|
||
(yyval.pval)->u1.str = strdup(""); ;}
|
||
break;
|
||
|
||
case 112:
|
||
#line 547 "ael.y"
|
||
{ (yyval.pval) = linku1((yyvsp[-2].pval), nword((yyvsp[0].str), &(yylsp[0]))); ;}
|
||
break;
|
||
|
||
case 113:
|
||
#line 550 "ael.y"
|
||
{ (yyval.pval) = NULL; ;}
|
||
break;
|
||
|
||
case 114:
|
||
#line 551 "ael.y"
|
||
{(yyval.pval)=(yyvsp[0].pval);;}
|
||
break;
|
||
|
||
case 115:
|
||
#line 552 "ael.y"
|
||
{ (yyval.pval) = linku1((yyvsp[-1].pval), (yyvsp[0].pval)); ;}
|
||
break;
|
||
|
||
case 116:
|
||
#line 555 "ael.y"
|
||
{
|
||
(yyval.pval) = npval2(PV_CASE, &(yylsp[-3]), &(yylsp[-1])); /* XXX 3 or 4 ? */
|
||
(yyval.pval)->u1.str = (yyvsp[-2].str);
|
||
(yyval.pval)->u2.statements = (yyvsp[0].pval);;}
|
||
break;
|
||
|
||
case 117:
|
||
#line 559 "ael.y"
|
||
{
|
||
(yyval.pval) = npval2(PV_DEFAULT, &(yylsp[-2]), &(yylsp[0]));
|
||
(yyval.pval)->u1.str = NULL;
|
||
(yyval.pval)->u2.statements = (yyvsp[0].pval);;}
|
||
break;
|
||
|
||
case 118:
|
||
#line 563 "ael.y"
|
||
{
|
||
(yyval.pval) = npval2(PV_PATTERN, &(yylsp[-3]), &(yylsp[0])); /* XXX@3 or @4 ? */
|
||
(yyval.pval)->u1.str = (yyvsp[-2].str);
|
||
(yyval.pval)->u2.statements = (yyvsp[0].pval);;}
|
||
break;
|
||
|
||
case 119:
|
||
#line 567 "ael.y"
|
||
{
|
||
(yyval.pval) = npval2(PV_CASE, &(yylsp[-2]), &(yylsp[0]));
|
||
(yyval.pval)->u1.str = (yyvsp[-1].str);;}
|
||
break;
|
||
|
||
case 120:
|
||
#line 570 "ael.y"
|
||
{
|
||
(yyval.pval) = npval2(PV_DEFAULT, &(yylsp[-1]), &(yylsp[0]));
|
||
(yyval.pval)->u1.str = NULL;;}
|
||
break;
|
||
|
||
case 121:
|
||
#line 573 "ael.y"
|
||
{
|
||
(yyval.pval) = npval2(PV_PATTERN, &(yylsp[-2]), &(yylsp[0]));
|
||
(yyval.pval)->u1.str = (yyvsp[-1].str);;}
|
||
break;
|
||
|
||
case 122:
|
||
#line 578 "ael.y"
|
||
{ (yyval.pval) = NULL; ;}
|
||
break;
|
||
|
||
case 123:
|
||
#line 579 "ael.y"
|
||
{(yyval.pval) = (yyvsp[0].pval);;}
|
||
break;
|
||
|
||
case 124:
|
||
#line 580 "ael.y"
|
||
{ (yyval.pval) = linku1((yyvsp[-1].pval), (yyvsp[0].pval)); ;}
|
||
break;
|
||
|
||
case 125:
|
||
#line 583 "ael.y"
|
||
{(yyval.pval)=(yyvsp[0].pval);;}
|
||
break;
|
||
|
||
case 126:
|
||
#line 584 "ael.y"
|
||
{
|
||
(yyval.pval) = npval2(PV_CATCH, &(yylsp[-4]), &(yylsp[0]));
|
||
(yyval.pval)->u1.str = (yyvsp[-3].str);
|
||
(yyval.pval)->u2.statements = (yyvsp[-1].pval);;}
|
||
break;
|
||
|
||
case 127:
|
||
#line 590 "ael.y"
|
||
{
|
||
(yyval.pval) = npval2(PV_SWITCHES, &(yylsp[-1]), &(yylsp[0]));
|
||
(yyval.pval)->u1.list = (yyvsp[0].pval); ;}
|
||
break;
|
||
|
||
case 128:
|
||
#line 595 "ael.y"
|
||
{
|
||
(yyval.pval) = npval2(PV_ESWITCHES, &(yylsp[-1]), &(yylsp[0]));
|
||
(yyval.pval)->u1.list = (yyvsp[0].pval); ;}
|
||
break;
|
||
|
||
case 129:
|
||
#line 600 "ael.y"
|
||
{ (yyval.pval) = (yyvsp[-1].pval); ;}
|
||
break;
|
||
|
||
case 130:
|
||
#line 601 "ael.y"
|
||
{ (yyval.pval) = NULL; ;}
|
||
break;
|
||
|
||
case 131:
|
||
#line 604 "ael.y"
|
||
{ (yyval.pval) = nword((yyvsp[-1].str), &(yylsp[-1])); ;}
|
||
break;
|
||
|
||
case 132:
|
||
#line 605 "ael.y"
|
||
{ (yyval.pval) = linku1((yyvsp[-2].pval), nword((yyvsp[-1].str), &(yylsp[-1]))); ;}
|
||
break;
|
||
|
||
case 133:
|
||
#line 606 "ael.y"
|
||
{(yyval.pval)=(yyvsp[-1].pval);;}
|
||
break;
|
||
|
||
case 134:
|
||
#line 609 "ael.y"
|
||
{ (yyval.pval) = nword((yyvsp[-1].str), &(yylsp[-1])); ;}
|
||
break;
|
||
|
||
case 135:
|
||
#line 610 "ael.y"
|
||
{
|
||
(yyval.pval) = nword((yyvsp[-3].str), &(yylsp[-3]));
|
||
(yyval.pval)->u2.arglist = (yyvsp[-1].pval);
|
||
prev_word=0; /* XXX sure ? */ ;}
|
||
break;
|
||
|
||
case 136:
|
||
#line 617 "ael.y"
|
||
{ (yyval.pval) = (yyvsp[0].pval); ;}
|
||
break;
|
||
|
||
case 137:
|
||
#line 618 "ael.y"
|
||
{ (yyval.pval) = linku1((yyvsp[-1].pval), (yyvsp[0].pval)); ;}
|
||
break;
|
||
|
||
case 138:
|
||
#line 619 "ael.y"
|
||
{(yyval.pval)=(yyvsp[-1].pval);;}
|
||
break;
|
||
|
||
case 139:
|
||
#line 622 "ael.y"
|
||
{
|
||
(yyval.pval) = npval2(PV_INCLUDES, &(yylsp[-3]), &(yylsp[0]));
|
||
(yyval.pval)->u1.list = (yyvsp[-1].pval);;}
|
||
break;
|
||
|
||
case 140:
|
||
#line 625 "ael.y"
|
||
{
|
||
(yyval.pval) = npval2(PV_INCLUDES, &(yylsp[-2]), &(yylsp[0]));;}
|
||
break;
|
||
|
||
|
||
default: break;
|
||
}
|
||
|
||
/* Line 1126 of yacc.c. */
|
||
#line 2781 "ael.tab.c"
|
||
|
||
yyvsp -= yylen;
|
||
yyssp -= yylen;
|
||
yylsp -= yylen;
|
||
|
||
YY_STACK_PRINT (yyss, yyssp);
|
||
|
||
*++yyvsp = yyval;
|
||
*++yylsp = yyloc;
|
||
|
||
/* Now `shift' the result of the reduction. Determine what state
|
||
that goes to, based on the state we popped back to and the rule
|
||
number reduced by. */
|
||
|
||
yyn = yyr1[yyn];
|
||
|
||
yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
|
||
if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
|
||
yystate = yytable[yystate];
|
||
else
|
||
yystate = yydefgoto[yyn - YYNTOKENS];
|
||
|
||
goto yynewstate;
|
||
|
||
|
||
/*------------------------------------.
|
||
| yyerrlab -- here on detecting error |
|
||
`------------------------------------*/
|
||
yyerrlab:
|
||
/* If not already recovering from an error, report this error. */
|
||
if (!yyerrstatus)
|
||
{
|
||
++yynerrs;
|
||
#if YYERROR_VERBOSE
|
||
yyn = yypact[yystate];
|
||
|
||
if (YYPACT_NINF < yyn && yyn < YYLAST)
|
||
{
|
||
int yytype = YYTRANSLATE (yychar);
|
||
YYSIZE_T yysize0 = yytnamerr (0, yytname[yytype]);
|
||
YYSIZE_T yysize = yysize0;
|
||
YYSIZE_T yysize1;
|
||
int yysize_overflow = 0;
|
||
char *yymsg = 0;
|
||
# define YYERROR_VERBOSE_ARGS_MAXIMUM 5
|
||
char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
|
||
int yyx;
|
||
|
||
#if 0
|
||
/* This is so xgettext sees the translatable formats that are
|
||
constructed on the fly. */
|
||
YY_("syntax error, unexpected %s");
|
||
YY_("syntax error, unexpected %s, expecting %s");
|
||
YY_("syntax error, unexpected %s, expecting %s or %s");
|
||
YY_("syntax error, unexpected %s, expecting %s or %s or %s");
|
||
YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s");
|
||
#endif
|
||
char *yyfmt;
|
||
char const *yyf;
|
||
static char const yyunexpected[] = "syntax error, unexpected %s";
|
||
static char const yyexpecting[] = ", expecting %s";
|
||
static char const yyor[] = " or %s";
|
||
char yyformat[sizeof yyunexpected
|
||
+ sizeof yyexpecting - 1
|
||
+ ((YYERROR_VERBOSE_ARGS_MAXIMUM - 2)
|
||
* (sizeof yyor - 1))];
|
||
char const *yyprefix = yyexpecting;
|
||
|
||
/* Start YYX at -YYN if negative to avoid negative indexes in
|
||
YYCHECK. */
|
||
int yyxbegin = yyn < 0 ? -yyn : 0;
|
||
|
||
/* Stay within bounds of both yycheck and yytname. */
|
||
int yychecklim = YYLAST - yyn;
|
||
int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
|
||
int yycount = 1;
|
||
|
||
yyarg[0] = yytname[yytype];
|
||
yyfmt = yystpcpy (yyformat, yyunexpected);
|
||
|
||
for (yyx = yyxbegin; yyx < yyxend; ++yyx)
|
||
if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR)
|
||
{
|
||
if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
|
||
{
|
||
yycount = 1;
|
||
yysize = yysize0;
|
||
yyformat[sizeof yyunexpected - 1] = '\0';
|
||
break;
|
||
}
|
||
yyarg[yycount++] = yytname[yyx];
|
||
yysize1 = yysize + yytnamerr (0, yytname[yyx]);
|
||
yysize_overflow |= yysize1 < yysize;
|
||
yysize = yysize1;
|
||
yyfmt = yystpcpy (yyfmt, yyprefix);
|
||
yyprefix = yyor;
|
||
}
|
||
|
||
yyf = YY_(yyformat);
|
||
yysize1 = yysize + yystrlen (yyf);
|
||
yysize_overflow |= yysize1 < yysize;
|
||
yysize = yysize1;
|
||
|
||
if (!yysize_overflow && yysize <= YYSTACK_ALLOC_MAXIMUM)
|
||
yymsg = (char *) YYSTACK_ALLOC (yysize);
|
||
if (yymsg)
|
||
{
|
||
/* Avoid sprintf, as that infringes on the user's name space.
|
||
Don't have undefined behavior even if the translation
|
||
produced a string with the wrong number of "%s"s. */
|
||
char *yyp = yymsg;
|
||
int yyi = 0;
|
||
while ((*yyp = *yyf))
|
||
{
|
||
if (*yyp == '%' && yyf[1] == 's' && yyi < yycount)
|
||
{
|
||
yyp += yytnamerr (yyp, yyarg[yyi++]);
|
||
yyf += 2;
|
||
}
|
||
else
|
||
{
|
||
yyp++;
|
||
yyf++;
|
||
}
|
||
}
|
||
yyerror (&yylloc, parseio, yymsg);
|
||
YYSTACK_FREE (yymsg);
|
||
}
|
||
else
|
||
{
|
||
yyerror (&yylloc, parseio, YY_("syntax error"));
|
||
goto yyexhaustedlab;
|
||
}
|
||
}
|
||
else
|
||
#endif /* YYERROR_VERBOSE */
|
||
yyerror (&yylloc, parseio, YY_("syntax error"));
|
||
}
|
||
|
||
yyerror_range[0] = yylloc;
|
||
|
||
if (yyerrstatus == 3)
|
||
{
|
||
/* If just tried and failed to reuse look-ahead token after an
|
||
error, discard it. */
|
||
|
||
if (yychar <= YYEOF)
|
||
{
|
||
/* Return failure if at end of input. */
|
||
if (yychar == YYEOF)
|
||
YYABORT;
|
||
}
|
||
else
|
||
{
|
||
yydestruct ("Error: discarding", yytoken, &yylval, &yylloc);
|
||
yychar = YYEMPTY;
|
||
}
|
||
}
|
||
|
||
/* Else will try to reuse look-ahead token after shifting the error
|
||
token. */
|
||
goto yyerrlab1;
|
||
|
||
|
||
/*---------------------------------------------------.
|
||
| yyerrorlab -- error raised explicitly by YYERROR. |
|
||
`---------------------------------------------------*/
|
||
yyerrorlab:
|
||
|
||
/* Pacify compilers like GCC when the user code never invokes
|
||
YYERROR and the label yyerrorlab therefore never appears in user
|
||
code. */
|
||
if (0)
|
||
goto yyerrorlab;
|
||
|
||
yyerror_range[0] = yylsp[1-yylen];
|
||
yylsp -= yylen;
|
||
yyvsp -= yylen;
|
||
yyssp -= yylen;
|
||
yystate = *yyssp;
|
||
goto yyerrlab1;
|
||
|
||
|
||
/*-------------------------------------------------------------.
|
||
| yyerrlab1 -- common code for both syntax error and YYERROR. |
|
||
`-------------------------------------------------------------*/
|
||
yyerrlab1:
|
||
yyerrstatus = 3; /* Each real token shifted decrements this. */
|
||
|
||
for (;;)
|
||
{
|
||
yyn = yypact[yystate];
|
||
if (yyn != YYPACT_NINF)
|
||
{
|
||
yyn += YYTERROR;
|
||
if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
|
||
{
|
||
yyn = yytable[yyn];
|
||
if (0 < yyn)
|
||
break;
|
||
}
|
||
}
|
||
|
||
/* Pop the current state because it cannot handle the error token. */
|
||
if (yyssp == yyss)
|
||
YYABORT;
|
||
|
||
yyerror_range[0] = *yylsp;
|
||
yydestruct ("Error: popping", yystos[yystate], yyvsp, yylsp);
|
||
YYPOPSTACK;
|
||
yystate = *yyssp;
|
||
YY_STACK_PRINT (yyss, yyssp);
|
||
}
|
||
|
||
if (yyn == YYFINAL)
|
||
YYACCEPT;
|
||
|
||
*++yyvsp = yylval;
|
||
|
||
yyerror_range[1] = yylloc;
|
||
/* Using YYLLOC is tempting, but would change the location of
|
||
the look-ahead. YYLOC is available though. */
|
||
YYLLOC_DEFAULT (yyloc, yyerror_range - 1, 2);
|
||
*++yylsp = yyloc;
|
||
|
||
/* Shift the error token. */
|
||
YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp);
|
||
|
||
yystate = yyn;
|
||
goto yynewstate;
|
||
|
||
|
||
/*-------------------------------------.
|
||
| yyacceptlab -- YYACCEPT comes here. |
|
||
`-------------------------------------*/
|
||
yyacceptlab:
|
||
yyresult = 0;
|
||
goto yyreturn;
|
||
|
||
/*-----------------------------------.
|
||
| yyabortlab -- YYABORT comes here. |
|
||
`-----------------------------------*/
|
||
yyabortlab:
|
||
yyresult = 1;
|
||
goto yyreturn;
|
||
|
||
#ifndef yyoverflow
|
||
/*-------------------------------------------------.
|
||
| yyexhaustedlab -- memory exhaustion comes here. |
|
||
`-------------------------------------------------*/
|
||
yyexhaustedlab:
|
||
yyerror (&yylloc, parseio, YY_("memory exhausted"));
|
||
yyresult = 2;
|
||
/* Fall through. */
|
||
#endif
|
||
|
||
yyreturn:
|
||
if (yychar != YYEOF && yychar != YYEMPTY)
|
||
yydestruct ("Cleanup: discarding lookahead",
|
||
yytoken, &yylval, &yylloc);
|
||
while (yyssp != yyss)
|
||
{
|
||
yydestruct ("Cleanup: popping",
|
||
yystos[*yyssp], yyvsp, yylsp);
|
||
YYPOPSTACK;
|
||
}
|
||
#ifndef yyoverflow
|
||
if (yyss != yyssa)
|
||
YYSTACK_FREE (yyss);
|
||
#endif
|
||
return yyresult;
|
||
}
|
||
|
||
|
||
#line 630 "ael.y"
|
||
|
||
|
||
static char *token_equivs1[] =
|
||
{
|
||
"AMPER",
|
||
"AT",
|
||
"BAR",
|
||
"COLON",
|
||
"COMMA",
|
||
"EQ",
|
||
"EXTENMARK",
|
||
"KW_BREAK",
|
||
"KW_CASE",
|
||
"KW_CATCH",
|
||
"KW_CONTEXT",
|
||
"KW_CONTINUE",
|
||
"KW_DEFAULT",
|
||
"KW_ELSE",
|
||
"KW_ESWITCHES",
|
||
"KW_FOR",
|
||
"KW_GLOBALS",
|
||
"KW_GOTO",
|
||
"KW_HINT",
|
||
"KW_IFTIME",
|
||
"KW_IF",
|
||
"KW_IGNOREPAT",
|
||
"KW_INCLUDES"
|
||
"KW_JUMP",
|
||
"KW_MACRO",
|
||
"KW_PATTERN",
|
||
"KW_REGEXTEN",
|
||
"KW_RETURN",
|
||
"KW_SWITCHES",
|
||
"KW_SWITCH",
|
||
"KW_WHILE",
|
||
"LC",
|
||
"LP",
|
||
"RC",
|
||
"RP",
|
||
"SEMI",
|
||
};
|
||
|
||
static char *token_equivs2[] =
|
||
{
|
||
"&",
|
||
"@",
|
||
"|",
|
||
":",
|
||
",",
|
||
"=",
|
||
"=>",
|
||
"break",
|
||
"case",
|
||
"catch",
|
||
"context",
|
||
"continue",
|
||
"default",
|
||
"else",
|
||
"eswitches",
|
||
"for",
|
||
"globals",
|
||
"goto",
|
||
"hint",
|
||
"ifTime",
|
||
"if",
|
||
"ignorepat",
|
||
"includes"
|
||
"jump",
|
||
"macro",
|
||
"pattern",
|
||
"regexten",
|
||
"return",
|
||
"switches",
|
||
"switch",
|
||
"while",
|
||
"{",
|
||
"(",
|
||
"}",
|
||
")",
|
||
";",
|
||
};
|
||
|
||
|
||
static char *ael_token_subst(char *mess)
|
||
{
|
||
/* calc a length, malloc, fill, and return; yyerror had better free it! */
|
||
int len=0,i;
|
||
char *p;
|
||
char *res, *s,*t;
|
||
int token_equivs_entries = sizeof(token_equivs1)/sizeof(char*);
|
||
|
||
for (p=mess; *p; p++) {
|
||
for (i=0; i<token_equivs_entries; i++) {
|
||
if ( strncmp(p,token_equivs1[i],strlen(token_equivs1[i])) == 0 )
|
||
{
|
||
len+=strlen(token_equivs2[i])+2;
|
||
p += strlen(token_equivs1[i])-1;
|
||
break;
|
||
}
|
||
}
|
||
len++;
|
||
}
|
||
res = calloc(1, len+1);
|
||
res[0] = 0;
|
||
s = res;
|
||
for (p=mess; *p;) {
|
||
int found = 0;
|
||
for (i=0; i<token_equivs_entries; i++) {
|
||
if ( strncmp(p,token_equivs1[i],strlen(token_equivs1[i])) == 0 ) {
|
||
*s++ = '\'';
|
||
for (t=token_equivs2[i]; *t;) {
|
||
*s++ = *t++;
|
||
}
|
||
*s++ = '\'';
|
||
p += strlen(token_equivs1[i]);
|
||
found = 1;
|
||
break;
|
||
}
|
||
}
|
||
if( !found )
|
||
*s++ = *p++;
|
||
}
|
||
*s++ = 0;
|
||
return res;
|
||
}
|
||
|
||
void yyerror(YYLTYPE *locp, struct parse_io *parseio, char const *s)
|
||
{
|
||
char *s2 = ael_token_subst((char *)s);
|
||
if (locp->first_line == locp->last_line) {
|
||
ast_log(LOG_ERROR, "==== File: %s, Line %d, Cols: %d-%d: Error: %s\n", my_file, locp->first_line, locp->first_column, locp->last_column, s2);
|
||
} else {
|
||
ast_log(LOG_ERROR, "==== File: %s, Line %d Col %d to Line %d Col %d: Error: %s\n", my_file, locp->first_line, locp->first_column, locp->last_line, locp->last_column, s2);
|
||
}
|
||
free(s2);
|
||
parseio->syntax_error_count++;
|
||
}
|
||
|
||
static struct pval *npval(pvaltype type, int first_line, int last_line,
|
||
int first_column, int last_column)
|
||
{
|
||
pval *z = calloc(1, sizeof(struct pval));
|
||
z->type = type;
|
||
z->startline = first_line;
|
||
z->endline = last_line;
|
||
z->startcol = first_column;
|
||
z->endcol = last_column;
|
||
z->filename = strdup(my_file);
|
||
return z;
|
||
}
|
||
|
||
static struct pval *npval2(pvaltype type, YYLTYPE *first, YYLTYPE *last)
|
||
{
|
||
return npval(type, first->first_line, last->last_line,
|
||
first->first_column, last->last_column);
|
||
}
|
||
|
||
static struct pval *update_last(pval *obj, YYLTYPE *last)
|
||
{
|
||
obj->endline = last->last_line;
|
||
obj->endcol = last->last_column;
|
||
return obj;
|
||
}
|
||
|
||
/* frontend for npval to create a PV_WORD string from the given token */
|
||
static pval *nword(char *string, YYLTYPE *pos)
|
||
{
|
||
pval *p = npval2(PV_WORD, pos, pos);
|
||
if (p)
|
||
p->u1.str = string;
|
||
return p;
|
||
}
|
||
|
||
/* append second element to the list in the first one */
|
||
static pval * linku1(pval *head, pval *tail)
|
||
{
|
||
if (!head)
|
||
return tail;
|
||
if (tail) {
|
||
if (!head->next) {
|
||
head->next = tail;
|
||
} else {
|
||
head->u1_last->next = tail;
|
||
}
|
||
head->u1_last = tail;
|
||
}
|
||
return head;
|
||
}
|
||
|