blob: e3c85053d657b4ac3ebdbddc103d6f99fe9fb9d3 [file] [log] [blame]
/* A Bison parser, made by GNU Bison 2.7.12-4996. */
/* Bison implementation for Yacc-like parsers in C
Copyright (C) 1984, 1989-1990, 2000-2013 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 3 of the License, 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, see <http://www.gnu.org/licenses/>. */
/* As a special exception, you may create a larger work that contains
part or all of the Bison parser skeleton and distribute that work
under terms of your choice, so long as that work isn't itself a
parser generator using the skeleton or a modified version thereof
as a parser skeleton. Alternatively, if you modify or redistribute
the parser skeleton itself, you may (at your option) remove this
special exception, which will cause the skeleton and the resulting
Bison output files to be licensed under the GNU General Public
License without this special exception.
This special exception was added by the Free Software Foundation in
version 2.2 of Bison. */
/* C LALR(1) parser skeleton 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.7.12-4996"
/* Skeleton name. */
#define YYSKELETON_NAME "yacc.c"
/* Pure parsers. */
#define YYPURE 0
/* Push parsers. */
#define YYPUSH 0
/* Pull parsers. */
#define YYPULL 1
/* Substitute the variable and function names. */
#define yyparse asn1p_parse
#define yylex asn1p_lex
#define yyerror asn1p_error
#define yydebug asn1p_debug
#define yynerrs asn1p_nerrs
#define yylval asn1p_lval
#define yychar asn1p_char
/* Copy the first part of user declarations. */
/* Line 371 of yacc.c */
#line 1 "asn1p_y.y"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <assert.h>
#include "asn1parser.h"
#define YYPARSE_PARAM param
#define YYPARSE_PARAM_TYPE void **
#define YYERROR_VERBOSE
int yylex(void);
int yyerror(const char *msg);
#ifdef YYBYACC
int yyparse(void **param); /* byacc does not produce a prototype */
#endif
void asn1p_lexer_hack_push_opaque_state(void);
void asn1p_lexer_hack_enable_with_syntax(void);
void asn1p_lexer_hack_push_encoding_control(void);
#define yylineno asn1p_lineno
extern int asn1p_lineno;
/*
* Process directives as <ASN1C:RepresentAsPointer>
*/
extern int asn1p_as_pointer;
/*
* This temporary variable is used to solve the shortcomings of 1-lookahead
* parser.
*/
static struct AssignedIdentifier *saved_aid;
static asn1p_value_t *_convert_bitstring2binary(char *str, int base);
static void _fixup_anonymous_identifier(asn1p_expr_t *expr);
static asn1p_module_t *currentModule;
#define NEW_EXPR() (asn1p_expr_new(yylineno, currentModule))
#define checkmem(ptr) do { \
if(!(ptr)) \
return yyerror("Memory failure"); \
} while(0)
#define CONSTRAINT_INSERT(root, constr_type, arg1, arg2) do { \
if(arg1->type != constr_type) { \
int __ret; \
root = asn1p_constraint_new(yylineno, currentModule); \
checkmem(root); \
root->type = constr_type; \
__ret = asn1p_constraint_insert(root, \
arg1); \
checkmem(__ret == 0); \
} else { \
root = arg1; \
} \
if(arg2) { \
int __ret \
= asn1p_constraint_insert(root, arg2); \
checkmem(__ret == 0); \
} \
} while(0)
#ifdef AL_IMPORT
#error AL_IMPORT DEFINED ELSEWHERE!
#endif
#define AL_IMPORT(to,where,from,field) do { \
if(!(from)) break; \
while(TQ_FIRST(&((from)->where))) { \
TQ_ADD(&((to)->where), \
TQ_REMOVE(&((from)->where), field), \
field); \
} \
assert(TQ_FIRST(&((from)->where)) == 0); \
} while(0)
/* Line 371 of yacc.c */
#line 149 "asn1p_y.y"
# ifndef YY_NULL
# if defined __cplusplus && 201103L <= __cplusplus
# define YY_NULL nullptr
# else
# define YY_NULL 0
# endif
# endif
/* Enabling verbose error messages. */
#ifdef YYERROR_VERBOSE
# undef YYERROR_VERBOSE
# define YYERROR_VERBOSE 1
#else
# define YYERROR_VERBOSE 0
#endif
/* Enabling traces. */
#ifndef YYDEBUG
# define YYDEBUG 0
#endif
#if YYDEBUG
extern int yydebug;
#endif
/* Tokens. */
#ifndef YYTOKENTYPE
# define YYTOKENTYPE
/* Put the tokens into the symbol table, so that GDB and other debuggers
know about them. */
enum yytokentype {
TOK_PPEQ = 258,
TOK_VBracketLeft = 259,
TOK_VBracketRight = 260,
TOK_whitespace = 261,
TOK_opaque = 262,
TOK_bstring = 263,
TOK_cstring = 264,
TOK_hstring = 265,
TOK_identifier = 266,
TOK_number = 267,
TOK_number_negative = 268,
TOK_realnumber = 269,
TOK_tuple = 270,
TOK_quadruple = 271,
TOK_typereference = 272,
TOK_capitalreference = 273,
TOK_typefieldreference = 274,
TOK_valuefieldreference = 275,
TOK_Literal = 276,
TOK_ABSENT = 277,
TOK_ABSTRACT_SYNTAX = 278,
TOK_ALL = 279,
TOK_ANY = 280,
TOK_APPLICATION = 281,
TOK_AUTOMATIC = 282,
TOK_BEGIN = 283,
TOK_BIT = 284,
TOK_BMPString = 285,
TOK_BOOLEAN = 286,
TOK_BY = 287,
TOK_CHARACTER = 288,
TOK_CHOICE = 289,
TOK_CLASS = 290,
TOK_COMPONENT = 291,
TOK_COMPONENTS = 292,
TOK_CONSTRAINED = 293,
TOK_CONTAINING = 294,
TOK_DEFAULT = 295,
TOK_DEFINITIONS = 296,
TOK_DEFINED = 297,
TOK_EMBEDDED = 298,
TOK_ENCODED = 299,
TOK_ENCODING_CONTROL = 300,
TOK_END = 301,
TOK_ENUMERATED = 302,
TOK_EXPLICIT = 303,
TOK_EXPORTS = 304,
TOK_EXTENSIBILITY = 305,
TOK_EXTERNAL = 306,
TOK_FALSE = 307,
TOK_FROM = 308,
TOK_GeneralizedTime = 309,
TOK_GeneralString = 310,
TOK_GraphicString = 311,
TOK_IA5String = 312,
TOK_IDENTIFIER = 313,
TOK_IMPLICIT = 314,
TOK_IMPLIED = 315,
TOK_IMPORTS = 316,
TOK_INCLUDES = 317,
TOK_INSTANCE = 318,
TOK_INSTRUCTIONS = 319,
TOK_INTEGER = 320,
TOK_ISO646String = 321,
TOK_MAX = 322,
TOK_MIN = 323,
TOK_MINUS_INFINITY = 324,
TOK_NULL = 325,
TOK_NumericString = 326,
TOK_OBJECT = 327,
TOK_ObjectDescriptor = 328,
TOK_OCTET = 329,
TOK_OF = 330,
TOK_OPTIONAL = 331,
TOK_PATTERN = 332,
TOK_PDV = 333,
TOK_PLUS_INFINITY = 334,
TOK_PRESENT = 335,
TOK_PrintableString = 336,
TOK_PRIVATE = 337,
TOK_REAL = 338,
TOK_RELATIVE_OID = 339,
TOK_SEQUENCE = 340,
TOK_SET = 341,
TOK_SIZE = 342,
TOK_STRING = 343,
TOK_SYNTAX = 344,
TOK_T61String = 345,
TOK_TAGS = 346,
TOK_TeletexString = 347,
TOK_TRUE = 348,
TOK_TYPE_IDENTIFIER = 349,
TOK_UNIQUE = 350,
TOK_UNIVERSAL = 351,
TOK_UniversalString = 352,
TOK_UTCTime = 353,
TOK_UTF8String = 354,
TOK_VideotexString = 355,
TOK_VisibleString = 356,
TOK_WITH = 357,
TOK_EXCEPT = 358,
TOK_INTERSECTION = 359,
TOK_UNION = 360,
TOK_TwoDots = 361,
TOK_ThreeDots = 362
};
#endif
/* Tokens. */
#define TOK_PPEQ 258
#define TOK_VBracketLeft 259
#define TOK_VBracketRight 260
#define TOK_whitespace 261
#define TOK_opaque 262
#define TOK_bstring 263
#define TOK_cstring 264
#define TOK_hstring 265
#define TOK_identifier 266
#define TOK_number 267
#define TOK_number_negative 268
#define TOK_realnumber 269
#define TOK_tuple 270
#define TOK_quadruple 271
#define TOK_typereference 272
#define TOK_capitalreference 273
#define TOK_typefieldreference 274
#define TOK_valuefieldreference 275
#define TOK_Literal 276
#define TOK_ABSENT 277
#define TOK_ABSTRACT_SYNTAX 278
#define TOK_ALL 279
#define TOK_ANY 280
#define TOK_APPLICATION 281
#define TOK_AUTOMATIC 282
#define TOK_BEGIN 283
#define TOK_BIT 284
#define TOK_BMPString 285
#define TOK_BOOLEAN 286
#define TOK_BY 287
#define TOK_CHARACTER 288
#define TOK_CHOICE 289
#define TOK_CLASS 290
#define TOK_COMPONENT 291
#define TOK_COMPONENTS 292
#define TOK_CONSTRAINED 293
#define TOK_CONTAINING 294
#define TOK_DEFAULT 295
#define TOK_DEFINITIONS 296
#define TOK_DEFINED 297
#define TOK_EMBEDDED 298
#define TOK_ENCODED 299
#define TOK_ENCODING_CONTROL 300
#define TOK_END 301
#define TOK_ENUMERATED 302
#define TOK_EXPLICIT 303
#define TOK_EXPORTS 304
#define TOK_EXTENSIBILITY 305
#define TOK_EXTERNAL 306
#define TOK_FALSE 307
#define TOK_FROM 308
#define TOK_GeneralizedTime 309
#define TOK_GeneralString 310
#define TOK_GraphicString 311
#define TOK_IA5String 312
#define TOK_IDENTIFIER 313
#define TOK_IMPLICIT 314
#define TOK_IMPLIED 315
#define TOK_IMPORTS 316
#define TOK_INCLUDES 317
#define TOK_INSTANCE 318
#define TOK_INSTRUCTIONS 319
#define TOK_INTEGER 320
#define TOK_ISO646String 321
#define TOK_MAX 322
#define TOK_MIN 323
#define TOK_MINUS_INFINITY 324
#define TOK_NULL 325
#define TOK_NumericString 326
#define TOK_OBJECT 327
#define TOK_ObjectDescriptor 328
#define TOK_OCTET 329
#define TOK_OF 330
#define TOK_OPTIONAL 331
#define TOK_PATTERN 332
#define TOK_PDV 333
#define TOK_PLUS_INFINITY 334
#define TOK_PRESENT 335
#define TOK_PrintableString 336
#define TOK_PRIVATE 337
#define TOK_REAL 338
#define TOK_RELATIVE_OID 339
#define TOK_SEQUENCE 340
#define TOK_SET 341
#define TOK_SIZE 342
#define TOK_STRING 343
#define TOK_SYNTAX 344
#define TOK_T61String 345
#define TOK_TAGS 346
#define TOK_TeletexString 347
#define TOK_TRUE 348
#define TOK_TYPE_IDENTIFIER 349
#define TOK_UNIQUE 350
#define TOK_UNIVERSAL 351
#define TOK_UniversalString 352
#define TOK_UTCTime 353
#define TOK_UTF8String 354
#define TOK_VideotexString 355
#define TOK_VisibleString 356
#define TOK_WITH 357
#define TOK_EXCEPT 358
#define TOK_INTERSECTION 359
#define TOK_UNION 360
#define TOK_TwoDots 361
#define TOK_ThreeDots 362
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
typedef union YYSTYPE
{
/* Line 387 of yacc.c */
#line 88 "asn1p_y.y"
asn1p_t *a_grammar;
asn1p_module_flags_e a_module_flags;
asn1p_module_t *a_module;
asn1p_expr_type_e a_type; /* ASN.1 Type */
asn1p_expr_t *a_expr; /* Constructed collection */
asn1p_constraint_t *a_constr; /* Constraint */
enum asn1p_constraint_type_e a_ctype;/* Constraint type */
asn1p_xports_t *a_xports; /* IMports/EXports */
struct AssignedIdentifier a_aid; /* Assigned Identifier */
asn1p_oid_t *a_oid; /* Object Identifier */
asn1p_oid_arc_t a_oid_arc; /* Single OID's arc */
struct asn1p_type_tag_s a_tag; /* A tag */
asn1p_ref_t *a_ref; /* Reference to custom type */
asn1p_wsyntx_t *a_wsynt; /* WITH SYNTAX contents */
asn1p_wsyntx_chunk_t *a_wchunk; /* WITH SYNTAX chunk */
struct asn1p_ref_component_s a_refcomp; /* Component of a reference */
asn1p_value_t *a_value; /* Number, DefinedValue, etc */
struct asn1p_param_s a_parg; /* A parameter argument */
asn1p_paramlist_t *a_plist; /* A pargs list */
struct asn1p_expr_marker_s a_marker; /* OPTIONAL/DEFAULT */
enum asn1p_constr_pres_e a_pres; /* PRESENT/ABSENT/OPTIONAL */
asn1c_integer_t a_int;
double a_dbl;
char *tv_str;
struct {
char *buf;
int len;
} tv_opaque;
struct {
char *name;
struct asn1p_type_tag_s tag;
} tv_nametag;
/* Line 387 of yacc.c */
#line 439 "asn1p_y.y"
} YYSTYPE;
# define YYSTYPE_IS_TRIVIAL 1
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
# define YYSTYPE_IS_DECLARED 1
#endif
extern YYSTYPE yylval;
#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 (void);
#else
int yyparse ();
#endif
#endif /* ! YYPARSE_PARAM */
/* Copy the second part of user declarations. */
/* Line 390 of yacc.c */
#line 467 "asn1p_y.y"
#ifdef short
# undef short
#endif
#ifdef YYTYPE_UINT8
typedef YYTYPE_UINT8 yytype_uint8;
#else
typedef unsigned char yytype_uint8;
#endif
#ifdef YYTYPE_INT8
typedef YYTYPE_INT8 yytype_int8;
#elif (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
typedef signed char yytype_int8;
#else
typedef short int yytype_int8;
#endif
#ifdef YYTYPE_UINT16
typedef YYTYPE_UINT16 yytype_uint16;
#else
typedef unsigned short int yytype_uint16;
#endif
#ifdef YYTYPE_INT16
typedef YYTYPE_INT16 yytype_int16;
#else
typedef short int yytype_int16;
#endif
#ifndef YYSIZE_T
# ifdef __SIZE_TYPE__
# define YYSIZE_T __SIZE_TYPE__
# elif defined size_t
# define YYSIZE_T size_t
# elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
# define YYSIZE_T size_t
# else
# define YYSIZE_T unsigned int
# endif
#endif
#define YYSIZE_MAXIMUM ((YYSIZE_T) -1)
#ifndef YY_
# if defined YYENABLE_NLS && 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
#ifndef __attribute__
/* This feature is available in gcc versions 2.5 and later. */
# if (! defined __GNUC__ || __GNUC__ < 2 \
|| (__GNUC__ == 2 && __GNUC_MINOR__ < 5))
# define __attribute__(Spec) /* empty */
# endif
#endif
/* Suppress unused-variable warnings by "using" E. */
#if ! defined lint || defined __GNUC__
# define YYUSE(E) ((void) (E))
#else
# define YYUSE(E) /* empty */
#endif
/* Identity function, used to suppress warnings about constant conditions. */
#ifndef lint
# define YYID(N) (N)
#else
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static int
YYID (int yyi)
#else
static int
YYID (yyi)
int yyi;
#endif
{
return yyi;
}
#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
# elif defined __BUILTIN_VA_ARG_INCR
# include <alloca.h> /* INFRINGES ON USER NAME SPACE */
# elif defined _AIX
# define YYSTACK_ALLOC __alloca
# elif defined _MSC_VER
# include <malloc.h> /* INFRINGES ON USER NAME SPACE */
# define alloca _alloca
# else
# define YYSTACK_ALLOC alloca
# if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
/* Use EXIT_SUCCESS as a witness for stdlib.h. */
# ifndef EXIT_SUCCESS
# define EXIT_SUCCESS 0
# endif
# endif
# endif
# endif
# endif
# ifdef YYSTACK_ALLOC
/* Pacify GCC's `empty if-body' warning. */
# define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (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 2006 */
# endif
# else
# define YYSTACK_ALLOC YYMALLOC
# define YYSTACK_FREE YYFREE
# ifndef YYSTACK_ALLOC_MAXIMUM
# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
# endif
# if (defined __cplusplus && ! defined EXIT_SUCCESS \
&& ! ((defined YYMALLOC || defined malloc) \
&& (defined YYFREE || defined free)))
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
# ifndef EXIT_SUCCESS
# define EXIT_SUCCESS 0
# endif
# endif
# ifndef YYMALLOC
# define YYMALLOC malloc
# if ! defined malloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
# endif
# endif
# ifndef YYFREE
# define YYFREE free
# if ! defined free && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
void free (void *); /* INFRINGES ON USER NAME SPACE */
# endif
# endif
# endif
#endif /* ! defined yyoverflow || YYERROR_VERBOSE */
#if (! defined yyoverflow \
&& (! defined __cplusplus \
|| (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
/* A type that is properly aligned for any stack member. */
union yyalloc
{
yytype_int16 yyss_alloc;
YYSTYPE yyvs_alloc;
};
/* 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 (yytype_int16) + sizeof (YYSTYPE)) \
+ YYSTACK_GAP_MAXIMUM)
# define YYCOPY_NEEDED 1
/* 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_alloc, Stack) \
do \
{ \
YYSIZE_T yynewbytes; \
YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
Stack = &yyptr->Stack_alloc; \
yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
yyptr += yynewbytes / sizeof (*yyptr); \
} \
while (YYID (0))
#endif
#if defined YYCOPY_NEEDED && YYCOPY_NEEDED
/* Copy COUNT objects from SRC to DST. The source and destination do
not overlap. */
# ifndef YYCOPY
# if defined __GNUC__ && 1 < __GNUC__
# define YYCOPY(Dst, Src, Count) \
__builtin_memcpy (Dst, Src, (Count) * sizeof (*(Src)))
# else
# define YYCOPY(Dst, Src, Count) \
do \
{ \
YYSIZE_T yyi; \
for (yyi = 0; yyi < (Count); yyi++) \
(Dst)[yyi] = (Src)[yyi]; \
} \
while (YYID (0))
# endif
# endif
#endif /* !YYCOPY_NEEDED */
/* YYFINAL -- State number of the termination state. */
#define YYFINAL 7
/* YYLAST -- Last index in YYTABLE. */
#define YYLAST 873
/* YYNTOKENS -- Number of terminals. */
#define YYNTOKENS 123
/* YYNNTS -- Number of nonterminals. */
#define YYNNTS 124
/* YYNRULES -- Number of rules. */
#define YYNRULES 316
/* YYNRULES -- Number of states. */
#define YYNSTATES 477
/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
#define YYUNDEFTOK 2
#define YYMAXUTOK 362
#define YYTRANSLATE(YYX) \
((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
/* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */
static const yytype_uint8 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, 119, 2, 2, 2, 2, 2, 2,
112, 113, 2, 2, 115, 2, 120, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 116, 114,
121, 2, 2, 2, 122, 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, 117, 2, 118, 104, 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, 110, 106, 111, 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, 42, 43, 44,
45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
55, 56, 57, 58, 59, 60, 61, 62, 63, 64,
65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
75, 76, 77, 78, 79, 80, 81, 82, 83, 84,
85, 86, 87, 88, 89, 90, 91, 92, 93, 94,
95, 96, 97, 98, 99, 100, 101, 102, 103, 105,
107, 108, 109
};
#if YYDEBUG
/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
YYRHS. */
static const yytype_uint16 yyprhs[] =
{
0, 0, 3, 5, 7, 10, 11, 21, 22, 24,
28, 31, 33, 36, 38, 43, 45, 46, 48, 50,
53, 56, 59, 62, 65, 68, 69, 71, 75, 77,
80, 82, 84, 86, 87, 91, 93, 94, 96, 100,
103, 104, 106, 108, 111, 112, 114, 119, 121, 125,
127, 131, 133, 134, 136, 140, 144, 147, 149, 153,
155, 159, 161, 165, 170, 172, 174, 179, 183, 187,
194, 201, 203, 207, 209, 213, 217, 221, 225, 227,
231, 233, 235, 237, 239, 240, 242, 244, 248, 254,
258, 261, 265, 267, 269, 273, 276, 278, 280, 286,
287, 289, 291, 295, 298, 303, 307, 311, 315, 319,
323, 324, 326, 327, 334, 336, 339, 341, 343, 345,
349, 351, 355, 359, 363, 364, 367, 369, 374, 379,
384, 391, 398, 400, 405, 409, 411, 415, 419, 423,
425, 429, 431, 435, 437, 439, 441, 443, 447, 451,
453, 458, 460, 462, 466, 467, 471, 473, 475, 477,
479, 481, 483, 485, 487, 491, 493, 495, 497, 499,
502, 504, 506, 508, 510, 513, 516, 518, 520, 523,
526, 528, 530, 532, 534, 536, 539, 541, 544, 546,
548, 550, 552, 554, 556, 558, 560, 562, 564, 566,
568, 570, 572, 574, 576, 578, 580, 581, 583, 585,
587, 592, 596, 601, 603, 605, 607, 609, 613, 619,
621, 625, 627, 631, 633, 637, 639, 643, 648, 652,
654, 656, 660, 664, 668, 672, 674, 676, 677, 681,
684, 687, 689, 691, 693, 695, 697, 699, 701, 703,
705, 707, 709, 713, 719, 721, 725, 727, 731, 732,
734, 736, 738, 740, 742, 744, 746, 747, 753, 756,
758, 761, 764, 768, 770, 772, 776, 781, 783, 787,
790, 794, 796, 800, 801, 803, 805, 808, 811, 815,
817, 821, 823, 828, 833, 835, 837, 839, 841, 843,
845, 846, 848, 851, 856, 857, 859, 861, 863, 864,
866, 868, 870, 872, 874, 875, 877
};
/* YYRHS -- A `-1'-separated list of the rules' RHS. */
static const yytype_int16 yyrhs[] =
{
124, 0, -1, 125, -1, 126, -1, 125, 126, -1,
-1, 243, 127, 128, 41, 132, 3, 28, 135, 46,
-1, -1, 129, -1, 110, 130, 111, -1, 110, 111,
-1, 131, -1, 130, 131, -1, 246, -1, 246, 112,
12, 113, -1, 12, -1, -1, 133, -1, 134, -1,
133, 134, -1, 48, 91, -1, 59, 91, -1, 27,
91, -1, 50, 60, -1, 18, 64, -1, -1, 136,
-1, 148, 140, 137, -1, 138, -1, 137, 138, -1,
155, -1, 185, -1, 153, -1, -1, 45, 18, 139,
-1, 195, -1, -1, 141, -1, 61, 142, 114, -1,
61, 53, -1, -1, 143, -1, 145, -1, 143, 145,
-1, -1, 129, -1, 146, 53, 243, 144, -1, 147,
-1, 146, 115, 147, -1, 243, -1, 243, 110, 111,
-1, 246, -1, -1, 149, -1, 49, 150, 114, -1,
49, 24, 114, -1, 49, 114, -1, 151, -1, 150,
115, 151, -1, 243, -1, 243, 110, 111, -1, 246,
-1, 110, 203, 111, -1, 243, 154, 3, 152, -1,
194, -1, 179, -1, 179, 110, 158, 111, -1, 243,
3, 175, -1, 243, 3, 165, -1, 243, 110, 156,
111, 3, 175, -1, 243, 110, 156, 111, 3, 165,
-1, 157, -1, 156, 115, 157, -1, 243, -1, 243,
116, 246, -1, 243, 116, 243, -1, 192, 116, 246,
-1, 192, 116, 243, -1, 159, -1, 158, 115, 159,
-1, 175, -1, 188, -1, 246, -1, 152, -1, -1,
161, -1, 162, -1, 161, 115, 162, -1, 161, 115,
4, 161, 5, -1, 246, 175, 231, -1, 175, 231,
-1, 37, 75, 175, -1, 174, -1, 164, -1, 163,
115, 164, -1, 246, 175, -1, 174, -1, 175, -1,
35, 110, 167, 111, 169, -1, -1, 95, -1, 168,
-1, 167, 115, 168, -1, 19, 231, -1, 20, 175,
166, 231, -1, 20, 183, 231, -1, 20, 184, 231,
-1, 19, 183, 231, -1, 19, 175, 231, -1, 19,
184, 231, -1, -1, 170, -1, -1, 102, 89, 110,
171, 172, 111, -1, 173, -1, 172, 173, -1, 6,
-1, 21, -1, 182, -1, 117, 172, 118, -1, 109,
-1, 109, 119, 189, -1, 109, 119, 236, -1, 238,
177, 198, -1, -1, 176, 178, -1, 154, -1, 34,
110, 163, 111, -1, 85, 110, 160, 111, -1, 86,
110, 160, 111, -1, 85, 198, 75, 245, 238, 177,
-1, 86, 198, 75, 245, 238, 177, -1, 25, -1,
25, 42, 32, 246, -1, 63, 75, 179, -1, 17,
-1, 17, 120, 243, -1, 244, 120, 243, -1, 17,
120, 246, -1, 244, -1, 244, 120, 180, -1, 181,
-1, 180, 120, 181, -1, 182, -1, 19, -1, 20,
-1, 19, -1, 183, 120, 19, -1, 183, 120, 20,
-1, 18, -1, 246, 175, 3, 186, -1, 188, -1,
189, -1, 246, 116, 186, -1, -1, 110, 187, 191,
-1, 70, -1, 52, -1, 93, -1, 8, -1, 10,
-1, 190, -1, 236, -1, 246, -1, 243, 120, 246,
-1, 9, -1, 15, -1, 16, -1, 7, -1, 191,
7, -1, 31, -1, 70, -1, 83, -1, 193, -1,
74, 88, -1, 72, 58, -1, 84, -1, 51, -1,
43, 78, -1, 33, 88, -1, 98, -1, 54, -1,
195, -1, 65, -1, 47, -1, 29, 88, -1, 192,
-1, 193, 233, -1, 30, -1, 55, -1, 56, -1,
57, -1, 66, -1, 71, -1, 81, -1, 90, -1,
92, -1, 97, -1, 99, -1, 100, -1, 101, -1,
73, -1, 106, -1, 107, -1, 104, -1, 105, -1,
-1, 199, -1, 200, -1, 201, -1, 87, 112, 202,
113, -1, 112, 202, 113, -1, 201, 112, 202, 113,
-1, 203, -1, 220, -1, 109, -1, 204, -1, 204,
115, 109, -1, 204, 115, 109, 115, 204, -1, 205,
-1, 24, 103, 208, -1, 206, -1, 205, 196, 206,
-1, 207, -1, 206, 197, 207, -1, 208, -1, 208,
103, 208, -1, 211, 112, 203, 113, -1, 112, 203,
113, -1, 212, -1, 214, -1, 212, 224, 212, -1,
68, 224, 212, -1, 212, 224, 67, -1, 68, 224,
67, -1, 215, -1, 210, -1, -1, 110, 209, 191,
-1, 77, 9, -1, 77, 246, -1, 87, -1, 53,
-1, 52, -1, 93, -1, 237, -1, 190, -1, 213,
-1, 246, -1, 8, -1, 10, -1, 179, -1, 102,
36, 201, -1, 102, 37, 110, 216, 111, -1, 217,
-1, 216, 115, 217, -1, 109, -1, 246, 198, 218,
-1, -1, 219, -1, 80, -1, 22, -1, 76, -1,
221, -1, 225, -1, 223, -1, -1, 38, 32, 110,
222, 191, -1, 39, 175, -1, 108, -1, 108, 121,
-1, 121, 108, -1, 121, 108, 121, -1, 226, -1,
227, -1, 110, 243, 111, -1, 226, 110, 228, 111,
-1, 229, -1, 228, 115, 229, -1, 122, 230, -1,
122, 120, 230, -1, 246, -1, 230, 120, 246, -1,
-1, 232, -1, 76, -1, 40, 186, -1, 110, 111,
-1, 110, 234, 111, -1, 235, -1, 234, 115, 235,
-1, 246, -1, 246, 112, 236, 113, -1, 246, 112,
189, 113, -1, 236, -1, 109, -1, 12, -1, 13,
-1, 236, -1, 14, -1, -1, 239, -1, 240, 242,
-1, 117, 241, 12, 118, -1, -1, 96, -1, 26,
-1, 82, -1, -1, 59, -1, 48, -1, 17, -1,
18, -1, 18, -1, -1, 246, -1, 11, -1
};
/* YYRLINE[YYN] -- source line where rule number YYN was defined. */
static const yytype_uint16 yyrline[] =
{
0, 358, 358, 364, 369, 386, 386, 415, 416, 420,
423, 429, 435, 444, 448, 452, 462, 463, 472, 475,
484, 487, 490, 493, 497, 518, 519, 528, 541, 544,
561, 568, 581, 589, 588, 602, 615, 616, 619, 629,
635, 636, 639, 644, 651, 652, 656, 667, 672, 679,
685, 691, 701, 702, 714, 717, 720, 728, 733, 740,
746, 752, 761, 764, 774, 787, 797, 817, 823, 839,
845, 853, 862, 873, 877, 885, 893, 901, 912, 917,
924, 927, 935, 946, 969, 970, 973, 978, 982, 990,
997, 1003, 1010, 1016, 1021, 1028, 1033, 1036, 1043, 1053,
1054, 1058, 1065, 1075, 1085, 1096, 1106, 1117, 1127, 1138,
1150, 1151, 1158, 1157, 1166, 1170, 1177, 1181, 1184, 1188,
1194, 1202, 1211, 1223, 1247, 1254, 1273, 1276, 1282, 1288,
1294, 1304, 1314, 1320, 1332, 1347, 1355, 1366, 1377, 1388,
1396, 1418, 1426, 1435, 1439, 1444, 1453, 1458, 1463, 1471,
1494, 1504, 1505, 1506, 1513, 1513, 1518, 1526, 1531, 1536,
1541, 1546, 1549, 1555, 1566, 1584, 1588, 1593, 1601, 1610,
1625, 1626, 1627, 1628, 1629, 1630, 1631, 1632, 1633, 1634,
1635, 1636, 1637, 1644, 1645, 1646, 1650, 1656, 1669, 1670,
1674, 1678, 1679, 1680, 1681, 1682, 1686, 1687, 1688, 1689,
1693, 1694, 1701, 1701, 1702, 1702, 1705, 1706, 1712, 1716,
1719, 1729, 1732, 1738, 1741, 1747, 1751, 1754, 1760, 1771,
1772, 1778, 1779, 1785, 1786, 1793, 1794, 1800, 1808, 1816,
1822, 1828, 1835, 1843, 1851, 1860, 1863, 1866, 1866, 1876,
1881, 1893, 1896, 1902, 1907, 1912, 1913, 1914, 1915, 1929,
1934, 1942, 1962, 1965, 1971, 1974, 1980, 1986, 2000, 2001,
2005, 2008, 2011, 2019, 2020, 2021, 2026, 2025, 2037, 2046,
2047, 2048, 2049, 2052, 2055, 2064, 2080, 2086, 2092, 2106,
2117, 2133, 2136, 2156, 2160, 2164, 2168, 2191, 2195, 2201,
2206, 2213, 2220, 2228, 2236, 2243, 2254, 2258, 2265, 2266,
2297, 2298, 2302, 2309, 2315, 2316, 2317, 2318, 2322, 2323,
2324, 2328, 2332, 2340, 2347, 2348, 2354
};
#endif
#if YYDEBUG || YYERROR_VERBOSE || 0
/* 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", "TOK_PPEQ", "TOK_VBracketLeft",
"TOK_VBracketRight", "TOK_whitespace", "TOK_opaque", "TOK_bstring",
"TOK_cstring", "TOK_hstring", "TOK_identifier", "TOK_number",
"TOK_number_negative", "TOK_realnumber", "TOK_tuple", "TOK_quadruple",
"TOK_typereference", "TOK_capitalreference", "TOK_typefieldreference",
"TOK_valuefieldreference", "TOK_Literal", "TOK_ABSENT",
"TOK_ABSTRACT_SYNTAX", "TOK_ALL", "TOK_ANY", "TOK_APPLICATION",
"TOK_AUTOMATIC", "TOK_BEGIN", "TOK_BIT", "TOK_BMPString", "TOK_BOOLEAN",
"TOK_BY", "TOK_CHARACTER", "TOK_CHOICE", "TOK_CLASS", "TOK_COMPONENT",
"TOK_COMPONENTS", "TOK_CONSTRAINED", "TOK_CONTAINING", "TOK_DEFAULT",
"TOK_DEFINITIONS", "TOK_DEFINED", "TOK_EMBEDDED", "TOK_ENCODED",
"TOK_ENCODING_CONTROL", "TOK_END", "TOK_ENUMERATED", "TOK_EXPLICIT",
"TOK_EXPORTS", "TOK_EXTENSIBILITY", "TOK_EXTERNAL", "TOK_FALSE",
"TOK_FROM", "TOK_GeneralizedTime", "TOK_GeneralString",
"TOK_GraphicString", "TOK_IA5String", "TOK_IDENTIFIER", "TOK_IMPLICIT",
"TOK_IMPLIED", "TOK_IMPORTS", "TOK_INCLUDES", "TOK_INSTANCE",
"TOK_INSTRUCTIONS", "TOK_INTEGER", "TOK_ISO646String", "TOK_MAX",
"TOK_MIN", "TOK_MINUS_INFINITY", "TOK_NULL", "TOK_NumericString",
"TOK_OBJECT", "TOK_ObjectDescriptor", "TOK_OCTET", "TOK_OF",
"TOK_OPTIONAL", "TOK_PATTERN", "TOK_PDV", "TOK_PLUS_INFINITY",
"TOK_PRESENT", "TOK_PrintableString", "TOK_PRIVATE", "TOK_REAL",
"TOK_RELATIVE_OID", "TOK_SEQUENCE", "TOK_SET", "TOK_SIZE", "TOK_STRING",
"TOK_SYNTAX", "TOK_T61String", "TOK_TAGS", "TOK_TeletexString",
"TOK_TRUE", "TOK_TYPE_IDENTIFIER", "TOK_UNIQUE", "TOK_UNIVERSAL",
"TOK_UniversalString", "TOK_UTCTime", "TOK_UTF8String",
"TOK_VideotexString", "TOK_VisibleString", "TOK_WITH", "TOK_EXCEPT",
"'^'", "TOK_INTERSECTION", "'|'", "TOK_UNION", "TOK_TwoDots",
"TOK_ThreeDots", "'{'", "'}'", "'('", "')'", "';'", "','", "':'", "'['",
"']'", "'!'", "'.'", "'<'", "'@'", "$accept", "ParsedGrammar",
"ModuleList", "ModuleDefinition", "$@1", "optObjectIdentifier",
"ObjectIdentifier", "ObjectIdentifierBody", "ObjectIdentifierElement",
"optModuleDefinitionFlags", "ModuleDefinitionFlags",
"ModuleDefinitionFlag", "optModuleBody", "ModuleBody", "AssignmentList",
"Assignment", "$@2", "optImports", "ImportsDefinition",
"optImportsBundleSet", "ImportsBundleSet", "AssignedIdentifier",
"ImportsBundle", "ImportsList", "ImportsElement", "optExports",
"ExportsDefinition", "ExportsBody", "ExportsElement", "ValueSet",
"ValueSetTypeAssignment", "DefinedType", "DataTypeReference",
"ParameterArgumentList", "ParameterArgumentName", "ActualParameterList",
"ActualParameter", "optComponentTypeLists", "ComponentTypeLists",
"ComponentType", "AlternativeTypeLists", "AlternativeType",
"ObjectClass", "optUnique", "FieldSpec", "ClassField", "optWithSyntax",
"WithSyntax", "$@3", "WithSyntaxList", "WithSyntaxToken",
"ExtensionAndException", "Type", "NSTD_IndirectMarker",
"TypeDeclaration", "TypeDeclarationSet", "ComplexTypeReference",
"ComplexTypeReferenceAmpList", "ComplexTypeReferenceElement",
"PrimitiveFieldReference", "FieldName", "DefinedObjectClass",
"ValueAssignment", "Value", "$@4", "SimpleValue", "DefinedValue",
"RestrictedCharacterStringValue", "Opaque", "BasicTypeId",
"BasicTypeId_UniverationCompatible", "BasicType", "BasicString",
"UnionMark", "IntersectionMark", "optConstraints", "Constraint",
"SubtypeConstraint", "SetOfConstraints", "ConstraintSpecs",
"ElementSetSpecs", "ElementSetSpec", "Unions", "Intersections",
"IntersectionElements", "ConstraintSubtypeElement", "$@5",
"PatternConstraint", "ConstraintSpec", "SingleValue", "BitStringValue",
"ContainedSubtype", "InnerTypeConstraint", "WithComponentsList",
"WithComponentsElement", "optPresenceConstraint", "PresenceConstraint",
"GeneralConstraint", "UserDefinedConstraint", "$@6",
"ContentsConstraint", "ConstraintRangeSpec", "TableConstraint",
"SimpleTableConstraint", "ComponentRelationConstraint", "AtNotationList",
"AtNotationElement", "ComponentIdList", "optMarker", "Marker",
"UniverationDefinition", "UniverationList", "UniverationElement",
"SignedNumber", "RealValue", "optTag", "Tag", "TagTypeValue", "TagClass",
"TagPlicit", "TypeRefName", "ObjectClassReference", "optIdentifier",
"Identifier", YY_NULL
};
#endif
# ifdef YYPRINT
/* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
token YYLEX-NUM. */
static const yytype_uint16 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, 297, 298, 299, 300, 301, 302, 303, 304,
305, 306, 307, 308, 309, 310, 311, 312, 313, 314,
315, 316, 317, 318, 319, 320, 321, 322, 323, 324,
325, 326, 327, 328, 329, 330, 331, 332, 333, 334,
335, 336, 337, 338, 339, 340, 341, 342, 343, 344,
345, 346, 347, 348, 349, 350, 351, 352, 353, 354,
355, 356, 357, 358, 94, 359, 124, 360, 361, 362,
123, 125, 40, 41, 59, 44, 58, 91, 93, 33,
46, 60, 64
};
# endif
/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
static const yytype_uint8 yyr1[] =
{
0, 123, 124, 125, 125, 127, 126, 128, 128, 129,
129, 130, 130, 131, 131, 131, 132, 132, 133, 133,
134, 134, 134, 134, 134, 135, 135, 136, 137, 137,
138, 138, 138, 139, 138, 138, 140, 140, 141, 141,
142, 142, 143, 143, 144, 144, 145, 146, 146, 147,
147, 147, 148, 148, 149, 149, 149, 150, 150, 151,
151, 151, 152, 153, 154, 154, 154, 155, 155, 155,
155, 156, 156, 157, 157, 157, 157, 157, 158, 158,
159, 159, 159, 159, 160, 160, 161, 161, 161, 162,
162, 162, 162, 163, 163, 164, 164, 164, 165, 166,
166, 167, 167, 168, 168, 168, 168, 168, 168, 168,
169, 169, 171, 170, 172, 172, 173, 173, 173, 173,
174, 174, 174, 175, 176, 177, 178, 178, 178, 178,
178, 178, 178, 178, 178, 179, 179, 179, 179, 179,
179, 180, 180, 181, 182, 182, 183, 183, 183, 184,
185, 186, 186, 186, 187, 186, 186, 188, 188, 188,
188, 188, 188, 189, 189, 190, 190, 190, 191, 191,
192, 192, 192, 192, 192, 192, 192, 192, 192, 192,
192, 192, 192, 193, 193, 193, 194, 194, 195, 195,
195, 195, 195, 195, 195, 195, 195, 195, 195, 195,
195, 195, 196, 196, 197, 197, 198, 198, 199, 200,
200, 201, 201, 202, 202, 203, 203, 203, 203, 204,
204, 205, 205, 206, 206, 207, 207, 208, 208, 208,
208, 208, 208, 208, 208, 208, 208, 209, 208, 210,
210, 211, 211, 212, 212, 212, 212, 212, 212, 213,
213, 214, 215, 215, 216, 216, 217, 217, 218, 218,
219, 219, 219, 220, 220, 220, 222, 221, 223, 224,
224, 224, 224, 225, 225, 226, 227, 228, 228, 229,
229, 230, 230, 231, 231, 232, 232, 233, 233, 234,
234, 235, 235, 235, 235, 235, 236, 236, 237, 237,
238, 238, 239, 240, 241, 241, 241, 241, 242, 242,
242, 243, 243, 244, 245, 245, 246
};
/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
static const yytype_uint8 yyr2[] =
{
0, 2, 1, 1, 2, 0, 9, 0, 1, 3,
2, 1, 2, 1, 4, 1, 0, 1, 1, 2,
2, 2, 2, 2, 2, 0, 1, 3, 1, 2,
1, 1, 1, 0, 3, 1, 0, 1, 3, 2,
0, 1, 1, 2, 0, 1, 4, 1, 3, 1,
3, 1, 0, 1, 3, 3, 2, 1, 3, 1,
3, 1, 3, 4, 1, 1, 4, 3, 3, 6,
6, 1, 3, 1, 3, 3, 3, 3, 1, 3,
1, 1, 1, 1, 0, 1, 1, 3, 5, 3,
2, 3, 1, 1, 3, 2, 1, 1, 5, 0,
1, 1, 3, 2, 4, 3, 3, 3, 3, 3,
0, 1, 0, 6, 1, 2, 1, 1, 1, 3,
1, 3, 3, 3, 0, 2, 1, 4, 4, 4,
6, 6, 1, 4, 3, 1, 3, 3, 3, 1,
3, 1, 3, 1, 1, 1, 1, 3, 3, 1,
4, 1, 1, 3, 0, 3, 1, 1, 1, 1,
1, 1, 1, 1, 3, 1, 1, 1, 1, 2,
1, 1, 1, 1, 2, 2, 1, 1, 2, 2,
1, 1, 1, 1, 1, 2, 1, 2, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 0, 1, 1, 1,
4, 3, 4, 1, 1, 1, 1, 3, 5, 1,
3, 1, 3, 1, 3, 1, 3, 4, 3, 1,
1, 3, 3, 3, 3, 1, 1, 0, 3, 2,
2, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 3, 5, 1, 3, 1, 3, 0, 1,
1, 1, 1, 1, 1, 1, 0, 5, 2, 1,
2, 2, 3, 1, 1, 3, 4, 1, 3, 2,
3, 1, 3, 0, 1, 1, 2, 2, 3, 1,
3, 1, 4, 4, 1, 1, 1, 1, 1, 1,
0, 1, 2, 4, 0, 1, 1, 1, 0, 1,
1, 1, 1, 1, 0, 1, 1
};
/* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM.
Performed when YYTABLE doesn't specify something else to do. Zero
means the default is an error. */
static const yytype_uint16 yydefact[] =
{
0, 311, 312, 0, 2, 3, 5, 1, 4, 7,
0, 0, 8, 316, 15, 10, 0, 11, 13, 16,
9, 12, 0, 0, 0, 0, 0, 0, 0, 17,
18, 0, 24, 22, 20, 23, 21, 0, 19, 14,
52, 0, 0, 26, 36, 53, 0, 56, 0, 57,
59, 61, 6, 40, 0, 37, 55, 54, 0, 0,
39, 0, 41, 42, 0, 47, 49, 51, 188, 0,
189, 190, 191, 192, 193, 201, 194, 195, 196, 197,
198, 199, 200, 27, 28, 32, 30, 31, 35, 0,
300, 58, 60, 38, 43, 0, 0, 0, 33, 29,
300, 135, 313, 0, 170, 0, 0, 184, 177, 181,
183, 171, 0, 0, 172, 176, 180, 0, 0, 65,
186, 173, 64, 182, 139, 304, 0, 124, 301, 308,
44, 48, 50, 34, 0, 68, 67, 0, 185, 179,
178, 175, 174, 0, 71, 0, 173, 73, 0, 300,
0, 187, 0, 306, 307, 305, 0, 0, 0, 206,
310, 309, 302, 45, 46, 0, 136, 138, 0, 0,
0, 0, 0, 63, 159, 165, 160, 296, 297, 166,
167, 157, 158, 83, 0, 78, 80, 81, 161, 162,
82, 295, 287, 0, 289, 294, 291, 144, 145, 140,
141, 143, 137, 0, 156, 154, 150, 151, 152, 0,
163, 132, 0, 0, 206, 206, 126, 125, 0, 0,
123, 207, 208, 209, 300, 300, 0, 101, 300, 72,
77, 76, 75, 74, 249, 250, 299, 0, 243, 242,
0, 0, 241, 244, 0, 215, 237, 0, 251, 246,
0, 216, 219, 221, 223, 225, 236, 0, 229, 247,
230, 235, 298, 245, 248, 66, 300, 288, 0, 0,
0, 303, 0, 0, 0, 0, 300, 0, 300, 0,
300, 0, 0, 0, 300, 237, 0, 213, 214, 263,
265, 264, 273, 274, 0, 149, 146, 0, 285, 283,
283, 283, 103, 284, 99, 283, 283, 110, 0, 70,
69, 0, 269, 0, 0, 239, 240, 0, 0, 0,
0, 62, 0, 202, 203, 0, 204, 205, 0, 0,
0, 0, 79, 290, 0, 0, 163, 142, 168, 155,
164, 153, 0, 120, 0, 93, 96, 97, 300, 134,
0, 0, 85, 86, 92, 283, 300, 314, 0, 314,
0, 0, 268, 0, 211, 0, 0, 286, 108, 0,
107, 109, 100, 283, 105, 106, 0, 98, 111, 102,
220, 270, 271, 234, 232, 252, 0, 238, 228, 217,
222, 224, 226, 0, 233, 231, 293, 292, 169, 133,
0, 127, 300, 95, 300, 128, 300, 90, 283, 300,
315, 129, 300, 210, 266, 275, 0, 0, 277, 212,
147, 148, 104, 0, 272, 256, 0, 254, 206, 0,
227, 121, 122, 94, 91, 300, 87, 89, 124, 124,
0, 0, 279, 281, 276, 0, 112, 253, 0, 258,
218, 0, 130, 131, 267, 280, 0, 278, 0, 255,
261, 262, 260, 257, 259, 88, 282, 116, 117, 0,
0, 114, 118, 0, 113, 115, 119
};
/* YYDEFGOTO[NTERM-NUM]. */
static const yytype_int16 yydefgoto[] =
{
-1, 3, 4, 5, 9, 11, 12, 16, 17, 28,
29, 30, 42, 43, 83, 84, 133, 54, 55, 61,
62, 164, 63, 64, 65, 44, 45, 48, 49, 183,
85, 118, 86, 143, 144, 184, 185, 351, 352, 353,
344, 345, 135, 373, 226, 227, 377, 378, 458, 470,
471, 354, 355, 158, 159, 217, 248, 199, 200, 472,
300, 301, 87, 206, 272, 207, 208, 249, 339, 120,
121, 122, 123, 325, 328, 220, 221, 222, 223, 286,
287, 251, 252, 253, 254, 255, 319, 256, 257, 258,
259, 260, 261, 426, 427, 463, 464, 288, 289, 440,
290, 314, 291, 292, 293, 417, 418, 442, 302, 303,
151, 193, 194, 262, 263, 127, 128, 129, 156, 162,
209, 124, 409, 264
};
/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
STATE-NUM. */
#define YYPACT_NINF -297
static const yytype_int16 yypact[] =
{
201, -297, -297, 30, 201, -297, -297, -297, -297, -59,
10, 41, -297, -297, -297, -297, 23, -297, -35, 176,
-297, -297, 103, 59, 82, 117, 122, 134, 239, 176,
-297, 142, -297, -297, -297, -297, -297, 237, -297, -297,
119, 57, 227, -297, 206, -297, 165, -297, 157, -297,
189, -297, -297, 169, 596, -297, -297, -297, 193, 186,
-297, 195, 193, -297, -26, -297, 209, -297, -297, 298,
-297, -297, -297, -297, -297, -297, -297, -297, -297, -297,
-297, -297, -297, 596, -297, -297, -297, -297, -297, 271,
203, -297, -297, -297, -297, 201, 193, 212, -297, -297,
-3, 204, -297, 241, -297, 242, 253, -297, -297, -297,
-297, -297, 275, 246, -297, -297, -297, 772, 332, 230,
-297, 236, -297, -297, 231, 124, 345, -297, -297, 110,
-59, -297, -297, -297, 240, -297, -297, 193, -297, -297,
-297, -297, -297, -66, -297, 243, -297, 244, 247, 97,
91, -297, 258, -297, -297, -297, 341, 228, 696, 105,
-297, -297, -297, -297, -297, 265, -297, -297, 353, 772,
193, 193, 448, -297, -297, -297, -297, -297, -297, -297,
-297, -297, -297, -297, 98, -297, -297, -297, -297, -297,
-297, -297, -297, 101, -297, -297, 250, -297, -297, 238,
-297, -297, -297, 248, -297, -297, -297, -297, -297, 245,
251, 322, 267, 300, -46, 111, -297, -297, 261, 402,
-297, -297, -297, 270, 263, 7, 136, -297, -3, -297,
-297, -297, -297, -297, -297, -297, -297, 276, -297, -297,
-79, 221, -297, -297, 255, -297, -297, 448, -297, -297,
272, 269, 187, 191, -297, 282, -297, 274, -79, -297,
-297, -297, -297, -297, -297, -297, 97, -297, 84, 216,
286, -297, 380, 377, 228, 357, 9, 290, 74, 316,
74, 318, 402, 362, 203, 201, 284, -297, -297, -297,
-297, -297, 285, -297, 402, -297, -297, 228, -297, -4,
44, -4, -297, -297, 303, 44, -4, 297, 265, -297,
-297, 571, 279, 293, 582, -297, -297, 292, 295, 380,
289, -297, 294, -297, -297, 571, -297, -297, 571, 571,
448, 690, -297, -297, 296, 308, -297, -297, -297, 400,
-297, -297, 377, 304, 137, -297, -297, -297, 203, -297,
333, 311, 309, -297, -297, -4, 203, 377, 317, 377,
314, 319, -297, 321, -297, 312, 320, -297, -297, 291,
-297, -297, -297, -4, -297, -297, 346, -297, -297, -297,
-297, -297, 315, -297, -297, 270, 69, 400, -297, 324,
191, -297, -297, 329, -297, -297, -297, -297, -297, -297,
216, -297, 9, -297, 203, -297, 46, -297, -4, 203,
-297, -297, 203, -297, -297, -297, -1, 138, -297, -297,
-297, -297, -297, 327, -297, -297, 139, -297, 105, 553,
-297, -297, -297, -297, -297, 79, -297, -297, -297, -297,
380, 377, 310, -297, -297, 312, -297, -297, 69, 11,
-297, 55, -297, -297, 400, 310, 377, -297, 50, -297,
-297, -297, -297, -297, -297, -297, -297, -297, -297, 50,
18, -297, -297, 34, -297, -297, -297
};
/* YYPGOTO[NTERM-NUM]. */
static const yytype_int16 yypgoto[] =
{
-297, -297, -297, 439, -297, -297, 323, -297, 428, -297,
-297, 416, -297, -297, -297, 364, -297, -297, -297, -297,
-297, -297, 386, -297, 354, -297, -297, -297, 391, 325,
-297, 313, -297, -297, 283, -297, 185, 188, 32, 63,
-297, 72, 249, -297, -297, 167, -297, -297, -297, 12,
-187, -259, -87, -297, -126, -297, -82, -297, 208, -124,
257, 259, -297, -120, -297, -134, -255, -141, -296, -52,
36, -297, -36, -297, -297, -213, -297, -297, 159, -110,
-168, 51, -297, 158, 160, -130, -297, -297, -297, -253,
-297, -297, -297, -297, 37, -297, -297, -297, -297, -297,
-297, 229, -297, -297, -297, -297, 45, 52, -207, -297,
-297, -297, 218, -138, -297, -152, -297, -297, -297, -297,
5, -297, 132, -10
};
/* 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 YYTABLE_NINF, syntax error. */
#define YYTABLE_NINF -284
static const yytype_int16 yytable[] =
{
18, 279, 281, 126, 250, 6, 18, 119, 188, 6,
13, 189, 195, 136, 334, 187, 188, 346, 88, 189,
13, 13, 14, 387, 467, 295, 296, 95, 201, 312,
7, 51, 134, 460, 13, 14, 297, 197, 198, 468,
467, 218, 313, 67, 90, 168, 50, 88, 51, 169,
435, 10, 67, 197, 198, 468, 467, 13, 66, 89,
465, 384, 186, 50, 278, 145, 219, 66, 13, 197,
198, 468, 298, 90, 1, 2, 119, 22, 395, 320,
13, 46, 19, 350, 297, 13, 67, 461, 89, 96,
13, 462, 368, 370, 371, 13, 177, 178, 374, 375,
130, 66, 13, 177, 178, 174, 175, 176, 13, 177,
178, 350, 179, 180, 125, 31, 350, 145, 343, 441,
298, 15, 147, 32, 125, 188, 125, 167, 189, 474,
195, 335, 187, 188, 20, 469, 189, 299, 304, 190,
196, 310, 166, 346, 454, 431, 201, 210, 407, 181,
153, 469, 476, 146, 341, 343, 188, 202, 160, 189,
231, 233, 393, 125, 369, -25, 422, 469, 41, 161,
406, 47, 360, 33, 147, 230, 232, 367, 425, 186,
13, 380, 35, 343, 366, -84, 1, 2, 343, 347,
182, 125, 218, 191, 23, 349, 125, 362, 218, 392,
191, 437, 192, 24, 13, 146, 154, 172, 34, 265,
1, 2, 267, 266, 125, 449, 268, 219, 1, 2,
155, 280, 60, 219, 25, 36, 26, 13, 177, 178,
315, 316, 13, 1, 2, 27, 174, 175, 176, 13,
177, 178, 37, 179, 180, 1, 2, 307, 401, 444,
447, 308, 402, 445, 448, 39, 190, 438, 196, 336,
439, 403, 432, 340, 210, 40, 348, 53, 356, 408,
356, 57, 58, 52, 100, 1, 2, 197, 198, 56,
181, 295, 296, 475, 224, 225, 475, 210, 101, 102,
363, 317, 318, 323, 324, 326, 327, 92, 204, 59,
103, 68, 104, 297, 105, 197, 198, 101, 102, 93,
420, 421, 452, 453, 106, 347, 98, 434, 107, 97,
125, 182, 108, 132, 137, 109, 70, 71, 72, 138,
139, 140, 399, 141, 142, 148, 110, 73, 205, 298,
149, 111, 74, 112, 75, 113, 150, 410, 157, 410,
165, 152, 76, 203, 114, 115, 228, 172, 270, 170,
171, 77, 269, 78, 275, 273, 271, 274, 79, 116,
80, 81, 82, 282, -283, 277, 428, 276, -283, 311,
125, 117, 294, 321, 322, 329, 330, 338, 13, 342,
336, 357, 348, 359, 361, 365, 356, 364, 372, 376,
381, 382, 388, 389, 219, 386, 443, 398, 404, 396,
234, 175, 235, 13, 177, 178, 236, 179, 180, 101,
102, 397, 405, 400, 406, 356, 237, 413, 411, 414,
456, 443, 415, 419, 416, 423, 424, 446, 428, 429,
283, 284, 430, 8, 21, 38, 466, 99, 94, 91,
131, 332, 229, 163, 238, 239, 234, 175, 235, 13,
177, 178, 236, 179, 180, 101, 102, 451, 358, 436,
240, 216, 237, 173, 433, 379, 385, 309, 337, 241,
450, 473, 305, 390, 306, 459, 333, 331, 391, 242,
457, 412, 0, 455, 0, 243, 0, 0, 0, 0,
238, 239, 0, 0, 244, 0, 0, 0, 0, 0,
0, 245, 285, 0, 247, 0, 240, 0, 0, 0,
0, 0, 0, 0, 0, 241, 0, 0, 0, 0,
0, 0, 0, 0, 0, 242, 0, 0, 0, 0,
0, 243, 0, 0, 0, 0, 0, 0, 0, 0,
244, 0, 0, 0, 0, 0, 0, 245, 246, 0,
247, 234, 175, 235, 13, 177, 178, 236, 179, 180,
101, 102, 0, 0, 0, 0, 0, 237, 0, 234,
175, 235, 13, 177, 178, 236, 179, 180, 101, 102,
234, 175, 235, 13, 177, 178, 236, 179, 180, 0,
0, 0, 0, 0, 0, 238, 239, 13, 0, 0,
0, 0, 0, 1, 2, 0, 0, 0, 0, 0,
0, 240, 0, 238, 239, 0, 68, 0, 0, 0,
241, 0, 0, 0, 238, 0, 0, 0, 0, 240,
242, 69, 0, 0, 0, 0, 243, 0, 241, 383,
0, 70, 71, 72, 0, 244, 0, 0, 242, 0,
0, 0, 73, 246, 243, 247, 0, 74, 0, 75,
0, 0, 0, 244, 0, 243, 0, 76, 0, 0,
0, 246, 0, 247, 0, 0, 77, 0, 78, 0,
0, 0, 0, 79, 0, 80, 81, 82, 234, 175,
235, 13, 177, 178, 236, 179, 180, 0, 0, 0,
0, 0, 0, 101, 102, 0, 0, 0, 0, 0,
0, 211, 0, 0, 0, 103, 68, 104, 0, 105,
212, 0, 0, 0, 0, 0, 0, 0, 0, 106,
0, 0, 238, 107, 0, 0, 0, 108, 0, 0,
109, 70, 71, 72, 0, 0, 0, 394, 0, 213,
0, 110, 73, 0, 0, 0, 111, 74, 112, 75,
113, 0, 0, 0, 0, 0, 0, 76, 0, 114,
115, 214, 215, 243, 0, 0, 77, 0, 78, 1,
2, 0, 0, 79, 116, 80, 81, 82, 0, 0,
0, 103, 68, 104, 0, 105, 0, 0, 0, 0,
0, 0, 0, 0, 0, 106, 0, 0, 0, 107,
0, 0, 0, 108, 0, 0, 109, 70, 71, 72,
0, 0, 0, 0, 0, 0, 0, 110, 73, 0,
0, 0, 111, 74, 112, 75, 113, 0, 0, 0,
0, 0, 0, 76, 0, 114, 115, 0, 0, 0,
0, 0, 77, 0, 78, 0, 0, 0, 0, 79,
116, 80, 81, 82
};
#define yypact_value_is_default(Yystate) \
(!!((Yystate) == (-297)))
#define yytable_value_is_error(Yytable_value) \
YYID (0)
static const yytype_int16 yycheck[] =
{
10, 214, 215, 90, 172, 0, 16, 89, 149, 4,
11, 149, 150, 100, 269, 149, 157, 276, 54, 157,
11, 11, 12, 319, 6, 18, 19, 53, 152, 108,
0, 41, 35, 22, 11, 12, 40, 19, 20, 21,
6, 87, 121, 53, 54, 111, 41, 83, 58, 115,
4, 110, 62, 19, 20, 21, 6, 11, 53, 54,
5, 314, 149, 58, 110, 117, 112, 62, 11, 19,
20, 21, 76, 83, 17, 18, 158, 112, 331, 247,
11, 24, 41, 37, 40, 11, 96, 76, 83, 115,
11, 80, 299, 300, 301, 11, 12, 13, 305, 306,
95, 96, 11, 12, 13, 8, 9, 10, 11, 12,
13, 37, 15, 16, 117, 12, 37, 169, 109, 120,
76, 111, 117, 64, 117, 266, 117, 137, 266, 111,
268, 269, 266, 274, 111, 117, 274, 224, 225, 149,
150, 228, 137, 402, 440, 400, 270, 157, 355, 52,
26, 117, 118, 117, 274, 109, 297, 152, 48, 297,
170, 171, 330, 117, 120, 46, 373, 117, 49, 59,
115, 114, 282, 91, 169, 170, 171, 297, 109, 266,
11, 311, 60, 109, 294, 111, 17, 18, 109, 276,
93, 117, 87, 109, 18, 277, 117, 284, 87, 329,
109, 408, 111, 27, 11, 169, 82, 110, 91, 111,
17, 18, 111, 115, 117, 428, 115, 112, 17, 18,
96, 110, 53, 112, 48, 91, 50, 11, 12, 13,
9, 241, 11, 17, 18, 59, 8, 9, 10, 11,
12, 13, 3, 15, 16, 17, 18, 111, 111, 111,
111, 115, 115, 115, 115, 113, 266, 409, 268, 269,
412, 348, 400, 273, 274, 28, 276, 61, 278, 356,
280, 114, 115, 46, 3, 17, 18, 19, 20, 114,
52, 18, 19, 470, 19, 20, 473, 297, 17, 18,
285, 36, 37, 106, 107, 104, 105, 111, 70, 110,
29, 30, 31, 40, 33, 19, 20, 17, 18, 114,
19, 20, 438, 439, 43, 402, 18, 404, 47, 110,
117, 93, 51, 111, 120, 54, 55, 56, 57, 88,
88, 78, 342, 58, 88, 3, 65, 66, 110, 76,
110, 70, 71, 72, 73, 74, 110, 357, 3, 359,
110, 120, 81, 12, 83, 84, 3, 110, 120, 116,
116, 90, 112, 92, 42, 120, 118, 116, 97, 98,
99, 100, 101, 112, 111, 75, 386, 110, 115, 103,
117, 110, 112, 111, 115, 103, 112, 7, 11, 32,
400, 75, 402, 75, 32, 110, 406, 113, 95, 102,
121, 108, 113, 109, 112, 110, 416, 7, 75, 113,
8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
18, 113, 111, 119, 115, 435, 24, 113, 111, 110,
120, 441, 111, 113, 122, 89, 121, 110, 448, 115,
38, 39, 113, 4, 16, 29, 456, 83, 62, 58,
96, 266, 169, 130, 52, 53, 8, 9, 10, 11,
12, 13, 14, 15, 16, 17, 18, 435, 280, 406,
68, 158, 24, 148, 402, 308, 317, 228, 270, 77,
429, 469, 225, 325, 225, 448, 268, 258, 328, 87,
445, 359, -1, 441, -1, 93, -1, -1, -1, -1,
52, 53, -1, -1, 102, -1, -1, -1, -1, -1,
-1, 109, 110, -1, 112, -1, 68, -1, -1, -1,
-1, -1, -1, -1, -1, 77, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 87, -1, -1, -1, -1,
-1, 93, -1, -1, -1, -1, -1, -1, -1, -1,
102, -1, -1, -1, -1, -1, -1, 109, 110, -1,
112, 8, 9, 10, 11, 12, 13, 14, 15, 16,
17, 18, -1, -1, -1, -1, -1, 24, -1, 8,
9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
8, 9, 10, 11, 12, 13, 14, 15, 16, -1,
-1, -1, -1, -1, -1, 52, 53, 11, -1, -1,
-1, -1, -1, 17, 18, -1, -1, -1, -1, -1,
-1, 68, -1, 52, 53, -1, 30, -1, -1, -1,
77, -1, -1, -1, 52, -1, -1, -1, -1, 68,
87, 45, -1, -1, -1, -1, 93, -1, 77, 67,
-1, 55, 56, 57, -1, 102, -1, -1, 87, -1,
-1, -1, 66, 110, 93, 112, -1, 71, -1, 73,
-1, -1, -1, 102, -1, 93, -1, 81, -1, -1,
-1, 110, -1, 112, -1, -1, 90, -1, 92, -1,
-1, -1, -1, 97, -1, 99, 100, 101, 8, 9,
10, 11, 12, 13, 14, 15, 16, -1, -1, -1,
-1, -1, -1, 17, 18, -1, -1, -1, -1, -1,
-1, 25, -1, -1, -1, 29, 30, 31, -1, 33,
34, -1, -1, -1, -1, -1, -1, -1, -1, 43,
-1, -1, 52, 47, -1, -1, -1, 51, -1, -1,
54, 55, 56, 57, -1, -1, -1, 67, -1, 63,
-1, 65, 66, -1, -1, -1, 70, 71, 72, 73,
74, -1, -1, -1, -1, -1, -1, 81, -1, 83,
84, 85, 86, 93, -1, -1, 90, -1, 92, 17,
18, -1, -1, 97, 98, 99, 100, 101, -1, -1,
-1, 29, 30, 31, -1, 33, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 43, -1, -1, -1, 47,
-1, -1, -1, 51, -1, -1, 54, 55, 56, 57,
-1, -1, -1, -1, -1, -1, -1, 65, 66, -1,
-1, -1, 70, 71, 72, 73, 74, -1, -1, -1,
-1, -1, -1, 81, -1, 83, 84, -1, -1, -1,
-1, -1, 90, -1, 92, -1, -1, -1, -1, 97,
98, 99, 100, 101
};
/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
symbol of state STATE-NUM. */
static const yytype_uint8 yystos[] =
{
0, 17, 18, 124, 125, 126, 243, 0, 126, 127,
110, 128, 129, 11, 12, 111, 130, 131, 246, 41,
111, 131, 112, 18, 27, 48, 50, 59, 132, 133,
134, 12, 64, 91, 91, 60, 91, 3, 134, 113,
28, 49, 135, 136, 148, 149, 24, 114, 150, 151,
243, 246, 46, 61, 140, 141, 114, 114, 115, 110,
53, 142, 143, 145, 146, 147, 243, 246, 30, 45,
55, 56, 57, 66, 71, 73, 81, 90, 92, 97,
99, 100, 101, 137, 138, 153, 155, 185, 195, 243,
246, 151, 111, 114, 145, 53, 115, 110, 18, 138,
3, 17, 18, 29, 31, 33, 43, 47, 51, 54,
65, 70, 72, 74, 83, 84, 98, 110, 154, 179,
192, 193, 194, 195, 244, 117, 175, 238, 239, 240,
243, 147, 111, 139, 35, 165, 175, 120, 88, 88,
78, 58, 88, 156, 157, 192, 193, 243, 3, 110,
110, 233, 120, 26, 82, 96, 241, 3, 176, 177,
48, 59, 242, 129, 144, 110, 243, 246, 111, 115,
116, 116, 110, 152, 8, 9, 10, 12, 13, 15,
16, 52, 93, 152, 158, 159, 175, 188, 190, 236,
246, 109, 111, 234, 235, 236, 246, 19, 20, 180,
181, 182, 243, 12, 70, 110, 186, 188, 189, 243,
246, 25, 34, 63, 85, 86, 154, 178, 87, 112,
198, 199, 200, 201, 19, 20, 167, 168, 3, 157,
243, 246, 243, 246, 8, 10, 14, 24, 52, 53,
68, 77, 87, 93, 102, 109, 110, 112, 179, 190,
203, 204, 205, 206, 207, 208, 210, 211, 212, 213,
214, 215, 236, 237, 246, 111, 115, 111, 115, 112,
120, 118, 187, 120, 116, 42, 110, 75, 110, 198,
110, 198, 112, 38, 39, 110, 202, 203, 220, 221,
223, 225, 226, 227, 112, 18, 19, 40, 76, 175,
183, 184, 231, 232, 175, 183, 184, 111, 115, 165,
175, 103, 108, 121, 224, 9, 246, 36, 37, 209,
203, 111, 115, 106, 107, 196, 104, 105, 197, 103,
112, 224, 159, 235, 189, 236, 246, 181, 7, 191,
246, 186, 32, 109, 163, 164, 174, 175, 246, 179,
37, 160, 161, 162, 174, 175, 246, 75, 160, 75,
202, 32, 175, 243, 113, 110, 202, 186, 231, 120,
231, 231, 95, 166, 231, 231, 102, 169, 170, 168,
208, 121, 108, 67, 212, 201, 110, 191, 113, 109,
206, 207, 208, 203, 67, 212, 113, 113, 7, 246,
119, 111, 115, 175, 75, 111, 115, 231, 175, 245,
246, 111, 245, 113, 110, 111, 122, 228, 229, 113,
19, 20, 231, 89, 121, 109, 216, 217, 246, 115,
113, 189, 236, 164, 175, 4, 162, 231, 238, 238,
222, 120, 230, 246, 111, 115, 110, 111, 115, 198,
204, 161, 177, 177, 191, 230, 120, 229, 171, 217,
22, 76, 80, 218, 219, 5, 246, 6, 21, 117,
172, 173, 182, 172, 111, 173, 118
};
#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. However,
YYFAIL appears to be in use. Nevertheless, it is formally deprecated
in Bison 2.4.2's NEWS entry, where a plan to phase it out is
discussed. */
#define YYFAIL goto yyerrlab
#if defined YYFAIL
/* This is here to suppress warnings from the GCC cpp's
-Wunused-macros. Normally we don't worry about that warning, but
some users do, and we want to make it easy for users to remove
YYFAIL uses, which will produce warnings from Bison 2.5. */
#endif
#define YYRECOVERING() (!!yyerrstatus)
#define YYBACKUP(Token, Value) \
do \
if (yychar == YYEMPTY) \
{ \
yychar = (Token); \
yylval = (Value); \
YYPOPSTACK (yylen); \
yystate = *yyssp; \
goto yybackup; \
} \
else \
{ \
yyerror (YY_("syntax error: cannot back up")); \
YYERROR; \
} \
while (YYID (0))
/* Error token number */
#define YYTERROR 1
#define YYERRCODE 256
/* This macro is provided for backward compatibility. */
#ifndef YY_LOCATION_PRINT
# define YY_LOCATION_PRINT(File, Loc) ((void) 0)
#endif
/* YYLEX -- calling `yylex' with the right arguments. */
#ifdef YYLEX_PARAM
# define YYLEX yylex (YYLEX_PARAM)
#else
# define YYLEX yylex ()
#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 (YYID (0))
# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
do { \
if (yydebug) \
{ \
YYFPRINTF (stderr, "%s ", Title); \
yy_symbol_print (stderr, \
Type, Value); \
YYFPRINTF (stderr, "\n"); \
} \
} while (YYID (0))
/*--------------------------------.
| Print this symbol on YYOUTPUT. |
`--------------------------------*/
/*ARGSUSED*/
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static void
yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
#else
static void
yy_symbol_value_print (yyoutput, yytype, yyvaluep)
FILE *yyoutput;
int yytype;
YYSTYPE const * const yyvaluep;
#endif
{
FILE *yyo = yyoutput;
YYUSE (yyo);
if (!yyvaluep)
return;
# ifdef YYPRINT
if (yytype < YYNTOKENS)
YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
# else
YYUSE (yyoutput);
# endif
YYUSE (yytype);
}
/*--------------------------------.
| Print this symbol on YYOUTPUT. |
`--------------------------------*/
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static void
yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
#else
static void
yy_symbol_print (yyoutput, yytype, yyvaluep)
FILE *yyoutput;
int yytype;
YYSTYPE const * const yyvaluep;
#endif
{
if (yytype < YYNTOKENS)
YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
else
YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
yy_symbol_value_print (yyoutput, yytype, yyvaluep);
YYFPRINTF (yyoutput, ")");
}
/*------------------------------------------------------------------.
| yy_stack_print -- Print the state stack from its BOTTOM up to its |
| TOP (included). |
`------------------------------------------------------------------*/
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static void
yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
#else
static void
yy_stack_print (yybottom, yytop)
yytype_int16 *yybottom;
yytype_int16 *yytop;
#endif
{
YYFPRINTF (stderr, "Stack now");
for (; yybottom <= yytop; yybottom++)
{
int yybot = *yybottom;
YYFPRINTF (stderr, " %d", yybot);
}
YYFPRINTF (stderr, "\n");
}
# define YY_STACK_PRINT(Bottom, Top) \
do { \
if (yydebug) \
yy_stack_print ((Bottom), (Top)); \
} while (YYID (0))
/*------------------------------------------------.
| Report that the YYRULE is going to be reduced. |
`------------------------------------------------*/
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static void
yy_reduce_print (YYSTYPE *yyvsp, int yyrule)
#else
static void
yy_reduce_print (yyvsp, yyrule)
YYSTYPE *yyvsp;
int yyrule;
#endif
{
int yynrhs = yyr2[yyrule];
int yyi;
unsigned long int yylno = yyrline[yyrule];
YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
yyrule - 1, yylno);
/* The symbols being reduced. */
for (yyi = 0; yyi < yynrhs; yyi++)
{
YYFPRINTF (stderr, " $%d = ", yyi + 1);
yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi],
&(yyvsp[(yyi + 1) - (yynrhs)])
);
YYFPRINTF (stderr, "\n");
}
}
# define YY_REDUCE_PRINT(Rule) \
do { \
if (yydebug) \
yy_reduce_print (yyvsp, Rule); \
} while (YYID (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. */
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static YYSIZE_T
yystrlen (const char *yystr)
#else
static YYSIZE_T
yystrlen (yystr)
const char *yystr;
#endif
{
YYSIZE_T yylen;
for (yylen = 0; yystr[yylen]; yylen++)
continue;
return yylen;
}
# 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. */
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static char *
yystpcpy (char *yydest, const char *yysrc)
#else
static char *
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 == '"')
{
YYSIZE_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
/* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message
about the unexpected token YYTOKEN for the state stack whose top is
YYSSP.
Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is
not large enough to hold the message. In that case, also set
*YYMSG_ALLOC to the required number of bytes. Return 2 if the
required number of bytes is too large to store. */
static int
yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
yytype_int16 *yyssp, int yytoken)
{
YYSIZE_T yysize0 = yytnamerr (YY_NULL, yytname[yytoken]);
YYSIZE_T yysize = yysize0;
enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
/* Internationalized format string. */
const char *yyformat = YY_NULL;
/* Arguments of yyformat. */
char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
/* Number of reported tokens (one for the "unexpected", one per
"expected"). */
int yycount = 0;
/* There are many possibilities here to consider:
- Assume YYFAIL is not used. It's too flawed to consider. See
<http://lists.gnu.org/archive/html/bison-patches/2009-12/msg00024.html>
for details. YYERROR is fine as it does not invoke this
function.
- If this state is a consistent state with a default action, then
the only way this function was invoked is if the default action
is an error action. In that case, don't check for expected
tokens because there are none.
- The only way there can be no lookahead present (in yychar) is if
this state is a consistent state with a default action. Thus,
detecting the absence of a lookahead is sufficient to determine
that there is no unexpected or expected token to report. In that
case, just report a simple "syntax error".
- Don't assume there isn't a lookahead just because this state is a
consistent state with a default action. There might have been a
previous inconsistent state, consistent state with a non-default
action, or user semantic action that manipulated yychar.
- Of course, the expected token list depends on states to have
correct lookahead information, and it depends on the parser not
to perform extra reductions after fetching a lookahead from the
scanner and before detecting a syntax error. Thus, state merging
(from LALR or IELR) and default reductions corrupt the expected
token list. However, the list is correct for canonical LR with
one exception: it will still contain any token that will not be
accepted due to an error action in a later state.
*/
if (yytoken != YYEMPTY)
{
int yyn = yypact[*yyssp];
yyarg[yycount++] = yytname[yytoken];
if (!yypact_value_is_default (yyn))
{
/* Start YYX at -YYN if negative to avoid negative indexes in
YYCHECK. In other words, skip the first -YYN actions for
this state because they are default actions. */
int yyxbegin = yyn < 0 ? -yyn : 0;
/* Stay within bounds of both yycheck and yytname. */
int yychecklim = YYLAST - yyn + 1;
int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
int yyx;
for (yyx = yyxbegin; yyx < yyxend; ++yyx)
if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR
&& !yytable_value_is_error (yytable[yyx + yyn]))
{
if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
{
yycount = 1;
yysize = yysize0;
break;
}
yyarg[yycount++] = yytname[yyx];
{
YYSIZE_T yysize1 = yysize + yytnamerr (YY_NULL, yytname[yyx]);
if (! (yysize <= yysize1
&& yysize1 <= YYSTACK_ALLOC_MAXIMUM))
return 2;
yysize = yysize1;
}
}
}
}
switch (yycount)
{
# define YYCASE_(N, S) \
case N: \
yyformat = S; \
break
YYCASE_(0, YY_("syntax error"));
YYCASE_(1, YY_("syntax error, unexpected %s"));
YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
# undef YYCASE_
}
{
YYSIZE_T yysize1 = yysize + yystrlen (yyformat);
if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
return 2;
yysize = yysize1;
}
if (*yymsg_alloc < yysize)
{
*yymsg_alloc = 2 * yysize;
if (! (yysize <= *yymsg_alloc
&& *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))
*yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;
return 1;
}
/* 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 = *yyformat) != '\0')
if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount)
{
yyp += yytnamerr (yyp, yyarg[yyi++]);
yyformat += 2;
}
else
{
yyp++;
yyformat++;
}
}
return 0;
}
#endif /* YYERROR_VERBOSE */
/*-----------------------------------------------.
| Release the memory associated to this symbol. |
`-----------------------------------------------*/
/*ARGSUSED*/
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static void
yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep)
#else
static void
yydestruct (yymsg, yytype, yyvaluep)
const char *yymsg;
int yytype;
YYSTYPE *yyvaluep;
#endif
{
YYUSE (yyvaluep);
if (!yymsg)
yymsg = "Deleting";
YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
YYUSE (yytype);
}
/* The lookahead symbol. */
int yychar;
#ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
# define YY_IGNORE_MAYBE_UNINITIALIZED_END
#endif
#ifndef YY_INITIAL_VALUE
# define YY_INITIAL_VALUE(Value) /* Nothing. */
#endif
/* The semantic value of the lookahead symbol. */
YYSTYPE yylval YY_INITIAL_VALUE(yyval_default);
/* Number of syntax errors so far. */
int yynerrs;
/*----------.
| yyparse. |
`----------*/
#ifdef YYPARSE_PARAM
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
int
yyparse (void *YYPARSE_PARAM)
#else
int
yyparse (YYPARSE_PARAM)
void *YYPARSE_PARAM;
#endif
#else /* ! YYPARSE_PARAM */
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
int
yyparse (void)
#else
int
yyparse ()
#endif
#endif
{
int yystate;
/* Number of tokens to shift before error messages enabled. */
int yyerrstatus;
/* The stacks and their tools:
`yyss': related to states.
`yyvs': related to semantic values.
Refer to the stacks through separate pointers, to allow yyoverflow
to reallocate them elsewhere. */
/* The state stack. */
yytype_int16 yyssa[YYINITDEPTH];
yytype_int16 *yyss;
yytype_int16 *yyssp;
/* The semantic value stack. */
YYSTYPE yyvsa[YYINITDEPTH];
YYSTYPE *yyvs;
YYSTYPE *yyvsp;
YYSIZE_T yystacksize;
int yyn;
int yyresult;
/* Lookahead token as an internal (translated) token number. */
int yytoken = 0;
/* The variables used to return semantic value and location from the
action routines. */
YYSTYPE yyval;
#if YYERROR_VERBOSE
/* Buffer for error messages, and its allocated size. */
char yymsgbuf[128];
char *yymsg = yymsgbuf;
YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
#endif
#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N))
/* The number of symbols on the RHS of the reduced rule.
Keep to zero when no symbol should be popped. */
int yylen = 0;
yyssp = yyss = yyssa;
yyvsp = yyvs = yyvsa;
yystacksize = YYINITDEPTH;
YYDPRINTF ((stderr, "Starting parse\n"));
yystate = 0;
yyerrstatus = 0;
yynerrs = 0;
yychar = YYEMPTY; /* Cause a token to be read. */
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;
yytype_int16 *yyss1 = yyss;
/* 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),
&yystacksize);
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;
{
yytype_int16 *yyss1 = yyss;
union yyalloc *yyptr =
(union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
if (! yyptr)
goto yyexhaustedlab;
YYSTACK_RELOCATE (yyss_alloc, yyss);
YYSTACK_RELOCATE (yyvs_alloc, yyvs);
# undef YYSTACK_RELOCATE
if (yyss1 != yyssa)
YYSTACK_FREE (yyss1);
}
# endif
#endif /* no yyoverflow */
yyssp = yyss + yysize - 1;
yyvsp = yyvs + 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));
if (yystate == YYFINAL)
YYACCEPT;
goto yybackup;
/*-----------.
| yybackup. |
`-----------*/
yybackup:
/* Do appropriate processing given the current state. Read a
lookahead token if we need one and don't already have one. */
/* First try to decide what to do without reference to lookahead token. */
yyn = yypact[yystate];
if (yypact_value_is_default (yyn))
goto yydefault;
/* Not known => get a lookahead token if don't already have one. */
/* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead 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 (yytable_value_is_error (yyn))
goto yyerrlab;
yyn = -yyn;
goto yyreduce;
}
/* Count tokens shifted since error; after three, turn off error
status. */
if (yyerrstatus)
yyerrstatus--;
/* Shift the lookahead token. */
YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
/* Discard the shifted token. */
yychar = YYEMPTY;
yystate = yyn;
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
*++yyvsp = yylval;
YY_IGNORE_MAYBE_UNINITIALIZED_END
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];
YY_REDUCE_PRINT (yyn);
switch (yyn)
{
case 2:
/* Line 1787 of yacc.c */
#line 358 "asn1p_y.y"
{
*(void **)param = (yyvsp[(1) - (1)].a_grammar);
}
break;
case 3:
/* Line 1787 of yacc.c */
#line 364 "asn1p_y.y"
{
(yyval.a_grammar) = asn1p_new();
checkmem((yyval.a_grammar));
TQ_ADD(&((yyval.a_grammar)->modules), (yyvsp[(1) - (1)].a_module), mod_next);
}
break;
case 4:
/* Line 1787 of yacc.c */
#line 369 "asn1p_y.y"
{
(yyval.a_grammar) = (yyvsp[(1) - (2)].a_grammar);
TQ_ADD(&((yyval.a_grammar)->modules), (yyvsp[(2) - (2)].a_module), mod_next);
}
break;
case 5:
/* Line 1787 of yacc.c */
#line 386 "asn1p_y.y"
{ currentModule = asn1p_module_new(); }
break;
case 6:
/* Line 1787 of yacc.c */
#line 391 "asn1p_y.y"
{
(yyval.a_module) = currentModule;
if((yyvsp[(8) - (9)].a_module)) {
asn1p_module_t tmp = *((yyval.a_module));
*((yyval.a_module)) = *((yyvsp[(8) - (9)].a_module));
*((yyvsp[(8) - (9)].a_module)) = tmp;
asn1p_module_free((yyvsp[(8) - (9)].a_module));
} else {
/* There's a chance that a module is just plain empty */
}
(yyval.a_module)->ModuleName = (yyvsp[(1) - (9)].tv_str);
(yyval.a_module)->module_oid = (yyvsp[(3) - (9)].a_oid);
(yyval.a_module)->module_flags = (yyvsp[(5) - (9)].a_module_flags);
}
break;
case 7:
/* Line 1787 of yacc.c */
#line 415 "asn1p_y.y"
{ (yyval.a_oid) = 0; }
break;
case 8:
/* Line 1787 of yacc.c */
#line 416 "asn1p_y.y"
{ (yyval.a_oid) = (yyvsp[(1) - (1)].a_oid); }
break;
case 9:
/* Line 1787 of yacc.c */
#line 420 "asn1p_y.y"
{
(yyval.a_oid) = (yyvsp[(2) - (3)].a_oid);
}
break;
case 10:
/* Line 1787 of yacc.c */
#line 423 "asn1p_y.y"
{
(yyval.a_oid) = 0;
}
break;
case 11:
/* Line 1787 of yacc.c */
#line 429 "asn1p_y.y"
{
(yyval.a_oid) = asn1p_oid_new();
asn1p_oid_add_arc((yyval.a_oid), &(yyvsp[(1) - (1)].a_oid_arc));
if((yyvsp[(1) - (1)].a_oid_arc).name)
free((yyvsp[(1) - (1)].a_oid_arc).name);
}
break;
case 12:
/* Line 1787 of yacc.c */
#line 435 "asn1p_y.y"
{
(yyval.a_oid) = (yyvsp[(1) - (2)].a_oid);
asn1p_oid_add_arc((yyval.a_oid), &(yyvsp[(2) - (2)].a_oid_arc));
if((yyvsp[(2) - (2)].a_oid_arc).name)
free((yyvsp[(2) - (2)].a_oid_arc).name);
}
break;
case 13:
/* Line 1787 of yacc.c */
#line 444 "asn1p_y.y"
{ /* iso */
(yyval.a_oid_arc).name = (yyvsp[(1) - (1)].tv_str);
(yyval.a_oid_arc).number = -1;
}
break;
case 14:
/* Line 1787 of yacc.c */
#line 448 "asn1p_y.y"
{ /* iso(1) */
(yyval.a_oid_arc).name = (yyvsp[(1) - (4)].tv_str);
(yyval.a_oid_arc).number = (yyvsp[(3) - (4)].a_int);
}
break;
case 15:
/* Line 1787 of yacc.c */
#line 452 "asn1p_y.y"
{ /* 1 */
(yyval.a_oid_arc).name = 0;
(yyval.a_oid_arc).number = (yyvsp[(1) - (1)].a_int);
}
break;
case 16:
/* Line 1787 of yacc.c */
#line 462 "asn1p_y.y"
{ (yyval.a_module_flags) = MSF_NOFLAGS; }
break;
case 17:
/* Line 1787 of yacc.c */
#line 463 "asn1p_y.y"
{
(yyval.a_module_flags) = (yyvsp[(1) - (1)].a_module_flags);
}
break;
case 18:
/* Line 1787 of yacc.c */
#line 472 "asn1p_y.y"
{
(yyval.a_module_flags) = (yyvsp[(1) - (1)].a_module_flags);
}
break;
case 19:
/* Line 1787 of yacc.c */
#line 475 "asn1p_y.y"
{
(yyval.a_module_flags) = (yyvsp[(1) - (2)].a_module_flags) | (yyvsp[(2) - (2)].a_module_flags);
}
break;
case 20:
/* Line 1787 of yacc.c */
#line 484 "asn1p_y.y"
{
(yyval.a_module_flags) = MSF_EXPLICIT_TAGS;
}
break;
case 21:
/* Line 1787 of yacc.c */
#line 487 "asn1p_y.y"
{
(yyval.a_module_flags) = MSF_IMPLICIT_TAGS;
}
break;
case 22:
/* Line 1787 of yacc.c */
#line 490 "asn1p_y.y"
{
(yyval.a_module_flags) = MSF_AUTOMATIC_TAGS;
}
break;
case 23:
/* Line 1787 of yacc.c */
#line 493 "asn1p_y.y"
{
(yyval.a_module_flags) = MSF_EXTENSIBILITY_IMPLIED;
}
break;
case 24:
/* Line 1787 of yacc.c */
#line 497 "asn1p_y.y"
{
/* X.680Amd1 specifies TAG and XER */
if(strcmp((yyvsp[(1) - (2)].tv_str), "TAG") == 0) {
(yyval.a_module_flags) = MSF_TAG_INSTRUCTIONS;
} else if(strcmp((yyvsp[(1) - (2)].tv_str), "XER") == 0) {
(yyval.a_module_flags) = MSF_XER_INSTRUCTIONS;
} else {
fprintf(stderr,
"WARNING: %s INSTRUCTIONS at line %d: "
"Unrecognized encoding reference\n",
(yyvsp[(1) - (2)].tv_str), yylineno);
(yyval.a_module_flags) = MSF_unk_INSTRUCTIONS;
}
free((yyvsp[(1) - (2)].tv_str));
}
break;
case 25:
/* Line 1787 of yacc.c */
#line 518 "asn1p_y.y"
{ (yyval.a_module) = 0; }
break;
case 26:
/* Line 1787 of yacc.c */
#line 519 "asn1p_y.y"
{
(yyval.a_module) = (yyvsp[(1) - (1)].a_module);
}
break;
case 27:
/* Line 1787 of yacc.c */
#line 528 "asn1p_y.y"
{
(yyval.a_module) = asn1p_module_new();
AL_IMPORT((yyval.a_module), exports, (yyvsp[(1) - (3)].a_module), xp_next);
AL_IMPORT((yyval.a_module), imports, (yyvsp[(2) - (3)].a_module), xp_next);
AL_IMPORT((yyval.a_module), members, (yyvsp[(3) - (3)].a_module), next);
asn1p_module_free((yyvsp[(1) - (3)].a_module));
asn1p_module_free((yyvsp[(2) - (3)].a_module));
asn1p_module_free((yyvsp[(3) - (3)].a_module));
}
break;
case 28:
/* Line 1787 of yacc.c */
#line 541 "asn1p_y.y"
{
(yyval.a_module) = (yyvsp[(1) - (1)].a_module);
}
break;
case 29:
/* Line 1787 of yacc.c */
#line 544 "asn1p_y.y"
{
if((yyvsp[(1) - (2)].a_module)) {
(yyval.a_module) = (yyvsp[(1) - (2)].a_module);
} else {
(yyval.a_module) = (yyvsp[(2) - (2)].a_module);
break;
}
AL_IMPORT((yyval.a_module), members, (yyvsp[(2) - (2)].a_module), next);
asn1p_module_free((yyvsp[(2) - (2)].a_module));
}
break;
case 30:
/* Line 1787 of yacc.c */
#line 561 "asn1p_y.y"
{
(yyval.a_module) = asn1p_module_new();
checkmem((yyval.a_module));
assert((yyvsp[(1) - (1)].a_expr)->expr_type != A1TC_INVALID);
assert((yyvsp[(1) - (1)].a_expr)->meta_type != AMT_INVALID);
TQ_ADD(&((yyval.a_module)->members), (yyvsp[(1) - (1)].a_expr), next);
}
break;
case 31:
/* Line 1787 of yacc.c */
#line 568 "asn1p_y.y"
{
(yyval.a_module) = asn1p_module_new();
checkmem((yyval.a_module));
assert((yyvsp[(1) - (1)].a_expr)->expr_type != A1TC_INVALID);
assert((yyvsp[(1) - (1)].a_expr)->meta_type != AMT_INVALID);
TQ_ADD(&((yyval.a_module)->members), (yyvsp[(1) - (1)].a_expr), next);
}
break;
case 32:
/* Line 1787 of yacc.c */
#line 581 "asn1p_y.y"
{
(yyval.a_module) = asn1p_module_new();
checkmem((yyval.a_module));
assert((yyvsp[(1) - (1)].a_expr)->expr_type != A1TC_INVALID);
assert((yyvsp[(1) - (1)].a_expr)->meta_type != AMT_INVALID);
TQ_ADD(&((yyval.a_module)->members), (yyvsp[(1) - (1)].a_expr), next);
}
break;
case 33:
/* Line 1787 of yacc.c */
#line 589 "asn1p_y.y"
{ asn1p_lexer_hack_push_encoding_control(); }
break;
case 34:
/* Line 1787 of yacc.c */
#line 590 "asn1p_y.y"
{
fprintf(stderr,
"WARNING: ENCODING-CONTROL %s "
"specification at line %d ignored\n",
(yyvsp[(2) - (3)].tv_str), yylineno);
free((yyvsp[(2) - (3)].tv_str));
(yyval.a_module) = 0;
}
break;
case 35:
/* Line 1787 of yacc.c */
#line 602 "asn1p_y.y"
{
return yyerror(
"Attempt to redefine a standard basic string type, "
"please comment out or remove this type redefinition.");
}
break;
case 36:
/* Line 1787 of yacc.c */
#line 615 "asn1p_y.y"
{ (yyval.a_module) = 0; }
break;
case 38:
/* Line 1787 of yacc.c */
#line 619 "asn1p_y.y"
{
if(!saved_aid && 0)
return yyerror("Unterminated IMPORTS FROM, "
"expected semicolon ';'");
saved_aid = 0;
(yyval.a_module) = (yyvsp[(2) - (3)].a_module);
}
break;
case 39:
/* Line 1787 of yacc.c */
#line 629 "asn1p_y.y"
{
return yyerror("Empty IMPORTS list");
}
break;
case 40:
/* Line 1787 of yacc.c */
#line 635 "asn1p_y.y"
{ (yyval.a_module) = asn1p_module_new(); }
break;
case 42:
/* Line 1787 of yacc.c */
#line 639 "asn1p_y.y"
{
(yyval.a_module) = asn1p_module_new();
checkmem((yyval.a_module));
TQ_ADD(&((yyval.a_module)->imports), (yyvsp[(1) - (1)].a_xports), xp_next);
}
break;
case 43:
/* Line 1787 of yacc.c */
#line 644 "asn1p_y.y"
{
(yyval.a_module) = (yyvsp[(1) - (2)].a_module);
TQ_ADD(&((yyval.a_module)->imports), (yyvsp[(2) - (2)].a_xports), xp_next);
}
break;
case 44:
/* Line 1787 of yacc.c */
#line 651 "asn1p_y.y"
{ memset(&(yyval.a_aid), 0, sizeof((yyval.a_aid))); }
break;
case 45:
/* Line 1787 of yacc.c */
#line 652 "asn1p_y.y"
{ (yyval.a_aid).oid = (yyvsp[(1) - (1)].a_oid); }
break;
case 46:
/* Line 1787 of yacc.c */
#line 656 "asn1p_y.y"
{
(yyval.a_xports) = (yyvsp[(1) - (4)].a_xports);
(yyval.a_xports)->fromModuleName = (yyvsp[(3) - (4)].tv_str);
(yyval.a_xports)->identifier = (yyvsp[(4) - (4)].a_aid);
/* This stupid thing is used for look-back hack. */
saved_aid = (yyval.a_xports)->identifier.oid ? 0 : &((yyval.a_xports)->identifier);
checkmem((yyval.a_xports));
}
break;
case 47:
/* Line 1787 of yacc.c */
#line 667 "asn1p_y.y"
{
(yyval.a_xports) = asn1p_xports_new();
checkmem((yyval.a_xports));
TQ_ADD(&((yyval.a_xports)->members), (yyvsp[(1) - (1)].a_expr), next);
}
break;
case 48:
/* Line 1787 of yacc.c */
#line 672 "asn1p_y.y"
{
(yyval.a_xports) = (yyvsp[(1) - (3)].a_xports);
TQ_ADD(&((yyval.a_xports)->members), (yyvsp[(3) - (3)].a_expr), next);
}
break;
case 49:
/* Line 1787 of yacc.c */
#line 679 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
(yyval.a_expr)->Identifier = (yyvsp[(1) - (1)].tv_str);
(yyval.a_expr)->expr_type = A1TC_REFERENCE;
}
break;
case 50:
/* Line 1787 of yacc.c */
#line 685 "asn1p_y.y"
{ /* Completely equivalent to above */
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
(yyval.a_expr)->Identifier = (yyvsp[(1) - (3)].tv_str);
(yyval.a_expr)->expr_type = A1TC_REFERENCE;
}
break;
case 51:
/* Line 1787 of yacc.c */
#line 691 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
(yyval.a_expr)->Identifier = (yyvsp[(1) - (1)].tv_str);
(yyval.a_expr)->expr_type = A1TC_REFERENCE;
}
break;
case 52:
/* Line 1787 of yacc.c */
#line 701 "asn1p_y.y"
{ (yyval.a_module) = 0; }
break;
case 53:
/* Line 1787 of yacc.c */
#line 702 "asn1p_y.y"
{
(yyval.a_module) = asn1p_module_new();
checkmem((yyval.a_module));
if((yyvsp[(1) - (1)].a_xports)) {
TQ_ADD(&((yyval.a_module)->exports), (yyvsp[(1) - (1)].a_xports), xp_next);
} else {
/* "EXPORTS ALL;" */
}
}
break;
case 54:
/* Line 1787 of yacc.c */
#line 714 "asn1p_y.y"
{
(yyval.a_xports) = (yyvsp[(2) - (3)].a_xports);
}
break;
case 55:
/* Line 1787 of yacc.c */
#line 717 "asn1p_y.y"
{
(yyval.a_xports) = 0;
}
break;
case 56:
/* Line 1787 of yacc.c */
#line 720 "asn1p_y.y"
{
/* Empty EXPORTS clause effectively prohibits export. */
(yyval.a_xports) = asn1p_xports_new();
checkmem((yyval.a_xports));
}
break;
case 57:
/* Line 1787 of yacc.c */
#line 728 "asn1p_y.y"
{
(yyval.a_xports) = asn1p_xports_new();
assert((yyval.a_xports));
TQ_ADD(&((yyval.a_xports)->members), (yyvsp[(1) - (1)].a_expr), next);
}
break;
case 58:
/* Line 1787 of yacc.c */
#line 733 "asn1p_y.y"
{
(yyval.a_xports) = (yyvsp[(1) - (3)].a_xports);
TQ_ADD(&((yyval.a_xports)->members), (yyvsp[(3) - (3)].a_expr), next);
}
break;
case 59:
/* Line 1787 of yacc.c */
#line 740 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
(yyval.a_expr)->Identifier = (yyvsp[(1) - (1)].tv_str);
(yyval.a_expr)->expr_type = A1TC_EXPORTVAR;
}
break;
case 60:
/* Line 1787 of yacc.c */
#line 746 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
(yyval.a_expr)->Identifier = (yyvsp[(1) - (3)].tv_str);
(yyval.a_expr)->expr_type = A1TC_EXPORTVAR;
}
break;
case 61:
/* Line 1787 of yacc.c */
#line 752 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
(yyval.a_expr)->Identifier = (yyvsp[(1) - (1)].tv_str);
(yyval.a_expr)->expr_type = A1TC_EXPORTVAR;
}
break;
case 62:
/* Line 1787 of yacc.c */
#line 761 "asn1p_y.y"
{ (yyval.a_constr) = (yyvsp[(2) - (3)].a_constr); }
break;
case 63:
/* Line 1787 of yacc.c */
#line 764 "asn1p_y.y"
{
(yyval.a_expr) = (yyvsp[(2) - (4)].a_expr);
assert((yyval.a_expr)->Identifier == 0);
(yyval.a_expr)->Identifier = (yyvsp[(1) - (4)].tv_str);
(yyval.a_expr)->meta_type = AMT_VALUESET;
(yyval.a_expr)->constraints = (yyvsp[(4) - (4)].a_constr);
}
break;
case 64:
/* Line 1787 of yacc.c */
#line 774 "asn1p_y.y"
{
(yyval.a_expr) = (yyvsp[(1) - (1)].a_expr);
}
break;
case 65:
/* Line 1787 of yacc.c */
#line 787 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
(yyval.a_expr)->reference = (yyvsp[(1) - (1)].a_ref);
(yyval.a_expr)->expr_type = A1TC_REFERENCE;
(yyval.a_expr)->meta_type = AMT_TYPEREF;
}
break;
case 66:
/* Line 1787 of yacc.c */
#line 797 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
(yyval.a_expr)->reference = (yyvsp[(1) - (4)].a_ref);
(yyval.a_expr)->rhs_pspecs = (yyvsp[(3) - (4)].a_expr);
(yyval.a_expr)->expr_type = A1TC_REFERENCE;
(yyval.a_expr)->meta_type = AMT_TYPEREF;
}
break;
case 67:
/* Line 1787 of yacc.c */
#line 817 "asn1p_y.y"
{
(yyval.a_expr) = (yyvsp[(3) - (3)].a_expr);
(yyval.a_expr)->Identifier = (yyvsp[(1) - (3)].tv_str);
assert((yyval.a_expr)->expr_type);
assert((yyval.a_expr)->meta_type);
}
break;
case 68:
/* Line 1787 of yacc.c */
#line 823 "asn1p_y.y"
{
(yyval.a_expr) = (yyvsp[(3) - (3)].a_expr);
(yyval.a_expr)->Identifier = (yyvsp[(1) - (3)].tv_str);
assert((yyval.a_expr)->expr_type == A1TC_CLASSDEF);
assert((yyval.a_expr)->meta_type == AMT_OBJECTCLASS);
}
break;
case 69:
/* Line 1787 of yacc.c */
#line 839 "asn1p_y.y"
{
(yyval.a_expr) = (yyvsp[(6) - (6)].a_expr);
(yyval.a_expr)->Identifier = (yyvsp[(1) - (6)].tv_str);
(yyval.a_expr)->lhs_params = (yyvsp[(3) - (6)].a_plist);
}
break;
case 70:
/* Line 1787 of yacc.c */
#line 845 "asn1p_y.y"
{
(yyval.a_expr) = (yyvsp[(6) - (6)].a_expr);
(yyval.a_expr)->Identifier = (yyvsp[(1) - (6)].tv_str);
(yyval.a_expr)->lhs_params = (yyvsp[(3) - (6)].a_plist);
}
break;
case 71:
/* Line 1787 of yacc.c */
#line 853 "asn1p_y.y"
{
int ret;
(yyval.a_plist) = asn1p_paramlist_new(yylineno);
checkmem((yyval.a_plist));
ret = asn1p_paramlist_add_param((yyval.a_plist), (yyvsp[(1) - (1)].a_parg).governor, (yyvsp[(1) - (1)].a_parg).argument);
checkmem(ret == 0);
asn1p_ref_free((yyvsp[(1) - (1)].a_parg).governor);
free((yyvsp[(1) - (1)].a_parg).argument);
}
break;
case 72:
/* Line 1787 of yacc.c */
#line 862 "asn1p_y.y"
{
int ret;
(yyval.a_plist) = (yyvsp[(1) - (3)].a_plist);
ret = asn1p_paramlist_add_param((yyval.a_plist), (yyvsp[(3) - (3)].a_parg).governor, (yyvsp[(3) - (3)].a_parg).argument);
checkmem(ret == 0);
asn1p_ref_free((yyvsp[(3) - (3)].a_parg).governor);
free((yyvsp[(3) - (3)].a_parg).argument);
}
break;
case 73:
/* Line 1787 of yacc.c */
#line 873 "asn1p_y.y"
{
(yyval.a_parg).governor = NULL;
(yyval.a_parg).argument = (yyvsp[(1) - (1)].tv_str);
}
break;
case 74:
/* Line 1787 of yacc.c */
#line 877 "asn1p_y.y"
{
int ret;
(yyval.a_parg).governor = asn1p_ref_new(yylineno, currentModule);
ret = asn1p_ref_add_component((yyval.a_parg).governor, (yyvsp[(1) - (3)].tv_str), 0);
checkmem(ret == 0);
(yyval.a_parg).argument = (yyvsp[(3) - (3)].tv_str);
free((yyvsp[(1) - (3)].tv_str));
}
break;
case 75:
/* Line 1787 of yacc.c */
#line 885 "asn1p_y.y"
{
int ret;
(yyval.a_parg).governor = asn1p_ref_new(yylineno, currentModule);
ret = asn1p_ref_add_component((yyval.a_parg).governor, (yyvsp[(1) - (3)].tv_str), 0);
checkmem(ret == 0);
(yyval.a_parg).argument = (yyvsp[(3) - (3)].tv_str);
free((yyvsp[(1) - (3)].tv_str));
}
break;
case 76:
/* Line 1787 of yacc.c */
#line 893 "asn1p_y.y"
{
int ret;
(yyval.a_parg).governor = asn1p_ref_new(yylineno, currentModule);
ret = asn1p_ref_add_component((yyval.a_parg).governor,
ASN_EXPR_TYPE2STR((yyvsp[(1) - (3)].a_type)), 1);
checkmem(ret == 0);
(yyval.a_parg).argument = (yyvsp[(3) - (3)].tv_str);
}
break;
case 77:
/* Line 1787 of yacc.c */
#line 901 "asn1p_y.y"
{
int ret;
(yyval.a_parg).governor = asn1p_ref_new(yylineno, currentModule);
ret = asn1p_ref_add_component((yyval.a_parg).governor,
ASN_EXPR_TYPE2STR((yyvsp[(1) - (3)].a_type)), 1);
checkmem(ret == 0);
(yyval.a_parg).argument = (yyvsp[(3) - (3)].tv_str);
}
break;
case 78:
/* Line 1787 of yacc.c */
#line 912 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
asn1p_expr_add((yyval.a_expr), (yyvsp[(1) - (1)].a_expr));
}
break;
case 79:
/* Line 1787 of yacc.c */
#line 917 "asn1p_y.y"
{
(yyval.a_expr) = (yyvsp[(1) - (3)].a_expr);
asn1p_expr_add((yyval.a_expr), (yyvsp[(3) - (3)].a_expr));
}
break;
case 80:
/* Line 1787 of yacc.c */
#line 924 "asn1p_y.y"
{
(yyval.a_expr) = (yyvsp[(1) - (1)].a_expr);
}
break;
case 81:
/* Line 1787 of yacc.c */
#line 927 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
(yyval.a_expr)->Identifier = strdup("?");
(yyval.a_expr)->expr_type = A1TC_REFERENCE;
(yyval.a_expr)->meta_type = AMT_VALUE;
(yyval.a_expr)->value = (yyvsp[(1) - (1)].a_value);
}
break;
case 82:
/* Line 1787 of yacc.c */
#line 935 "asn1p_y.y"
{
asn1p_ref_t *ref;
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
(yyval.a_expr)->Identifier = (yyvsp[(1) - (1)].tv_str);
(yyval.a_expr)->expr_type = A1TC_REFERENCE;
(yyval.a_expr)->meta_type = AMT_VALUE;
ref = asn1p_ref_new(yylineno, currentModule);
asn1p_ref_add_component(ref, (yyvsp[(1) - (1)].tv_str), RLT_lowercase);
(yyval.a_expr)->value = asn1p_value_fromref(ref, 0);
}
break;
case 83:
/* Line 1787 of yacc.c */
#line 946 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
(yyval.a_expr)->expr_type = A1TC_VALUESET;
(yyval.a_expr)->meta_type = AMT_VALUESET;
(yyval.a_expr)->constraints = (yyvsp[(1) - (1)].a_constr);
}
break;
case 84:
/* Line 1787 of yacc.c */
#line 969 "asn1p_y.y"
{ (yyval.a_expr) = NEW_EXPR(); }
break;
case 85:
/* Line 1787 of yacc.c */
#line 970 "asn1p_y.y"
{ (yyval.a_expr) = (yyvsp[(1) - (1)].a_expr); }
break;
case 86:
/* Line 1787 of yacc.c */
#line 973 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
asn1p_expr_add((yyval.a_expr), (yyvsp[(1) - (1)].a_expr));
}
break;
case 87:
/* Line 1787 of yacc.c */
#line 978 "asn1p_y.y"
{
(yyval.a_expr) = (yyvsp[(1) - (3)].a_expr);
asn1p_expr_add((yyval.a_expr), (yyvsp[(3) - (3)].a_expr));
}
break;
case 88:
/* Line 1787 of yacc.c */
#line 982 "asn1p_y.y"
{
(yyval.a_expr) = (yyvsp[(1) - (5)].a_expr);
asn1p_expr_add_many((yyval.a_expr), (yyvsp[(4) - (5)].a_expr));
asn1p_expr_free((yyvsp[(4) - (5)].a_expr));
}
break;
case 89:
/* Line 1787 of yacc.c */
#line 990 "asn1p_y.y"
{
(yyval.a_expr) = (yyvsp[(2) - (3)].a_expr);
assert((yyval.a_expr)->Identifier == 0);
(yyval.a_expr)->Identifier = (yyvsp[(1) - (3)].tv_str);
(yyvsp[(3) - (3)].a_marker).flags |= (yyval.a_expr)->marker.flags;
(yyval.a_expr)->marker = (yyvsp[(3) - (3)].a_marker);
}
break;
case 90:
/* Line 1787 of yacc.c */
#line 997 "asn1p_y.y"
{
(yyval.a_expr) = (yyvsp[(1) - (2)].a_expr);
(yyvsp[(2) - (2)].a_marker).flags |= (yyval.a_expr)->marker.flags;
(yyval.a_expr)->marker = (yyvsp[(2) - (2)].a_marker);
_fixup_anonymous_identifier((yyval.a_expr));
}
break;
case 91:
/* Line 1787 of yacc.c */
#line 1003 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
(yyval.a_expr)->meta_type = (yyvsp[(3) - (3)].a_expr)->meta_type;
(yyval.a_expr)->expr_type = A1TC_COMPONENTS_OF;
asn1p_expr_add((yyval.a_expr), (yyvsp[(3) - (3)].a_expr));
}
break;
case 92:
/* Line 1787 of yacc.c */
#line 1010 "asn1p_y.y"
{
(yyval.a_expr) = (yyvsp[(1) - (1)].a_expr);
}
break;
case 93:
/* Line 1787 of yacc.c */
#line 1016 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
asn1p_expr_add((yyval.a_expr), (yyvsp[(1) - (1)].a_expr));
}
break;
case 94:
/* Line 1787 of yacc.c */
#line 1021 "asn1p_y.y"
{
(yyval.a_expr) = (yyvsp[(1) - (3)].a_expr);
asn1p_expr_add((yyval.a_expr), (yyvsp[(3) - (3)].a_expr));
}
break;
case 95:
/* Line 1787 of yacc.c */
#line 1028 "asn1p_y.y"
{
(yyval.a_expr) = (yyvsp[(2) - (2)].a_expr);
assert((yyval.a_expr)->Identifier == 0);
(yyval.a_expr)->Identifier = (yyvsp[(1) - (2)].tv_str);
}
break;
case 96:
/* Line 1787 of yacc.c */
#line 1033 "asn1p_y.y"
{
(yyval.a_expr) = (yyvsp[(1) - (1)].a_expr);
}
break;
case 97:
/* Line 1787 of yacc.c */
#line 1036 "asn1p_y.y"
{
(yyval.a_expr) = (yyvsp[(1) - (1)].a_expr);
_fixup_anonymous_identifier((yyval.a_expr));
}
break;
case 98:
/* Line 1787 of yacc.c */
#line 1043 "asn1p_y.y"
{
(yyval.a_expr) = (yyvsp[(3) - (5)].a_expr);
checkmem((yyval.a_expr));
(yyval.a_expr)->with_syntax = (yyvsp[(5) - (5)].a_wsynt);
assert((yyval.a_expr)->expr_type == A1TC_CLASSDEF);
assert((yyval.a_expr)->meta_type == AMT_OBJECTCLASS);
}
break;
case 99:
/* Line 1787 of yacc.c */
#line 1053 "asn1p_y.y"
{ (yyval.a_int) = 0; }
break;
case 100:
/* Line 1787 of yacc.c */
#line 1054 "asn1p_y.y"
{ (yyval.a_int) = 1; }
break;
case 101:
/* Line 1787 of yacc.c */
#line 1058 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
(yyval.a_expr)->expr_type = A1TC_CLASSDEF;
(yyval.a_expr)->meta_type = AMT_OBJECTCLASS;
asn1p_expr_add((yyval.a_expr), (yyvsp[(1) - (1)].a_expr));
}
break;
case 102:
/* Line 1787 of yacc.c */
#line 1065 "asn1p_y.y"
{
(yyval.a_expr) = (yyvsp[(1) - (3)].a_expr);
asn1p_expr_add((yyval.a_expr), (yyvsp[(3) - (3)].a_expr));
}
break;
case 103:
/* Line 1787 of yacc.c */
#line 1075 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
(yyval.a_expr)->Identifier = (yyvsp[(1) - (2)].tv_str);
(yyval.a_expr)->meta_type = AMT_OBJECTFIELD;
(yyval.a_expr)->expr_type = A1TC_CLASSFIELD_TFS; /* TypeFieldSpec */
(yyval.a_expr)->marker = (yyvsp[(2) - (2)].a_marker);
}
break;
case 104:
/* Line 1787 of yacc.c */
#line 1085 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
(yyval.a_expr)->Identifier = (yyvsp[(1) - (4)].tv_str);
(yyval.a_expr)->meta_type = AMT_OBJECTFIELD;
(yyval.a_expr)->expr_type = A1TC_CLASSFIELD_FTVFS; /* FixedTypeValueFieldSpec */
(yyval.a_expr)->unique = (yyvsp[(3) - (4)].a_int);
(yyval.a_expr)->marker = (yyvsp[(4) - (4)].a_marker);
asn1p_expr_add((yyval.a_expr), (yyvsp[(2) - (4)].a_expr));
}
break;
case 105:
/* Line 1787 of yacc.c */
#line 1096 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
(yyval.a_expr)->Identifier = (yyvsp[(1) - (3)].tv_str);
(yyval.a_expr)->meta_type = AMT_OBJECTFIELD;
(yyval.a_expr)->expr_type = A1TC_CLASSFIELD_VTVFS;
(yyval.a_expr)->reference = (yyvsp[(2) - (3)].a_ref);
(yyval.a_expr)->marker = (yyvsp[(3) - (3)].a_marker);
}
break;
case 106:
/* Line 1787 of yacc.c */
#line 1106 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
(yyval.a_expr)->Identifier = (yyvsp[(1) - (3)].tv_str);
(yyval.a_expr)->reference = (yyvsp[(2) - (3)].a_ref);
(yyval.a_expr)->meta_type = AMT_OBJECTFIELD;
(yyval.a_expr)->expr_type = A1TC_CLASSFIELD_OFS;
(yyval.a_expr)->marker = (yyvsp[(3) - (3)].a_marker);
}
break;
case 107:
/* Line 1787 of yacc.c */
#line 1117 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
(yyval.a_expr)->Identifier = (yyvsp[(1) - (3)].tv_str);
(yyval.a_expr)->meta_type = AMT_OBJECTFIELD;
(yyval.a_expr)->expr_type = A1TC_CLASSFIELD_VTVSFS;
(yyval.a_expr)->reference = (yyvsp[(2) - (3)].a_ref);
(yyval.a_expr)->marker = (yyvsp[(3) - (3)].a_marker);
}
break;
case 108:
/* Line 1787 of yacc.c */
#line 1127 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
(yyval.a_expr)->Identifier = (yyvsp[(1) - (3)].tv_str);
(yyval.a_expr)->meta_type = AMT_OBJECTFIELD;
(yyval.a_expr)->expr_type = A1TC_CLASSFIELD_FTVSFS;
asn1p_expr_add((yyval.a_expr), (yyvsp[(2) - (3)].a_expr));
(yyval.a_expr)->marker = (yyvsp[(3) - (3)].a_marker);
}
break;
case 109:
/* Line 1787 of yacc.c */
#line 1138 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
(yyval.a_expr)->Identifier = (yyvsp[(1) - (3)].tv_str);
(yyval.a_expr)->reference = (yyvsp[(2) - (3)].a_ref);
(yyval.a_expr)->meta_type = AMT_OBJECTFIELD;
(yyval.a_expr)->expr_type = A1TC_CLASSFIELD_OSFS;
(yyval.a_expr)->marker = (yyvsp[(3) - (3)].a_marker);
}
break;
case 110:
/* Line 1787 of yacc.c */
#line 1150 "asn1p_y.y"
{ (yyval.a_wsynt) = 0; }
break;
case 111:
/* Line 1787 of yacc.c */
#line 1151 "asn1p_y.y"
{
(yyval.a_wsynt) = (yyvsp[(1) - (1)].a_wsynt);
}
break;
case 112:
/* Line 1787 of yacc.c */
#line 1158 "asn1p_y.y"
{ asn1p_lexer_hack_enable_with_syntax(); }
break;
case 113:
/* Line 1787 of yacc.c */
#line 1160 "asn1p_y.y"
{
(yyval.a_wsynt) = (yyvsp[(5) - (6)].a_wsynt);
}
break;
case 114:
/* Line 1787 of yacc.c */
#line 1166 "asn1p_y.y"
{
(yyval.a_wsynt) = asn1p_wsyntx_new();
TQ_ADD(&((yyval.a_wsynt)->chunks), (yyvsp[(1) - (1)].a_wchunk), next);
}
break;
case 115:
/* Line 1787 of yacc.c */
#line 1170 "asn1p_y.y"
{
(yyval.a_wsynt) = (yyvsp[(1) - (2)].a_wsynt);
TQ_ADD(&((yyval.a_wsynt)->chunks), (yyvsp[(2) - (2)].a_wchunk), next);
}
break;
case 116:
/* Line 1787 of yacc.c */
#line 1177 "asn1p_y.y"
{
(yyval.a_wchunk) = asn1p_wsyntx_chunk_fromstring((yyvsp[(1) - (1)].tv_opaque).buf, 0);
(yyval.a_wchunk)->type = WC_WHITESPACE;
}
break;
case 117:
/* Line 1787 of yacc.c */
#line 1181 "asn1p_y.y"
{
(yyval.a_wchunk) = asn1p_wsyntx_chunk_fromstring((yyvsp[(1) - (1)].tv_str), 0);
}
break;
case 118:
/* Line 1787 of yacc.c */
#line 1184 "asn1p_y.y"
{
(yyval.a_wchunk) = asn1p_wsyntx_chunk_fromstring((yyvsp[(1) - (1)].a_refcomp).name, 0);
(yyval.a_wchunk)->type = WC_FIELD;
}
break;
case 119:
/* Line 1787 of yacc.c */
#line 1188 "asn1p_y.y"
{
(yyval.a_wchunk) = asn1p_wsyntx_chunk_fromsyntax((yyvsp[(2) - (3)].a_wsynt));
}
break;
case 120:
/* Line 1787 of yacc.c */
#line 1194 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
(yyval.a_expr)->Identifier = strdup("...");
checkmem((yyval.a_expr)->Identifier);
(yyval.a_expr)->expr_type = A1TC_EXTENSIBLE;
(yyval.a_expr)->meta_type = AMT_TYPE;
}
break;
case 121:
/* Line 1787 of yacc.c */
#line 1202 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
(yyval.a_expr)->Identifier = strdup("...");
checkmem((yyval.a_expr)->Identifier);
(yyval.a_expr)->value = (yyvsp[(3) - (3)].a_value);
(yyval.a_expr)->expr_type = A1TC_EXTENSIBLE;
(yyval.a_expr)->meta_type = AMT_TYPE;
}
break;
case 122:
/* Line 1787 of yacc.c */
#line 1211 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
(yyval.a_expr)->Identifier = strdup("...");
(yyval.a_expr)->value = (yyvsp[(3) - (3)].a_value);
checkmem((yyval.a_expr)->Identifier);
(yyval.a_expr)->expr_type = A1TC_EXTENSIBLE;
(yyval.a_expr)->meta_type = AMT_TYPE;
}
break;
case 123:
/* Line 1787 of yacc.c */
#line 1223 "asn1p_y.y"
{
(yyval.a_expr) = (yyvsp[(2) - (3)].a_expr);
(yyval.a_expr)->tag = (yyvsp[(1) - (3)].a_tag);
/*
* Outer constraint for SEQUENCE OF and SET OF applies
* to the inner type.
*/
if((yyval.a_expr)->expr_type == ASN_CONSTR_SEQUENCE_OF
|| (yyval.a_expr)->expr_type == ASN_CONSTR_SET_OF) {
assert(!TQ_FIRST(&((yyval.a_expr)->members))->constraints);
TQ_FIRST(&((yyval.a_expr)->members))->constraints = (yyvsp[(3) - (3)].a_constr);
} else {
if((yyval.a_expr)->constraints) {
assert(!(yyvsp[(2) - (3)].a_expr));
/* Check this : optConstraints is not used ?! */
asn1p_constraint_free((yyvsp[(3) - (3)].a_constr));
} else {
(yyval.a_expr)->constraints = (yyvsp[(3) - (3)].a_constr);
}
}
}
break;
case 124:
/* Line 1787 of yacc.c */
#line 1247 "asn1p_y.y"
{
(yyval.a_int) = asn1p_as_pointer ? EM_INDIRECT : 0;
asn1p_as_pointer = 0;
}
break;
case 125:
/* Line 1787 of yacc.c */
#line 1254 "asn1p_y.y"
{
(yyval.a_expr) = (yyvsp[(2) - (2)].a_expr);
(yyval.a_expr)->marker.flags |= (yyvsp[(1) - (2)].a_int);
if(((yyval.a_expr)->marker.flags & EM_INDIRECT)
&& ((yyval.a_expr)->marker.flags & EM_OPTIONAL) != EM_OPTIONAL) {
fprintf(stderr,
"INFO: Directive <ASN1C:RepresentAsPointer> "
"applied to %s at line %d\n",
ASN_EXPR_TYPE2STR((yyval.a_expr)->expr_type)
? ASN_EXPR_TYPE2STR((yyval.a_expr)->expr_type)
: "member",
(yyval.a_expr)->_lineno
);
}
}
break;
case 126:
/* Line 1787 of yacc.c */
#line 1273 "asn1p_y.y"
{
(yyval.a_expr) = (yyvsp[(1) - (1)].a_expr);
}
break;
case 127:
/* Line 1787 of yacc.c */
#line 1276 "asn1p_y.y"
{
(yyval.a_expr) = (yyvsp[(3) - (4)].a_expr);
assert((yyval.a_expr)->expr_type == A1TC_INVALID);
(yyval.a_expr)->expr_type = ASN_CONSTR_CHOICE;
(yyval.a_expr)->meta_type = AMT_TYPE;
}
break;
case 128:
/* Line 1787 of yacc.c */
#line 1282 "asn1p_y.y"
{
(yyval.a_expr) = (yyvsp[(3) - (4)].a_expr);
assert((yyval.a_expr)->expr_type == A1TC_INVALID);
(yyval.a_expr)->expr_type = ASN_CONSTR_SEQUENCE;
(yyval.a_expr)->meta_type = AMT_TYPE;
}
break;
case 129:
/* Line 1787 of yacc.c */
#line 1288 "asn1p_y.y"
{
(yyval.a_expr) = (yyvsp[(3) - (4)].a_expr);
assert((yyval.a_expr)->expr_type == A1TC_INVALID);
(yyval.a_expr)->expr_type = ASN_CONSTR_SET;
(yyval.a_expr)->meta_type = AMT_TYPE;
}
break;
case 130:
/* Line 1787 of yacc.c */
#line 1294 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
(yyval.a_expr)->constraints = (yyvsp[(2) - (6)].a_constr);
(yyval.a_expr)->expr_type = ASN_CONSTR_SEQUENCE_OF;
(yyval.a_expr)->meta_type = AMT_TYPE;
(yyvsp[(6) - (6)].a_expr)->Identifier = (yyvsp[(4) - (6)].tv_str);
(yyvsp[(6) - (6)].a_expr)->tag = (yyvsp[(5) - (6)].a_tag);
asn1p_expr_add((yyval.a_expr), (yyvsp[(6) - (6)].a_expr));
}
break;
case 131:
/* Line 1787 of yacc.c */
#line 1304 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
(yyval.a_expr)->constraints = (yyvsp[(2) - (6)].a_constr);
(yyval.a_expr)->expr_type = ASN_CONSTR_SET_OF;
(yyval.a_expr)->meta_type = AMT_TYPE;
(yyvsp[(6) - (6)].a_expr)->Identifier = (yyvsp[(4) - (6)].tv_str);
(yyvsp[(6) - (6)].a_expr)->tag = (yyvsp[(5) - (6)].a_tag);
asn1p_expr_add((yyval.a_expr), (yyvsp[(6) - (6)].a_expr));
}
break;
case 132:
/* Line 1787 of yacc.c */
#line 1314 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
(yyval.a_expr)->expr_type = ASN_TYPE_ANY;
(yyval.a_expr)->meta_type = AMT_TYPE;
}
break;
case 133:
/* Line 1787 of yacc.c */
#line 1320 "asn1p_y.y"
{
int ret;
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
(yyval.a_expr)->reference = asn1p_ref_new(yylineno, currentModule);
ret = asn1p_ref_add_component((yyval.a_expr)->reference,
(yyvsp[(4) - (4)].tv_str), RLT_lowercase);
checkmem(ret == 0);
(yyval.a_expr)->expr_type = ASN_TYPE_ANY;
(yyval.a_expr)->meta_type = AMT_TYPE;
free((yyvsp[(4) - (4)].tv_str));
}
break;
case 134:
/* Line 1787 of yacc.c */
#line 1332 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
(yyval.a_expr)->reference = (yyvsp[(3) - (3)].a_ref);
(yyval.a_expr)->expr_type = A1TC_INSTANCE;
(yyval.a_expr)->meta_type = AMT_TYPE;
}
break;
case 135:
/* Line 1787 of yacc.c */
#line 1347 "asn1p_y.y"
{
int ret;
(yyval.a_ref) = asn1p_ref_new(yylineno, currentModule);
checkmem((yyval.a_ref));
ret = asn1p_ref_add_component((yyval.a_ref), (yyvsp[(1) - (1)].tv_str), RLT_UNKNOWN);
checkmem(ret == 0);
free((yyvsp[(1) - (1)].tv_str));
}
break;
case 136:
/* Line 1787 of yacc.c */
#line 1355 "asn1p_y.y"
{
int ret;
(yyval.a_ref) = asn1p_ref_new(yylineno, currentModule);
checkmem((yyval.a_ref));
ret = asn1p_ref_add_component((yyval.a_ref), (yyvsp[(1) - (3)].tv_str), RLT_UNKNOWN);
checkmem(ret == 0);
ret = asn1p_ref_add_component((yyval.a_ref), (yyvsp[(3) - (3)].tv_str), RLT_UNKNOWN);
checkmem(ret == 0);
free((yyvsp[(1) - (3)].tv_str));
free((yyvsp[(3) - (3)].tv_str));
}
break;
case 137:
/* Line 1787 of yacc.c */
#line 1366 "asn1p_y.y"
{
int ret;
(yyval.a_ref) = asn1p_ref_new(yylineno, currentModule);
checkmem((yyval.a_ref));
ret = asn1p_ref_add_component((yyval.a_ref), (yyvsp[(1) - (3)].tv_str), RLT_UNKNOWN);
checkmem(ret == 0);
ret = asn1p_ref_add_component((yyval.a_ref), (yyvsp[(3) - (3)].tv_str), RLT_UNKNOWN);
checkmem(ret == 0);
free((yyvsp[(1) - (3)].tv_str));
free((yyvsp[(3) - (3)].tv_str));
}
break;
case 138:
/* Line 1787 of yacc.c */
#line 1377 "asn1p_y.y"
{
int ret;
(yyval.a_ref) = asn1p_ref_new(yylineno, currentModule);
checkmem((yyval.a_ref));
ret = asn1p_ref_add_component((yyval.a_ref), (yyvsp[(1) - (3)].tv_str), RLT_UNKNOWN);
checkmem(ret == 0);
ret = asn1p_ref_add_component((yyval.a_ref), (yyvsp[(3) - (3)].tv_str), RLT_lowercase);
checkmem(ret == 0);
free((yyvsp[(1) - (3)].tv_str));
free((yyvsp[(3) - (3)].tv_str));
}
break;
case 139:
/* Line 1787 of yacc.c */
#line 1388 "asn1p_y.y"
{
int ret;
(yyval.a_ref) = asn1p_ref_new(yylineno, currentModule);
checkmem((yyval.a_ref));
ret = asn1p_ref_add_component((yyval.a_ref), (yyvsp[(1) - (1)].tv_str), RLT_CAPITALS);
free((yyvsp[(1) - (1)].tv_str));
checkmem(ret == 0);
}
break;
case 140:
/* Line 1787 of yacc.c */
#line 1396 "asn1p_y.y"
{
int ret;
(yyval.a_ref) = (yyvsp[(3) - (3)].a_ref);
ret = asn1p_ref_add_component((yyval.a_ref), (yyvsp[(1) - (3)].tv_str), RLT_CAPITALS);
free((yyvsp[(1) - (3)].tv_str));
checkmem(ret == 0);
/*
* Move the last element infront.
*/
{
struct asn1p_ref_component_s tmp_comp;
tmp_comp = (yyval.a_ref)->components[(yyval.a_ref)->comp_count-1];
memmove(&(yyval.a_ref)->components[1],
&(yyval.a_ref)->components[0],
sizeof((yyval.a_ref)->components[0])
* ((yyval.a_ref)->comp_count - 1));
(yyval.a_ref)->components[0] = tmp_comp;
}
}
break;
case 141:
/* Line 1787 of yacc.c */
#line 1418 "asn1p_y.y"
{
int ret;
(yyval.a_ref) = asn1p_ref_new(yylineno, currentModule);
checkmem((yyval.a_ref));
ret = asn1p_ref_add_component((yyval.a_ref), (yyvsp[(1) - (1)].a_refcomp).name, (yyvsp[(1) - (1)].a_refcomp).lex_type);
free((yyvsp[(1) - (1)].a_refcomp).name);
checkmem(ret == 0);
}
break;
case 142:
/* Line 1787 of yacc.c */
#line 1426 "asn1p_y.y"
{
int ret;
(yyval.a_ref) = (yyvsp[(1) - (3)].a_ref);
ret = asn1p_ref_add_component((yyval.a_ref), (yyvsp[(3) - (3)].a_refcomp).name, (yyvsp[(3) - (3)].a_refcomp).lex_type);
free((yyvsp[(3) - (3)].a_refcomp).name);
checkmem(ret == 0);
}
break;
case 144:
/* Line 1787 of yacc.c */
#line 1439 "asn1p_y.y"
{
(yyval.a_refcomp).lex_type = RLT_AmpUppercase;
(yyval.a_refcomp).name = (yyvsp[(1) - (1)].tv_str);
}
break;
case 145:
/* Line 1787 of yacc.c */
#line 1444 "asn1p_y.y"
{
(yyval.a_refcomp).lex_type = RLT_Amplowercase;
(yyval.a_refcomp).name = (yyvsp[(1) - (1)].tv_str);
}
break;
case 146:
/* Line 1787 of yacc.c */
#line 1453 "asn1p_y.y"
{
(yyval.a_ref) = asn1p_ref_new(yylineno, currentModule);
asn1p_ref_add_component((yyval.a_ref), (yyvsp[(1) - (1)].tv_str), RLT_AmpUppercase);
free((yyvsp[(1) - (1)].tv_str));
}
break;
case 147:
/* Line 1787 of yacc.c */
#line 1458 "asn1p_y.y"
{
(yyval.a_ref) = (yyval.a_ref);
asn1p_ref_add_component((yyval.a_ref), (yyvsp[(3) - (3)].tv_str), RLT_AmpUppercase);
free((yyvsp[(3) - (3)].tv_str));
}
break;
case 148:
/* Line 1787 of yacc.c */
#line 1463 "asn1p_y.y"
{
(yyval.a_ref) = (yyval.a_ref);
asn1p_ref_add_component((yyval.a_ref), (yyvsp[(3) - (3)].tv_str), RLT_Amplowercase);
free((yyvsp[(3) - (3)].tv_str));
}
break;
case 149:
/* Line 1787 of yacc.c */
#line 1471 "asn1p_y.y"
{
(yyval.a_ref) = asn1p_ref_new(yylineno, currentModule);
asn1p_ref_add_component((yyval.a_ref), (yyvsp[(1) - (1)].tv_str), RLT_CAPITALS);
free((yyvsp[(1) - (1)].tv_str));
}
break;
case 150:
/* Line 1787 of yacc.c */
#line 1494 "asn1p_y.y"
{
(yyval.a_expr) = (yyvsp[(2) - (4)].a_expr);
assert((yyval.a_expr)->Identifier == NULL);
(yyval.a_expr)->Identifier = (yyvsp[(1) - (4)].tv_str);
(yyval.a_expr)->meta_type = AMT_VALUE;
(yyval.a_expr)->value = (yyvsp[(4) - (4)].a_value);
}
break;
case 153:
/* Line 1787 of yacc.c */
#line 1506 "asn1p_y.y"
{
(yyval.a_value) = asn1p_value_fromint(0);
checkmem((yyval.a_value));
(yyval.a_value)->type = ATV_CHOICE_IDENTIFIER;
(yyval.a_value)->value.choice_identifier.identifier = (yyvsp[(1) - (3)].tv_str);
(yyval.a_value)->value.choice_identifier.value = (yyvsp[(3) - (3)].a_value);
}
break;
case 154:
/* Line 1787 of yacc.c */
#line 1513 "asn1p_y.y"
{ asn1p_lexer_hack_push_opaque_state(); }
break;
case 155:
/* Line 1787 of yacc.c */
#line 1513 "asn1p_y.y"
{
(yyval.a_value) = asn1p_value_frombuf((yyvsp[(3) - (3)].tv_opaque).buf, (yyvsp[(3) - (3)].tv_opaque).len, 0);
checkmem((yyval.a_value));
(yyval.a_value)->type = ATV_UNPARSED;
}
break;
case 156:
/* Line 1787 of yacc.c */
#line 1518 "asn1p_y.y"
{
(yyval.a_value) = asn1p_value_fromint(0);
checkmem((yyval.a_value));
(yyval.a_value)->type = ATV_NULL;
}
break;
case 157:
/* Line 1787 of yacc.c */
#line 1526 "asn1p_y.y"
{
(yyval.a_value) = asn1p_value_fromint(0);
checkmem((yyval.a_value));
(yyval.a_value)->type = ATV_FALSE;
}
break;
case 158:
/* Line 1787 of yacc.c */
#line 1531 "asn1p_y.y"
{
(yyval.a_value) = asn1p_value_fromint(0);
checkmem((yyval.a_value));
(yyval.a_value)->type = ATV_TRUE;
}
break;
case 159:
/* Line 1787 of yacc.c */
#line 1536 "asn1p_y.y"
{
(yyval.a_value) = _convert_bitstring2binary((yyvsp[(1) - (1)].tv_str), 'B');
checkmem((yyval.a_value));
free((yyvsp[(1) - (1)].tv_str));
}
break;
case 160:
/* Line 1787 of yacc.c */
#line 1541 "asn1p_y.y"
{
(yyval.a_value) = _convert_bitstring2binary((yyvsp[(1) - (1)].tv_str), 'H');
checkmem((yyval.a_value));
free((yyvsp[(1) - (1)].tv_str));
}
break;
case 161:
/* Line 1787 of yacc.c */
#line 1546 "asn1p_y.y"
{
(yyval.a_value) = (yyval.a_value);
}
break;
case 162:
/* Line 1787 of yacc.c */
#line 1549 "asn1p_y.y"
{
(yyval.a_value) = (yyvsp[(1) - (1)].a_value);
}
break;
case 163:
/* Line 1787 of yacc.c */
#line 1555 "asn1p_y.y"
{
asn1p_ref_t *ref;
int ret;
ref = asn1p_ref_new(yylineno, currentModule);
checkmem(ref);
ret = asn1p_ref_add_component(ref, (yyvsp[(1) - (1)].tv_str), RLT_lowercase);
checkmem(ret == 0);
(yyval.a_value) = asn1p_value_fromref(ref, 0);
checkmem((yyval.a_value));
free((yyvsp[(1) - (1)].tv_str));
}
break;
case 164:
/* Line 1787 of yacc.c */
#line 1566 "asn1p_y.y"
{
asn1p_ref_t *ref;
int ret;
ref = asn1p_ref_new(yylineno, currentModule);
checkmem(ref);
ret = asn1p_ref_add_component(ref, (yyvsp[(1) - (3)].tv_str), RLT_UNKNOWN);
checkmem(ret == 0);
ret = asn1p_ref_add_component(ref, (yyvsp[(3) - (3)].tv_str), RLT_lowercase);
checkmem(ret == 0);
(yyval.a_value) = asn1p_value_fromref(ref, 0);
checkmem((yyval.a_value));
free((yyvsp[(1) - (3)].tv_str));
free((yyvsp[(3) - (3)].tv_str));
}
break;
case 165:
/* Line 1787 of yacc.c */
#line 1584 "asn1p_y.y"
{
(yyval.a_value) = asn1p_value_frombuf((yyvsp[(1) - (1)].tv_opaque).buf, (yyvsp[(1) - (1)].tv_opaque).len, 0);
checkmem((yyval.a_value));
}
break;
case 166:
/* Line 1787 of yacc.c */
#line 1588 "asn1p_y.y"
{
(yyval.a_value) = asn1p_value_fromint((yyvsp[(1) - (1)].a_int));
checkmem((yyval.a_value));
(yyval.a_value)->type = ATV_TUPLE;
}
break;
case 167:
/* Line 1787 of yacc.c */
#line 1593 "asn1p_y.y"
{
(yyval.a_value) = asn1p_value_fromint((yyvsp[(1) - (1)].a_int));
checkmem((yyval.a_value));
(yyval.a_value)->type = ATV_QUADRUPLE;
}
break;
case 168:
/* Line 1787 of yacc.c */
#line 1601 "asn1p_y.y"
{
(yyval.tv_opaque).len = (yyvsp[(1) - (1)].tv_opaque).len + 1;
(yyval.tv_opaque).buf = malloc((yyval.tv_opaque).len + 1);
checkmem((yyval.tv_opaque).buf);
(yyval.tv_opaque).buf[0] = '{';
memcpy((yyval.tv_opaque).buf + 1, (yyvsp[(1) - (1)].tv_opaque).buf, (yyvsp[(1) - (1)].tv_opaque).len);
(yyval.tv_opaque).buf[(yyval.tv_opaque).len] = '\0';
free((yyvsp[(1) - (1)].tv_opaque).buf);
}
break;
case 169:
/* Line 1787 of yacc.c */
#line 1610 "asn1p_y.y"
{
int newsize = (yyvsp[(1) - (2)].tv_opaque).len + (yyvsp[(2) - (2)].tv_opaque).len;
char *p = malloc(newsize + 1);
checkmem(p);
memcpy(p , (yyvsp[(1) - (2)].tv_opaque).buf, (yyvsp[(1) - (2)].tv_opaque).len);
memcpy(p + (yyvsp[(1) - (2)].tv_opaque).len, (yyvsp[(2) - (2)].tv_opaque).buf, (yyvsp[(2) - (2)].tv_opaque).len);
p[newsize] = '\0';
free((yyvsp[(1) - (2)].tv_opaque).buf);
free((yyvsp[(2) - (2)].tv_opaque).buf);
(yyval.tv_opaque).buf = p;
(yyval.tv_opaque).len = newsize;
}
break;
case 170:
/* Line 1787 of yacc.c */
#line 1625 "asn1p_y.y"
{ (yyval.a_type) = ASN_BASIC_BOOLEAN; }
break;
case 171:
/* Line 1787 of yacc.c */
#line 1626 "asn1p_y.y"
{ (yyval.a_type) = ASN_BASIC_NULL; }
break;
case 172:
/* Line 1787 of yacc.c */
#line 1627 "asn1p_y.y"
{ (yyval.a_type) = ASN_BASIC_REAL; }
break;
case 173:
/* Line 1787 of yacc.c */
#line 1628 "asn1p_y.y"
{ (yyval.a_type) = (yyvsp[(1) - (1)].a_type); }
break;
case 174:
/* Line 1787 of yacc.c */
#line 1629 "asn1p_y.y"
{ (yyval.a_type) = ASN_BASIC_OCTET_STRING; }
break;
case 175:
/* Line 1787 of yacc.c */
#line 1630 "asn1p_y.y"
{ (yyval.a_type) = ASN_BASIC_OBJECT_IDENTIFIER; }
break;
case 176:
/* Line 1787 of yacc.c */
#line 1631 "asn1p_y.y"
{ (yyval.a_type) = ASN_BASIC_RELATIVE_OID; }
break;
case 177:
/* Line 1787 of yacc.c */
#line 1632 "asn1p_y.y"
{ (yyval.a_type) = ASN_BASIC_EXTERNAL; }
break;
case 178:
/* Line 1787 of yacc.c */
#line 1633 "asn1p_y.y"
{ (yyval.a_type) = ASN_BASIC_EMBEDDED_PDV; }
break;
case 179:
/* Line 1787 of yacc.c */
#line 1634 "asn1p_y.y"
{ (yyval.a_type) = ASN_BASIC_CHARACTER_STRING; }
break;
case 180:
/* Line 1787 of yacc.c */
#line 1635 "asn1p_y.y"
{ (yyval.a_type) = ASN_BASIC_UTCTime; }
break;
case 181:
/* Line 1787 of yacc.c */
#line 1636 "asn1p_y.y"
{ (yyval.a_type) = ASN_BASIC_GeneralizedTime; }
break;
case 182:
/* Line 1787 of yacc.c */
#line 1637 "asn1p_y.y"
{ (yyval.a_type) = (yyvsp[(1) - (1)].a_type); }
break;
case 183:
/* Line 1787 of yacc.c */
#line 1644 "asn1p_y.y"
{ (yyval.a_type) = ASN_BASIC_INTEGER; }
break;
case 184:
/* Line 1787 of yacc.c */
#line 1645 "asn1p_y.y"
{ (yyval.a_type) = ASN_BASIC_ENUMERATED; }
break;
case 185:
/* Line 1787 of yacc.c */
#line 1646 "asn1p_y.y"
{ (yyval.a_type) = ASN_BASIC_BIT_STRING; }
break;
case 186:
/* Line 1787 of yacc.c */
#line 1650 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
(yyval.a_expr)->expr_type = (yyvsp[(1) - (1)].a_type);
(yyval.a_expr)->meta_type = AMT_TYPE;
}
break;
case 187:
/* Line 1787 of yacc.c */
#line 1656 "asn1p_y.y"
{
if((yyvsp[(2) - (2)].a_expr)) {
(yyval.a_expr) = (yyvsp[(2) - (2)].a_expr);
} else {
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
}
(yyval.a_expr)->expr_type = (yyvsp[(1) - (2)].a_type);
(yyval.a_expr)->meta_type = AMT_TYPE;
}
break;
case 188:
/* Line 1787 of yacc.c */
#line 1669 "asn1p_y.y"
{ (yyval.a_type) = ASN_STRING_BMPString; }
break;
case 189:
/* Line 1787 of yacc.c */
#line 1670 "asn1p_y.y"
{
(yyval.a_type) = ASN_STRING_GeneralString;
fprintf(stderr, "WARNING: GeneralString is not fully supported\n");
}
break;
case 190:
/* Line 1787 of yacc.c */
#line 1674 "asn1p_y.y"
{
(yyval.a_type) = ASN_STRING_GraphicString;
fprintf(stderr, "WARNING: GraphicString is not fully supported\n");
}
break;
case 191:
/* Line 1787 of yacc.c */
#line 1678 "asn1p_y.y"
{ (yyval.a_type) = ASN_STRING_IA5String; }
break;
case 192:
/* Line 1787 of yacc.c */
#line 1679 "asn1p_y.y"
{ (yyval.a_type) = ASN_STRING_ISO646String; }
break;
case 193:
/* Line 1787 of yacc.c */
#line 1680 "asn1p_y.y"
{ (yyval.a_type) = ASN_STRING_NumericString; }
break;
case 194:
/* Line 1787 of yacc.c */
#line 1681 "asn1p_y.y"
{ (yyval.a_type) = ASN_STRING_PrintableString; }
break;
case 195:
/* Line 1787 of yacc.c */
#line 1682 "asn1p_y.y"
{
(yyval.a_type) = ASN_STRING_T61String;
fprintf(stderr, "WARNING: T61String is not fully supported\n");
}
break;
case 196:
/* Line 1787 of yacc.c */
#line 1686 "asn1p_y.y"
{ (yyval.a_type) = ASN_STRING_TeletexString; }
break;
case 197:
/* Line 1787 of yacc.c */
#line 1687 "asn1p_y.y"
{ (yyval.a_type) = ASN_STRING_UniversalString; }
break;
case 198:
/* Line 1787 of yacc.c */
#line 1688 "asn1p_y.y"
{ (yyval.a_type) = ASN_STRING_UTF8String; }
break;
case 199:
/* Line 1787 of yacc.c */
#line 1689 "asn1p_y.y"
{
(yyval.a_type) = ASN_STRING_VideotexString;
fprintf(stderr, "WARNING: VideotexString is not fully supported\n");
}
break;
case 200:
/* Line 1787 of yacc.c */
#line 1693 "asn1p_y.y"
{ (yyval.a_type) = ASN_STRING_VisibleString; }
break;
case 201:
/* Line 1787 of yacc.c */
#line 1694 "asn1p_y.y"
{ (yyval.a_type) = ASN_STRING_ObjectDescriptor; }
break;
case 206:
/* Line 1787 of yacc.c */
#line 1705 "asn1p_y.y"
{ (yyval.a_constr) = 0; }
break;
case 207:
/* Line 1787 of yacc.c */
#line 1706 "asn1p_y.y"
{
(yyval.a_constr) = (yyvsp[(1) - (1)].a_constr);
}
break;
case 209:
/* Line 1787 of yacc.c */
#line 1716 "asn1p_y.y"
{
CONSTRAINT_INSERT((yyval.a_constr), ACT_CA_SET, (yyvsp[(1) - (1)].a_constr), 0);
}
break;
case 210:
/* Line 1787 of yacc.c */
#line 1719 "asn1p_y.y"
{
/*
* This is a special case, for compatibility purposes.
* It goes without parentheses.
*/
CONSTRAINT_INSERT((yyval.a_constr), ACT_CT_SIZE, (yyvsp[(3) - (4)].a_constr), 0);
}
break;
case 211:
/* Line 1787 of yacc.c */
#line 1729 "asn1p_y.y"
{
(yyval.a_constr) = (yyvsp[(2) - (3)].a_constr);
}
break;
case 212:
/* Line 1787 of yacc.c */
#line 1732 "asn1p_y.y"
{
CONSTRAINT_INSERT((yyval.a_constr), ACT_CA_SET, (yyvsp[(1) - (4)].a_constr), (yyvsp[(3) - (4)].a_constr));
}
break;
case 213:
/* Line 1787 of yacc.c */
#line 1738 "asn1p_y.y"
{
(yyval.a_constr) = (yyvsp[(1) - (1)].a_constr);
}
break;
case 214:
/* Line 1787 of yacc.c */
#line 1741 "asn1p_y.y"
{
(yyval.a_constr) = (yyvsp[(1) - (1)].a_constr);
}
break;
case 215:
/* Line 1787 of yacc.c */
#line 1747 "asn1p_y.y"
{
(yyval.a_constr) = asn1p_constraint_new(yylineno, currentModule);
(yyval.a_constr)->type = ACT_EL_EXT;
}
break;
case 216:
/* Line 1787 of yacc.c */
#line 1751 "asn1p_y.y"
{
(yyval.a_constr) = (yyvsp[(1) - (1)].a_constr);
}
break;
case 217:
/* Line 1787 of yacc.c */
#line 1754 "asn1p_y.y"
{
asn1p_constraint_t *ct;
ct = asn1p_constraint_new(yylineno, currentModule);
ct->type = ACT_EL_EXT;
CONSTRAINT_INSERT((yyval.a_constr), ACT_CA_CSV, (yyvsp[(1) - (3)].a_constr), ct);
}
break;
case 218:
/* Line 1787 of yacc.c */
#line 1760 "asn1p_y.y"
{
asn1p_constraint_t *ct;
ct = asn1p_constraint_new(yylineno, currentModule);
ct->type = ACT_EL_EXT;
CONSTRAINT_INSERT((yyval.a_constr), ACT_CA_CSV, (yyvsp[(1) - (5)].a_constr), ct);
ct = (yyval.a_constr);
CONSTRAINT_INSERT((yyval.a_constr), ACT_CA_CSV, ct, (yyvsp[(5) - (5)].a_constr));
}
break;
case 220:
/* Line 1787 of yacc.c */
#line 1772 "asn1p_y.y"
{
CONSTRAINT_INSERT((yyval.a_constr), ACT_CA_AEX, (yyvsp[(3) - (3)].a_constr), 0);
}
break;
case 222:
/* Line 1787 of yacc.c */
#line 1779 "asn1p_y.y"
{
CONSTRAINT_INSERT((yyval.a_constr), ACT_CA_UNI, (yyvsp[(1) - (3)].a_constr), (yyvsp[(3) - (3)].a_constr));
}
break;
case 224:
/* Line 1787 of yacc.c */
#line 1786 "asn1p_y.y"
{
CONSTRAINT_INSERT((yyval.a_constr), ACT_CA_INT, (yyvsp[(1) - (3)].a_constr), (yyvsp[(3) - (3)].a_constr));
}
break;
case 226:
/* Line 1787 of yacc.c */
#line 1794 "asn1p_y.y"
{
CONSTRAINT_INSERT((yyval.a_constr), ACT_CA_EXC, (yyvsp[(1) - (3)].a_constr), (yyvsp[(3) - (3)].a_constr));
}
break;
case 227:
/* Line 1787 of yacc.c */
#line 1800 "asn1p_y.y"
{
int ret;
(yyval.a_constr) = asn1p_constraint_new(yylineno, currentModule);
checkmem((yyval.a_constr));
(yyval.a_constr)->type = (yyvsp[(1) - (4)].a_ctype);
ret = asn1p_constraint_insert((yyval.a_constr), (yyvsp[(3) - (4)].a_constr));
checkmem(ret == 0);
}
break;
case 228:
/* Line 1787 of yacc.c */
#line 1808 "asn1p_y.y"
{
int ret;
(yyval.a_constr) = asn1p_constraint_new(yylineno, currentModule);
checkmem((yyval.a_constr));
(yyval.a_constr)->type = ACT_CA_SET;
ret = asn1p_constraint_insert((yyval.a_constr), (yyvsp[(2) - (3)].a_constr));
checkmem(ret == 0);
}
break;
case 229:
/* Line 1787 of yacc.c */
#line 1816 "asn1p_y.y"
{
(yyval.a_constr) = asn1p_constraint_new(yylineno, currentModule);
checkmem((yyval.a_constr));
(yyval.a_constr)->type = ACT_EL_VALUE;
(yyval.a_constr)->value = (yyvsp[(1) - (1)].a_value);
}
break;
case 230:
/* Line 1787 of yacc.c */
#line 1822 "asn1p_y.y"
{
(yyval.a_constr) = asn1p_constraint_new(yylineno, currentModule);
checkmem((yyval.a_constr));
(yyval.a_constr)->type = ACT_EL_TYPE;
(yyval.a_constr)->containedSubtype = (yyvsp[(1) - (1)].a_value);
}
break;
case 231:
/* Line 1787 of yacc.c */
#line 1828 "asn1p_y.y"
{
(yyval.a_constr) = asn1p_constraint_new(yylineno, currentModule);
checkmem((yyval.a_constr));
(yyval.a_constr)->type = (yyvsp[(2) - (3)].a_ctype);
(yyval.a_constr)->range_start = (yyvsp[(1) - (3)].a_value);
(yyval.a_constr)->range_stop = (yyvsp[(3) - (3)].a_value);
}
break;
case 232:
/* Line 1787 of yacc.c */
#line 1835 "asn1p_y.y"
{
(yyval.a_constr) = asn1p_constraint_new(yylineno, currentModule);
checkmem((yyval.a_constr));
(yyval.a_constr)->type = (yyvsp[(2) - (3)].a_ctype);
(yyval.a_constr)->range_start = asn1p_value_fromint(-123);
(yyval.a_constr)->range_stop = (yyvsp[(3) - (3)].a_value);
(yyval.a_constr)->range_start->type = ATV_MIN;
}
break;
case 233:
/* Line 1787 of yacc.c */
#line 1843 "asn1p_y.y"
{
(yyval.a_constr) = asn1p_constraint_new(yylineno, currentModule);
checkmem((yyval.a_constr));
(yyval.a_constr)->type = (yyvsp[(2) - (3)].a_ctype);
(yyval.a_constr)->range_start = (yyvsp[(1) - (3)].a_value);
(yyval.a_constr)->range_stop = asn1p_value_fromint(321);
(yyval.a_constr)->range_stop->type = ATV_MAX;
}
break;
case 234:
/* Line 1787 of yacc.c */
#line 1851 "asn1p_y.y"
{
(yyval.a_constr) = asn1p_constraint_new(yylineno, currentModule);
checkmem((yyval.a_constr));
(yyval.a_constr)->type = (yyvsp[(2) - (3)].a_ctype);
(yyval.a_constr)->range_start = asn1p_value_fromint(-123);
(yyval.a_constr)->range_stop = asn1p_value_fromint(321);
(yyval.a_constr)->range_start->type = ATV_MIN;
(yyval.a_constr)->range_stop->type = ATV_MAX;
}
break;
case 235:
/* Line 1787 of yacc.c */
#line 1860 "asn1p_y.y"
{
(yyval.a_constr) = (yyvsp[(1) - (1)].a_constr);
}
break;
case 236:
/* Line 1787 of yacc.c */
#line 1863 "asn1p_y.y"
{
(yyval.a_constr) = (yyvsp[(1) - (1)].a_constr);
}
break;
case 237:
/* Line 1787 of yacc.c */
#line 1866 "asn1p_y.y"
{ asn1p_lexer_hack_push_opaque_state(); }
break;
case 238:
/* Line 1787 of yacc.c */
#line 1866 "asn1p_y.y"
{
(yyval.a_constr) = asn1p_constraint_new(yylineno, currentModule);
checkmem((yyval.a_constr));
(yyval.a_constr)->type = ACT_EL_VALUE;
(yyval.a_constr)->value = asn1p_value_frombuf((yyvsp[(3) - (3)].tv_opaque).buf, (yyvsp[(3) - (3)].tv_opaque).len, 0);
(yyval.a_constr)->value->type = ATV_UNPARSED;
}
break;
case 239:
/* Line 1787 of yacc.c */
#line 1876 "asn1p_y.y"
{
(yyval.a_constr) = asn1p_constraint_new(yylineno, currentModule);
(yyval.a_constr)->type = ACT_CT_PATTERN;
(yyval.a_constr)->value = asn1p_value_frombuf((yyvsp[(2) - (2)].tv_opaque).buf, (yyvsp[(2) - (2)].tv_opaque).len, 0);
}
break;
case 240:
/* Line 1787 of yacc.c */
#line 1881 "asn1p_y.y"
{
asn1p_ref_t *ref;
(yyval.a_constr) = asn1p_constraint_new(yylineno, currentModule);
(yyval.a_constr)->type = ACT_CT_PATTERN;
ref = asn1p_ref_new(yylineno, currentModule);
asn1p_ref_add_component(ref, (yyvsp[(2) - (2)].tv_str), RLT_lowercase);
(yyval.a_constr)->value = asn1p_value_fromref(ref, 0);
free((yyvsp[(2) - (2)].tv_str));
}
break;
case 241:
/* Line 1787 of yacc.c */
#line 1893 "asn1p_y.y"
{
(yyval.a_ctype) = ACT_CT_SIZE;
}
break;
case 242:
/* Line 1787 of yacc.c */
#line 1896 "asn1p_y.y"
{
(yyval.a_ctype) = ACT_CT_FROM;
}
break;
case 243:
/* Line 1787 of yacc.c */
#line 1902 "asn1p_y.y"
{
(yyval.a_value) = asn1p_value_fromint(0);
checkmem((yyval.a_value));
(yyval.a_value)->type = ATV_FALSE;
}
break;
case 244:
/* Line 1787 of yacc.c */
#line 1907 "asn1p_y.y"
{
(yyval.a_value) = asn1p_value_fromint(1);
checkmem((yyval.a_value));
(yyval.a_value)->type = ATV_TRUE;
}
break;
case 248:
/* Line 1787 of yacc.c */
#line 1915 "asn1p_y.y"
{
asn1p_ref_t *ref;
int ret;
ref = asn1p_ref_new(yylineno, currentModule);
checkmem(ref);
ret = asn1p_ref_add_component(ref, (yyvsp[(1) - (1)].tv_str), RLT_lowercase);
checkmem(ret == 0);
(yyval.a_value) = asn1p_value_fromref(ref, 0);
checkmem((yyval.a_value));
free((yyvsp[(1) - (1)].tv_str));
}
break;
case 249:
/* Line 1787 of yacc.c */
#line 1929 "asn1p_y.y"
{
(yyval.a_value) = _convert_bitstring2binary((yyvsp[(1) - (1)].tv_str), 'B');
checkmem((yyval.a_value));
free((yyvsp[(1) - (1)].tv_str));
}
break;
case 250:
/* Line 1787 of yacc.c */
#line 1934 "asn1p_y.y"
{
(yyval.a_value) = _convert_bitstring2binary((yyvsp[(1) - (1)].tv_str), 'H');
checkmem((yyval.a_value));
free((yyvsp[(1) - (1)].tv_str));
}
break;
case 251:
/* Line 1787 of yacc.c */
#line 1942 "asn1p_y.y"
{
(yyval.a_value) = asn1p_value_fromref((yyvsp[(1) - (1)].a_ref), 0);
checkmem((yyval.a_value));
}
break;
case 252:
/* Line 1787 of yacc.c */
#line 1962 "asn1p_y.y"
{
CONSTRAINT_INSERT((yyval.a_constr), ACT_CT_WCOMP, (yyvsp[(3) - (3)].a_constr), 0);
}
break;
case 253:
/* Line 1787 of yacc.c */
#line 1965 "asn1p_y.y"
{
CONSTRAINT_INSERT((yyval.a_constr), ACT_CT_WCOMPS, (yyvsp[(4) - (5)].a_constr), 0);
}
break;
case 254:
/* Line 1787 of yacc.c */
#line 1971 "asn1p_y.y"
{
(yyval.a_constr) = (yyvsp[(1) - (1)].a_constr);
}
break;
case 255:
/* Line 1787 of yacc.c */
#line 1974 "asn1p_y.y"
{
CONSTRAINT_INSERT((yyval.a_constr), ACT_CT_WCOMPS, (yyvsp[(1) - (3)].a_constr), (yyvsp[(3) - (3)].a_constr));
}
break;
case 256:
/* Line 1787 of yacc.c */
#line 1980 "asn1p_y.y"
{
(yyval.a_constr) = asn1p_constraint_new(yylineno, currentModule);
checkmem((yyval.a_constr));
(yyval.a_constr)->type = ACT_EL_EXT;
(yyval.a_constr)->value = asn1p_value_frombuf("...", 3, 1);
}
break;
case 257:
/* Line 1787 of yacc.c */
#line 1986 "asn1p_y.y"
{
(yyval.a_constr) = asn1p_constraint_new(yylineno, currentModule);
checkmem((yyval.a_constr));
(yyval.a_constr)->type = ACT_EL_VALUE;
(yyval.a_constr)->value = asn1p_value_frombuf((yyvsp[(1) - (3)].tv_str), strlen((yyvsp[(1) - (3)].tv_str)), 0);
(yyval.a_constr)->presence = (yyvsp[(3) - (3)].a_pres);
if((yyvsp[(2) - (3)].a_constr)) asn1p_constraint_insert((yyval.a_constr), (yyvsp[(2) - (3)].a_constr));
}
break;
case 258:
/* Line 1787 of yacc.c */
#line 2000 "asn1p_y.y"
{ (yyval.a_pres) = ACPRES_DEFAULT; }
break;
case 259:
/* Line 1787 of yacc.c */
#line 2001 "asn1p_y.y"
{ (yyval.a_pres) = (yyvsp[(1) - (1)].a_pres); }
break;
case 260:
/* Line 1787 of yacc.c */
#line 2005 "asn1p_y.y"
{
(yyval.a_pres) = ACPRES_PRESENT;
}
break;
case 261:
/* Line 1787 of yacc.c */
#line 2008 "asn1p_y.y"
{
(yyval.a_pres) = ACPRES_ABSENT;
}
break;
case 262:
/* Line 1787 of yacc.c */
#line 2011 "asn1p_y.y"
{
(yyval.a_pres) = ACPRES_OPTIONAL;
}
break;
case 266:
/* Line 1787 of yacc.c */
#line 2026 "asn1p_y.y"
{ asn1p_lexer_hack_push_opaque_state(); }
break;
case 267:
/* Line 1787 of yacc.c */
#line 2026 "asn1p_y.y"
{
(yyval.a_constr) = asn1p_constraint_new(yylineno, currentModule);
checkmem((yyval.a_constr));
(yyval.a_constr)->type = ACT_CT_CTDBY;
(yyval.a_constr)->value = asn1p_value_frombuf((yyvsp[(5) - (5)].tv_opaque).buf, (yyvsp[(5) - (5)].tv_opaque).len, 0);
checkmem((yyval.a_constr)->value);
(yyval.a_constr)->value->type = ATV_UNPARSED;
}
break;
case 268:
/* Line 1787 of yacc.c */
#line 2037 "asn1p_y.y"
{
(yyval.a_constr) = asn1p_constraint_new(yylineno, currentModule);
(yyval.a_constr)->type = ACT_CT_CTNG;
(yyval.a_constr)->value = asn1p_value_fromtype((yyvsp[(2) - (2)].a_expr));
asn1p_expr_free((yyvsp[(2) - (2)].a_expr));
}
break;
case 269:
/* Line 1787 of yacc.c */
#line 2046 "asn1p_y.y"
{ (yyval.a_ctype) = ACT_EL_RANGE; }
break;
case 270:
/* Line 1787 of yacc.c */
#line 2047 "asn1p_y.y"
{ (yyval.a_ctype) = ACT_EL_RLRANGE; }
break;
case 271:
/* Line 1787 of yacc.c */
#line 2048 "asn1p_y.y"
{ (yyval.a_ctype) = ACT_EL_LLRANGE; }
break;
case 272:
/* Line 1787 of yacc.c */
#line 2049 "asn1p_y.y"
{ (yyval.a_ctype) = ACT_EL_ULRANGE; }
break;
case 273:
/* Line 1787 of yacc.c */
#line 2052 "asn1p_y.y"
{
(yyval.a_constr) = (yyvsp[(1) - (1)].a_constr);
}
break;
case 274:
/* Line 1787 of yacc.c */
#line 2055 "asn1p_y.y"
{
(yyval.a_constr) = (yyvsp[(1) - (1)].a_constr);
}
break;
case 275:
/* Line 1787 of yacc.c */
#line 2064 "asn1p_y.y"
{
asn1p_ref_t *ref = asn1p_ref_new(yylineno, currentModule);
asn1p_constraint_t *ct;
int ret;
ret = asn1p_ref_add_component(ref, (yyvsp[(2) - (3)].tv_str), 0);
checkmem(ret == 0);
ct = asn1p_constraint_new(yylineno, currentModule);
checkmem((yyval.a_constr));
ct->type = ACT_EL_VALUE;
ct->value = asn1p_value_fromref(ref, 0);
CONSTRAINT_INSERT((yyval.a_constr), ACT_CA_CRC, ct, 0);
free((yyvsp[(2) - (3)].tv_str));
}
break;
case 276:
/* Line 1787 of yacc.c */
#line 2080 "asn1p_y.y"
{
CONSTRAINT_INSERT((yyval.a_constr), ACT_CA_CRC, (yyvsp[(1) - (4)].a_constr), (yyvsp[(3) - (4)].a_constr));
}
break;
case 277:
/* Line 1787 of yacc.c */
#line 2086 "asn1p_y.y"
{
(yyval.a_constr) = asn1p_constraint_new(yylineno, currentModule);
checkmem((yyval.a_constr));
(yyval.a_constr)->type = ACT_EL_VALUE;
(yyval.a_constr)->value = asn1p_value_fromref((yyvsp[(1) - (1)].a_ref), 0);
}
break;
case 278:
/* Line 1787 of yacc.c */
#line 2092 "asn1p_y.y"
{
asn1p_constraint_t *ct;
ct = asn1p_constraint_new(yylineno, currentModule);
checkmem(ct);
ct->type = ACT_EL_VALUE;
ct->value = asn1p_value_fromref((yyvsp[(3) - (3)].a_ref), 0);
CONSTRAINT_INSERT((yyval.a_constr), ACT_CA_CSV, (yyvsp[(1) - (3)].a_constr), ct);
}
break;
case 279:
/* Line 1787 of yacc.c */
#line 2106 "asn1p_y.y"
{
char *p = malloc(strlen((yyvsp[(2) - (2)].tv_str)) + 2);
int ret;
*p = '@';
strcpy(p + 1, (yyvsp[(2) - (2)].tv_str));
(yyval.a_ref) = asn1p_ref_new(yylineno, currentModule);
ret = asn1p_ref_add_component((yyval.a_ref), p, 0);
checkmem(ret == 0);
free(p);
free((yyvsp[(2) - (2)].tv_str));
}
break;
case 280:
/* Line 1787 of yacc.c */
#line 2117 "asn1p_y.y"
{
char *p = malloc(strlen((yyvsp[(3) - (3)].tv_str)) + 3);
int ret;
p[0] = '@';
p[1] = '.';
strcpy(p + 2, (yyvsp[(3) - (3)].tv_str));
(yyval.a_ref) = asn1p_ref_new(yylineno, currentModule);
ret = asn1p_ref_add_component((yyval.a_ref), p, 0);
checkmem(ret == 0);
free(p);
free((yyvsp[(3) - (3)].tv_str));
}
break;
case 281:
/* Line 1787 of yacc.c */
#line 2133 "asn1p_y.y"
{
(yyval.tv_str) = (yyvsp[(1) - (1)].tv_str);
}
break;
case 282:
/* Line 1787 of yacc.c */
#line 2136 "asn1p_y.y"
{
int l1 = strlen((yyvsp[(1) - (3)].tv_str));
int l3 = strlen((yyvsp[(3) - (3)].tv_str));
(yyval.tv_str) = malloc(l1 + 1 + l3 + 1);
memcpy((yyval.tv_str), (yyvsp[(1) - (3)].tv_str), l1);
(yyval.tv_str)[l1] = '.';
memcpy((yyval.tv_str) + l1 + 1, (yyvsp[(3) - (3)].tv_str), l3);
(yyval.tv_str)[l1 + 1 + l3] = '\0';
free((yyvsp[(1) - (3)].tv_str));
free((yyvsp[(3) - (3)].tv_str));
}
break;
case 283:
/* Line 1787 of yacc.c */
#line 2156 "asn1p_y.y"
{
(yyval.a_marker).flags = EM_NOMARK;
(yyval.a_marker).default_value = 0;
}
break;
case 284:
/* Line 1787 of yacc.c */
#line 2160 "asn1p_y.y"
{ (yyval.a_marker) = (yyvsp[(1) - (1)].a_marker); }
break;
case 285:
/* Line 1787 of yacc.c */
#line 2164 "asn1p_y.y"
{
(yyval.a_marker).flags = EM_OPTIONAL | EM_INDIRECT;
(yyval.a_marker).default_value = 0;
}
break;
case 286:
/* Line 1787 of yacc.c */
#line 2168 "asn1p_y.y"
{
(yyval.a_marker).flags = EM_DEFAULT;
(yyval.a_marker).default_value = (yyvsp[(2) - (2)].a_value);
}
break;
case 287:
/* Line 1787 of yacc.c */
#line 2191 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
}
break;
case 288:
/* Line 1787 of yacc.c */
#line 2195 "asn1p_y.y"
{
(yyval.a_expr) = (yyvsp[(2) - (3)].a_expr);
}
break;
case 289:
/* Line 1787 of yacc.c */
#line 2201 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
asn1p_expr_add((yyval.a_expr), (yyvsp[(1) - (1)].a_expr));
}
break;
case 290:
/* Line 1787 of yacc.c */
#line 2206 "asn1p_y.y"
{
(yyval.a_expr) = (yyvsp[(1) - (3)].a_expr);
asn1p_expr_add((yyval.a_expr), (yyvsp[(3) - (3)].a_expr));
}
break;
case 291:
/* Line 1787 of yacc.c */
#line 2213 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
(yyval.a_expr)->expr_type = A1TC_UNIVERVAL;
(yyval.a_expr)->meta_type = AMT_VALUE;
(yyval.a_expr)->Identifier = (yyvsp[(1) - (1)].tv_str);
}
break;
case 292:
/* Line 1787 of yacc.c */
#line 2220 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
(yyval.a_expr)->expr_type = A1TC_UNIVERVAL;
(yyval.a_expr)->meta_type = AMT_VALUE;
(yyval.a_expr)->Identifier = (yyvsp[(1) - (4)].tv_str);
(yyval.a_expr)->value = (yyvsp[(3) - (4)].a_value);
}
break;
case 293:
/* Line 1787 of yacc.c */
#line 2228 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
(yyval.a_expr)->expr_type = A1TC_UNIVERVAL;
(yyval.a_expr)->meta_type = AMT_VALUE;
(yyval.a_expr)->Identifier = (yyvsp[(1) - (4)].tv_str);
(yyval.a_expr)->value = (yyvsp[(3) - (4)].a_value);
}
break;
case 294:
/* Line 1787 of yacc.c */
#line 2236 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
(yyval.a_expr)->expr_type = A1TC_UNIVERVAL;
(yyval.a_expr)->meta_type = AMT_VALUE;
(yyval.a_expr)->value = (yyvsp[(1) - (1)].a_value);
}
break;
case 295:
/* Line 1787 of yacc.c */
#line 2243 "asn1p_y.y"
{
(yyval.a_expr) = NEW_EXPR();
checkmem((yyval.a_expr));
(yyval.a_expr)->Identifier = strdup("...");
checkmem((yyval.a_expr)->Identifier);
(yyval.a_expr)->expr_type = A1TC_EXTENSIBLE;
(yyval.a_expr)->meta_type = AMT_VALUE;
}
break;
case 296:
/* Line 1787 of yacc.c */
#line 2254 "asn1p_y.y"
{
(yyval.a_value) = asn1p_value_fromint((yyvsp[(1) - (1)].a_int));
checkmem((yyval.a_value));
}
break;
case 297:
/* Line 1787 of yacc.c */
#line 2258 "asn1p_y.y"
{
(yyval.a_value) = asn1p_value_fromint((yyvsp[(1) - (1)].a_int));
checkmem((yyval.a_value));
}
break;
case 299:
/* Line 1787 of yacc.c */
#line 2266 "asn1p_y.y"
{
(yyval.a_value) = asn1p_value_fromdouble((yyvsp[(1) - (1)].a_dbl));
checkmem((yyval.a_value));
}
break;
case 300:
/* Line 1787 of yacc.c */
#line 2297 "asn1p_y.y"
{ memset(&(yyval.a_tag), 0, sizeof((yyval.a_tag))); }
break;
case 301:
/* Line 1787 of yacc.c */
#line 2298 "asn1p_y.y"
{ (yyval.a_tag) = (yyvsp[(1) - (1)].a_tag); }
break;
case 302:
/* Line 1787 of yacc.c */
#line 2302 "asn1p_y.y"
{
(yyval.a_tag) = (yyvsp[(1) - (2)].a_tag);
(yyval.a_tag).tag_mode = (yyvsp[(2) - (2)].a_tag).tag_mode;
}
break;
case 303:
/* Line 1787 of yacc.c */
#line 2309 "asn1p_y.y"
{
(yyval.a_tag) = (yyvsp[(2) - (4)].a_tag);
(yyval.a_tag).tag_value = (yyvsp[(3) - (4)].a_int);
}
break;
case 304:
/* Line 1787 of yacc.c */
#line 2315 "asn1p_y.y"
{ (yyval.a_tag).tag_class = TC_CONTEXT_SPECIFIC; }
break;
case 305:
/* Line 1787 of yacc.c */
#line 2316 "asn1p_y.y"
{ (yyval.a_tag).tag_class = TC_UNIVERSAL; }
break;
case 306:
/* Line 1787 of yacc.c */
#line 2317 "asn1p_y.y"
{ (yyval.a_tag).tag_class = TC_APPLICATION; }
break;
case 307:
/* Line 1787 of yacc.c */
#line 2318 "asn1p_y.y"
{ (yyval.a_tag).tag_class = TC_PRIVATE; }
break;
case 308:
/* Line 1787 of yacc.c */
#line 2322 "asn1p_y.y"
{ (yyval.a_tag).tag_mode = TM_DEFAULT; }
break;
case 309:
/* Line 1787 of yacc.c */
#line 2323 "asn1p_y.y"
{ (yyval.a_tag).tag_mode = TM_IMPLICIT; }
break;
case 310:
/* Line 1787 of yacc.c */
#line 2324 "asn1p_y.y"
{ (yyval.a_tag).tag_mode = TM_EXPLICIT; }
break;
case 311:
/* Line 1787 of yacc.c */
#line 2328 "asn1p_y.y"
{
checkmem((yyvsp[(1) - (1)].tv_str));
(yyval.tv_str) = (yyvsp[(1) - (1)].tv_str);
}
break;
case 312:
/* Line 1787 of yacc.c */
#line 2332 "asn1p_y.y"
{
checkmem((yyvsp[(1) - (1)].tv_str));
(yyval.tv_str) = (yyvsp[(1) - (1)].tv_str);
}
break;
case 313:
/* Line 1787 of yacc.c */
#line 2340 "asn1p_y.y"
{
checkmem((yyvsp[(1) - (1)].tv_str));
(yyval.tv_str) = (yyvsp[(1) - (1)].tv_str);
}
break;
case 314:
/* Line 1787 of yacc.c */
#line 2347 "asn1p_y.y"
{ (yyval.tv_str) = 0; }
break;
case 315:
/* Line 1787 of yacc.c */
#line 2348 "asn1p_y.y"
{
(yyval.tv_str) = (yyvsp[(1) - (1)].tv_str);
}
break;
case 316:
/* Line 1787 of yacc.c */
#line 2354 "asn1p_y.y"
{
checkmem((yyvsp[(1) - (1)].tv_str));
(yyval.tv_str) = (yyvsp[(1) - (1)].tv_str);
}
break;
/* Line 1787 of yacc.c */
#line 5169 "asn1p_y.y"
default: break;
}
/* User semantic actions sometimes alter yychar, and that requires
that yytoken be updated with the new translation. We take the
approach of translating immediately before every use of yytoken.
One alternative is translating here after every semantic action,
but that translation would be missed if the semantic action invokes
YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or
if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an
incorrect destructor might then be invoked immediately. In the
case of YYERROR or YYBACKUP, subsequent parser actions might lead
to an incorrect destructor call or verbose syntax error message
before the lookahead is translated. */
YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);
YYPOPSTACK (yylen);
yylen = 0;
YY_STACK_PRINT (yyss, yyssp);
*++yyvsp = yyval;
/* 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:
/* Make sure we have latest lookahead translation. See comments at
user semantic actions for why this is necessary. */
yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar);
/* If not already recovering from an error, report this error. */
if (!yyerrstatus)
{
++yynerrs;
#if ! YYERROR_VERBOSE
yyerror (YY_("syntax error"));
#else
# define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \
yyssp, yytoken)
{
char const *yymsgp = YY_("syntax error");
int yysyntax_error_status;
yysyntax_error_status = YYSYNTAX_ERROR;
if (yysyntax_error_status == 0)
yymsgp = yymsg;
else if (yysyntax_error_status == 1)
{
if (yymsg != yymsgbuf)
YYSTACK_FREE (yymsg);
yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc);
if (!yymsg)
{
yymsg = yymsgbuf;
yymsg_alloc = sizeof yymsgbuf;
yysyntax_error_status = 2;
}
else
{
yysyntax_error_status = YYSYNTAX_ERROR;
yymsgp = yymsg;
}
}
yyerror (yymsgp);
if (yysyntax_error_status == 2)
goto yyexhaustedlab;
}
# undef YYSYNTAX_ERROR
#endif
}
if (yyerrstatus == 3)
{
/* If just tried and failed to reuse lookahead 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);
yychar = YYEMPTY;
}
}
/* Else will try to reuse lookahead 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 (/*CONSTCOND*/ 0)
goto yyerrorlab;
/* Do not reclaim the symbols of the rule which action triggered
this YYERROR. */
YYPOPSTACK (yylen);
yylen = 0;
YY_STACK_PRINT (yyss, yyssp);
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 (!yypact_value_is_default (yyn))
{
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;
yydestruct ("Error: popping",
yystos[yystate], yyvsp);
YYPOPSTACK (1);
yystate = *yyssp;
YY_STACK_PRINT (yyss, yyssp);
}
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
*++yyvsp = yylval;
YY_IGNORE_MAYBE_UNINITIALIZED_END
/* 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;
#if !defined yyoverflow || YYERROR_VERBOSE
/*-------------------------------------------------.
| yyexhaustedlab -- memory exhaustion comes here. |
`-------------------------------------------------*/
yyexhaustedlab:
yyerror (YY_("memory exhausted"));
yyresult = 2;
/* Fall through. */
#endif
yyreturn:
if (yychar != YYEMPTY)
{
/* Make sure we have latest lookahead translation. See comments at
user semantic actions for why this is necessary. */
yytoken = YYTRANSLATE (yychar);
yydestruct ("Cleanup: discarding lookahead",
yytoken, &yylval);
}
/* Do not reclaim the symbols of the rule which action triggered
this YYABORT or YYACCEPT. */
YYPOPSTACK (yylen);
YY_STACK_PRINT (yyss, yyssp);
while (yyssp != yyss)
{
yydestruct ("Cleanup: popping",
yystos[*yyssp], yyvsp);
YYPOPSTACK (1);
}
#ifndef yyoverflow
if (yyss != yyssa)
YYSTACK_FREE (yyss);
#endif
#if YYERROR_VERBOSE
if (yymsg != yymsgbuf)
YYSTACK_FREE (yymsg);
#endif
/* Make sure YYID is used. */
return YYID (yyresult);
}
/* Line 2050 of yacc.c */
#line 2360 "asn1p_y.y"
/*
* Convert Xstring ('0101'B or '5'H) to the binary vector.
*/
static asn1p_value_t *
_convert_bitstring2binary(char *str, int base) {
asn1p_value_t *val;
int slen;
int memlen;
int baselen;
int bits;
uint8_t *binary_vector;
uint8_t *bv_ptr;
uint8_t cur_val;
assert(str);
assert(str[0] == '\'');
switch(base) {
case 'B':
baselen = 1;
break;
case 'H':
baselen = 4;
break;
default:
assert(base == 'B' || base == 'H');
errno = EINVAL;
return NULL;
}
slen = strlen(str);
assert(str[slen - 1] == base);
assert(str[slen - 2] == '\'');
memlen = slen / (8 / baselen); /* Conservative estimate */
bv_ptr = binary_vector = malloc(memlen + 1);
if(bv_ptr == NULL)
/* ENOMEM */
return NULL;
cur_val = 0;
bits = 0;
while(*(++str) != '\'') {
switch(baselen) {
case 1:
switch(*str) {
case '1':
cur_val |= 1 << (7 - (bits % 8));
case '0':
break;
default:
assert(!"_y UNREACH1");
case ' ': case '\r': case '\n':
continue;
}
break;
case 4:
switch(*str) {
case '0': case '1': case '2': case '3': case '4':
case '5': case '6': case '7': case '8': case '9':
cur_val |= (*str - '0') << (4 - (bits % 8));
break;
case 'A': case 'B': case 'C':
case 'D': case 'E': case 'F':
cur_val |= ((*str - 'A') + 10)
<< (4 - (bits % 8));
break;
default:
assert(!"_y UNREACH2");
case ' ': case '\r': case '\n':
continue;
}
break;
}
bits += baselen;
if((bits % 8) == 0) {
*bv_ptr++ = cur_val;
cur_val = 0;
}
}
*bv_ptr = cur_val;
assert((bv_ptr - binary_vector) <= memlen);
val = asn1p_value_frombits(binary_vector, bits, 0);
if(val == NULL) {
free(binary_vector);
}
return val;
}
/*
* For unnamed types (used in old X.208 compliant modules)
* generate some sort of interim names, to not to force human being to fix
* the specification's compliance to modern ASN.1 standards.
*/
static void
_fixup_anonymous_identifier(asn1p_expr_t *expr) {
char *p;
assert(expr->Identifier == 0);
/*
* Try to figure out the type name
* without going too much into details
*/
expr->Identifier = ASN_EXPR_TYPE2STR(expr->expr_type);
if(expr->reference && expr->reference->comp_count > 0)
expr->Identifier = expr->reference->components[0].name;
fprintf(stderr,
"WARNING: Line %d: expected lower-case member identifier, "
"found an unnamed %s.\n"
"WARNING: Obsolete X.208 syntax detected, "
"please give the member a name.\n",
yylineno, expr->Identifier ? expr->Identifier : "type");
if(!expr->Identifier)
expr->Identifier = "unnamed";
expr->Identifier = strdup(expr->Identifier);
assert(expr->Identifier);
/* Make a lowercase identifier from the type name */
for(p = expr->Identifier; *p; p++) {
switch(*p) {
case 'A' ... 'Z': *p += 32; break;
case ' ': *p = '_'; break;
case '-': *p = '_'; break;
}
}
fprintf(stderr, "NOTE: Assigning temporary identifier \"%s\". "
"Name clash may occur later.\n",
expr->Identifier);
}
int
yyerror(const char *msg) {
extern char *asn1p_text;
fprintf(stderr,
"ASN.1 grammar parse error "
"near line %d (token \"%s\"): %s\n",
yylineno, asn1p_text, msg);
return -1;
}