mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 19:26:33 +00:00
- Apply Wine commit "widl: Print large enum constants in hex." by Alexandre Julliard (756d33ddae316c71b1241e7c8684c07cd82b9e05) - Remove some minor differences to Wine svn path=/trunk/; revision=58039
7430 lines
247 KiB
C
7430 lines
247 KiB
C
/* A Bison parser, made by GNU Bison 2.5. */
|
|
|
|
/* Bison implementation for Yacc-like parsers in C
|
|
|
|
Copyright (C) 1984, 1989-1990, 2000-2011 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.5"
|
|
|
|
/* Skeleton name. */
|
|
#define YYSKELETON_NAME "yacc.c"
|
|
|
|
/* Pure parsers. */
|
|
#define YYPURE 0
|
|
|
|
/* Push parsers. */
|
|
#define YYPUSH 0
|
|
|
|
/* Pull parsers. */
|
|
#define YYPULL 1
|
|
|
|
/* Using locations. */
|
|
#define YYLSP_NEEDED 0
|
|
|
|
/* Substitute the variable and function names. */
|
|
#define yyparse parser_parse
|
|
#define yylex parser_lex
|
|
#define yyerror parser_error
|
|
#define yylval parser_lval
|
|
#define yychar parser_char
|
|
#define yydebug parser_debug
|
|
#define yynerrs parser_nerrs
|
|
|
|
|
|
/* Copy the first part of user declarations. */
|
|
|
|
/* Line 268 of yacc.c */
|
|
#line 1 "parser.y"
|
|
|
|
/*
|
|
* IDL Compiler
|
|
*
|
|
* Copyright 2002 Ove Kaaven
|
|
* Copyright 2006-2008 Robert Shearman
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
#include <assert.h>
|
|
#include <ctype.h>
|
|
#include <string.h>
|
|
|
|
#include "widl.h"
|
|
#include "utils.h"
|
|
#include "parser.h"
|
|
#include "header.h"
|
|
#include "typelib.h"
|
|
#include "typegen.h"
|
|
#include "expr.h"
|
|
#include "typetree.h"
|
|
|
|
#if defined(YYBYACC)
|
|
/* Berkeley yacc (byacc) doesn't seem to know about these */
|
|
/* Some *BSD supplied versions do define these though */
|
|
# ifndef YYEMPTY
|
|
# define YYEMPTY (-1) /* Empty lookahead value of yychar */
|
|
# endif
|
|
# ifndef YYLEX
|
|
# define YYLEX yylex()
|
|
# endif
|
|
|
|
#elif defined(YYBISON)
|
|
/* Bison was used for original development */
|
|
/* #define YYEMPTY -2 */
|
|
/* #define YYLEX yylex() */
|
|
|
|
#else
|
|
/* No yacc we know yet */
|
|
# if !defined(YYEMPTY) || !defined(YYLEX)
|
|
# error Yacc version/type unknown. This version needs to be verified for settings of YYEMPTY and YYLEX.
|
|
# elif defined(__GNUC__) /* gcc defines the #warning directive */
|
|
# warning Yacc version/type unknown. It defines YYEMPTY and YYLEX, but is not tested
|
|
/* #else we just take a chance that it works... */
|
|
# endif
|
|
#endif
|
|
|
|
#define YYERROR_VERBOSE
|
|
|
|
static unsigned char pointer_default = RPC_FC_UP;
|
|
|
|
typedef struct list typelist_t;
|
|
struct typenode {
|
|
type_t *type;
|
|
struct list entry;
|
|
};
|
|
|
|
struct _import_t
|
|
{
|
|
char *name;
|
|
int import_performed;
|
|
};
|
|
|
|
typedef struct _decl_spec_t
|
|
{
|
|
type_t *type;
|
|
attr_list_t *attrs;
|
|
enum storage_class stgclass;
|
|
} decl_spec_t;
|
|
|
|
typelist_t incomplete_types = LIST_INIT(incomplete_types);
|
|
|
|
static void fix_incomplete(void);
|
|
static void fix_incomplete_types(type_t *complete_type);
|
|
|
|
static str_list_t *append_str(str_list_t *list, char *str);
|
|
static attr_list_t *append_attr(attr_list_t *list, attr_t *attr);
|
|
static attr_list_t *append_attr_list(attr_list_t *new_list, attr_list_t *old_list);
|
|
static decl_spec_t *make_decl_spec(type_t *type, decl_spec_t *left, decl_spec_t *right, attr_t *attr, enum storage_class stgclass);
|
|
static attr_t *make_attr(enum attr_type type);
|
|
static attr_t *make_attrv(enum attr_type type, unsigned int val);
|
|
static attr_t *make_attrp(enum attr_type type, void *val);
|
|
static expr_list_t *append_expr(expr_list_t *list, expr_t *expr);
|
|
static array_dims_t *append_array(array_dims_t *list, expr_t *expr);
|
|
static var_t *declare_var(attr_list_t *attrs, decl_spec_t *decl_spec, const declarator_t *decl, int top);
|
|
static var_list_t *set_var_types(attr_list_t *attrs, decl_spec_t *decl_spec, declarator_list_t *decls);
|
|
static ifref_list_t *append_ifref(ifref_list_t *list, ifref_t *iface);
|
|
static ifref_t *make_ifref(type_t *iface);
|
|
static var_list_t *append_var_list(var_list_t *list, var_list_t *vars);
|
|
static declarator_list_t *append_declarator(declarator_list_t *list, declarator_t *p);
|
|
static declarator_t *make_declarator(var_t *var);
|
|
static type_t *make_safearray(type_t *type);
|
|
static typelib_t *make_library(const char *name, const attr_list_t *attrs);
|
|
static type_t *append_ptrchain_type(type_t *ptrchain, type_t *type);
|
|
|
|
static type_t *reg_typedefs(decl_spec_t *decl_spec, var_list_t *names, attr_list_t *attrs);
|
|
static type_t *find_type_or_error(const char *name, int t);
|
|
static type_t *find_type_or_error2(char *name, int t);
|
|
|
|
static var_t *reg_const(var_t *var);
|
|
|
|
static char *gen_name(void);
|
|
static void check_arg_attrs(const var_t *arg);
|
|
static void check_statements(const statement_list_t *stmts, int is_inside_library);
|
|
static void check_all_user_types(const statement_list_t *stmts);
|
|
static attr_list_t *check_iface_attrs(const char *name, attr_list_t *attrs);
|
|
static attr_list_t *check_function_attrs(const char *name, attr_list_t *attrs);
|
|
static attr_list_t *check_typedef_attrs(attr_list_t *attrs);
|
|
static attr_list_t *check_enum_attrs(attr_list_t *attrs);
|
|
static attr_list_t *check_struct_attrs(attr_list_t *attrs);
|
|
static attr_list_t *check_union_attrs(attr_list_t *attrs);
|
|
static attr_list_t *check_field_attrs(const char *name, attr_list_t *attrs);
|
|
static attr_list_t *check_library_attrs(const char *name, attr_list_t *attrs);
|
|
static attr_list_t *check_dispiface_attrs(const char *name, attr_list_t *attrs);
|
|
static attr_list_t *check_module_attrs(const char *name, attr_list_t *attrs);
|
|
static attr_list_t *check_coclass_attrs(const char *name, attr_list_t *attrs);
|
|
const char *get_attr_display_name(enum attr_type type);
|
|
static void add_explicit_handle_if_necessary(const type_t *iface, var_t *func);
|
|
static void check_def(const type_t *t);
|
|
|
|
static statement_t *make_statement(enum statement_type type);
|
|
static statement_t *make_statement_type_decl(type_t *type);
|
|
static statement_t *make_statement_reference(type_t *type);
|
|
static statement_t *make_statement_declaration(var_t *var);
|
|
static statement_t *make_statement_library(typelib_t *typelib);
|
|
static statement_t *make_statement_cppquote(const char *str);
|
|
static statement_t *make_statement_importlib(const char *str);
|
|
static statement_t *make_statement_module(type_t *type);
|
|
static statement_t *make_statement_typedef(var_list_t *names);
|
|
static statement_t *make_statement_import(const char *str);
|
|
static statement_t *make_statement_typedef(var_list_t *names);
|
|
static statement_list_t *append_statement(statement_list_t *list, statement_t *stmt);
|
|
|
|
|
|
|
|
/* Line 268 of yacc.c */
|
|
#line 233 "parser.tab.c"
|
|
|
|
/* Enabling traces. */
|
|
#ifndef YYDEBUG
|
|
# define YYDEBUG 0
|
|
#endif
|
|
|
|
/* Enabling verbose error messages. */
|
|
#ifdef YYERROR_VERBOSE
|
|
# undef YYERROR_VERBOSE
|
|
# define YYERROR_VERBOSE 1
|
|
#else
|
|
# define YYERROR_VERBOSE 0
|
|
#endif
|
|
|
|
/* Enabling the token table. */
|
|
#ifndef YYTOKEN_TABLE
|
|
# define YYTOKEN_TABLE 0
|
|
#endif
|
|
|
|
|
|
/* Tokens. */
|
|
#ifndef YYTOKENTYPE
|
|
# define YYTOKENTYPE
|
|
/* Put the tokens into the symbol table, so that GDB and other debuggers
|
|
know about them. */
|
|
enum yytokentype {
|
|
aIDENTIFIER = 258,
|
|
aKNOWNTYPE = 259,
|
|
aNUM = 260,
|
|
aHEXNUM = 261,
|
|
aDOUBLE = 262,
|
|
aSTRING = 263,
|
|
aWSTRING = 264,
|
|
aSQSTRING = 265,
|
|
aUUID = 266,
|
|
aEOF = 267,
|
|
SHL = 268,
|
|
SHR = 269,
|
|
MEMBERPTR = 270,
|
|
EQUALITY = 271,
|
|
INEQUALITY = 272,
|
|
GREATEREQUAL = 273,
|
|
LESSEQUAL = 274,
|
|
LOGICALOR = 275,
|
|
LOGICALAND = 276,
|
|
ELLIPSIS = 277,
|
|
tAGGREGATABLE = 278,
|
|
tALLOCATE = 279,
|
|
tANNOTATION = 280,
|
|
tAPPOBJECT = 281,
|
|
tASYNC = 282,
|
|
tASYNCUUID = 283,
|
|
tAUTOHANDLE = 284,
|
|
tBINDABLE = 285,
|
|
tBOOLEAN = 286,
|
|
tBROADCAST = 287,
|
|
tBYTE = 288,
|
|
tBYTECOUNT = 289,
|
|
tCALLAS = 290,
|
|
tCALLBACK = 291,
|
|
tCASE = 292,
|
|
tCDECL = 293,
|
|
tCHAR = 294,
|
|
tCOCLASS = 295,
|
|
tCODE = 296,
|
|
tCOMMSTATUS = 297,
|
|
tCONST = 298,
|
|
tCONTEXTHANDLE = 299,
|
|
tCONTEXTHANDLENOSERIALIZE = 300,
|
|
tCONTEXTHANDLESERIALIZE = 301,
|
|
tCONTROL = 302,
|
|
tCPPQUOTE = 303,
|
|
tDECODE = 304,
|
|
tDEFAULT = 305,
|
|
tDEFAULTBIND = 306,
|
|
tDEFAULTCOLLELEM = 307,
|
|
tDEFAULTVALUE = 308,
|
|
tDEFAULTVTABLE = 309,
|
|
tDISABLECONSISTENCYCHECK = 310,
|
|
tDISPLAYBIND = 311,
|
|
tDISPINTERFACE = 312,
|
|
tDLLNAME = 313,
|
|
tDOUBLE = 314,
|
|
tDUAL = 315,
|
|
tENABLEALLOCATE = 316,
|
|
tENCODE = 317,
|
|
tENDPOINT = 318,
|
|
tENTRY = 319,
|
|
tENUM = 320,
|
|
tERRORSTATUST = 321,
|
|
tEXPLICITHANDLE = 322,
|
|
tEXTERN = 323,
|
|
tFALSE = 324,
|
|
tFASTCALL = 325,
|
|
tFAULTSTATUS = 326,
|
|
tFLOAT = 327,
|
|
tFORCEALLOCATE = 328,
|
|
tHANDLE = 329,
|
|
tHANDLET = 330,
|
|
tHELPCONTEXT = 331,
|
|
tHELPFILE = 332,
|
|
tHELPSTRING = 333,
|
|
tHELPSTRINGCONTEXT = 334,
|
|
tHELPSTRINGDLL = 335,
|
|
tHIDDEN = 336,
|
|
tHYPER = 337,
|
|
tID = 338,
|
|
tIDEMPOTENT = 339,
|
|
tIGNORE = 340,
|
|
tIIDIS = 341,
|
|
tIMMEDIATEBIND = 342,
|
|
tIMPLICITHANDLE = 343,
|
|
tIMPORT = 344,
|
|
tIMPORTLIB = 345,
|
|
tIN = 346,
|
|
tIN_LINE = 347,
|
|
tINLINE = 348,
|
|
tINPUTSYNC = 349,
|
|
tINT = 350,
|
|
tINT3264 = 351,
|
|
tINT64 = 352,
|
|
tINTERFACE = 353,
|
|
tLCID = 354,
|
|
tLENGTHIS = 355,
|
|
tLIBRARY = 356,
|
|
tLICENSED = 357,
|
|
tLOCAL = 358,
|
|
tLONG = 359,
|
|
tMAYBE = 360,
|
|
tMESSAGE = 361,
|
|
tMETHODS = 362,
|
|
tMODULE = 363,
|
|
tNOCODE = 364,
|
|
tNONBROWSABLE = 365,
|
|
tNONCREATABLE = 366,
|
|
tNONEXTENSIBLE = 367,
|
|
tNOTIFY = 368,
|
|
tNOTIFYFLAG = 369,
|
|
tNULL = 370,
|
|
tOBJECT = 371,
|
|
tODL = 372,
|
|
tOLEAUTOMATION = 373,
|
|
tOPTIMIZE = 374,
|
|
tOPTIONAL = 375,
|
|
tOUT = 376,
|
|
tPARTIALIGNORE = 377,
|
|
tPASCAL = 378,
|
|
tPOINTERDEFAULT = 379,
|
|
tPROGID = 380,
|
|
tPROPERTIES = 381,
|
|
tPROPGET = 382,
|
|
tPROPPUT = 383,
|
|
tPROPPUTREF = 384,
|
|
tPROXY = 385,
|
|
tPTR = 386,
|
|
tPUBLIC = 387,
|
|
tRANGE = 388,
|
|
tREADONLY = 389,
|
|
tREF = 390,
|
|
tREGISTER = 391,
|
|
tREPRESENTAS = 392,
|
|
tREQUESTEDIT = 393,
|
|
tRESTRICTED = 394,
|
|
tRETVAL = 395,
|
|
tSAFEARRAY = 396,
|
|
tSHORT = 397,
|
|
tSIGNED = 398,
|
|
tSIZEIS = 399,
|
|
tSIZEOF = 400,
|
|
tSMALL = 401,
|
|
tSOURCE = 402,
|
|
tSTATIC = 403,
|
|
tSTDCALL = 404,
|
|
tSTRICTCONTEXTHANDLE = 405,
|
|
tSTRING = 406,
|
|
tSTRUCT = 407,
|
|
tSWITCH = 408,
|
|
tSWITCHIS = 409,
|
|
tSWITCHTYPE = 410,
|
|
tTHREADING = 411,
|
|
tTRANSMITAS = 412,
|
|
tTRUE = 413,
|
|
tTYPEDEF = 414,
|
|
tUIDEFAULT = 415,
|
|
tUNION = 416,
|
|
tUNIQUE = 417,
|
|
tUNSIGNED = 418,
|
|
tUSESGETLASTERROR = 419,
|
|
tUSERMARSHAL = 420,
|
|
tUUID = 421,
|
|
tV1ENUM = 422,
|
|
tVARARG = 423,
|
|
tVERSION = 424,
|
|
tVIPROGID = 425,
|
|
tVOID = 426,
|
|
tWCHAR = 427,
|
|
tWIREMARSHAL = 428,
|
|
tAPARTMENT = 429,
|
|
tNEUTRAL = 430,
|
|
tSINGLE = 431,
|
|
tFREE = 432,
|
|
tBOTH = 433,
|
|
ADDRESSOF = 434,
|
|
NEG = 435,
|
|
POS = 436,
|
|
PPTR = 437,
|
|
CAST = 438
|
|
};
|
|
#endif
|
|
|
|
|
|
|
|
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
|
typedef union YYSTYPE
|
|
{
|
|
|
|
/* Line 293 of yacc.c */
|
|
#line 153 "parser.y"
|
|
|
|
attr_t *attr;
|
|
attr_list_t *attr_list;
|
|
str_list_t *str_list;
|
|
expr_t *expr;
|
|
expr_list_t *expr_list;
|
|
array_dims_t *array_dims;
|
|
type_t *type;
|
|
var_t *var;
|
|
var_list_t *var_list;
|
|
declarator_t *declarator;
|
|
declarator_list_t *declarator_list;
|
|
statement_t *statement;
|
|
statement_list_t *stmt_list;
|
|
ifref_t *ifref;
|
|
ifref_list_t *ifref_list;
|
|
char *str;
|
|
UUID *uuid;
|
|
unsigned int num;
|
|
double dbl;
|
|
interface_info_t ifinfo;
|
|
typelib_t *typelib;
|
|
struct _import_t *import;
|
|
struct _decl_spec_t *declspec;
|
|
enum storage_class stgclass;
|
|
|
|
|
|
|
|
/* Line 293 of yacc.c */
|
|
#line 481 "parser.tab.c"
|
|
} YYSTYPE;
|
|
# define YYSTYPE_IS_TRIVIAL 1
|
|
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
|
# define YYSTYPE_IS_DECLARED 1
|
|
#endif
|
|
|
|
|
|
/* Copy the second part of user declarations. */
|
|
|
|
|
|
/* Line 343 of yacc.c */
|
|
#line 493 "parser.tab.c"
|
|
|
|
#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
|
|
|
|
/* 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 */
|
|
# 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 FROM to TO. The source and destination do
|
|
not overlap. */
|
|
# ifndef YYCOPY
|
|
# if defined __GNUC__ && 1 < __GNUC__
|
|
# define YYCOPY(To, From, Count) \
|
|
__builtin_memcpy (To, From, (Count) * sizeof (*(From)))
|
|
# else
|
|
# define YYCOPY(To, From, Count) \
|
|
do \
|
|
{ \
|
|
YYSIZE_T yyi; \
|
|
for (yyi = 0; yyi < (Count); yyi++) \
|
|
(To)[yyi] = (From)[yyi]; \
|
|
} \
|
|
while (YYID (0))
|
|
# endif
|
|
# endif
|
|
#endif /* !YYCOPY_NEEDED */
|
|
|
|
/* YYFINAL -- State number of the termination state. */
|
|
#define YYFINAL 3
|
|
/* YYLAST -- Last index in YYTABLE. */
|
|
#define YYLAST 2733
|
|
|
|
/* YYNTOKENS -- Number of terminals. */
|
|
#define YYNTOKENS 208
|
|
/* YYNNTS -- Number of nonterminals. */
|
|
#define YYNNTS 100
|
|
/* YYNRULES -- Number of rules. */
|
|
#define YYNRULES 381
|
|
/* YYNRULES -- Number of states. */
|
|
#define YYNSTATES 662
|
|
|
|
/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
|
|
#define YYUNDEFTOK 2
|
|
#define YYMAXUTOK 438
|
|
|
|
#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, 192, 2, 2, 2, 191, 184, 2,
|
|
203, 204, 189, 188, 179, 187, 199, 190, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 181, 202,
|
|
185, 207, 186, 180, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 200, 2, 201, 183, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 205, 182, 206, 193, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 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, 104,
|
|
105, 106, 107, 108, 109, 110, 111, 112, 113, 114,
|
|
115, 116, 117, 118, 119, 120, 121, 122, 123, 124,
|
|
125, 126, 127, 128, 129, 130, 131, 132, 133, 134,
|
|
135, 136, 137, 138, 139, 140, 141, 142, 143, 144,
|
|
145, 146, 147, 148, 149, 150, 151, 152, 153, 154,
|
|
155, 156, 157, 158, 159, 160, 161, 162, 163, 164,
|
|
165, 166, 167, 168, 169, 170, 171, 172, 173, 174,
|
|
175, 176, 177, 178, 194, 195, 196, 197, 198
|
|
};
|
|
|
|
#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, 6, 9, 12, 16, 19, 22,
|
|
25, 28, 29, 32, 35, 39, 42, 45, 48, 51,
|
|
54, 55, 58, 59, 61, 63, 66, 69, 71, 74,
|
|
76, 79, 81, 84, 86, 89, 92, 95, 98, 103,
|
|
107, 111, 117, 120, 124, 129, 130, 132, 134, 138,
|
|
140, 144, 148, 151, 155, 159, 162, 163, 165, 169,
|
|
171, 175, 180, 182, 186, 187, 189, 194, 196, 198,
|
|
200, 202, 204, 209, 214, 216, 218, 220, 222, 224,
|
|
226, 228, 230, 232, 234, 239, 241, 243, 245, 250,
|
|
252, 254, 256, 261, 266, 268, 270, 272, 274, 279,
|
|
284, 289, 294, 299, 301, 306, 308, 310, 315, 317,
|
|
322, 324, 326, 331, 336, 338, 340, 342, 344, 346,
|
|
348, 350, 352, 354, 356, 358, 360, 362, 364, 369,
|
|
371, 373, 375, 380, 385, 387, 389, 391, 393, 395,
|
|
402, 404, 409, 411, 413, 415, 420, 422, 424, 426,
|
|
431, 436, 441, 446, 448, 450, 455, 460, 462, 464,
|
|
469, 474, 479, 481, 483, 485, 487, 489, 491, 493,
|
|
494, 497, 502, 506, 507, 510, 512, 514, 518, 522,
|
|
524, 530, 532, 536, 537, 539, 541, 543, 545, 547,
|
|
549, 551, 553, 555, 557, 559, 565, 569, 573, 577,
|
|
581, 585, 589, 593, 597, 601, 605, 609, 613, 617,
|
|
621, 625, 629, 633, 637, 640, 643, 646, 649, 652,
|
|
655, 659, 663, 669, 675, 680, 684, 686, 690, 692,
|
|
694, 695, 698, 703, 707, 710, 713, 714, 717, 720,
|
|
722, 726, 729, 731, 735, 738, 739, 741, 742, 744,
|
|
746, 748, 750, 752, 754, 756, 759, 762, 764, 766,
|
|
768, 770, 772, 774, 775, 777, 779, 782, 784, 787,
|
|
790, 792, 794, 796, 799, 802, 805, 811, 812, 815,
|
|
818, 821, 824, 827, 830, 834, 837, 841, 847, 853,
|
|
854, 857, 860, 863, 866, 873, 882, 885, 888, 891,
|
|
894, 897, 900, 906, 908, 910, 912, 914, 916, 917,
|
|
920, 923, 927, 928, 930, 933, 936, 939, 943, 946,
|
|
948, 950, 954, 957, 962, 966, 969, 971, 975, 978,
|
|
979, 981, 985, 988, 990, 994, 999, 1003, 1006, 1008,
|
|
1012, 1015, 1016, 1018, 1020, 1024, 1027, 1029, 1033, 1038,
|
|
1040, 1044, 1045, 1048, 1051, 1053, 1057, 1059, 1063, 1065,
|
|
1067, 1069, 1071, 1073, 1075, 1077, 1079, 1085, 1087, 1089,
|
|
1091, 1093, 1096, 1098, 1101, 1103, 1106, 1111, 1116, 1122,
|
|
1133, 1135
|
|
};
|
|
|
|
/* YYRHS -- A `-1'-separated list of the rules' RHS. */
|
|
static const yytype_int16 yyrhs[] =
|
|
{
|
|
209, 0, -1, 210, -1, -1, 210, 275, -1, 210,
|
|
274, -1, 210, 261, 202, -1, 210, 263, -1, 210,
|
|
278, -1, 210, 222, -1, 210, 214, -1, -1, 211,
|
|
275, -1, 211, 274, -1, 211, 261, 202, -1, 211,
|
|
263, -1, 211, 278, -1, 211, 214, -1, 211, 219,
|
|
-1, 211, 222, -1, -1, 212, 214, -1, -1, 202,
|
|
-1, 216, -1, 215, 202, -1, 254, 202, -1, 218,
|
|
-1, 305, 202, -1, 240, -1, 65, 3, -1, 303,
|
|
-1, 152, 3, -1, 306, -1, 161, 3, -1, 229,
|
|
240, -1, 229, 303, -1, 229, 306, -1, 48, 203,
|
|
8, 204, -1, 89, 8, 202, -1, 217, 211, 12,
|
|
-1, 90, 203, 8, 204, 213, -1, 101, 3, -1,
|
|
229, 220, 205, -1, 221, 211, 206, 213, -1, -1,
|
|
225, -1, 226, -1, 224, 179, 226, -1, 224, -1,
|
|
224, 179, 22, -1, 229, 283, 294, -1, 283, 294,
|
|
-1, 200, 243, 201, -1, 200, 189, 201, -1, 200,
|
|
201, -1, -1, 229, -1, 200, 230, 201, -1, 232,
|
|
-1, 230, 179, 232, -1, 230, 201, 200, 232, -1,
|
|
8, -1, 231, 179, 8, -1, -1, 23, -1, 25,
|
|
203, 8, 204, -1, 26, -1, 27, -1, 29, -1,
|
|
30, -1, 32, -1, 35, 203, 257, 204, -1, 37,
|
|
203, 244, 204, -1, 41, -1, 42, -1, 44, -1,
|
|
45, -1, 46, -1, 47, -1, 49, -1, 50, -1,
|
|
51, -1, 52, -1, 53, 203, 246, 204, -1, 54,
|
|
-1, 55, -1, 56, -1, 58, 203, 8, 204, -1,
|
|
60, -1, 61, -1, 62, -1, 63, 203, 231, 204,
|
|
-1, 64, 203, 246, 204, -1, 67, -1, 71, -1,
|
|
73, -1, 74, -1, 76, 203, 245, 204, -1, 77,
|
|
203, 8, 204, -1, 78, 203, 8, 204, -1, 79,
|
|
203, 245, 204, -1, 80, 203, 8, 204, -1, 81,
|
|
-1, 83, 203, 245, 204, -1, 84, -1, 85, -1,
|
|
86, 203, 243, 204, -1, 87, -1, 88, 203, 226,
|
|
204, -1, 91, -1, 94, -1, 100, 203, 241, 204,
|
|
-1, 99, 203, 245, 204, -1, 99, -1, 102, -1,
|
|
103, -1, 105, -1, 106, -1, 109, -1, 110, -1,
|
|
111, -1, 112, -1, 113, -1, 114, -1, 116, -1,
|
|
117, -1, 118, -1, 119, 203, 8, 204, -1, 120,
|
|
-1, 121, -1, 122, -1, 124, 203, 302, 204, -1,
|
|
125, 203, 8, 204, -1, 127, -1, 128, -1, 129,
|
|
-1, 130, -1, 132, -1, 133, 203, 245, 179, 245,
|
|
204, -1, 134, -1, 137, 203, 304, 204, -1, 138,
|
|
-1, 139, -1, 140, -1, 144, 203, 241, 204, -1,
|
|
147, -1, 150, -1, 151, -1, 154, 203, 243, 204,
|
|
-1, 155, 203, 304, 204, -1, 157, 203, 304, 204,
|
|
-1, 156, 203, 301, 204, -1, 160, -1, 164, -1,
|
|
165, 203, 304, 204, -1, 166, 203, 233, 204, -1,
|
|
167, -1, 168, -1, 169, 203, 307, 204, -1, 170,
|
|
203, 8, 204, -1, 173, 203, 304, 204, -1, 302,
|
|
-1, 11, -1, 8, -1, 38, -1, 70, -1, 123,
|
|
-1, 149, -1, -1, 235, 236, -1, 37, 245, 181,
|
|
251, -1, 50, 181, 251, -1, -1, 238, 179, -1,
|
|
238, -1, 239, -1, 238, 179, 239, -1, 257, 207,
|
|
245, -1, 257, -1, 65, 256, 205, 237, 206, -1,
|
|
242, -1, 241, 179, 242, -1, -1, 243, -1, 5,
|
|
-1, 6, -1, 7, -1, 69, -1, 115, -1, 158,
|
|
-1, 8, -1, 9, -1, 10, -1, 3, -1, 243,
|
|
180, 243, 181, 243, -1, 243, 20, 243, -1, 243,
|
|
21, 243, -1, 243, 182, 243, -1, 243, 183, 243,
|
|
-1, 243, 184, 243, -1, 243, 16, 243, -1, 243,
|
|
17, 243, -1, 243, 186, 243, -1, 243, 185, 243,
|
|
-1, 243, 18, 243, -1, 243, 19, 243, -1, 243,
|
|
13, 243, -1, 243, 14, 243, -1, 243, 188, 243,
|
|
-1, 243, 187, 243, -1, 243, 191, 243, -1, 243,
|
|
189, 243, -1, 243, 190, 243, -1, 192, 243, -1,
|
|
193, 243, -1, 188, 243, -1, 187, 243, -1, 184,
|
|
243, -1, 189, 243, -1, 243, 15, 3, -1, 243,
|
|
199, 3, -1, 203, 283, 290, 204, 243, -1, 145,
|
|
203, 283, 290, 204, -1, 243, 200, 243, 201, -1,
|
|
203, 243, 204, -1, 245, -1, 244, 179, 245, -1,
|
|
243, -1, 243, -1, -1, 247, 248, -1, 228, 283,
|
|
299, 202, -1, 228, 306, 202, -1, 252, 202, -1,
|
|
229, 202, -1, -1, 250, 249, -1, 252, 202, -1,
|
|
202, -1, 228, 283, 286, -1, 228, 303, -1, 254,
|
|
-1, 229, 283, 300, -1, 283, 300, -1, -1, 257,
|
|
-1, -1, 3, -1, 4, -1, 3, -1, 4, -1,
|
|
33, -1, 172, -1, 260, -1, 143, 260, -1, 163,
|
|
260, -1, 163, -1, 72, -1, 59, -1, 31, -1,
|
|
66, -1, 75, -1, -1, 95, -1, 95, -1, 142,
|
|
259, -1, 146, -1, 104, 259, -1, 82, 259, -1,
|
|
97, -1, 39, -1, 96, -1, 40, 3, -1, 40,
|
|
4, -1, 229, 261, -1, 262, 205, 264, 206, 213,
|
|
-1, -1, 264, 265, -1, 228, 275, -1, 57, 3,
|
|
-1, 57, 4, -1, 229, 266, -1, 126, 181, -1,
|
|
268, 252, 202, -1, 107, 181, -1, 269, 253, 202,
|
|
-1, 267, 205, 268, 269, 206, -1, 267, 205, 272,
|
|
202, 206, -1, -1, 181, 4, -1, 98, 3, -1,
|
|
98, 4, -1, 229, 272, -1, 273, 271, 205, 212,
|
|
206, 213, -1, 273, 181, 3, 205, 218, 212, 206,
|
|
213, -1, 270, 213, -1, 272, 202, -1, 266, 202,
|
|
-1, 108, 3, -1, 108, 4, -1, 229, 276, -1,
|
|
277, 205, 212, 206, 213, -1, 68, -1, 148, -1,
|
|
136, -1, 93, -1, 43, -1, -1, 282, 281, -1,
|
|
304, 284, -1, 285, 304, 284, -1, -1, 285, -1,
|
|
281, 284, -1, 280, 284, -1, 279, 284, -1, 189,
|
|
282, 286, -1, 234, 286, -1, 287, -1, 257, -1,
|
|
203, 286, 204, -1, 287, 227, -1, 287, 203, 223,
|
|
204, -1, 189, 282, 290, -1, 234, 290, -1, 291,
|
|
-1, 189, 282, 294, -1, 234, 294, -1, -1, 288,
|
|
-1, 203, 289, 204, -1, 291, 227, -1, 227, -1,
|
|
203, 223, 204, -1, 291, 203, 223, 204, -1, 189,
|
|
282, 294, -1, 234, 294, -1, 295, -1, 189, 282,
|
|
294, -1, 234, 294, -1, -1, 292, -1, 257, -1,
|
|
203, 293, 204, -1, 295, 227, -1, 227, -1, 203,
|
|
223, 204, -1, 295, 203, 223, 204, -1, 286, -1,
|
|
296, 179, 286, -1, -1, 181, 246, -1, 292, 297,
|
|
-1, 298, -1, 299, 179, 298, -1, 286, -1, 286,
|
|
207, 246, -1, 174, -1, 175, -1, 176, -1, 177,
|
|
-1, 178, -1, 135, -1, 162, -1, 131, -1, 152,
|
|
256, 205, 247, 206, -1, 171, -1, 4, -1, 258,
|
|
-1, 240, -1, 65, 3, -1, 303, -1, 152, 3,
|
|
-1, 306, -1, 161, 3, -1, 141, 203, 304, 204,
|
|
-1, 159, 228, 283, 296, -1, 161, 256, 205, 250,
|
|
206, -1, 161, 256, 153, 203, 252, 204, 255, 205,
|
|
235, 206, -1, 5, -1, 5, 199, 5, -1
|
|
};
|
|
|
|
/* YYRLINE[YYN] -- source line where rule number YYN was defined. */
|
|
static const yytype_uint16 yyrline[] =
|
|
{
|
|
0, 328, 328, 342, 343, 344, 345, 348, 351, 352,
|
|
353, 356, 357, 358, 359, 360, 363, 364, 365, 366,
|
|
369, 370, 373, 374, 378, 379, 380, 381, 382, 386,
|
|
387, 388, 389, 390, 391, 392, 393, 394, 397, 399,
|
|
407, 413, 417, 419, 423, 430, 431, 434, 435, 438,
|
|
439, 443, 448, 455, 459, 460, 463, 464, 468, 471,
|
|
472, 473, 476, 477, 480, 481, 482, 483, 484, 485,
|
|
486, 487, 488, 489, 490, 491, 492, 493, 494, 495,
|
|
496, 497, 498, 499, 500, 501, 502, 503, 504, 505,
|
|
506, 507, 508, 509, 510, 511, 512, 513, 514, 515,
|
|
516, 517, 518, 519, 520, 521, 522, 523, 524, 525,
|
|
526, 527, 528, 529, 530, 531, 532, 533, 534, 535,
|
|
536, 537, 538, 539, 540, 541, 542, 543, 544, 545,
|
|
546, 547, 548, 549, 550, 551, 552, 553, 554, 555,
|
|
559, 560, 561, 562, 563, 564, 565, 566, 567, 568,
|
|
569, 570, 571, 572, 573, 574, 575, 576, 577, 578,
|
|
579, 580, 581, 585, 586, 591, 592, 593, 594, 597,
|
|
598, 601, 605, 611, 612, 613, 616, 620, 632, 636,
|
|
641, 644, 645, 648, 649, 652, 653, 654, 655, 656,
|
|
657, 658, 659, 660, 661, 662, 663, 664, 665, 666,
|
|
667, 668, 669, 670, 671, 672, 673, 674, 675, 676,
|
|
677, 678, 679, 680, 681, 682, 683, 684, 685, 686,
|
|
687, 688, 689, 691, 693, 694, 697, 698, 701, 707,
|
|
713, 714, 717, 722, 729, 730, 733, 734, 738, 739,
|
|
742, 746, 752, 760, 764, 769, 770, 773, 774, 775,
|
|
778, 780, 783, 784, 785, 786, 787, 788, 789, 790,
|
|
791, 792, 793, 796, 797, 800, 801, 802, 803, 804,
|
|
805, 806, 807, 810, 811, 819, 825, 829, 830, 834,
|
|
837, 838, 841, 850, 851, 854, 855, 858, 864, 870,
|
|
871, 874, 875, 878, 888, 895, 901, 905, 906, 909,
|
|
910, 913, 918, 925, 926, 927, 931, 935, 938, 939,
|
|
942, 943, 947, 948, 952, 953, 954, 958, 960, 962,
|
|
966, 967, 968, 969, 977, 979, 981, 986, 988, 993,
|
|
994, 999, 1000, 1001, 1002, 1007, 1016, 1018, 1019, 1024,
|
|
1026, 1030, 1031, 1038, 1039, 1040, 1041, 1042, 1047, 1055,
|
|
1056, 1059, 1060, 1063, 1070, 1071, 1076, 1077, 1081, 1082,
|
|
1083, 1084, 1085, 1089, 1090, 1091, 1094, 1097, 1098, 1099,
|
|
1100, 1101, 1102, 1103, 1104, 1105, 1106, 1109, 1115, 1117,
|
|
1123, 1124
|
|
};
|
|
#endif
|
|
|
|
#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
|
|
/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
|
|
First, the terminals, then, starting at YYNTOKENS, nonterminals. */
|
|
static const char *const yytname[] =
|
|
{
|
|
"$end", "error", "$undefined", "aIDENTIFIER", "aKNOWNTYPE", "aNUM",
|
|
"aHEXNUM", "aDOUBLE", "aSTRING", "aWSTRING", "aSQSTRING", "aUUID",
|
|
"aEOF", "SHL", "SHR", "MEMBERPTR", "EQUALITY", "INEQUALITY",
|
|
"GREATEREQUAL", "LESSEQUAL", "LOGICALOR", "LOGICALAND", "ELLIPSIS",
|
|
"tAGGREGATABLE", "tALLOCATE", "tANNOTATION", "tAPPOBJECT", "tASYNC",
|
|
"tASYNCUUID", "tAUTOHANDLE", "tBINDABLE", "tBOOLEAN", "tBROADCAST",
|
|
"tBYTE", "tBYTECOUNT", "tCALLAS", "tCALLBACK", "tCASE", "tCDECL",
|
|
"tCHAR", "tCOCLASS", "tCODE", "tCOMMSTATUS", "tCONST", "tCONTEXTHANDLE",
|
|
"tCONTEXTHANDLENOSERIALIZE", "tCONTEXTHANDLESERIALIZE", "tCONTROL",
|
|
"tCPPQUOTE", "tDECODE", "tDEFAULT", "tDEFAULTBIND", "tDEFAULTCOLLELEM",
|
|
"tDEFAULTVALUE", "tDEFAULTVTABLE", "tDISABLECONSISTENCYCHECK",
|
|
"tDISPLAYBIND", "tDISPINTERFACE", "tDLLNAME", "tDOUBLE", "tDUAL",
|
|
"tENABLEALLOCATE", "tENCODE", "tENDPOINT", "tENTRY", "tENUM",
|
|
"tERRORSTATUST", "tEXPLICITHANDLE", "tEXTERN", "tFALSE", "tFASTCALL",
|
|
"tFAULTSTATUS", "tFLOAT", "tFORCEALLOCATE", "tHANDLE", "tHANDLET",
|
|
"tHELPCONTEXT", "tHELPFILE", "tHELPSTRING", "tHELPSTRINGCONTEXT",
|
|
"tHELPSTRINGDLL", "tHIDDEN", "tHYPER", "tID", "tIDEMPOTENT", "tIGNORE",
|
|
"tIIDIS", "tIMMEDIATEBIND", "tIMPLICITHANDLE", "tIMPORT", "tIMPORTLIB",
|
|
"tIN", "tIN_LINE", "tINLINE", "tINPUTSYNC", "tINT", "tINT3264", "tINT64",
|
|
"tINTERFACE", "tLCID", "tLENGTHIS", "tLIBRARY", "tLICENSED", "tLOCAL",
|
|
"tLONG", "tMAYBE", "tMESSAGE", "tMETHODS", "tMODULE", "tNOCODE",
|
|
"tNONBROWSABLE", "tNONCREATABLE", "tNONEXTENSIBLE", "tNOTIFY",
|
|
"tNOTIFYFLAG", "tNULL", "tOBJECT", "tODL", "tOLEAUTOMATION", "tOPTIMIZE",
|
|
"tOPTIONAL", "tOUT", "tPARTIALIGNORE", "tPASCAL", "tPOINTERDEFAULT",
|
|
"tPROGID", "tPROPERTIES", "tPROPGET", "tPROPPUT", "tPROPPUTREF",
|
|
"tPROXY", "tPTR", "tPUBLIC", "tRANGE", "tREADONLY", "tREF", "tREGISTER",
|
|
"tREPRESENTAS", "tREQUESTEDIT", "tRESTRICTED", "tRETVAL", "tSAFEARRAY",
|
|
"tSHORT", "tSIGNED", "tSIZEIS", "tSIZEOF", "tSMALL", "tSOURCE",
|
|
"tSTATIC", "tSTDCALL", "tSTRICTCONTEXTHANDLE", "tSTRING", "tSTRUCT",
|
|
"tSWITCH", "tSWITCHIS", "tSWITCHTYPE", "tTHREADING", "tTRANSMITAS",
|
|
"tTRUE", "tTYPEDEF", "tUIDEFAULT", "tUNION", "tUNIQUE", "tUNSIGNED",
|
|
"tUSESGETLASTERROR", "tUSERMARSHAL", "tUUID", "tV1ENUM", "tVARARG",
|
|
"tVERSION", "tVIPROGID", "tVOID", "tWCHAR", "tWIREMARSHAL", "tAPARTMENT",
|
|
"tNEUTRAL", "tSINGLE", "tFREE", "tBOTH", "','", "'?'", "':'", "'|'",
|
|
"'^'", "'&'", "'<'", "'>'", "'-'", "'+'", "'*'", "'/'", "'%'", "'!'",
|
|
"'~'", "ADDRESSOF", "NEG", "POS", "PPTR", "CAST", "'.'", "'['", "']'",
|
|
"';'", "'('", "')'", "'{'", "'}'", "'='", "$accept", "input",
|
|
"gbl_statements", "imp_statements", "int_statements", "semicolon_opt",
|
|
"statement", "typedecl", "cppquote", "import_start", "import",
|
|
"importlib", "libraryhdr", "library_start", "librarydef", "m_args",
|
|
"arg_list", "args", "arg", "array", "m_attributes", "attributes",
|
|
"attrib_list", "str_list", "attribute", "uuid_string", "callconv",
|
|
"cases", "case", "enums", "enum_list", "enum", "enumdef", "m_exprs",
|
|
"m_expr", "expr", "expr_list_int_const", "expr_int_const", "expr_const",
|
|
"fields", "field", "ne_union_field", "ne_union_fields", "union_field",
|
|
"s_field", "funcdef", "declaration", "m_ident", "t_ident", "ident",
|
|
"base_type", "m_int", "int_std", "coclass", "coclasshdr", "coclassdef",
|
|
"coclass_ints", "coclass_int", "dispinterface", "dispinterfacehdr",
|
|
"dispint_props", "dispint_meths", "dispinterfacedef", "inherit",
|
|
"interface", "interfacehdr", "interfacedef", "interfacedec", "module",
|
|
"modulehdr", "moduledef", "storage_cls_spec", "function_specifier",
|
|
"type_qualifier", "m_type_qual_list", "decl_spec", "m_decl_spec_no_type",
|
|
"decl_spec_no_type", "declarator", "direct_declarator",
|
|
"abstract_declarator", "abstract_declarator_no_direct",
|
|
"m_abstract_declarator", "abstract_direct_declarator", "any_declarator",
|
|
"any_declarator_no_direct", "m_any_declarator", "any_direct_declarator",
|
|
"declarator_list", "m_bitfield", "struct_declarator",
|
|
"struct_declarator_list", "init_declarator", "threading_type",
|
|
"pointer_type", "structdef", "type", "typedef", "uniondef", "version", 0
|
|
};
|
|
#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, 359, 360, 361, 362, 363, 364,
|
|
365, 366, 367, 368, 369, 370, 371, 372, 373, 374,
|
|
375, 376, 377, 378, 379, 380, 381, 382, 383, 384,
|
|
385, 386, 387, 388, 389, 390, 391, 392, 393, 394,
|
|
395, 396, 397, 398, 399, 400, 401, 402, 403, 404,
|
|
405, 406, 407, 408, 409, 410, 411, 412, 413, 414,
|
|
415, 416, 417, 418, 419, 420, 421, 422, 423, 424,
|
|
425, 426, 427, 428, 429, 430, 431, 432, 433, 44,
|
|
63, 58, 124, 94, 38, 60, 62, 45, 43, 42,
|
|
47, 37, 33, 126, 434, 435, 436, 437, 438, 46,
|
|
91, 93, 59, 40, 41, 123, 125, 61
|
|
};
|
|
# endif
|
|
|
|
/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
|
|
static const yytype_uint16 yyr1[] =
|
|
{
|
|
0, 208, 209, 210, 210, 210, 210, 210, 210, 210,
|
|
210, 211, 211, 211, 211, 211, 211, 211, 211, 211,
|
|
212, 212, 213, 213, 214, 214, 214, 214, 214, 215,
|
|
215, 215, 215, 215, 215, 215, 215, 215, 216, 217,
|
|
218, 219, 220, 221, 222, 223, 223, 224, 224, 225,
|
|
225, 226, 226, 227, 227, 227, 228, 228, 229, 230,
|
|
230, 230, 231, 231, 232, 232, 232, 232, 232, 232,
|
|
232, 232, 232, 232, 232, 232, 232, 232, 232, 232,
|
|
232, 232, 232, 232, 232, 232, 232, 232, 232, 232,
|
|
232, 232, 232, 232, 232, 232, 232, 232, 232, 232,
|
|
232, 232, 232, 232, 232, 232, 232, 232, 232, 232,
|
|
232, 232, 232, 232, 232, 232, 232, 232, 232, 232,
|
|
232, 232, 232, 232, 232, 232, 232, 232, 232, 232,
|
|
232, 232, 232, 232, 232, 232, 232, 232, 232, 232,
|
|
232, 232, 232, 232, 232, 232, 232, 232, 232, 232,
|
|
232, 232, 232, 232, 232, 232, 232, 232, 232, 232,
|
|
232, 232, 232, 233, 233, 234, 234, 234, 234, 235,
|
|
235, 236, 236, 237, 237, 237, 238, 238, 239, 239,
|
|
240, 241, 241, 242, 242, 243, 243, 243, 243, 243,
|
|
243, 243, 243, 243, 243, 243, 243, 243, 243, 243,
|
|
243, 243, 243, 243, 243, 243, 243, 243, 243, 243,
|
|
243, 243, 243, 243, 243, 243, 243, 243, 243, 243,
|
|
243, 243, 243, 243, 243, 243, 244, 244, 245, 246,
|
|
247, 247, 248, 248, 249, 249, 250, 250, 251, 251,
|
|
252, 252, 253, 254, 254, 255, 255, 256, 256, 256,
|
|
257, 257, 258, 258, 258, 258, 258, 258, 258, 258,
|
|
258, 258, 258, 259, 259, 260, 260, 260, 260, 260,
|
|
260, 260, 260, 261, 261, 262, 263, 264, 264, 265,
|
|
266, 266, 267, 268, 268, 269, 269, 270, 270, 271,
|
|
271, 272, 272, 273, 274, 274, 274, 275, 275, 276,
|
|
276, 277, 278, 279, 279, 279, 280, 281, 282, 282,
|
|
283, 283, 284, 284, 285, 285, 285, 286, 286, 286,
|
|
287, 287, 287, 287, 288, 288, 288, 289, 289, 290,
|
|
290, 291, 291, 291, 291, 291, 292, 292, 292, 293,
|
|
293, 294, 294, 295, 295, 295, 295, 295, 295, 296,
|
|
296, 297, 297, 298, 299, 299, 300, 300, 301, 301,
|
|
301, 301, 301, 302, 302, 302, 303, 304, 304, 304,
|
|
304, 304, 304, 304, 304, 304, 304, 305, 306, 306,
|
|
307, 307
|
|
};
|
|
|
|
/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
|
|
static const yytype_uint8 yyr2[] =
|
|
{
|
|
0, 2, 1, 0, 2, 2, 3, 2, 2, 2,
|
|
2, 0, 2, 2, 3, 2, 2, 2, 2, 2,
|
|
0, 2, 0, 1, 1, 2, 2, 1, 2, 1,
|
|
2, 1, 2, 1, 2, 2, 2, 2, 4, 3,
|
|
3, 5, 2, 3, 4, 0, 1, 1, 3, 1,
|
|
3, 3, 2, 3, 3, 2, 0, 1, 3, 1,
|
|
3, 4, 1, 3, 0, 1, 4, 1, 1, 1,
|
|
1, 1, 4, 4, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 4, 1, 1, 1, 4, 1,
|
|
1, 1, 4, 4, 1, 1, 1, 1, 4, 4,
|
|
4, 4, 4, 1, 4, 1, 1, 4, 1, 4,
|
|
1, 1, 4, 4, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 4, 1,
|
|
1, 1, 4, 4, 1, 1, 1, 1, 1, 6,
|
|
1, 4, 1, 1, 1, 4, 1, 1, 1, 4,
|
|
4, 4, 4, 1, 1, 4, 4, 1, 1, 4,
|
|
4, 4, 1, 1, 1, 1, 1, 1, 1, 0,
|
|
2, 4, 3, 0, 2, 1, 1, 3, 3, 1,
|
|
5, 1, 3, 0, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 5, 3, 3, 3, 3,
|
|
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 3, 2, 2, 2, 2, 2, 2,
|
|
3, 3, 5, 5, 4, 3, 1, 3, 1, 1,
|
|
0, 2, 4, 3, 2, 2, 0, 2, 2, 1,
|
|
3, 2, 1, 3, 2, 0, 1, 0, 1, 1,
|
|
1, 1, 1, 1, 1, 2, 2, 1, 1, 1,
|
|
1, 1, 1, 0, 1, 1, 2, 1, 2, 2,
|
|
1, 1, 1, 2, 2, 2, 5, 0, 2, 2,
|
|
2, 2, 2, 2, 3, 2, 3, 5, 5, 0,
|
|
2, 2, 2, 2, 6, 8, 2, 2, 2, 2,
|
|
2, 2, 5, 1, 1, 1, 1, 1, 0, 2,
|
|
2, 3, 0, 1, 2, 2, 2, 3, 2, 1,
|
|
1, 3, 2, 4, 3, 2, 1, 3, 2, 0,
|
|
1, 3, 2, 1, 3, 4, 3, 2, 1, 3,
|
|
2, 0, 1, 1, 3, 2, 1, 3, 4, 1,
|
|
3, 0, 2, 2, 1, 3, 1, 3, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 5, 1, 1, 1,
|
|
1, 2, 1, 2, 1, 2, 4, 4, 5, 10,
|
|
1, 3
|
|
};
|
|
|
|
/* 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[] =
|
|
{
|
|
3, 0, 2, 1, 368, 260, 252, 271, 0, 307,
|
|
0, 0, 259, 247, 261, 303, 258, 262, 263, 0,
|
|
306, 265, 272, 270, 0, 263, 305, 0, 263, 0,
|
|
267, 304, 247, 56, 247, 257, 367, 253, 64, 10,
|
|
0, 24, 11, 27, 11, 9, 0, 370, 0, 369,
|
|
254, 0, 0, 7, 0, 0, 22, 0, 289, 5,
|
|
4, 0, 8, 312, 312, 312, 0, 0, 372, 312,
|
|
0, 374, 273, 274, 0, 280, 281, 371, 249, 0,
|
|
264, 269, 0, 291, 292, 268, 0, 266, 255, 373,
|
|
0, 0, 57, 375, 0, 256, 65, 0, 67, 68,
|
|
69, 70, 71, 0, 0, 74, 75, 76, 77, 78,
|
|
79, 80, 81, 82, 83, 0, 85, 86, 87, 0,
|
|
89, 90, 91, 0, 0, 94, 95, 96, 97, 0,
|
|
0, 0, 0, 0, 103, 0, 105, 106, 0, 108,
|
|
0, 110, 111, 114, 0, 115, 116, 117, 118, 119,
|
|
120, 121, 122, 123, 124, 125, 126, 127, 0, 129,
|
|
130, 131, 0, 0, 134, 135, 136, 137, 365, 138,
|
|
0, 140, 363, 0, 142, 143, 144, 0, 146, 147,
|
|
148, 0, 0, 0, 0, 153, 364, 154, 0, 0,
|
|
157, 158, 0, 0, 0, 0, 59, 162, 25, 0,
|
|
0, 247, 0, 0, 247, 247, 0, 370, 275, 282,
|
|
293, 301, 0, 372, 374, 26, 6, 277, 298, 0,
|
|
23, 296, 297, 0, 0, 20, 316, 313, 315, 314,
|
|
250, 251, 165, 166, 167, 168, 308, 0, 0, 320,
|
|
356, 319, 244, 370, 372, 312, 374, 310, 28, 0,
|
|
173, 39, 0, 230, 0, 0, 236, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 183, 0, 0, 0, 0, 0, 183,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 64,
|
|
58, 40, 0, 17, 18, 19, 0, 15, 13, 12,
|
|
16, 22, 371, 42, 299, 300, 373, 375, 43, 243,
|
|
56, 0, 56, 0, 0, 290, 20, 0, 0, 0,
|
|
318, 0, 0, 45, 322, 311, 38, 0, 175, 176,
|
|
179, 376, 56, 349, 377, 56, 56, 0, 0, 194,
|
|
185, 186, 187, 191, 192, 193, 188, 189, 0, 190,
|
|
0, 0, 0, 0, 0, 0, 0, 228, 0, 226,
|
|
229, 0, 0, 62, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 341, 0, 0, 181, 184,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 358, 359,
|
|
360, 361, 362, 0, 0, 0, 164, 163, 0, 380,
|
|
0, 0, 0, 60, 64, 0, 14, 44, 22, 0,
|
|
278, 283, 0, 0, 0, 0, 0, 0, 0, 22,
|
|
21, 0, 309, 317, 321, 357, 0, 55, 0, 0,
|
|
49, 46, 47, 180, 174, 0, 366, 0, 231, 0,
|
|
0, 378, 57, 237, 0, 66, 72, 0, 218, 217,
|
|
216, 219, 214, 215, 0, 329, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 73,
|
|
84, 88, 0, 92, 93, 98, 99, 100, 101, 102,
|
|
104, 107, 109, 341, 308, 45, 346, 341, 343, 342,
|
|
52, 338, 113, 183, 112, 128, 132, 133, 0, 141,
|
|
145, 149, 150, 152, 151, 155, 156, 0, 159, 160,
|
|
161, 61, 0, 276, 279, 285, 0, 372, 284, 287,
|
|
0, 0, 242, 288, 20, 22, 302, 54, 53, 323,
|
|
0, 177, 178, 0, 374, 350, 245, 235, 234, 329,
|
|
225, 308, 45, 333, 329, 330, 0, 326, 207, 208,
|
|
220, 201, 202, 205, 206, 196, 197, 0, 198, 199,
|
|
200, 204, 203, 210, 209, 212, 213, 211, 221, 0,
|
|
227, 63, 51, 341, 308, 0, 341, 0, 337, 45,
|
|
345, 182, 0, 381, 22, 240, 286, 0, 294, 50,
|
|
48, 351, 354, 0, 233, 0, 246, 0, 329, 308,
|
|
0, 341, 0, 325, 0, 45, 332, 0, 224, 336,
|
|
341, 347, 340, 344, 0, 139, 41, 22, 0, 353,
|
|
0, 232, 169, 223, 324, 341, 334, 328, 331, 222,
|
|
0, 195, 339, 348, 295, 352, 355, 0, 327, 335,
|
|
0, 0, 379, 170, 0, 56, 56, 239, 172, 0,
|
|
171, 238
|
|
};
|
|
|
|
/* YYDEFGOTO[NTERM-NUM]. */
|
|
static const yytype_int16 yydefgoto[] =
|
|
{
|
|
-1, 1, 2, 199, 317, 221, 420, 40, 41, 42,
|
|
43, 294, 206, 44, 295, 429, 430, 431, 432, 496,
|
|
413, 92, 195, 364, 196, 398, 497, 647, 653, 327,
|
|
328, 329, 243, 377, 378, 357, 358, 359, 361, 332,
|
|
438, 443, 336, 658, 659, 531, 48, 605, 79, 498,
|
|
49, 81, 50, 296, 52, 297, 310, 410, 54, 55,
|
|
312, 415, 56, 224, 57, 58, 298, 299, 211, 61,
|
|
300, 63, 64, 65, 318, 66, 226, 67, 240, 241,
|
|
555, 612, 556, 557, 499, 587, 500, 501, 334, 629,
|
|
602, 603, 242, 393, 197, 244, 69, 70, 246, 400
|
|
};
|
|
|
|
/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
|
|
STATE-NUM. */
|
|
#define YYPACT_NINF -519
|
|
static const yytype_int16 yypact[] =
|
|
{
|
|
-519, 56, 1328, -519, -519, -519, -519, -519, 160, -519,
|
|
-140, 164, -519, 168, -519, -519, -519, -519, 7, 105,
|
|
-519, -519, -519, -519, 174, 7, -519, -58, 7, 426,
|
|
-519, -519, 178, -78, 180, 426, -519, -519, 2560, -519,
|
|
-15, -519, -519, -519, -519, -519, 2244, -11, -7, -519,
|
|
-519, 13, -36, -519, 15, -20, 20, 22, 12, -519,
|
|
-519, -6, -519, -16, -16, -16, 493, 2410, 31, -16,
|
|
33, 41, -519, -519, 171, -519, -519, -72, -519, 4,
|
|
-519, -519, 45, -519, -519, -519, 2410, -519, -519, -71,
|
|
44, 2316, -519, -111, -121, -519, -519, 49, -519, -519,
|
|
-519, -519, -519, 55, 67, -519, -519, -519, -519, -519,
|
|
-519, -519, -519, -519, -519, 70, -519, -519, -519, 72,
|
|
-519, -519, -519, 74, 76, -519, -519, -519, -519, 78,
|
|
81, 84, 94, 97, -519, 103, -519, -519, 110, -519,
|
|
113, -519, -519, 128, 130, -519, -519, -519, -519, -519,
|
|
-519, -519, -519, -519, -519, -519, -519, -519, 132, -519,
|
|
-519, -519, 138, 141, -519, -519, -519, -519, -519, -519,
|
|
159, -519, -519, 161, -519, -519, -519, 162, -519, -519,
|
|
-519, 163, 166, 169, 170, -519, -519, -519, 176, 177,
|
|
-519, -519, 179, 191, 195, -74, -519, -519, -519, 1201,
|
|
514, 264, 364, 288, 305, 322, 194, 172, -519, -519,
|
|
-519, -519, 493, 199, 202, -519, -519, -519, -519, -29,
|
|
-519, -519, -519, 334, 200, -519, -519, -519, -519, -519,
|
|
-519, -519, -519, -519, -519, -519, -519, 493, 493, -519,
|
|
201, -133, -519, -519, -519, -16, -519, -519, -519, 206,
|
|
336, -519, 207, -519, 493, 203, -519, 404, 336, 436,
|
|
436, 409, 410, 436, 436, 412, 419, 436, 421, 436,
|
|
436, 1747, 436, 436, 423, -73, 424, 436, 2410, 436,
|
|
436, 2410, -37, 2410, 2410, 136, 429, 427, 2410, 2560,
|
|
236, -519, 235, -519, -519, -519, 246, -519, -519, -519,
|
|
-519, 20, 248, -519, -519, -519, 248, -109, -519, -519,
|
|
-135, 270, -81, 252, 250, -519, -519, 615, 387, 255,
|
|
-519, 436, 73, 1747, -519, -519, -519, 266, 277, -519,
|
|
259, -519, -134, -519, 297, -78, -132, 273, 274, -519,
|
|
-519, -519, -519, -519, -519, -519, -519, -519, 278, -519,
|
|
436, 436, 436, 436, 436, 436, 1058, 2055, -143, -519,
|
|
2055, 282, 285, -519, -129, 287, 290, 294, 295, 298,
|
|
300, 302, 1745, 307, 2316, 260, 308, -106, -519, 2055,
|
|
309, 311, 312, 330, 313, -89, 1817, 315, -519, -519,
|
|
-519, -519, -519, 316, 320, 321, -519, -519, 323, 289,
|
|
324, 325, 328, -519, 2560, 525, -519, -519, 20, -3,
|
|
-519, -519, 345, 2316, 299, 944, 329, 445, 729, 20,
|
|
-519, 2316, -519, -519, -519, -519, 101, -519, 1937, 333,
|
|
360, -519, -519, -519, 336, 436, -519, 2316, -519, 493,
|
|
337, -519, 338, -519, 340, -519, -519, 2316, 14, 14,
|
|
14, 14, 14, 14, 1842, 258, 436, 436, 540, 436,
|
|
436, 436, 436, 436, 436, 436, 436, 436, 436, 436,
|
|
436, 436, 436, 436, 436, 436, 545, 436, 436, -519,
|
|
-519, -519, 541, -519, -519, -519, -519, -519, -519, -519,
|
|
-519, -519, -519, 260, -519, 1455, -519, 260, -519, -519,
|
|
-519, -48, -519, 436, -519, -519, -519, -519, 436, -519,
|
|
-519, -519, -519, -519, -519, -519, -519, 547, -519, -519,
|
|
-519, -519, 351, -519, -519, -519, 493, -101, -519, -519,
|
|
2316, 356, -519, -519, -519, 20, -519, -519, -519, -519,
|
|
1653, -519, -519, 260, 357, -519, 336, -519, -519, 258,
|
|
-519, -519, 1581, -519, 258, -519, 361, -46, 280, 280,
|
|
-519, 751, 751, 197, 197, 2074, 981, 2034, 1996, 1977,
|
|
1037, 197, 197, 284, 284, 14, 14, 14, -519, 1959,
|
|
-519, -519, -519, 83, -519, 362, 260, 363, -519, 1747,
|
|
-519, -519, 365, -519, 20, -519, -519, 830, -519, -519,
|
|
-519, 379, -519, -86, -519, 359, -519, 370, 518, -519,
|
|
371, 260, 373, -519, 436, 1747, -519, 436, -519, -519,
|
|
83, -519, -519, -519, 374, -519, -519, 20, 436, -519,
|
|
260, -519, -519, -519, -519, 83, -519, -519, -519, 14,
|
|
380, 2055, -519, -519, -519, -519, -519, -17, -519, -519,
|
|
436, 402, -519, -519, 411, -40, -40, -519, -519, 383,
|
|
-519, -519
|
|
};
|
|
|
|
/* YYPGOTO[NTERM-NUM]. */
|
|
static const yytype_int16 yypgoto[] =
|
|
{
|
|
-519, -519, -519, 549, -300, -291, 28, -519, -519, -519,
|
|
182, -519, -519, -519, 589, -464, -519, -519, -258, -230,
|
|
-9, -2, -519, -519, -268, -519, -62, -519, -519, -519,
|
|
-519, 167, 5, 318, 102, -114, -519, -255, -257, -519,
|
|
-519, -519, -519, -50, -212, -519, 193, -519, 25, -64,
|
|
-519, 133, 100, 46, -519, 612, -519, -519, 569, -519,
|
|
-519, -519, -519, -519, -23, -519, 619, 6, -519, -519,
|
|
620, -519, -519, -303, -466, -45, -24, -26, -219, -519,
|
|
-519, -519, -494, -519, -518, -519, -183, -519, -519, -519,
|
|
-13, -519, 414, -519, 352, 1, -33, -519, 3, -519
|
|
};
|
|
|
|
/* 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 -249
|
|
static const yytype_int16 yytable[] =
|
|
{
|
|
46, 212, 239, 68, 238, 71, 365, 47, 60, 366,
|
|
407, 324, 369, 373, 371, 422, 418, 376, 319, 320,
|
|
650, 403, 383, 210, 91, 601, 412, 9, 583, 458,
|
|
39, 585, 255, 651, 245, 333, 478, 227, 227, 227,
|
|
228, 229, -248, 227, -248, 247, 254, 213, 51, 214,
|
|
482, 207, 15, 252, 11, 607, 3, 90, 168, 94,
|
|
613, 479, 172, 74, 425, 38, 38, 322, 38, 24,
|
|
323, 408, 436, 503, 441, 483, 339, 20, 340, 341,
|
|
342, 343, 344, 345, 256, 608, 230, 231, 610, 186,
|
|
503, -34, 208, 630, -248, 24, -248, 311, 504, 423,
|
|
414, -241, 80, -241, 339, 289, 340, 341, 342, 343,
|
|
344, 345, 601, 82, 634, 510, 631, 523, 620, 38,
|
|
26, 232, 38, 440, 444, 624, 9, 290, 536, 88,
|
|
-30, -32, 31, -248, -248, 95, 521, 388, 389, 390,
|
|
391, 392, 346, 635, 396, 86, 360, 397, 239, 360,
|
|
238, 640, 322, 233, 322, 589, 372, 615, 85, 379,
|
|
38, 87, 657, 72, 73, 379, 386, 75, 76, 217,
|
|
346, 77, 78, 239, 239, 238, 238, 83, 84, 249,
|
|
542, 89, 78, 93, 78, 219, 330, 198, 347, 652,
|
|
239, -29, 238, 223, 338, 215, 313, 46, 46, 225,
|
|
68, 68, 71, 71, 47, 47, 234, 360, 428, 250,
|
|
456, 457, 458, 476, 477, 216, 347, 218, 348, 227,
|
|
545, 325, 220, 580, 222, 553, 375, 293, 293, 90,
|
|
94, 349, 235, -31, 597, 248, 448, 449, 450, 451,
|
|
452, 453, 454, -33, 598, 384, 348, 251, 387, 253,
|
|
394, 395, 257, 592, 239, 402, 238, 350, 258, 349,
|
|
351, 352, 426, 230, 231, 354, 355, 302, 78, 374,
|
|
259, 590, 494, 260, 427, 261, 356, 262, 375, 263,
|
|
422, 264, 600, 322, 265, 350, 495, 266, 351, 352,
|
|
353, 304, 305, 354, 355, 458, 232, 267, 232, 458,
|
|
268, 409, 537, 626, 356, 422, 269, 595, 306, 78,
|
|
582, 455, 451, 270, 588, 421, 271, 422, 68, 553,
|
|
71, 374, 47, 437, 553, 307, 78, 616, 233, 493,
|
|
233, 272, 422, 273, 442, 274, 644, 314, 315, 230,
|
|
231, 275, 558, 559, 276, 561, 562, 563, 564, 565,
|
|
566, 567, 568, 569, 570, 571, 572, 573, 574, 575,
|
|
576, 577, 277, 579, 278, 279, 280, 303, 526, 281,
|
|
330, 645, 282, 283, -35, 239, 212, 238, 553, 284,
|
|
285, 234, 286, 234, 471, 472, 473, 474, 475, 379,
|
|
230, 231, 543, 554, 287, 654, 476, 477, 288, 308,
|
|
619, -36, 549, 622, -37, 316, 335, 235, 321, 235,
|
|
326, 331, 337, 530, 527, 524, 421, 362, 363, 68,
|
|
367, 71, 213, 47, 214, 232, 207, 368, 637, 370,
|
|
9, 380, 382, 586, 399, 401, 404, 642, 405, 339,
|
|
544, 340, 341, 342, 343, 344, 345, 551, 406, 494,
|
|
375, 411, 648, -248, 416, 417, 434, 233, 322, 424,
|
|
322, 552, 239, 495, 238, 7, 435, 471, 472, 473,
|
|
474, 475, 433, 473, 474, 475, 439, 445, 446, 476,
|
|
477, 447, 606, 476, 477, 212, 480, 554, 517, 481,
|
|
611, 484, 554, 374, 485, 375, 230, 231, 486, 487,
|
|
639, 528, 488, 641, 489, 346, 490, 375, 18, 508,
|
|
234, 492, 502, 505, 360, 506, 507, 509, 4, 512,
|
|
513, 21, 22, 23, 514, 515, 525, 516, 518, 519,
|
|
25, 232, 520, 522, 19, 533, 235, 539, 374, 540,
|
|
547, 546, 548, 560, 375, 5, 554, 6, 578, 581,
|
|
374, 347, 593, 7, 8, 594, 232, 9, 596, 604,
|
|
628, 9, 10, 233, 632, 614, 621, 623, 28, 625,
|
|
375, 11, 30, 12, 633, 636, 236, 638, 643, 13,
|
|
14, 348, 15, 655, 649, 661, 16, 374, 233, 17,
|
|
237, 45, 656, 200, 349, 421, 18, 385, 68, 534,
|
|
71, 541, 47, 19, 292, 591, 660, 20, 532, 21,
|
|
22, 23, 24, 374, 53, 209, 234, 646, 25, 4,
|
|
350, 59, 62, 351, 352, 353, 309, 381, 354, 355,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 356,
|
|
0, 234, 235, 0, 0, 0, 5, 0, 6, 0,
|
|
26, 0, 0, 0, 7, 27, 28, 29, 9, 0,
|
|
30, 0, 31, 10, 0, 0, 32, 235, 0, 0,
|
|
0, 0, 0, 33, 12, 34, 0, 35, 0, 0,
|
|
13, 14, 236, 15, 0, 36, 37, 16, 0, 0,
|
|
17, 0, 0, 0, 0, 0, 237, 18, 0, 0,
|
|
0, 0, 0, 0, 19, 0, 0, 551, 20, 0,
|
|
21, 22, 23, 0, 38, 0, 0, 0, 322, 25,
|
|
301, 552, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 4, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 26, 0, 0, 0, 0, 27, 28, 29, 0,
|
|
5, 30, 6, 31, 456, 457, 458, 32, 7, 461,
|
|
462, 0, 9, 0, 33, 0, 34, 10, 35, 0,
|
|
0, 0, 0, 0, 0, 0, 36, 37, 12, 0,
|
|
0, 0, 0, 0, 13, 14, 0, 15, 0, 0,
|
|
0, 16, 0, 0, 17, 0, 0, 0, 0, 0,
|
|
0, 18, 0, 0, 0, 38, 0, 0, 19, 0,
|
|
0, 419, 20, 0, 21, 22, 23, 0, 0, 0,
|
|
0, 0, 0, 25, 4, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 5, 0, 6, 0, 26, 0, 0, 0, 7,
|
|
27, 28, 29, 9, 0, 30, 0, 31, 10, 0,
|
|
0, 32, 0, 0, 0, 0, 0, 0, 33, 12,
|
|
34, 0, 35, 0, 0, 13, 14, 0, 15, 0,
|
|
36, 37, 16, 0, 0, 17, 0, 0, 0, 0,
|
|
0, 0, 18, 0, 0, 0, 0, 0, 0, 19,
|
|
0, 0, 0, 20, 0, 21, 22, 23, 0, 38,
|
|
0, 0, 0, 0, 25, 535, 469, 470, 471, 472,
|
|
473, 474, 475, 0, 0, 0, 0, 0, 4, 0,
|
|
476, 477, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 26, 0, 0, 0,
|
|
0, 27, 28, 29, 0, 5, 30, 6, 31, 0,
|
|
0, 0, 32, 7, 0, 0, 0, 9, 0, 33,
|
|
0, 34, 0, 35, 456, 457, 458, 459, 460, 461,
|
|
462, 36, 37, 12, 0, 0, 0, 0, 0, 201,
|
|
14, 0, 15, 0, 0, 0, 16, 0, 0, 17,
|
|
0, 0, 0, 0, 0, 0, 18, 0, 0, 0,
|
|
38, 0, 0, 0, 0, 0, 627, 20, 0, 21,
|
|
22, 23, 0, 0, 0, 0, 0, 0, 25, 0,
|
|
456, 457, 458, 459, 460, 461, 462, 0, 0, 0,
|
|
0, 339, 4, 340, 341, 342, 343, 344, 345, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
26, 0, 0, 0, 0, 27, 28, 29, 0, 5,
|
|
30, 6, 31, 0, 0, 0, 204, 7, 0, 0,
|
|
0, 9, 0, 0, 0, 205, 0, 35, 0, 0,
|
|
0, 0, 0, 0, 0, 36, 37, 12, 0, 0,
|
|
0, 0, 0, 201, 14, 0, 15, 346, 0, 0,
|
|
16, 0, 0, 17, 0, 0, 0, 0, 0, 0,
|
|
18, 0, 0, 0, 38, 0, 0, 0, 0, 0,
|
|
529, 20, 0, 21, 22, 23, 0, 0, 0, 0,
|
|
0, 0, 25, 466, 467, 468, 469, 470, 471, 472,
|
|
473, 474, 475, 347, 0, 0, 0, 0, 0, 0,
|
|
476, 477, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 26, 0, 0, 0, 0, 27,
|
|
28, 29, 0, 348, 30, 4, 31, 0, 0, 0,
|
|
204, 0, 0, 291, 0, 0, 349, 0, 0, 205,
|
|
0, 35, 469, 470, 471, 472, 473, 474, 475, 36,
|
|
37, 0, 5, 0, 6, 0, 476, 477, 0, 0,
|
|
7, 8, 350, 0, 9, 351, 352, 353, 0, 10,
|
|
354, 355, 0, 0, 0, 0, 0, 0, 11, 0,
|
|
12, 356, 0, 0, 0, 0, 13, 14, 0, 15,
|
|
0, 0, 0, 16, 0, 0, 17, 0, 0, 0,
|
|
0, 0, 0, 18, 0, 0, 0, 0, 0, 0,
|
|
19, 292, 0, 0, 20, 0, 21, 22, 23, 24,
|
|
0, 0, 0, 0, 0, 25, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 4, 0, 0, 0, 0, 26, 0, 0,
|
|
0, 0, 27, 28, 29, 0, 0, 30, 0, 31,
|
|
0, 0, 0, 32, 0, 0, 0, 0, 0, 5,
|
|
33, 6, 34, 0, 35, 0, 0, 7, 8, 0,
|
|
0, 9, 36, 37, 0, 0, 10, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 11, 0, 12, 0, 0,
|
|
0, 0, 0, 13, 14, 0, 15, 0, 0, 0,
|
|
16, 38, 0, 17, 0, 0, 0, 0, 0, 0,
|
|
18, 0, 0, 0, 0, 0, 0, 19, 0, 0,
|
|
0, 20, 0, 21, 22, 23, 24, 0, 0, 0,
|
|
0, 0, 25, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 4,
|
|
0, 0, 0, 0, 26, 0, 0, 0, 0, 27,
|
|
28, 29, 0, 0, 30, 0, 31, 0, 0, 0,
|
|
32, 0, 0, 0, 0, 0, 5, 33, 6, 34,
|
|
0, 35, 0, 232, 7, 0, 0, 0, 9, 36,
|
|
37, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 12, 0, 0, 0, 0, 0,
|
|
201, 14, 0, 15, 0, 233, 0, 16, 38, 0,
|
|
17, 0, 0, 0, 0, 0, 0, 18, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 20, 0,
|
|
21, 22, 23, 0, 0, 0, 0, 0, 0, 25,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 234, 0,
|
|
0, 0, 0, 0, 0, 4, 0, 0, 0, 0,
|
|
0, 26, 0, 0, 0, 0, 27, 28, 29, 0,
|
|
0, 30, 0, 31, 235, 0, 0, 204, 0, 0,
|
|
0, 0, 5, 0, 6, 0, 205, 0, 35, 232,
|
|
7, 0, 0, 0, 9, 0, 36, 37, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
12, 0, 0, 0, 584, 0, 201, 14, 0, 15,
|
|
0, 233, 0, 16, 0, 38, 17, 4, 0, 0,
|
|
0, 0, 0, 18, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 20, 599, 21, 22, 23, 0,
|
|
0, 0, 0, 0, 5, 25, 6, 0, 0, 0,
|
|
0, 0, 7, 0, 0, 0, 9, 0, 0, 0,
|
|
0, 0, 0, 0, 234, 0, 0, 0, 0, 0,
|
|
0, 0, 12, 0, 0, 0, 0, 26, 201, 14,
|
|
0, 15, 27, 28, 29, 16, 0, 30, 17, 31,
|
|
235, 0, 0, 204, 0, 18, 0, 0, 0, 0,
|
|
0, 0, 205, 0, 35, 0, 20, 0, 21, 22,
|
|
23, 4, 36, 37, 0, 0, 0, 25, 456, 457,
|
|
458, 459, 460, 461, 462, 463, 464, 0, 0, 0,
|
|
609, 0, 0, 0, 0, 0, 0, 0, 5, 0,
|
|
6, 38, 0, 0, 0, 0, 7, 0, 0, 26,
|
|
9, 0, 0, 0, 27, 28, 29, 0, 0, 30,
|
|
0, 31, 0, 0, 0, 204, 12, 0, 0, 0,
|
|
0, 0, 201, 14, 205, 15, 35, 0, 0, 16,
|
|
0, 0, 17, 0, 36, 37, 0, 0, 0, 18,
|
|
456, 457, 458, 459, 460, 461, 462, 463, 464, 0,
|
|
20, 0, 21, 22, 23, 0, 0, 0, 0, 0,
|
|
0, 25, 0, 38, 0, 456, 457, 458, 459, 460,
|
|
461, 462, 463, 464, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 26, 0, 0, 0, 0, 27, 28,
|
|
29, 0, 0, 30, 0, 31, 0, 0, 0, 204,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 205, 0,
|
|
35, 0, 0, 0, 0, 0, 0, 0, 36, 37,
|
|
0, 0, 0, 0, 0, 465, 0, 466, 467, 468,
|
|
469, 470, 471, 472, 473, 474, 475, 0, 0, 0,
|
|
0, 0, 0, 0, 476, 477, 0, 38, 0, 491,
|
|
456, 457, 458, 459, 460, 461, 462, 463, 464, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 456, 457, 458, 459, 460, 461, 462, 463,
|
|
464, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
456, 457, 458, 459, 460, 461, 462, 465, 0, 466,
|
|
467, 468, 469, 470, 471, 472, 473, 474, 475, 456,
|
|
457, 458, 459, 460, 461, 462, 476, 477, 0, 0,
|
|
0, 511, 465, 0, 466, 467, 468, 469, 470, 471,
|
|
472, 473, 474, 475, 0, 0, 0, 0, 0, 0,
|
|
0, 476, 477, 0, 0, 0, 550, 456, 457, 458,
|
|
459, 460, 461, 462, 463, 464, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 456, 457,
|
|
458, 459, 460, 461, 462, 463, 464, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 456, 457, 458,
|
|
459, 460, 461, 462, 0, 464, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 465, 0, 466,
|
|
467, 468, 469, 470, 471, 472, 473, 474, 475, 0,
|
|
0, 0, 0, 0, 0, 0, 476, 477, 538, 465,
|
|
0, 466, 467, 468, 469, 470, 471, 472, 473, 474,
|
|
475, 0, 0, 0, 0, 0, 0, 0, 476, 477,
|
|
618, 468, 469, 470, 471, 472, 473, 474, 475, 0,
|
|
0, 0, 0, 0, 0, 0, 476, 477, 0, 467,
|
|
468, 469, 470, 471, 472, 473, 474, 475, 0, 0,
|
|
0, 0, 0, 0, 0, 476, 477, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 465, 617, 466, 467, 468, 469,
|
|
470, 471, 472, 473, 474, 475, 0, 0, 0, 0,
|
|
0, 0, 0, 476, 477, 465, 0, 466, 467, 468,
|
|
469, 470, 471, 472, 473, 474, 475, 0, 4, 0,
|
|
0, 0, 0, 0, 476, 477, 466, 467, 468, 469,
|
|
470, 471, 472, 473, 474, 475, 0, 0, 0, 0,
|
|
0, 0, 0, 476, 477, 5, 0, 6, 0, 0,
|
|
0, 0, 0, 7, 8, 0, 0, 9, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 11, 0, 12, 0, 0, 0, 0, 0, 201,
|
|
14, 0, 15, 0, 0, 0, 16, 0, 0, 17,
|
|
4, 0, 0, 0, 0, 0, 18, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 20, 0, 21,
|
|
22, 23, 24, 0, 0, 202, 0, 5, 25, 6,
|
|
0, 0, 203, 0, 0, 7, 0, 0, 0, 9,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 12, 0, 0, 0, 0,
|
|
26, 201, 14, 0, 15, 27, 28, 29, 16, 0,
|
|
30, 17, 31, 0, 0, 0, 204, 0, 18, 0,
|
|
0, 0, 0, 0, 0, 205, 0, 35, 0, 20,
|
|
0, 21, 22, 23, 4, 36, 37, 0, 0, 0,
|
|
25, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 5, 0, 6, 0, 0, 0, 0, 0, 7,
|
|
0, 0, 26, 0, 0, 0, 0, 27, 28, 29,
|
|
0, 0, 30, 0, 31, 0, 0, 0, 204, 12,
|
|
0, 0, 0, 0, 0, 201, 14, 205, 0, 35,
|
|
0, 0, 16, 0, 0, 17, 0, 36, 37, 0,
|
|
0, 0, 18, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 21, 22, 23, 0, 0,
|
|
0, 0, 0, 0, 25, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 27, 28, 29, 0, 0, 30, 0, 0, 0,
|
|
0, 0, 204, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 205, 0, 35, 0, 0, 0, 0, 0, 0,
|
|
0, 36, 37, 96, 0, 97, 98, 99, 0, 100,
|
|
101, 0, 102, 0, 0, 103, 0, 104, 0, 0,
|
|
0, 105, 106, 0, 107, 108, 109, 110, 0, 111,
|
|
112, 113, 114, 115, 116, 117, 118, 0, 119, 0,
|
|
120, 121, 122, 123, 124, 0, 0, 125, 0, 0,
|
|
0, 126, 0, 127, 128, 0, 129, 130, 131, 132,
|
|
133, 134, 0, 135, 136, 137, 138, 139, 140, 0,
|
|
0, 141, 0, 0, 142, 0, 0, 0, 0, 143,
|
|
144, 0, 145, 146, 0, 147, 148, 0, 0, 149,
|
|
150, 151, 152, 153, 154, 0, 155, 156, 157, 158,
|
|
159, 160, 161, 0, 162, 163, 0, 164, 165, 166,
|
|
167, 168, 169, 170, 171, 172, 0, 173, 174, 175,
|
|
176, 0, 0, 0, 177, 0, 0, 178, 0, 0,
|
|
179, 180, 0, 0, 181, 182, 183, 184, 0, 0,
|
|
185, 0, 186, 0, 187, 188, 189, 190, 191, 192,
|
|
193, 0, 0, 194
|
|
};
|
|
|
|
#define yypact_value_is_default(yystate) \
|
|
((yystate) == (-519))
|
|
|
|
#define yytable_value_is_error(yytable_value) \
|
|
YYID (0)
|
|
|
|
static const yytype_int16 yycheck[] =
|
|
{
|
|
2, 46, 66, 2, 66, 2, 263, 2, 2, 264,
|
|
301, 241, 267, 271, 269, 318, 316, 272, 237, 238,
|
|
37, 289, 277, 46, 33, 543, 107, 43, 494, 15,
|
|
2, 495, 153, 50, 67, 254, 179, 63, 64, 65,
|
|
64, 65, 153, 69, 153, 69, 91, 46, 2, 46,
|
|
179, 46, 68, 86, 57, 549, 0, 32, 131, 34,
|
|
554, 204, 135, 203, 321, 200, 200, 200, 200, 98,
|
|
203, 206, 206, 179, 206, 204, 3, 93, 5, 6,
|
|
7, 8, 9, 10, 205, 551, 3, 4, 552, 162,
|
|
179, 202, 46, 179, 205, 98, 205, 126, 204, 318,
|
|
312, 202, 95, 204, 3, 179, 5, 6, 7, 8,
|
|
9, 10, 630, 8, 608, 204, 202, 408, 584, 200,
|
|
136, 38, 200, 335, 336, 589, 43, 201, 419, 29,
|
|
202, 202, 148, 205, 205, 35, 404, 174, 175, 176,
|
|
177, 178, 69, 609, 8, 203, 260, 11, 212, 263,
|
|
212, 615, 200, 70, 200, 203, 270, 203, 25, 273,
|
|
200, 28, 202, 3, 4, 279, 280, 3, 4, 205,
|
|
69, 3, 4, 237, 238, 237, 238, 3, 4, 8,
|
|
435, 3, 4, 3, 4, 205, 250, 202, 115, 206,
|
|
254, 202, 254, 181, 258, 202, 219, 199, 200, 205,
|
|
199, 200, 199, 200, 199, 200, 123, 321, 322, 205,
|
|
13, 14, 15, 199, 200, 202, 115, 202, 145, 245,
|
|
439, 245, 202, 478, 202, 455, 271, 199, 200, 204,
|
|
205, 158, 149, 202, 534, 202, 350, 351, 352, 353,
|
|
354, 355, 356, 202, 535, 278, 145, 202, 281, 205,
|
|
283, 284, 203, 508, 318, 288, 318, 184, 203, 158,
|
|
187, 188, 189, 3, 4, 192, 193, 3, 4, 271,
|
|
203, 501, 189, 203, 201, 203, 203, 203, 323, 203,
|
|
583, 203, 540, 200, 203, 184, 203, 203, 187, 188,
|
|
189, 3, 4, 192, 193, 15, 38, 203, 38, 15,
|
|
203, 310, 201, 594, 203, 608, 203, 526, 3, 4,
|
|
493, 356, 426, 203, 497, 317, 203, 620, 317, 549,
|
|
317, 323, 317, 332, 554, 3, 4, 557, 70, 374,
|
|
70, 203, 635, 203, 336, 203, 627, 3, 4, 3,
|
|
4, 203, 456, 457, 203, 459, 460, 461, 462, 463,
|
|
464, 465, 466, 467, 468, 469, 470, 471, 472, 473,
|
|
474, 475, 203, 477, 203, 203, 203, 3, 413, 203,
|
|
434, 628, 203, 203, 202, 439, 421, 439, 608, 203,
|
|
203, 123, 203, 123, 187, 188, 189, 190, 191, 503,
|
|
3, 4, 437, 455, 203, 650, 199, 200, 203, 205,
|
|
583, 202, 447, 586, 202, 205, 203, 149, 207, 149,
|
|
204, 204, 8, 415, 413, 409, 418, 8, 8, 418,
|
|
8, 418, 421, 418, 421, 38, 421, 8, 611, 8,
|
|
43, 8, 8, 495, 5, 8, 200, 620, 203, 3,
|
|
437, 5, 6, 7, 8, 9, 10, 189, 202, 189,
|
|
495, 181, 635, 205, 202, 205, 179, 70, 200, 204,
|
|
200, 203, 526, 203, 526, 39, 207, 187, 188, 189,
|
|
190, 191, 206, 189, 190, 191, 179, 204, 204, 199,
|
|
200, 203, 546, 199, 200, 530, 204, 549, 199, 204,
|
|
552, 204, 554, 495, 204, 540, 3, 4, 204, 204,
|
|
614, 202, 204, 617, 204, 69, 204, 552, 82, 179,
|
|
123, 204, 204, 204, 628, 204, 204, 204, 4, 204,
|
|
204, 95, 96, 97, 204, 204, 181, 204, 204, 204,
|
|
104, 38, 204, 8, 89, 206, 149, 204, 540, 179,
|
|
202, 204, 202, 3, 589, 31, 608, 33, 3, 8,
|
|
552, 115, 5, 39, 40, 204, 38, 43, 202, 202,
|
|
181, 43, 48, 70, 205, 204, 204, 204, 142, 204,
|
|
615, 57, 146, 59, 204, 204, 189, 204, 204, 65,
|
|
66, 145, 68, 181, 204, 202, 72, 589, 70, 75,
|
|
203, 2, 181, 44, 158, 597, 82, 279, 597, 417,
|
|
597, 434, 597, 89, 90, 503, 656, 93, 415, 95,
|
|
96, 97, 98, 615, 2, 46, 123, 630, 104, 4,
|
|
184, 2, 2, 187, 188, 189, 212, 275, 192, 193,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, 203,
|
|
-1, 123, 149, -1, -1, -1, 31, -1, 33, -1,
|
|
136, -1, -1, -1, 39, 141, 142, 143, 43, -1,
|
|
146, -1, 148, 48, -1, -1, 152, 149, -1, -1,
|
|
-1, -1, -1, 159, 59, 161, -1, 163, -1, -1,
|
|
65, 66, 189, 68, -1, 171, 172, 72, -1, -1,
|
|
75, -1, -1, -1, -1, -1, 203, 82, -1, -1,
|
|
-1, -1, -1, -1, 89, -1, -1, 189, 93, -1,
|
|
95, 96, 97, -1, 200, -1, -1, -1, 200, 104,
|
|
206, 203, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, 4, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, 136, -1, -1, -1, -1, 141, 142, 143, -1,
|
|
31, 146, 33, 148, 13, 14, 15, 152, 39, 18,
|
|
19, -1, 43, -1, 159, -1, 161, 48, 163, -1,
|
|
-1, -1, -1, -1, -1, -1, 171, 172, 59, -1,
|
|
-1, -1, -1, -1, 65, 66, -1, 68, -1, -1,
|
|
-1, 72, -1, -1, 75, -1, -1, -1, -1, -1,
|
|
-1, 82, -1, -1, -1, 200, -1, -1, 89, -1,
|
|
-1, 206, 93, -1, 95, 96, 97, -1, -1, -1,
|
|
-1, -1, -1, 104, 4, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, 31, -1, 33, -1, 136, -1, -1, -1, 39,
|
|
141, 142, 143, 43, -1, 146, -1, 148, 48, -1,
|
|
-1, 152, -1, -1, -1, -1, -1, -1, 159, 59,
|
|
161, -1, 163, -1, -1, 65, 66, -1, 68, -1,
|
|
171, 172, 72, -1, -1, 75, -1, -1, -1, -1,
|
|
-1, -1, 82, -1, -1, -1, -1, -1, -1, 89,
|
|
-1, -1, -1, 93, -1, 95, 96, 97, -1, 200,
|
|
-1, -1, -1, -1, 104, 206, 185, 186, 187, 188,
|
|
189, 190, 191, -1, -1, -1, -1, -1, 4, -1,
|
|
199, 200, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, 136, -1, -1, -1,
|
|
-1, 141, 142, 143, -1, 31, 146, 33, 148, -1,
|
|
-1, -1, 152, 39, -1, -1, -1, 43, -1, 159,
|
|
-1, 161, -1, 163, 13, 14, 15, 16, 17, 18,
|
|
19, 171, 172, 59, -1, -1, -1, -1, -1, 65,
|
|
66, -1, 68, -1, -1, -1, 72, -1, -1, 75,
|
|
-1, -1, -1, -1, -1, -1, 82, -1, -1, -1,
|
|
200, -1, -1, -1, -1, -1, 206, 93, -1, 95,
|
|
96, 97, -1, -1, -1, -1, -1, -1, 104, -1,
|
|
13, 14, 15, 16, 17, 18, 19, -1, -1, -1,
|
|
-1, 3, 4, 5, 6, 7, 8, 9, 10, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
136, -1, -1, -1, -1, 141, 142, 143, -1, 31,
|
|
146, 33, 148, -1, -1, -1, 152, 39, -1, -1,
|
|
-1, 43, -1, -1, -1, 161, -1, 163, -1, -1,
|
|
-1, -1, -1, -1, -1, 171, 172, 59, -1, -1,
|
|
-1, -1, -1, 65, 66, -1, 68, 69, -1, -1,
|
|
72, -1, -1, 75, -1, -1, -1, -1, -1, -1,
|
|
82, -1, -1, -1, 200, -1, -1, -1, -1, -1,
|
|
206, 93, -1, 95, 96, 97, -1, -1, -1, -1,
|
|
-1, -1, 104, 182, 183, 184, 185, 186, 187, 188,
|
|
189, 190, 191, 115, -1, -1, -1, -1, -1, -1,
|
|
199, 200, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, 136, -1, -1, -1, -1, 141,
|
|
142, 143, -1, 145, 146, 4, 148, -1, -1, -1,
|
|
152, -1, -1, 12, -1, -1, 158, -1, -1, 161,
|
|
-1, 163, 185, 186, 187, 188, 189, 190, 191, 171,
|
|
172, -1, 31, -1, 33, -1, 199, 200, -1, -1,
|
|
39, 40, 184, -1, 43, 187, 188, 189, -1, 48,
|
|
192, 193, -1, -1, -1, -1, -1, -1, 57, -1,
|
|
59, 203, -1, -1, -1, -1, 65, 66, -1, 68,
|
|
-1, -1, -1, 72, -1, -1, 75, -1, -1, -1,
|
|
-1, -1, -1, 82, -1, -1, -1, -1, -1, -1,
|
|
89, 90, -1, -1, 93, -1, 95, 96, 97, 98,
|
|
-1, -1, -1, -1, -1, 104, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, 4, -1, -1, -1, -1, 136, -1, -1,
|
|
-1, -1, 141, 142, 143, -1, -1, 146, -1, 148,
|
|
-1, -1, -1, 152, -1, -1, -1, -1, -1, 31,
|
|
159, 33, 161, -1, 163, -1, -1, 39, 40, -1,
|
|
-1, 43, 171, 172, -1, -1, 48, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, 57, -1, 59, -1, -1,
|
|
-1, -1, -1, 65, 66, -1, 68, -1, -1, -1,
|
|
72, 200, -1, 75, -1, -1, -1, -1, -1, -1,
|
|
82, -1, -1, -1, -1, -1, -1, 89, -1, -1,
|
|
-1, 93, -1, 95, 96, 97, 98, -1, -1, -1,
|
|
-1, -1, 104, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, 4,
|
|
-1, -1, -1, -1, 136, -1, -1, -1, -1, 141,
|
|
142, 143, -1, -1, 146, -1, 148, -1, -1, -1,
|
|
152, -1, -1, -1, -1, -1, 31, 159, 33, 161,
|
|
-1, 163, -1, 38, 39, -1, -1, -1, 43, 171,
|
|
172, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, 59, -1, -1, -1, -1, -1,
|
|
65, 66, -1, 68, -1, 70, -1, 72, 200, -1,
|
|
75, -1, -1, -1, -1, -1, -1, 82, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, 93, -1,
|
|
95, 96, 97, -1, -1, -1, -1, -1, -1, 104,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, 123, -1,
|
|
-1, -1, -1, -1, -1, 4, -1, -1, -1, -1,
|
|
-1, 136, -1, -1, -1, -1, 141, 142, 143, -1,
|
|
-1, 146, -1, 148, 149, -1, -1, 152, -1, -1,
|
|
-1, -1, 31, -1, 33, -1, 161, -1, 163, 38,
|
|
39, -1, -1, -1, 43, -1, 171, 172, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
59, -1, -1, -1, 189, -1, 65, 66, -1, 68,
|
|
-1, 70, -1, 72, -1, 200, 75, 4, -1, -1,
|
|
-1, -1, -1, 82, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, 93, 22, 95, 96, 97, -1,
|
|
-1, -1, -1, -1, 31, 104, 33, -1, -1, -1,
|
|
-1, -1, 39, -1, -1, -1, 43, -1, -1, -1,
|
|
-1, -1, -1, -1, 123, -1, -1, -1, -1, -1,
|
|
-1, -1, 59, -1, -1, -1, -1, 136, 65, 66,
|
|
-1, 68, 141, 142, 143, 72, -1, 146, 75, 148,
|
|
149, -1, -1, 152, -1, 82, -1, -1, -1, -1,
|
|
-1, -1, 161, -1, 163, -1, 93, -1, 95, 96,
|
|
97, 4, 171, 172, -1, -1, -1, 104, 13, 14,
|
|
15, 16, 17, 18, 19, 20, 21, -1, -1, -1,
|
|
189, -1, -1, -1, -1, -1, -1, -1, 31, -1,
|
|
33, 200, -1, -1, -1, -1, 39, -1, -1, 136,
|
|
43, -1, -1, -1, 141, 142, 143, -1, -1, 146,
|
|
-1, 148, -1, -1, -1, 152, 59, -1, -1, -1,
|
|
-1, -1, 65, 66, 161, 68, 163, -1, -1, 72,
|
|
-1, -1, 75, -1, 171, 172, -1, -1, -1, 82,
|
|
13, 14, 15, 16, 17, 18, 19, 20, 21, -1,
|
|
93, -1, 95, 96, 97, -1, -1, -1, -1, -1,
|
|
-1, 104, -1, 200, -1, 13, 14, 15, 16, 17,
|
|
18, 19, 20, 21, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, 136, -1, -1, -1, -1, 141, 142,
|
|
143, -1, -1, 146, -1, 148, -1, -1, -1, 152,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, 161, -1,
|
|
163, -1, -1, -1, -1, -1, -1, -1, 171, 172,
|
|
-1, -1, -1, -1, -1, 180, -1, 182, 183, 184,
|
|
185, 186, 187, 188, 189, 190, 191, -1, -1, -1,
|
|
-1, -1, -1, -1, 199, 200, -1, 200, -1, 204,
|
|
13, 14, 15, 16, 17, 18, 19, 20, 21, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, 13, 14, 15, 16, 17, 18, 19, 20,
|
|
21, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
13, 14, 15, 16, 17, 18, 19, 180, -1, 182,
|
|
183, 184, 185, 186, 187, 188, 189, 190, 191, 13,
|
|
14, 15, 16, 17, 18, 19, 199, 200, -1, -1,
|
|
-1, 204, 180, -1, 182, 183, 184, 185, 186, 187,
|
|
188, 189, 190, 191, -1, -1, -1, -1, -1, -1,
|
|
-1, 199, 200, -1, -1, -1, 204, 13, 14, 15,
|
|
16, 17, 18, 19, 20, 21, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, 13, 14,
|
|
15, 16, 17, 18, 19, 20, 21, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, 13, 14, 15,
|
|
16, 17, 18, 19, -1, 21, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, 180, -1, 182,
|
|
183, 184, 185, 186, 187, 188, 189, 190, 191, -1,
|
|
-1, -1, -1, -1, -1, -1, 199, 200, 201, 180,
|
|
-1, 182, 183, 184, 185, 186, 187, 188, 189, 190,
|
|
191, -1, -1, -1, -1, -1, -1, -1, 199, 200,
|
|
201, 184, 185, 186, 187, 188, 189, 190, 191, -1,
|
|
-1, -1, -1, -1, -1, -1, 199, 200, -1, 183,
|
|
184, 185, 186, 187, 188, 189, 190, 191, -1, -1,
|
|
-1, -1, -1, -1, -1, 199, 200, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, 180, 181, 182, 183, 184, 185,
|
|
186, 187, 188, 189, 190, 191, -1, -1, -1, -1,
|
|
-1, -1, -1, 199, 200, 180, -1, 182, 183, 184,
|
|
185, 186, 187, 188, 189, 190, 191, -1, 4, -1,
|
|
-1, -1, -1, -1, 199, 200, 182, 183, 184, 185,
|
|
186, 187, 188, 189, 190, 191, -1, -1, -1, -1,
|
|
-1, -1, -1, 199, 200, 31, -1, 33, -1, -1,
|
|
-1, -1, -1, 39, 40, -1, -1, 43, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, 57, -1, 59, -1, -1, -1, -1, -1, 65,
|
|
66, -1, 68, -1, -1, -1, 72, -1, -1, 75,
|
|
4, -1, -1, -1, -1, -1, 82, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, 93, -1, 95,
|
|
96, 97, 98, -1, -1, 101, -1, 31, 104, 33,
|
|
-1, -1, 108, -1, -1, 39, -1, -1, -1, 43,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, 59, -1, -1, -1, -1,
|
|
136, 65, 66, -1, 68, 141, 142, 143, 72, -1,
|
|
146, 75, 148, -1, -1, -1, 152, -1, 82, -1,
|
|
-1, -1, -1, -1, -1, 161, -1, 163, -1, 93,
|
|
-1, 95, 96, 97, 4, 171, 172, -1, -1, -1,
|
|
104, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, 31, -1, 33, -1, -1, -1, -1, -1, 39,
|
|
-1, -1, 136, -1, -1, -1, -1, 141, 142, 143,
|
|
-1, -1, 146, -1, 148, -1, -1, -1, 152, 59,
|
|
-1, -1, -1, -1, -1, 65, 66, 161, -1, 163,
|
|
-1, -1, 72, -1, -1, 75, -1, 171, 172, -1,
|
|
-1, -1, 82, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, 95, 96, 97, -1, -1,
|
|
-1, -1, -1, -1, 104, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, 141, 142, 143, -1, -1, 146, -1, -1, -1,
|
|
-1, -1, 152, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, 161, -1, 163, -1, -1, -1, -1, -1, -1,
|
|
-1, 171, 172, 23, -1, 25, 26, 27, -1, 29,
|
|
30, -1, 32, -1, -1, 35, -1, 37, -1, -1,
|
|
-1, 41, 42, -1, 44, 45, 46, 47, -1, 49,
|
|
50, 51, 52, 53, 54, 55, 56, -1, 58, -1,
|
|
60, 61, 62, 63, 64, -1, -1, 67, -1, -1,
|
|
-1, 71, -1, 73, 74, -1, 76, 77, 78, 79,
|
|
80, 81, -1, 83, 84, 85, 86, 87, 88, -1,
|
|
-1, 91, -1, -1, 94, -1, -1, -1, -1, 99,
|
|
100, -1, 102, 103, -1, 105, 106, -1, -1, 109,
|
|
110, 111, 112, 113, 114, -1, 116, 117, 118, 119,
|
|
120, 121, 122, -1, 124, 125, -1, 127, 128, 129,
|
|
130, 131, 132, 133, 134, 135, -1, 137, 138, 139,
|
|
140, -1, -1, -1, 144, -1, -1, 147, -1, -1,
|
|
150, 151, -1, -1, 154, 155, 156, 157, -1, -1,
|
|
160, -1, 162, -1, 164, 165, 166, 167, 168, 169,
|
|
170, -1, -1, 173
|
|
};
|
|
|
|
/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
|
|
symbol of state STATE-NUM. */
|
|
static const yytype_uint16 yystos[] =
|
|
{
|
|
0, 209, 210, 0, 4, 31, 33, 39, 40, 43,
|
|
48, 57, 59, 65, 66, 68, 72, 75, 82, 89,
|
|
93, 95, 96, 97, 98, 104, 136, 141, 142, 143,
|
|
146, 148, 152, 159, 161, 163, 171, 172, 200, 214,
|
|
215, 216, 217, 218, 221, 222, 229, 240, 254, 258,
|
|
260, 261, 262, 263, 266, 267, 270, 272, 273, 274,
|
|
275, 277, 278, 279, 280, 281, 283, 285, 303, 304,
|
|
305, 306, 3, 4, 203, 3, 4, 3, 4, 256,
|
|
95, 259, 8, 3, 4, 259, 203, 259, 260, 3,
|
|
256, 228, 229, 3, 256, 260, 23, 25, 26, 27,
|
|
29, 30, 32, 35, 37, 41, 42, 44, 45, 46,
|
|
47, 49, 50, 51, 52, 53, 54, 55, 56, 58,
|
|
60, 61, 62, 63, 64, 67, 71, 73, 74, 76,
|
|
77, 78, 79, 80, 81, 83, 84, 85, 86, 87,
|
|
88, 91, 94, 99, 100, 102, 103, 105, 106, 109,
|
|
110, 111, 112, 113, 114, 116, 117, 118, 119, 120,
|
|
121, 122, 124, 125, 127, 128, 129, 130, 131, 132,
|
|
133, 134, 135, 137, 138, 139, 140, 144, 147, 150,
|
|
151, 154, 155, 156, 157, 160, 162, 164, 165, 166,
|
|
167, 168, 169, 170, 173, 230, 232, 302, 202, 211,
|
|
211, 65, 101, 108, 152, 161, 220, 240, 261, 266,
|
|
272, 276, 283, 303, 306, 202, 202, 205, 202, 205,
|
|
202, 213, 202, 181, 271, 205, 284, 285, 284, 284,
|
|
3, 4, 38, 70, 123, 149, 189, 203, 234, 257,
|
|
286, 287, 300, 240, 303, 304, 306, 284, 202, 8,
|
|
205, 202, 304, 205, 283, 153, 205, 203, 203, 203,
|
|
203, 203, 203, 203, 203, 203, 203, 203, 203, 203,
|
|
203, 203, 203, 203, 203, 203, 203, 203, 203, 203,
|
|
203, 203, 203, 203, 203, 203, 203, 203, 203, 179,
|
|
201, 12, 90, 214, 219, 222, 261, 263, 274, 275,
|
|
278, 206, 3, 3, 3, 4, 3, 3, 205, 300,
|
|
264, 126, 268, 272, 3, 4, 205, 212, 282, 286,
|
|
286, 207, 200, 203, 227, 284, 204, 237, 238, 239,
|
|
257, 204, 247, 286, 296, 203, 250, 8, 257, 3,
|
|
5, 6, 7, 8, 9, 10, 69, 115, 145, 158,
|
|
184, 187, 188, 189, 192, 193, 203, 243, 244, 245,
|
|
243, 246, 8, 8, 231, 246, 245, 8, 8, 245,
|
|
8, 245, 243, 226, 229, 283, 245, 241, 242, 243,
|
|
8, 302, 8, 245, 304, 241, 243, 304, 174, 175,
|
|
176, 177, 178, 301, 304, 304, 8, 11, 233, 5,
|
|
307, 8, 304, 232, 200, 203, 202, 213, 206, 228,
|
|
265, 181, 107, 228, 252, 269, 202, 205, 212, 206,
|
|
214, 229, 281, 286, 204, 246, 189, 201, 243, 223,
|
|
224, 225, 226, 206, 179, 207, 206, 228, 248, 179,
|
|
252, 206, 229, 249, 252, 204, 204, 203, 243, 243,
|
|
243, 243, 243, 243, 243, 283, 13, 14, 15, 16,
|
|
17, 18, 19, 20, 21, 180, 182, 183, 184, 185,
|
|
186, 187, 188, 189, 190, 191, 199, 200, 179, 204,
|
|
204, 204, 179, 204, 204, 204, 204, 204, 204, 204,
|
|
204, 204, 204, 283, 189, 203, 227, 234, 257, 292,
|
|
294, 295, 204, 179, 204, 204, 204, 204, 179, 204,
|
|
204, 204, 204, 204, 204, 204, 204, 199, 204, 204,
|
|
204, 232, 8, 213, 275, 181, 283, 303, 202, 206,
|
|
229, 253, 254, 206, 218, 206, 213, 201, 201, 204,
|
|
179, 239, 245, 283, 306, 286, 204, 202, 202, 283,
|
|
204, 189, 203, 227, 234, 288, 290, 291, 243, 243,
|
|
3, 243, 243, 243, 243, 243, 243, 243, 243, 243,
|
|
243, 243, 243, 243, 243, 243, 243, 243, 3, 243,
|
|
245, 8, 294, 282, 189, 223, 234, 293, 294, 203,
|
|
227, 242, 245, 5, 204, 286, 202, 212, 213, 22,
|
|
226, 292, 298, 299, 202, 255, 257, 290, 282, 189,
|
|
223, 234, 289, 290, 204, 203, 227, 181, 201, 294,
|
|
282, 204, 294, 204, 223, 204, 213, 206, 181, 297,
|
|
179, 202, 205, 204, 290, 282, 204, 294, 204, 243,
|
|
223, 243, 294, 204, 213, 246, 298, 235, 294, 204,
|
|
37, 50, 206, 236, 245, 181, 181, 202, 251, 252,
|
|
251, 202
|
|
};
|
|
|
|
#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 && yylen == 1) \
|
|
{ \
|
|
yychar = (Token); \
|
|
yylval = (Value); \
|
|
YYPOPSTACK (1); \
|
|
goto yybackup; \
|
|
} \
|
|
else \
|
|
{ \
|
|
yyerror (YY_("syntax error: cannot back up")); \
|
|
YYERROR; \
|
|
} \
|
|
while (YYID (0))
|
|
|
|
|
|
#define YYTERROR 1
|
|
#define YYERRCODE 256
|
|
|
|
|
|
/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
|
|
If N is 0, then set CURRENT to the empty location which ends
|
|
the previous symbol: RHS[0] (always defined). */
|
|
|
|
#define YYRHSLOC(Rhs, K) ((Rhs)[K])
|
|
#ifndef YYLLOC_DEFAULT
|
|
# define YYLLOC_DEFAULT(Current, Rhs, N) \
|
|
do \
|
|
if (YYID (N)) \
|
|
{ \
|
|
(Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
|
|
(Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
|
|
(Current).last_line = YYRHSLOC (Rhs, N).last_line; \
|
|
(Current).last_column = YYRHSLOC (Rhs, N).last_column; \
|
|
} \
|
|
else \
|
|
{ \
|
|
(Current).first_line = (Current).last_line = \
|
|
YYRHSLOC (Rhs, 0).last_line; \
|
|
(Current).first_column = (Current).last_column = \
|
|
YYRHSLOC (Rhs, 0).last_column; \
|
|
} \
|
|
while (YYID (0))
|
|
#endif
|
|
|
|
|
|
/* 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
|
|
{
|
|
if (!yyvaluep)
|
|
return;
|
|
# ifdef YYPRINT
|
|
if (yytype < YYNTOKENS)
|
|
YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
|
|
# else
|
|
YYUSE (yyoutput);
|
|
# endif
|
|
switch (yytype)
|
|
{
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
|
|
/*--------------------------------.
|
|
| 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 (0, yytname[yytoken]);
|
|
YYSIZE_T yysize = yysize0;
|
|
YYSIZE_T yysize1;
|
|
enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
|
|
/* Internationalized format string. */
|
|
const char *yyformat = 0;
|
|
/* 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];
|
|
yysize1 = yysize + yytnamerr (0, 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_
|
|
}
|
|
|
|
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);
|
|
|
|
switch (yytype)
|
|
{
|
|
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
|
|
/* Prevent warnings from -Wmissing-prototypes. */
|
|
#ifdef YYPARSE_PARAM
|
|
#if defined __STDC__ || defined __cplusplus
|
|
int yyparse (void *YYPARSE_PARAM);
|
|
#else
|
|
int yyparse ();
|
|
#endif
|
|
#else /* ! YYPARSE_PARAM */
|
|
#if defined __STDC__ || defined __cplusplus
|
|
int yyparse (void);
|
|
#else
|
|
int yyparse ();
|
|
#endif
|
|
#endif /* ! YYPARSE_PARAM */
|
|
|
|
|
|
/* The lookahead symbol. */
|
|
int yychar;
|
|
|
|
/* The semantic value of the lookahead symbol. */
|
|
YYSTYPE yylval;
|
|
|
|
/* 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 thru 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;
|
|
/* 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;
|
|
|
|
yytoken = 0;
|
|
yyss = yyssa;
|
|
yyvs = yyvsa;
|
|
yystacksize = YYINITDEPTH;
|
|
|
|
YYDPRINTF ((stderr, "Starting parse\n"));
|
|
|
|
yystate = 0;
|
|
yyerrstatus = 0;
|
|
yynerrs = 0;
|
|
yychar = YYEMPTY; /* Cause a token to be read. */
|
|
|
|
/* Initialize stack pointers.
|
|
Waste one element of value and location stack
|
|
so that they stay on the same level as the state stack.
|
|
The wasted elements are never initialized. */
|
|
yyssp = yyss;
|
|
yyvsp = yyvs;
|
|
|
|
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;
|
|
*++yyvsp = yylval;
|
|
|
|
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 1806 of yacc.c */
|
|
#line 328 "parser.y"
|
|
{ fix_incomplete();
|
|
check_statements((yyvsp[(1) - (1)].stmt_list), FALSE);
|
|
check_all_user_types((yyvsp[(1) - (1)].stmt_list));
|
|
write_header((yyvsp[(1) - (1)].stmt_list));
|
|
write_id_data((yyvsp[(1) - (1)].stmt_list));
|
|
write_proxies((yyvsp[(1) - (1)].stmt_list));
|
|
write_client((yyvsp[(1) - (1)].stmt_list));
|
|
write_server((yyvsp[(1) - (1)].stmt_list));
|
|
write_regscript((yyvsp[(1) - (1)].stmt_list));
|
|
write_dlldata((yyvsp[(1) - (1)].stmt_list));
|
|
write_local_stubs((yyvsp[(1) - (1)].stmt_list));
|
|
}
|
|
break;
|
|
|
|
case 3:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 342 "parser.y"
|
|
{ (yyval.stmt_list) = NULL; }
|
|
break;
|
|
|
|
case 4:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 343 "parser.y"
|
|
{ (yyval.stmt_list) = append_statement((yyvsp[(1) - (2)].stmt_list), make_statement_reference((yyvsp[(2) - (2)].type))); }
|
|
break;
|
|
|
|
case 5:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 344 "parser.y"
|
|
{ (yyval.stmt_list) = append_statement((yyvsp[(1) - (2)].stmt_list), make_statement_type_decl((yyvsp[(2) - (2)].type))); }
|
|
break;
|
|
|
|
case 6:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 345 "parser.y"
|
|
{ (yyval.stmt_list) = (yyvsp[(1) - (3)].stmt_list);
|
|
reg_type((yyvsp[(2) - (3)].type), (yyvsp[(2) - (3)].type)->name, 0);
|
|
}
|
|
break;
|
|
|
|
case 7:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 348 "parser.y"
|
|
{ (yyval.stmt_list) = append_statement((yyvsp[(1) - (2)].stmt_list), make_statement_type_decl((yyvsp[(2) - (2)].type)));
|
|
reg_type((yyvsp[(2) - (2)].type), (yyvsp[(2) - (2)].type)->name, 0);
|
|
}
|
|
break;
|
|
|
|
case 8:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 351 "parser.y"
|
|
{ (yyval.stmt_list) = append_statement((yyvsp[(1) - (2)].stmt_list), make_statement_module((yyvsp[(2) - (2)].type))); }
|
|
break;
|
|
|
|
case 9:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 352 "parser.y"
|
|
{ (yyval.stmt_list) = append_statement((yyvsp[(1) - (2)].stmt_list), make_statement_library((yyvsp[(2) - (2)].typelib))); }
|
|
break;
|
|
|
|
case 10:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 353 "parser.y"
|
|
{ (yyval.stmt_list) = append_statement((yyvsp[(1) - (2)].stmt_list), (yyvsp[(2) - (2)].statement)); }
|
|
break;
|
|
|
|
case 11:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 356 "parser.y"
|
|
{ (yyval.stmt_list) = NULL; }
|
|
break;
|
|
|
|
case 12:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 357 "parser.y"
|
|
{ (yyval.stmt_list) = append_statement((yyvsp[(1) - (2)].stmt_list), make_statement_reference((yyvsp[(2) - (2)].type))); }
|
|
break;
|
|
|
|
case 13:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 358 "parser.y"
|
|
{ (yyval.stmt_list) = append_statement((yyvsp[(1) - (2)].stmt_list), make_statement_type_decl((yyvsp[(2) - (2)].type))); }
|
|
break;
|
|
|
|
case 14:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 359 "parser.y"
|
|
{ (yyval.stmt_list) = (yyvsp[(1) - (3)].stmt_list); reg_type((yyvsp[(2) - (3)].type), (yyvsp[(2) - (3)].type)->name, 0); }
|
|
break;
|
|
|
|
case 15:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 360 "parser.y"
|
|
{ (yyval.stmt_list) = append_statement((yyvsp[(1) - (2)].stmt_list), make_statement_type_decl((yyvsp[(2) - (2)].type)));
|
|
reg_type((yyvsp[(2) - (2)].type), (yyvsp[(2) - (2)].type)->name, 0);
|
|
}
|
|
break;
|
|
|
|
case 16:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 363 "parser.y"
|
|
{ (yyval.stmt_list) = append_statement((yyvsp[(1) - (2)].stmt_list), make_statement_module((yyvsp[(2) - (2)].type))); }
|
|
break;
|
|
|
|
case 17:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 364 "parser.y"
|
|
{ (yyval.stmt_list) = append_statement((yyvsp[(1) - (2)].stmt_list), (yyvsp[(2) - (2)].statement)); }
|
|
break;
|
|
|
|
case 18:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 365 "parser.y"
|
|
{ (yyval.stmt_list) = append_statement((yyvsp[(1) - (2)].stmt_list), make_statement_importlib((yyvsp[(2) - (2)].str))); }
|
|
break;
|
|
|
|
case 19:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 366 "parser.y"
|
|
{ (yyval.stmt_list) = append_statement((yyvsp[(1) - (2)].stmt_list), make_statement_library((yyvsp[(2) - (2)].typelib))); }
|
|
break;
|
|
|
|
case 20:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 369 "parser.y"
|
|
{ (yyval.stmt_list) = NULL; }
|
|
break;
|
|
|
|
case 21:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 370 "parser.y"
|
|
{ (yyval.stmt_list) = append_statement((yyvsp[(1) - (2)].stmt_list), (yyvsp[(2) - (2)].statement)); }
|
|
break;
|
|
|
|
case 24:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 378 "parser.y"
|
|
{ (yyval.statement) = make_statement_cppquote((yyvsp[(1) - (1)].str)); }
|
|
break;
|
|
|
|
case 25:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 379 "parser.y"
|
|
{ (yyval.statement) = make_statement_type_decl((yyvsp[(1) - (2)].type)); }
|
|
break;
|
|
|
|
case 26:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 380 "parser.y"
|
|
{ (yyval.statement) = make_statement_declaration((yyvsp[(1) - (2)].var)); }
|
|
break;
|
|
|
|
case 27:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 381 "parser.y"
|
|
{ (yyval.statement) = make_statement_import((yyvsp[(1) - (1)].str)); }
|
|
break;
|
|
|
|
case 28:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 382 "parser.y"
|
|
{ (yyval.statement) = (yyvsp[(1) - (2)].statement); }
|
|
break;
|
|
|
|
case 30:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 387 "parser.y"
|
|
{ (yyval.type) = type_new_enum((yyvsp[(2) - (2)].str), FALSE, NULL); }
|
|
break;
|
|
|
|
case 32:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 389 "parser.y"
|
|
{ (yyval.type) = type_new_struct((yyvsp[(2) - (2)].str), FALSE, NULL); }
|
|
break;
|
|
|
|
case 34:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 391 "parser.y"
|
|
{ (yyval.type) = type_new_nonencapsulated_union((yyvsp[(2) - (2)].str), FALSE, NULL); }
|
|
break;
|
|
|
|
case 35:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 392 "parser.y"
|
|
{ (yyval.type) = (yyvsp[(2) - (2)].type); (yyval.type)->attrs = check_enum_attrs((yyvsp[(1) - (2)].attr_list)); }
|
|
break;
|
|
|
|
case 36:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 393 "parser.y"
|
|
{ (yyval.type) = (yyvsp[(2) - (2)].type); (yyval.type)->attrs = check_struct_attrs((yyvsp[(1) - (2)].attr_list)); }
|
|
break;
|
|
|
|
case 37:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 394 "parser.y"
|
|
{ (yyval.type) = (yyvsp[(2) - (2)].type); (yyval.type)->attrs = check_union_attrs((yyvsp[(1) - (2)].attr_list)); }
|
|
break;
|
|
|
|
case 38:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 397 "parser.y"
|
|
{ (yyval.str) = (yyvsp[(3) - (4)].str); }
|
|
break;
|
|
|
|
case 39:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 399 "parser.y"
|
|
{ assert(yychar == YYEMPTY);
|
|
(yyval.import) = xmalloc(sizeof(struct _import_t));
|
|
(yyval.import)->name = (yyvsp[(2) - (3)].str);
|
|
(yyval.import)->import_performed = do_import((yyvsp[(2) - (3)].str));
|
|
if (!(yyval.import)->import_performed) yychar = aEOF;
|
|
}
|
|
break;
|
|
|
|
case 40:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 407 "parser.y"
|
|
{ (yyval.str) = (yyvsp[(1) - (3)].import)->name;
|
|
if ((yyvsp[(1) - (3)].import)->import_performed) pop_import();
|
|
free((yyvsp[(1) - (3)].import));
|
|
}
|
|
break;
|
|
|
|
case 41:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 414 "parser.y"
|
|
{ (yyval.str) = (yyvsp[(3) - (5)].str); if(!parse_only) add_importlib((yyvsp[(3) - (5)].str)); }
|
|
break;
|
|
|
|
case 42:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 417 "parser.y"
|
|
{ (yyval.str) = (yyvsp[(2) - (2)].str); }
|
|
break;
|
|
|
|
case 43:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 419 "parser.y"
|
|
{ (yyval.typelib) = make_library((yyvsp[(2) - (3)].str), check_library_attrs((yyvsp[(2) - (3)].str), (yyvsp[(1) - (3)].attr_list)));
|
|
if (!parse_only) start_typelib((yyval.typelib));
|
|
}
|
|
break;
|
|
|
|
case 44:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 424 "parser.y"
|
|
{ (yyval.typelib) = (yyvsp[(1) - (4)].typelib);
|
|
(yyval.typelib)->stmts = (yyvsp[(2) - (4)].stmt_list);
|
|
if (!parse_only) end_typelib();
|
|
}
|
|
break;
|
|
|
|
case 45:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 430 "parser.y"
|
|
{ (yyval.var_list) = NULL; }
|
|
break;
|
|
|
|
case 47:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 434 "parser.y"
|
|
{ check_arg_attrs((yyvsp[(1) - (1)].var)); (yyval.var_list) = append_var( NULL, (yyvsp[(1) - (1)].var) ); }
|
|
break;
|
|
|
|
case 48:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 435 "parser.y"
|
|
{ check_arg_attrs((yyvsp[(3) - (3)].var)); (yyval.var_list) = append_var( (yyvsp[(1) - (3)].var_list), (yyvsp[(3) - (3)].var) ); }
|
|
break;
|
|
|
|
case 50:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 439 "parser.y"
|
|
{ (yyval.var_list) = append_var( (yyvsp[(1) - (3)].var_list), make_var(strdup("...")) ); }
|
|
break;
|
|
|
|
case 51:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 443 "parser.y"
|
|
{ if ((yyvsp[(2) - (3)].declspec)->stgclass != STG_NONE && (yyvsp[(2) - (3)].declspec)->stgclass != STG_REGISTER)
|
|
error_loc("invalid storage class for function parameter\n");
|
|
(yyval.var) = declare_var((yyvsp[(1) - (3)].attr_list), (yyvsp[(2) - (3)].declspec), (yyvsp[(3) - (3)].declarator), TRUE);
|
|
free((yyvsp[(2) - (3)].declspec)); free((yyvsp[(3) - (3)].declarator));
|
|
}
|
|
break;
|
|
|
|
case 52:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 448 "parser.y"
|
|
{ if ((yyvsp[(1) - (2)].declspec)->stgclass != STG_NONE && (yyvsp[(1) - (2)].declspec)->stgclass != STG_REGISTER)
|
|
error_loc("invalid storage class for function parameter\n");
|
|
(yyval.var) = declare_var(NULL, (yyvsp[(1) - (2)].declspec), (yyvsp[(2) - (2)].declarator), TRUE);
|
|
free((yyvsp[(1) - (2)].declspec)); free((yyvsp[(2) - (2)].declarator));
|
|
}
|
|
break;
|
|
|
|
case 53:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 455 "parser.y"
|
|
{ (yyval.expr) = (yyvsp[(2) - (3)].expr);
|
|
if (!(yyval.expr)->is_const)
|
|
error_loc("array dimension is not an integer constant\n");
|
|
}
|
|
break;
|
|
|
|
case 54:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 459 "parser.y"
|
|
{ (yyval.expr) = make_expr(EXPR_VOID); }
|
|
break;
|
|
|
|
case 55:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 460 "parser.y"
|
|
{ (yyval.expr) = make_expr(EXPR_VOID); }
|
|
break;
|
|
|
|
case 56:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 463 "parser.y"
|
|
{ (yyval.attr_list) = NULL; }
|
|
break;
|
|
|
|
case 58:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 468 "parser.y"
|
|
{ (yyval.attr_list) = (yyvsp[(2) - (3)].attr_list); }
|
|
break;
|
|
|
|
case 59:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 471 "parser.y"
|
|
{ (yyval.attr_list) = append_attr( NULL, (yyvsp[(1) - (1)].attr) ); }
|
|
break;
|
|
|
|
case 60:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 472 "parser.y"
|
|
{ (yyval.attr_list) = append_attr( (yyvsp[(1) - (3)].attr_list), (yyvsp[(3) - (3)].attr) ); }
|
|
break;
|
|
|
|
case 61:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 473 "parser.y"
|
|
{ (yyval.attr_list) = append_attr( (yyvsp[(1) - (4)].attr_list), (yyvsp[(4) - (4)].attr) ); }
|
|
break;
|
|
|
|
case 62:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 476 "parser.y"
|
|
{ (yyval.str_list) = append_str( NULL, (yyvsp[(1) - (1)].str) ); }
|
|
break;
|
|
|
|
case 63:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 477 "parser.y"
|
|
{ (yyval.str_list) = append_str( (yyvsp[(1) - (3)].str_list), (yyvsp[(3) - (3)].str) ); }
|
|
break;
|
|
|
|
case 64:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 480 "parser.y"
|
|
{ (yyval.attr) = NULL; }
|
|
break;
|
|
|
|
case 65:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 481 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_AGGREGATABLE); }
|
|
break;
|
|
|
|
case 66:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 482 "parser.y"
|
|
{ (yyval.attr) = make_attrp(ATTR_ANNOTATION, (yyvsp[(3) - (4)].str)); }
|
|
break;
|
|
|
|
case 67:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 483 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_APPOBJECT); }
|
|
break;
|
|
|
|
case 68:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 484 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_ASYNC); }
|
|
break;
|
|
|
|
case 69:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 485 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_AUTO_HANDLE); }
|
|
break;
|
|
|
|
case 70:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 486 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_BINDABLE); }
|
|
break;
|
|
|
|
case 71:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 487 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_BROADCAST); }
|
|
break;
|
|
|
|
case 72:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 488 "parser.y"
|
|
{ (yyval.attr) = make_attrp(ATTR_CALLAS, (yyvsp[(3) - (4)].var)); }
|
|
break;
|
|
|
|
case 73:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 489 "parser.y"
|
|
{ (yyval.attr) = make_attrp(ATTR_CASE, (yyvsp[(3) - (4)].expr_list)); }
|
|
break;
|
|
|
|
case 74:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 490 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_CODE); }
|
|
break;
|
|
|
|
case 75:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 491 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_COMMSTATUS); }
|
|
break;
|
|
|
|
case 76:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 492 "parser.y"
|
|
{ (yyval.attr) = make_attrv(ATTR_CONTEXTHANDLE, 0); }
|
|
break;
|
|
|
|
case 77:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 493 "parser.y"
|
|
{ (yyval.attr) = make_attrv(ATTR_CONTEXTHANDLE, 0); /* RPC_CONTEXT_HANDLE_DONT_SERIALIZE */ }
|
|
break;
|
|
|
|
case 78:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 494 "parser.y"
|
|
{ (yyval.attr) = make_attrv(ATTR_CONTEXTHANDLE, 0); /* RPC_CONTEXT_HANDLE_SERIALIZE */ }
|
|
break;
|
|
|
|
case 79:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 495 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_CONTROL); }
|
|
break;
|
|
|
|
case 80:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 496 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_DECODE); }
|
|
break;
|
|
|
|
case 81:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 497 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_DEFAULT); }
|
|
break;
|
|
|
|
case 82:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 498 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_DEFAULTBIND); }
|
|
break;
|
|
|
|
case 83:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 499 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_DEFAULTCOLLELEM); }
|
|
break;
|
|
|
|
case 84:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 500 "parser.y"
|
|
{ (yyval.attr) = make_attrp(ATTR_DEFAULTVALUE, (yyvsp[(3) - (4)].expr)); }
|
|
break;
|
|
|
|
case 85:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 501 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_DEFAULTVTABLE); }
|
|
break;
|
|
|
|
case 86:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 502 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_DISABLECONSISTENCYCHECK); }
|
|
break;
|
|
|
|
case 87:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 503 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_DISPLAYBIND); }
|
|
break;
|
|
|
|
case 88:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 504 "parser.y"
|
|
{ (yyval.attr) = make_attrp(ATTR_DLLNAME, (yyvsp[(3) - (4)].str)); }
|
|
break;
|
|
|
|
case 89:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 505 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_DUAL); }
|
|
break;
|
|
|
|
case 90:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 506 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_ENABLEALLOCATE); }
|
|
break;
|
|
|
|
case 91:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 507 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_ENCODE); }
|
|
break;
|
|
|
|
case 92:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 508 "parser.y"
|
|
{ (yyval.attr) = make_attrp(ATTR_ENDPOINT, (yyvsp[(3) - (4)].str_list)); }
|
|
break;
|
|
|
|
case 93:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 509 "parser.y"
|
|
{ (yyval.attr) = make_attrp(ATTR_ENTRY, (yyvsp[(3) - (4)].expr)); }
|
|
break;
|
|
|
|
case 94:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 510 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_EXPLICIT_HANDLE); }
|
|
break;
|
|
|
|
case 95:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 511 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_FAULTSTATUS); }
|
|
break;
|
|
|
|
case 96:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 512 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_FORCEALLOCATE); }
|
|
break;
|
|
|
|
case 97:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 513 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_HANDLE); }
|
|
break;
|
|
|
|
case 98:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 514 "parser.y"
|
|
{ (yyval.attr) = make_attrp(ATTR_HELPCONTEXT, (yyvsp[(3) - (4)].expr)); }
|
|
break;
|
|
|
|
case 99:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 515 "parser.y"
|
|
{ (yyval.attr) = make_attrp(ATTR_HELPFILE, (yyvsp[(3) - (4)].str)); }
|
|
break;
|
|
|
|
case 100:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 516 "parser.y"
|
|
{ (yyval.attr) = make_attrp(ATTR_HELPSTRING, (yyvsp[(3) - (4)].str)); }
|
|
break;
|
|
|
|
case 101:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 517 "parser.y"
|
|
{ (yyval.attr) = make_attrp(ATTR_HELPSTRINGCONTEXT, (yyvsp[(3) - (4)].expr)); }
|
|
break;
|
|
|
|
case 102:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 518 "parser.y"
|
|
{ (yyval.attr) = make_attrp(ATTR_HELPSTRINGDLL, (yyvsp[(3) - (4)].str)); }
|
|
break;
|
|
|
|
case 103:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 519 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_HIDDEN); }
|
|
break;
|
|
|
|
case 104:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 520 "parser.y"
|
|
{ (yyval.attr) = make_attrp(ATTR_ID, (yyvsp[(3) - (4)].expr)); }
|
|
break;
|
|
|
|
case 105:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 521 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_IDEMPOTENT); }
|
|
break;
|
|
|
|
case 106:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 522 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_IGNORE); }
|
|
break;
|
|
|
|
case 107:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 523 "parser.y"
|
|
{ (yyval.attr) = make_attrp(ATTR_IIDIS, (yyvsp[(3) - (4)].expr)); }
|
|
break;
|
|
|
|
case 108:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 524 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_IMMEDIATEBIND); }
|
|
break;
|
|
|
|
case 109:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 525 "parser.y"
|
|
{ (yyval.attr) = make_attrp(ATTR_IMPLICIT_HANDLE, (yyvsp[(3) - (4)].var)); }
|
|
break;
|
|
|
|
case 110:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 526 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_IN); }
|
|
break;
|
|
|
|
case 111:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 527 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_INPUTSYNC); }
|
|
break;
|
|
|
|
case 112:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 528 "parser.y"
|
|
{ (yyval.attr) = make_attrp(ATTR_LENGTHIS, (yyvsp[(3) - (4)].expr_list)); }
|
|
break;
|
|
|
|
case 113:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 529 "parser.y"
|
|
{ (yyval.attr) = make_attrp(ATTR_LIBLCID, (yyvsp[(3) - (4)].expr)); }
|
|
break;
|
|
|
|
case 114:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 530 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_PARAMLCID); }
|
|
break;
|
|
|
|
case 115:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 531 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_LICENSED); }
|
|
break;
|
|
|
|
case 116:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 532 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_LOCAL); }
|
|
break;
|
|
|
|
case 117:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 533 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_MAYBE); }
|
|
break;
|
|
|
|
case 118:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 534 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_MESSAGE); }
|
|
break;
|
|
|
|
case 119:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 535 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_NOCODE); }
|
|
break;
|
|
|
|
case 120:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 536 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_NONBROWSABLE); }
|
|
break;
|
|
|
|
case 121:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 537 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_NONCREATABLE); }
|
|
break;
|
|
|
|
case 122:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 538 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_NONEXTENSIBLE); }
|
|
break;
|
|
|
|
case 123:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 539 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_NOTIFY); }
|
|
break;
|
|
|
|
case 124:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 540 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_NOTIFYFLAG); }
|
|
break;
|
|
|
|
case 125:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 541 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_OBJECT); }
|
|
break;
|
|
|
|
case 126:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 542 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_ODL); }
|
|
break;
|
|
|
|
case 127:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 543 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_OLEAUTOMATION); }
|
|
break;
|
|
|
|
case 128:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 544 "parser.y"
|
|
{ (yyval.attr) = make_attrp(ATTR_OPTIMIZE, (yyvsp[(3) - (4)].str)); }
|
|
break;
|
|
|
|
case 129:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 545 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_OPTIONAL); }
|
|
break;
|
|
|
|
case 130:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 546 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_OUT); }
|
|
break;
|
|
|
|
case 131:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 547 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_PARTIALIGNORE); }
|
|
break;
|
|
|
|
case 132:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 548 "parser.y"
|
|
{ (yyval.attr) = make_attrv(ATTR_POINTERDEFAULT, (yyvsp[(3) - (4)].num)); }
|
|
break;
|
|
|
|
case 133:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 549 "parser.y"
|
|
{ (yyval.attr) = make_attrp(ATTR_PROGID, (yyvsp[(3) - (4)].str)); }
|
|
break;
|
|
|
|
case 134:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 550 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_PROPGET); }
|
|
break;
|
|
|
|
case 135:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 551 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_PROPPUT); }
|
|
break;
|
|
|
|
case 136:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 552 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_PROPPUTREF); }
|
|
break;
|
|
|
|
case 137:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 553 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_PROXY); }
|
|
break;
|
|
|
|
case 138:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 554 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_PUBLIC); }
|
|
break;
|
|
|
|
case 139:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 556 "parser.y"
|
|
{ expr_list_t *list = append_expr( NULL, (yyvsp[(3) - (6)].expr) );
|
|
list = append_expr( list, (yyvsp[(5) - (6)].expr) );
|
|
(yyval.attr) = make_attrp(ATTR_RANGE, list); }
|
|
break;
|
|
|
|
case 140:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 559 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_READONLY); }
|
|
break;
|
|
|
|
case 141:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 560 "parser.y"
|
|
{ (yyval.attr) = make_attrp(ATTR_REPRESENTAS, (yyvsp[(3) - (4)].type)); }
|
|
break;
|
|
|
|
case 142:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 561 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_REQUESTEDIT); }
|
|
break;
|
|
|
|
case 143:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 562 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_RESTRICTED); }
|
|
break;
|
|
|
|
case 144:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 563 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_RETVAL); }
|
|
break;
|
|
|
|
case 145:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 564 "parser.y"
|
|
{ (yyval.attr) = make_attrp(ATTR_SIZEIS, (yyvsp[(3) - (4)].expr_list)); }
|
|
break;
|
|
|
|
case 146:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 565 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_SOURCE); }
|
|
break;
|
|
|
|
case 147:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 566 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_STRICTCONTEXTHANDLE); }
|
|
break;
|
|
|
|
case 148:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 567 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_STRING); }
|
|
break;
|
|
|
|
case 149:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 568 "parser.y"
|
|
{ (yyval.attr) = make_attrp(ATTR_SWITCHIS, (yyvsp[(3) - (4)].expr)); }
|
|
break;
|
|
|
|
case 150:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 569 "parser.y"
|
|
{ (yyval.attr) = make_attrp(ATTR_SWITCHTYPE, (yyvsp[(3) - (4)].type)); }
|
|
break;
|
|
|
|
case 151:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 570 "parser.y"
|
|
{ (yyval.attr) = make_attrp(ATTR_TRANSMITAS, (yyvsp[(3) - (4)].type)); }
|
|
break;
|
|
|
|
case 152:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 571 "parser.y"
|
|
{ (yyval.attr) = make_attrv(ATTR_THREADING, (yyvsp[(3) - (4)].num)); }
|
|
break;
|
|
|
|
case 153:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 572 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_UIDEFAULT); }
|
|
break;
|
|
|
|
case 154:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 573 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_USESGETLASTERROR); }
|
|
break;
|
|
|
|
case 155:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 574 "parser.y"
|
|
{ (yyval.attr) = make_attrp(ATTR_USERMARSHAL, (yyvsp[(3) - (4)].type)); }
|
|
break;
|
|
|
|
case 156:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 575 "parser.y"
|
|
{ (yyval.attr) = make_attrp(ATTR_UUID, (yyvsp[(3) - (4)].uuid)); }
|
|
break;
|
|
|
|
case 157:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 576 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_V1ENUM); }
|
|
break;
|
|
|
|
case 158:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 577 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_VARARG); }
|
|
break;
|
|
|
|
case 159:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 578 "parser.y"
|
|
{ (yyval.attr) = make_attrv(ATTR_VERSION, (yyvsp[(3) - (4)].num)); }
|
|
break;
|
|
|
|
case 160:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 579 "parser.y"
|
|
{ (yyval.attr) = make_attrp(ATTR_VIPROGID, (yyvsp[(3) - (4)].str)); }
|
|
break;
|
|
|
|
case 161:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 580 "parser.y"
|
|
{ (yyval.attr) = make_attrp(ATTR_WIREMARSHAL, (yyvsp[(3) - (4)].type)); }
|
|
break;
|
|
|
|
case 162:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 581 "parser.y"
|
|
{ (yyval.attr) = make_attrv(ATTR_POINTERTYPE, (yyvsp[(1) - (1)].num)); }
|
|
break;
|
|
|
|
case 164:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 586 "parser.y"
|
|
{ if (!is_valid_uuid((yyvsp[(1) - (1)].str)))
|
|
error_loc("invalid UUID: %s\n", (yyvsp[(1) - (1)].str));
|
|
(yyval.uuid) = parse_uuid((yyvsp[(1) - (1)].str)); }
|
|
break;
|
|
|
|
case 165:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 591 "parser.y"
|
|
{ (yyval.str) = xstrdup("__cdecl"); }
|
|
break;
|
|
|
|
case 166:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 592 "parser.y"
|
|
{ (yyval.str) = xstrdup("__fastcall"); }
|
|
break;
|
|
|
|
case 167:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 593 "parser.y"
|
|
{ (yyval.str) = xstrdup("__pascal"); }
|
|
break;
|
|
|
|
case 168:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 594 "parser.y"
|
|
{ (yyval.str) = xstrdup("__stdcall"); }
|
|
break;
|
|
|
|
case 169:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 597 "parser.y"
|
|
{ (yyval.var_list) = NULL; }
|
|
break;
|
|
|
|
case 170:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 598 "parser.y"
|
|
{ (yyval.var_list) = append_var( (yyvsp[(1) - (2)].var_list), (yyvsp[(2) - (2)].var) ); }
|
|
break;
|
|
|
|
case 171:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 601 "parser.y"
|
|
{ attr_t *a = make_attrp(ATTR_CASE, append_expr( NULL, (yyvsp[(2) - (4)].expr) ));
|
|
(yyval.var) = (yyvsp[(4) - (4)].var); if (!(yyval.var)) (yyval.var) = make_var(NULL);
|
|
(yyval.var)->attrs = append_attr( (yyval.var)->attrs, a );
|
|
}
|
|
break;
|
|
|
|
case 172:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 605 "parser.y"
|
|
{ attr_t *a = make_attr(ATTR_DEFAULT);
|
|
(yyval.var) = (yyvsp[(3) - (3)].var); if (!(yyval.var)) (yyval.var) = make_var(NULL);
|
|
(yyval.var)->attrs = append_attr( (yyval.var)->attrs, a );
|
|
}
|
|
break;
|
|
|
|
case 173:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 611 "parser.y"
|
|
{ (yyval.var_list) = NULL; }
|
|
break;
|
|
|
|
case 174:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 612 "parser.y"
|
|
{ (yyval.var_list) = (yyvsp[(1) - (2)].var_list); }
|
|
break;
|
|
|
|
case 176:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 616 "parser.y"
|
|
{ if (!(yyvsp[(1) - (1)].var)->eval)
|
|
(yyvsp[(1) - (1)].var)->eval = make_exprl(EXPR_NUM, 0 /* default for first enum entry */);
|
|
(yyval.var_list) = append_var( NULL, (yyvsp[(1) - (1)].var) );
|
|
}
|
|
break;
|
|
|
|
case 177:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 620 "parser.y"
|
|
{ if (!(yyvsp[(3) - (3)].var)->eval)
|
|
{
|
|
var_t *last = LIST_ENTRY( list_tail((yyval.var_list)), var_t, entry );
|
|
enum expr_type type = EXPR_NUM;
|
|
if (last->eval->type == EXPR_HEXNUM) type = EXPR_HEXNUM;
|
|
if (last->eval->cval + 1 < 0) type = EXPR_HEXNUM;
|
|
(yyvsp[(3) - (3)].var)->eval = make_exprl(type, last->eval->cval + 1);
|
|
}
|
|
(yyval.var_list) = append_var( (yyvsp[(1) - (3)].var_list), (yyvsp[(3) - (3)].var) );
|
|
}
|
|
break;
|
|
|
|
case 178:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 632 "parser.y"
|
|
{ (yyval.var) = reg_const((yyvsp[(1) - (3)].var));
|
|
(yyval.var)->eval = (yyvsp[(3) - (3)].expr);
|
|
(yyval.var)->type = type_new_int(TYPE_BASIC_INT, 0);
|
|
}
|
|
break;
|
|
|
|
case 179:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 636 "parser.y"
|
|
{ (yyval.var) = reg_const((yyvsp[(1) - (1)].var));
|
|
(yyval.var)->type = type_new_int(TYPE_BASIC_INT, 0);
|
|
}
|
|
break;
|
|
|
|
case 180:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 641 "parser.y"
|
|
{ (yyval.type) = type_new_enum((yyvsp[(2) - (5)].str), TRUE, (yyvsp[(4) - (5)].var_list)); }
|
|
break;
|
|
|
|
case 181:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 644 "parser.y"
|
|
{ (yyval.expr_list) = append_expr( NULL, (yyvsp[(1) - (1)].expr) ); }
|
|
break;
|
|
|
|
case 182:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 645 "parser.y"
|
|
{ (yyval.expr_list) = append_expr( (yyvsp[(1) - (3)].expr_list), (yyvsp[(3) - (3)].expr) ); }
|
|
break;
|
|
|
|
case 183:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 648 "parser.y"
|
|
{ (yyval.expr) = make_expr(EXPR_VOID); }
|
|
break;
|
|
|
|
case 185:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 652 "parser.y"
|
|
{ (yyval.expr) = make_exprl(EXPR_NUM, (yyvsp[(1) - (1)].num)); }
|
|
break;
|
|
|
|
case 186:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 653 "parser.y"
|
|
{ (yyval.expr) = make_exprl(EXPR_HEXNUM, (yyvsp[(1) - (1)].num)); }
|
|
break;
|
|
|
|
case 187:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 654 "parser.y"
|
|
{ (yyval.expr) = make_exprd(EXPR_DOUBLE, (yyvsp[(1) - (1)].dbl)); }
|
|
break;
|
|
|
|
case 188:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 655 "parser.y"
|
|
{ (yyval.expr) = make_exprl(EXPR_TRUEFALSE, 0); }
|
|
break;
|
|
|
|
case 189:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 656 "parser.y"
|
|
{ (yyval.expr) = make_exprl(EXPR_NUM, 0); }
|
|
break;
|
|
|
|
case 190:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 657 "parser.y"
|
|
{ (yyval.expr) = make_exprl(EXPR_TRUEFALSE, 1); }
|
|
break;
|
|
|
|
case 191:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 658 "parser.y"
|
|
{ (yyval.expr) = make_exprs(EXPR_STRLIT, (yyvsp[(1) - (1)].str)); }
|
|
break;
|
|
|
|
case 192:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 659 "parser.y"
|
|
{ (yyval.expr) = make_exprs(EXPR_WSTRLIT, (yyvsp[(1) - (1)].str)); }
|
|
break;
|
|
|
|
case 193:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 660 "parser.y"
|
|
{ (yyval.expr) = make_exprs(EXPR_CHARCONST, (yyvsp[(1) - (1)].str)); }
|
|
break;
|
|
|
|
case 194:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 661 "parser.y"
|
|
{ (yyval.expr) = make_exprs(EXPR_IDENTIFIER, (yyvsp[(1) - (1)].str)); }
|
|
break;
|
|
|
|
case 195:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 662 "parser.y"
|
|
{ (yyval.expr) = make_expr3(EXPR_COND, (yyvsp[(1) - (5)].expr), (yyvsp[(3) - (5)].expr), (yyvsp[(5) - (5)].expr)); }
|
|
break;
|
|
|
|
case 196:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 663 "parser.y"
|
|
{ (yyval.expr) = make_expr2(EXPR_LOGOR, (yyvsp[(1) - (3)].expr), (yyvsp[(3) - (3)].expr)); }
|
|
break;
|
|
|
|
case 197:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 664 "parser.y"
|
|
{ (yyval.expr) = make_expr2(EXPR_LOGAND, (yyvsp[(1) - (3)].expr), (yyvsp[(3) - (3)].expr)); }
|
|
break;
|
|
|
|
case 198:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 665 "parser.y"
|
|
{ (yyval.expr) = make_expr2(EXPR_OR , (yyvsp[(1) - (3)].expr), (yyvsp[(3) - (3)].expr)); }
|
|
break;
|
|
|
|
case 199:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 666 "parser.y"
|
|
{ (yyval.expr) = make_expr2(EXPR_XOR, (yyvsp[(1) - (3)].expr), (yyvsp[(3) - (3)].expr)); }
|
|
break;
|
|
|
|
case 200:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 667 "parser.y"
|
|
{ (yyval.expr) = make_expr2(EXPR_AND, (yyvsp[(1) - (3)].expr), (yyvsp[(3) - (3)].expr)); }
|
|
break;
|
|
|
|
case 201:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 668 "parser.y"
|
|
{ (yyval.expr) = make_expr2(EXPR_EQUALITY, (yyvsp[(1) - (3)].expr), (yyvsp[(3) - (3)].expr)); }
|
|
break;
|
|
|
|
case 202:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 669 "parser.y"
|
|
{ (yyval.expr) = make_expr2(EXPR_INEQUALITY, (yyvsp[(1) - (3)].expr), (yyvsp[(3) - (3)].expr)); }
|
|
break;
|
|
|
|
case 203:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 670 "parser.y"
|
|
{ (yyval.expr) = make_expr2(EXPR_GTR, (yyvsp[(1) - (3)].expr), (yyvsp[(3) - (3)].expr)); }
|
|
break;
|
|
|
|
case 204:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 671 "parser.y"
|
|
{ (yyval.expr) = make_expr2(EXPR_LESS, (yyvsp[(1) - (3)].expr), (yyvsp[(3) - (3)].expr)); }
|
|
break;
|
|
|
|
case 205:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 672 "parser.y"
|
|
{ (yyval.expr) = make_expr2(EXPR_GTREQL, (yyvsp[(1) - (3)].expr), (yyvsp[(3) - (3)].expr)); }
|
|
break;
|
|
|
|
case 206:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 673 "parser.y"
|
|
{ (yyval.expr) = make_expr2(EXPR_LESSEQL, (yyvsp[(1) - (3)].expr), (yyvsp[(3) - (3)].expr)); }
|
|
break;
|
|
|
|
case 207:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 674 "parser.y"
|
|
{ (yyval.expr) = make_expr2(EXPR_SHL, (yyvsp[(1) - (3)].expr), (yyvsp[(3) - (3)].expr)); }
|
|
break;
|
|
|
|
case 208:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 675 "parser.y"
|
|
{ (yyval.expr) = make_expr2(EXPR_SHR, (yyvsp[(1) - (3)].expr), (yyvsp[(3) - (3)].expr)); }
|
|
break;
|
|
|
|
case 209:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 676 "parser.y"
|
|
{ (yyval.expr) = make_expr2(EXPR_ADD, (yyvsp[(1) - (3)].expr), (yyvsp[(3) - (3)].expr)); }
|
|
break;
|
|
|
|
case 210:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 677 "parser.y"
|
|
{ (yyval.expr) = make_expr2(EXPR_SUB, (yyvsp[(1) - (3)].expr), (yyvsp[(3) - (3)].expr)); }
|
|
break;
|
|
|
|
case 211:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 678 "parser.y"
|
|
{ (yyval.expr) = make_expr2(EXPR_MOD, (yyvsp[(1) - (3)].expr), (yyvsp[(3) - (3)].expr)); }
|
|
break;
|
|
|
|
case 212:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 679 "parser.y"
|
|
{ (yyval.expr) = make_expr2(EXPR_MUL, (yyvsp[(1) - (3)].expr), (yyvsp[(3) - (3)].expr)); }
|
|
break;
|
|
|
|
case 213:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 680 "parser.y"
|
|
{ (yyval.expr) = make_expr2(EXPR_DIV, (yyvsp[(1) - (3)].expr), (yyvsp[(3) - (3)].expr)); }
|
|
break;
|
|
|
|
case 214:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 681 "parser.y"
|
|
{ (yyval.expr) = make_expr1(EXPR_LOGNOT, (yyvsp[(2) - (2)].expr)); }
|
|
break;
|
|
|
|
case 215:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 682 "parser.y"
|
|
{ (yyval.expr) = make_expr1(EXPR_NOT, (yyvsp[(2) - (2)].expr)); }
|
|
break;
|
|
|
|
case 216:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 683 "parser.y"
|
|
{ (yyval.expr) = make_expr1(EXPR_POS, (yyvsp[(2) - (2)].expr)); }
|
|
break;
|
|
|
|
case 217:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 684 "parser.y"
|
|
{ (yyval.expr) = make_expr1(EXPR_NEG, (yyvsp[(2) - (2)].expr)); }
|
|
break;
|
|
|
|
case 218:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 685 "parser.y"
|
|
{ (yyval.expr) = make_expr1(EXPR_ADDRESSOF, (yyvsp[(2) - (2)].expr)); }
|
|
break;
|
|
|
|
case 219:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 686 "parser.y"
|
|
{ (yyval.expr) = make_expr1(EXPR_PPTR, (yyvsp[(2) - (2)].expr)); }
|
|
break;
|
|
|
|
case 220:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 687 "parser.y"
|
|
{ (yyval.expr) = make_expr2(EXPR_MEMBER, make_expr1(EXPR_PPTR, (yyvsp[(1) - (3)].expr)), make_exprs(EXPR_IDENTIFIER, (yyvsp[(3) - (3)].str))); }
|
|
break;
|
|
|
|
case 221:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 688 "parser.y"
|
|
{ (yyval.expr) = make_expr2(EXPR_MEMBER, (yyvsp[(1) - (3)].expr), make_exprs(EXPR_IDENTIFIER, (yyvsp[(3) - (3)].str))); }
|
|
break;
|
|
|
|
case 222:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 690 "parser.y"
|
|
{ (yyval.expr) = make_exprt(EXPR_CAST, declare_var(NULL, (yyvsp[(2) - (5)].declspec), (yyvsp[(3) - (5)].declarator), 0), (yyvsp[(5) - (5)].expr)); free((yyvsp[(2) - (5)].declspec)); free((yyvsp[(3) - (5)].declarator)); }
|
|
break;
|
|
|
|
case 223:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 692 "parser.y"
|
|
{ (yyval.expr) = make_exprt(EXPR_SIZEOF, declare_var(NULL, (yyvsp[(3) - (5)].declspec), (yyvsp[(4) - (5)].declarator), 0), NULL); free((yyvsp[(3) - (5)].declspec)); free((yyvsp[(4) - (5)].declarator)); }
|
|
break;
|
|
|
|
case 224:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 693 "parser.y"
|
|
{ (yyval.expr) = make_expr2(EXPR_ARRAY, (yyvsp[(1) - (4)].expr), (yyvsp[(3) - (4)].expr)); }
|
|
break;
|
|
|
|
case 225:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 694 "parser.y"
|
|
{ (yyval.expr) = (yyvsp[(2) - (3)].expr); }
|
|
break;
|
|
|
|
case 226:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 697 "parser.y"
|
|
{ (yyval.expr_list) = append_expr( NULL, (yyvsp[(1) - (1)].expr) ); }
|
|
break;
|
|
|
|
case 227:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 698 "parser.y"
|
|
{ (yyval.expr_list) = append_expr( (yyvsp[(1) - (3)].expr_list), (yyvsp[(3) - (3)].expr) ); }
|
|
break;
|
|
|
|
case 228:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 701 "parser.y"
|
|
{ (yyval.expr) = (yyvsp[(1) - (1)].expr);
|
|
if (!(yyval.expr)->is_const)
|
|
error_loc("expression is not an integer constant\n");
|
|
}
|
|
break;
|
|
|
|
case 229:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 707 "parser.y"
|
|
{ (yyval.expr) = (yyvsp[(1) - (1)].expr);
|
|
if (!(yyval.expr)->is_const && (yyval.expr)->type != EXPR_STRLIT && (yyval.expr)->type != EXPR_WSTRLIT)
|
|
error_loc("expression is not constant\n");
|
|
}
|
|
break;
|
|
|
|
case 230:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 713 "parser.y"
|
|
{ (yyval.var_list) = NULL; }
|
|
break;
|
|
|
|
case 231:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 714 "parser.y"
|
|
{ (yyval.var_list) = append_var_list((yyvsp[(1) - (2)].var_list), (yyvsp[(2) - (2)].var_list)); }
|
|
break;
|
|
|
|
case 232:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 718 "parser.y"
|
|
{ const char *first = LIST_ENTRY(list_head((yyvsp[(3) - (4)].declarator_list)), declarator_t, entry)->var->name;
|
|
check_field_attrs(first, (yyvsp[(1) - (4)].attr_list));
|
|
(yyval.var_list) = set_var_types((yyvsp[(1) - (4)].attr_list), (yyvsp[(2) - (4)].declspec), (yyvsp[(3) - (4)].declarator_list));
|
|
}
|
|
break;
|
|
|
|
case 233:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 722 "parser.y"
|
|
{ var_t *v = make_var(NULL);
|
|
v->type = (yyvsp[(2) - (3)].type); v->attrs = (yyvsp[(1) - (3)].attr_list);
|
|
(yyval.var_list) = append_var(NULL, v);
|
|
}
|
|
break;
|
|
|
|
case 234:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 729 "parser.y"
|
|
{ (yyval.var) = (yyvsp[(1) - (2)].var); }
|
|
break;
|
|
|
|
case 235:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 730 "parser.y"
|
|
{ (yyval.var) = make_var(NULL); (yyval.var)->attrs = (yyvsp[(1) - (2)].attr_list); }
|
|
break;
|
|
|
|
case 236:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 733 "parser.y"
|
|
{ (yyval.var_list) = NULL; }
|
|
break;
|
|
|
|
case 237:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 734 "parser.y"
|
|
{ (yyval.var_list) = append_var( (yyvsp[(1) - (2)].var_list), (yyvsp[(2) - (2)].var) ); }
|
|
break;
|
|
|
|
case 238:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 738 "parser.y"
|
|
{ (yyval.var) = (yyvsp[(1) - (2)].var); }
|
|
break;
|
|
|
|
case 239:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 739 "parser.y"
|
|
{ (yyval.var) = NULL; }
|
|
break;
|
|
|
|
case 240:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 742 "parser.y"
|
|
{ (yyval.var) = declare_var(check_field_attrs((yyvsp[(3) - (3)].declarator)->var->name, (yyvsp[(1) - (3)].attr_list)),
|
|
(yyvsp[(2) - (3)].declspec), (yyvsp[(3) - (3)].declarator), FALSE);
|
|
free((yyvsp[(3) - (3)].declarator));
|
|
}
|
|
break;
|
|
|
|
case 241:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 746 "parser.y"
|
|
{ var_t *v = make_var(NULL);
|
|
v->type = (yyvsp[(2) - (2)].type); v->attrs = (yyvsp[(1) - (2)].attr_list);
|
|
(yyval.var) = v;
|
|
}
|
|
break;
|
|
|
|
case 242:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 752 "parser.y"
|
|
{ (yyval.var) = (yyvsp[(1) - (1)].var);
|
|
if (type_get_type((yyval.var)->type) != TYPE_FUNCTION)
|
|
error_loc("only methods may be declared inside the methods section of a dispinterface\n");
|
|
check_function_attrs((yyval.var)->name, (yyval.var)->attrs);
|
|
}
|
|
break;
|
|
|
|
case 243:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 761 "parser.y"
|
|
{ (yyval.var) = declare_var((yyvsp[(1) - (3)].attr_list), (yyvsp[(2) - (3)].declspec), (yyvsp[(3) - (3)].declarator), FALSE);
|
|
free((yyvsp[(3) - (3)].declarator));
|
|
}
|
|
break;
|
|
|
|
case 244:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 764 "parser.y"
|
|
{ (yyval.var) = declare_var(NULL, (yyvsp[(1) - (2)].declspec), (yyvsp[(2) - (2)].declarator), FALSE);
|
|
free((yyvsp[(2) - (2)].declarator));
|
|
}
|
|
break;
|
|
|
|
case 245:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 769 "parser.y"
|
|
{ (yyval.var) = NULL; }
|
|
break;
|
|
|
|
case 247:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 773 "parser.y"
|
|
{ (yyval.str) = NULL; }
|
|
break;
|
|
|
|
case 248:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 774 "parser.y"
|
|
{ (yyval.str) = (yyvsp[(1) - (1)].str); }
|
|
break;
|
|
|
|
case 249:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 775 "parser.y"
|
|
{ (yyval.str) = (yyvsp[(1) - (1)].str); }
|
|
break;
|
|
|
|
case 250:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 778 "parser.y"
|
|
{ (yyval.var) = make_var((yyvsp[(1) - (1)].str)); }
|
|
break;
|
|
|
|
case 251:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 780 "parser.y"
|
|
{ (yyval.var) = make_var((yyvsp[(1) - (1)].str)); }
|
|
break;
|
|
|
|
case 252:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 783 "parser.y"
|
|
{ (yyval.type) = find_type_or_error((yyvsp[(1) - (1)].str), 0); }
|
|
break;
|
|
|
|
case 253:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 784 "parser.y"
|
|
{ (yyval.type) = find_type_or_error((yyvsp[(1) - (1)].str), 0); }
|
|
break;
|
|
|
|
case 255:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 786 "parser.y"
|
|
{ (yyval.type) = type_new_int(type_basic_get_type((yyvsp[(2) - (2)].type)), -1); }
|
|
break;
|
|
|
|
case 256:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 787 "parser.y"
|
|
{ (yyval.type) = type_new_int(type_basic_get_type((yyvsp[(2) - (2)].type)), 1); }
|
|
break;
|
|
|
|
case 257:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 788 "parser.y"
|
|
{ (yyval.type) = type_new_int(TYPE_BASIC_INT, 1); }
|
|
break;
|
|
|
|
case 258:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 789 "parser.y"
|
|
{ (yyval.type) = find_type_or_error((yyvsp[(1) - (1)].str), 0); }
|
|
break;
|
|
|
|
case 259:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 790 "parser.y"
|
|
{ (yyval.type) = find_type_or_error((yyvsp[(1) - (1)].str), 0); }
|
|
break;
|
|
|
|
case 260:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 791 "parser.y"
|
|
{ (yyval.type) = find_type_or_error((yyvsp[(1) - (1)].str), 0); }
|
|
break;
|
|
|
|
case 261:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 792 "parser.y"
|
|
{ (yyval.type) = find_type_or_error((yyvsp[(1) - (1)].str), 0); }
|
|
break;
|
|
|
|
case 262:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 793 "parser.y"
|
|
{ (yyval.type) = find_type_or_error((yyvsp[(1) - (1)].str), 0); }
|
|
break;
|
|
|
|
case 265:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 800 "parser.y"
|
|
{ (yyval.type) = type_new_int(TYPE_BASIC_INT, 0); }
|
|
break;
|
|
|
|
case 266:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 801 "parser.y"
|
|
{ (yyval.type) = type_new_int(TYPE_BASIC_INT16, 0); }
|
|
break;
|
|
|
|
case 267:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 802 "parser.y"
|
|
{ (yyval.type) = type_new_int(TYPE_BASIC_INT8, 0); }
|
|
break;
|
|
|
|
case 268:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 803 "parser.y"
|
|
{ (yyval.type) = type_new_int(TYPE_BASIC_INT32, 0); }
|
|
break;
|
|
|
|
case 269:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 804 "parser.y"
|
|
{ (yyval.type) = type_new_int(TYPE_BASIC_HYPER, 0); }
|
|
break;
|
|
|
|
case 270:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 805 "parser.y"
|
|
{ (yyval.type) = type_new_int(TYPE_BASIC_INT64, 0); }
|
|
break;
|
|
|
|
case 271:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 806 "parser.y"
|
|
{ (yyval.type) = type_new_int(TYPE_BASIC_CHAR, 0); }
|
|
break;
|
|
|
|
case 272:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 807 "parser.y"
|
|
{ (yyval.type) = type_new_int(TYPE_BASIC_INT3264, 0); }
|
|
break;
|
|
|
|
case 273:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 810 "parser.y"
|
|
{ (yyval.type) = type_new_coclass((yyvsp[(2) - (2)].str)); }
|
|
break;
|
|
|
|
case 274:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 811 "parser.y"
|
|
{ (yyval.type) = find_type((yyvsp[(2) - (2)].str), 0);
|
|
if (type_get_type_detect_alias((yyval.type)) != TYPE_COCLASS)
|
|
error_loc("%s was not declared a coclass at %s:%d\n",
|
|
(yyvsp[(2) - (2)].str), (yyval.type)->loc_info.input_name,
|
|
(yyval.type)->loc_info.line_number);
|
|
}
|
|
break;
|
|
|
|
case 275:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 819 "parser.y"
|
|
{ (yyval.type) = (yyvsp[(2) - (2)].type);
|
|
check_def((yyval.type));
|
|
(yyval.type)->attrs = check_coclass_attrs((yyvsp[(2) - (2)].type)->name, (yyvsp[(1) - (2)].attr_list));
|
|
}
|
|
break;
|
|
|
|
case 276:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 826 "parser.y"
|
|
{ (yyval.type) = type_coclass_define((yyvsp[(1) - (5)].type), (yyvsp[(3) - (5)].ifref_list)); }
|
|
break;
|
|
|
|
case 277:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 829 "parser.y"
|
|
{ (yyval.ifref_list) = NULL; }
|
|
break;
|
|
|
|
case 278:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 830 "parser.y"
|
|
{ (yyval.ifref_list) = append_ifref( (yyvsp[(1) - (2)].ifref_list), (yyvsp[(2) - (2)].ifref) ); }
|
|
break;
|
|
|
|
case 279:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 834 "parser.y"
|
|
{ (yyval.ifref) = make_ifref((yyvsp[(2) - (2)].type)); (yyval.ifref)->attrs = (yyvsp[(1) - (2)].attr_list); }
|
|
break;
|
|
|
|
case 280:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 837 "parser.y"
|
|
{ (yyval.type) = get_type(TYPE_INTERFACE, (yyvsp[(2) - (2)].str), 0); }
|
|
break;
|
|
|
|
case 281:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 838 "parser.y"
|
|
{ (yyval.type) = get_type(TYPE_INTERFACE, (yyvsp[(2) - (2)].str), 0); }
|
|
break;
|
|
|
|
case 282:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 841 "parser.y"
|
|
{ attr_t *attrs;
|
|
(yyval.type) = (yyvsp[(2) - (2)].type);
|
|
check_def((yyval.type));
|
|
attrs = make_attr(ATTR_DISPINTERFACE);
|
|
(yyval.type)->attrs = append_attr( check_dispiface_attrs((yyvsp[(2) - (2)].type)->name, (yyvsp[(1) - (2)].attr_list)), attrs );
|
|
(yyval.type)->defined = TRUE;
|
|
}
|
|
break;
|
|
|
|
case 283:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 850 "parser.y"
|
|
{ (yyval.var_list) = NULL; }
|
|
break;
|
|
|
|
case 284:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 851 "parser.y"
|
|
{ (yyval.var_list) = append_var( (yyvsp[(1) - (3)].var_list), (yyvsp[(2) - (3)].var) ); }
|
|
break;
|
|
|
|
case 285:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 854 "parser.y"
|
|
{ (yyval.var_list) = NULL; }
|
|
break;
|
|
|
|
case 286:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 855 "parser.y"
|
|
{ (yyval.var_list) = append_var( (yyvsp[(1) - (3)].var_list), (yyvsp[(2) - (3)].var) ); }
|
|
break;
|
|
|
|
case 287:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 861 "parser.y"
|
|
{ (yyval.type) = (yyvsp[(1) - (5)].type);
|
|
type_dispinterface_define((yyval.type), (yyvsp[(3) - (5)].var_list), (yyvsp[(4) - (5)].var_list));
|
|
}
|
|
break;
|
|
|
|
case 288:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 865 "parser.y"
|
|
{ (yyval.type) = (yyvsp[(1) - (5)].type);
|
|
type_dispinterface_define_from_iface((yyval.type), (yyvsp[(3) - (5)].type));
|
|
}
|
|
break;
|
|
|
|
case 289:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 870 "parser.y"
|
|
{ (yyval.type) = NULL; }
|
|
break;
|
|
|
|
case 290:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 871 "parser.y"
|
|
{ (yyval.type) = find_type_or_error2((yyvsp[(2) - (2)].str), 0); }
|
|
break;
|
|
|
|
case 291:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 874 "parser.y"
|
|
{ (yyval.type) = get_type(TYPE_INTERFACE, (yyvsp[(2) - (2)].str), 0); }
|
|
break;
|
|
|
|
case 292:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 875 "parser.y"
|
|
{ (yyval.type) = get_type(TYPE_INTERFACE, (yyvsp[(2) - (2)].str), 0); }
|
|
break;
|
|
|
|
case 293:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 878 "parser.y"
|
|
{ (yyval.ifinfo).interface = (yyvsp[(2) - (2)].type);
|
|
(yyval.ifinfo).old_pointer_default = pointer_default;
|
|
if (is_attr((yyvsp[(1) - (2)].attr_list), ATTR_POINTERDEFAULT))
|
|
pointer_default = get_attrv((yyvsp[(1) - (2)].attr_list), ATTR_POINTERDEFAULT);
|
|
check_def((yyvsp[(2) - (2)].type));
|
|
(yyvsp[(2) - (2)].type)->attrs = check_iface_attrs((yyvsp[(2) - (2)].type)->name, (yyvsp[(1) - (2)].attr_list));
|
|
(yyvsp[(2) - (2)].type)->defined = TRUE;
|
|
}
|
|
break;
|
|
|
|
case 294:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 889 "parser.y"
|
|
{ (yyval.type) = (yyvsp[(1) - (6)].ifinfo).interface;
|
|
type_interface_define((yyval.type), (yyvsp[(2) - (6)].type), (yyvsp[(4) - (6)].stmt_list));
|
|
pointer_default = (yyvsp[(1) - (6)].ifinfo).old_pointer_default;
|
|
}
|
|
break;
|
|
|
|
case 295:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 897 "parser.y"
|
|
{ (yyval.type) = (yyvsp[(1) - (8)].ifinfo).interface;
|
|
type_interface_define((yyval.type), find_type_or_error2((yyvsp[(3) - (8)].str), 0), (yyvsp[(6) - (8)].stmt_list));
|
|
pointer_default = (yyvsp[(1) - (8)].ifinfo).old_pointer_default;
|
|
}
|
|
break;
|
|
|
|
case 296:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 901 "parser.y"
|
|
{ (yyval.type) = (yyvsp[(1) - (2)].type); }
|
|
break;
|
|
|
|
case 297:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 905 "parser.y"
|
|
{ (yyval.type) = (yyvsp[(1) - (2)].type); }
|
|
break;
|
|
|
|
case 298:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 906 "parser.y"
|
|
{ (yyval.type) = (yyvsp[(1) - (2)].type); }
|
|
break;
|
|
|
|
case 299:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 909 "parser.y"
|
|
{ (yyval.type) = type_new_module((yyvsp[(2) - (2)].str)); }
|
|
break;
|
|
|
|
case 300:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 910 "parser.y"
|
|
{ (yyval.type) = type_new_module((yyvsp[(2) - (2)].str)); }
|
|
break;
|
|
|
|
case 301:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 913 "parser.y"
|
|
{ (yyval.type) = (yyvsp[(2) - (2)].type);
|
|
(yyval.type)->attrs = check_module_attrs((yyvsp[(2) - (2)].type)->name, (yyvsp[(1) - (2)].attr_list));
|
|
}
|
|
break;
|
|
|
|
case 302:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 919 "parser.y"
|
|
{ (yyval.type) = (yyvsp[(1) - (5)].type);
|
|
type_module_define((yyval.type), (yyvsp[(3) - (5)].stmt_list));
|
|
}
|
|
break;
|
|
|
|
case 303:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 925 "parser.y"
|
|
{ (yyval.stgclass) = STG_EXTERN; }
|
|
break;
|
|
|
|
case 304:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 926 "parser.y"
|
|
{ (yyval.stgclass) = STG_STATIC; }
|
|
break;
|
|
|
|
case 305:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 927 "parser.y"
|
|
{ (yyval.stgclass) = STG_REGISTER; }
|
|
break;
|
|
|
|
case 306:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 931 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_INLINE); }
|
|
break;
|
|
|
|
case 307:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 935 "parser.y"
|
|
{ (yyval.attr) = make_attr(ATTR_CONST); }
|
|
break;
|
|
|
|
case 308:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 938 "parser.y"
|
|
{ (yyval.attr_list) = NULL; }
|
|
break;
|
|
|
|
case 309:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 939 "parser.y"
|
|
{ (yyval.attr_list) = append_attr((yyvsp[(1) - (2)].attr_list), (yyvsp[(2) - (2)].attr)); }
|
|
break;
|
|
|
|
case 310:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 942 "parser.y"
|
|
{ (yyval.declspec) = make_decl_spec((yyvsp[(1) - (2)].type), (yyvsp[(2) - (2)].declspec), NULL, NULL, STG_NONE); }
|
|
break;
|
|
|
|
case 311:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 944 "parser.y"
|
|
{ (yyval.declspec) = make_decl_spec((yyvsp[(2) - (3)].type), (yyvsp[(1) - (3)].declspec), (yyvsp[(3) - (3)].declspec), NULL, STG_NONE); }
|
|
break;
|
|
|
|
case 312:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 947 "parser.y"
|
|
{ (yyval.declspec) = NULL; }
|
|
break;
|
|
|
|
case 314:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 952 "parser.y"
|
|
{ (yyval.declspec) = make_decl_spec(NULL, (yyvsp[(2) - (2)].declspec), NULL, (yyvsp[(1) - (2)].attr), STG_NONE); }
|
|
break;
|
|
|
|
case 315:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 953 "parser.y"
|
|
{ (yyval.declspec) = make_decl_spec(NULL, (yyvsp[(2) - (2)].declspec), NULL, (yyvsp[(1) - (2)].attr), STG_NONE); }
|
|
break;
|
|
|
|
case 316:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 954 "parser.y"
|
|
{ (yyval.declspec) = make_decl_spec(NULL, (yyvsp[(2) - (2)].declspec), NULL, NULL, (yyvsp[(1) - (2)].stgclass)); }
|
|
break;
|
|
|
|
case 317:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 959 "parser.y"
|
|
{ (yyval.declarator) = (yyvsp[(3) - (3)].declarator); (yyval.declarator)->type = append_ptrchain_type((yyval.declarator)->type, type_new_pointer(pointer_default, NULL, (yyvsp[(2) - (3)].attr_list))); }
|
|
break;
|
|
|
|
case 318:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 960 "parser.y"
|
|
{ (yyval.declarator) = (yyvsp[(2) - (2)].declarator); if ((yyval.declarator)->func_type) (yyval.declarator)->func_type->attrs = append_attr((yyval.declarator)->func_type->attrs, make_attrp(ATTR_CALLCONV, (yyvsp[(1) - (2)].str)));
|
|
else if ((yyval.declarator)->type) (yyval.declarator)->type->attrs = append_attr((yyval.declarator)->type->attrs, make_attrp(ATTR_CALLCONV, (yyvsp[(1) - (2)].str))); }
|
|
break;
|
|
|
|
case 320:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 966 "parser.y"
|
|
{ (yyval.declarator) = make_declarator((yyvsp[(1) - (1)].var)); }
|
|
break;
|
|
|
|
case 321:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 967 "parser.y"
|
|
{ (yyval.declarator) = (yyvsp[(2) - (3)].declarator); }
|
|
break;
|
|
|
|
case 322:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 968 "parser.y"
|
|
{ (yyval.declarator) = (yyvsp[(1) - (2)].declarator); (yyval.declarator)->array = append_array((yyval.declarator)->array, (yyvsp[(2) - (2)].expr)); }
|
|
break;
|
|
|
|
case 323:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 969 "parser.y"
|
|
{ (yyval.declarator) = (yyvsp[(1) - (4)].declarator);
|
|
(yyval.declarator)->func_type = append_ptrchain_type((yyval.declarator)->type, type_new_function((yyvsp[(3) - (4)].var_list)));
|
|
(yyval.declarator)->type = NULL;
|
|
}
|
|
break;
|
|
|
|
case 324:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 978 "parser.y"
|
|
{ (yyval.declarator) = (yyvsp[(3) - (3)].declarator); (yyval.declarator)->type = append_ptrchain_type((yyval.declarator)->type, type_new_pointer(pointer_default, NULL, (yyvsp[(2) - (3)].attr_list))); }
|
|
break;
|
|
|
|
case 325:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 979 "parser.y"
|
|
{ (yyval.declarator) = (yyvsp[(2) - (2)].declarator); if ((yyval.declarator)->func_type) (yyval.declarator)->func_type->attrs = append_attr((yyval.declarator)->func_type->attrs, make_attrp(ATTR_CALLCONV, (yyvsp[(1) - (2)].str)));
|
|
else if ((yyval.declarator)->type) (yyval.declarator)->type->attrs = append_attr((yyval.declarator)->type->attrs, make_attrp(ATTR_CALLCONV, (yyvsp[(1) - (2)].str))); }
|
|
break;
|
|
|
|
case 327:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 987 "parser.y"
|
|
{ (yyval.declarator) = (yyvsp[(3) - (3)].declarator); (yyval.declarator)->type = append_ptrchain_type((yyval.declarator)->type, type_new_pointer(pointer_default, NULL, (yyvsp[(2) - (3)].attr_list))); }
|
|
break;
|
|
|
|
case 328:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 988 "parser.y"
|
|
{ (yyval.declarator) = (yyvsp[(2) - (2)].declarator); if ((yyval.declarator)->func_type) (yyval.declarator)->func_type->attrs = append_attr((yyval.declarator)->func_type->attrs, make_attrp(ATTR_CALLCONV, (yyvsp[(1) - (2)].str)));
|
|
else if ((yyval.declarator)->type) (yyval.declarator)->type->attrs = append_attr((yyval.declarator)->type->attrs, make_attrp(ATTR_CALLCONV, (yyvsp[(1) - (2)].str))); }
|
|
break;
|
|
|
|
case 329:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 993 "parser.y"
|
|
{ (yyval.declarator) = make_declarator(NULL); }
|
|
break;
|
|
|
|
case 331:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 999 "parser.y"
|
|
{ (yyval.declarator) = (yyvsp[(2) - (3)].declarator); }
|
|
break;
|
|
|
|
case 332:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1000 "parser.y"
|
|
{ (yyval.declarator) = (yyvsp[(1) - (2)].declarator); (yyval.declarator)->array = append_array((yyval.declarator)->array, (yyvsp[(2) - (2)].expr)); }
|
|
break;
|
|
|
|
case 333:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1001 "parser.y"
|
|
{ (yyval.declarator) = make_declarator(NULL); (yyval.declarator)->array = append_array((yyval.declarator)->array, (yyvsp[(1) - (1)].expr)); }
|
|
break;
|
|
|
|
case 334:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1003 "parser.y"
|
|
{ (yyval.declarator) = make_declarator(NULL);
|
|
(yyval.declarator)->func_type = append_ptrchain_type((yyval.declarator)->type, type_new_function((yyvsp[(2) - (3)].var_list)));
|
|
(yyval.declarator)->type = NULL;
|
|
}
|
|
break;
|
|
|
|
case 335:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1008 "parser.y"
|
|
{ (yyval.declarator) = (yyvsp[(1) - (4)].declarator);
|
|
(yyval.declarator)->func_type = append_ptrchain_type((yyval.declarator)->type, type_new_function((yyvsp[(3) - (4)].var_list)));
|
|
(yyval.declarator)->type = NULL;
|
|
}
|
|
break;
|
|
|
|
case 336:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1017 "parser.y"
|
|
{ (yyval.declarator) = (yyvsp[(3) - (3)].declarator); (yyval.declarator)->type = append_ptrchain_type((yyval.declarator)->type, type_new_pointer(pointer_default, NULL, (yyvsp[(2) - (3)].attr_list))); }
|
|
break;
|
|
|
|
case 337:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1018 "parser.y"
|
|
{ (yyval.declarator) = (yyvsp[(2) - (2)].declarator); (yyval.declarator)->type->attrs = append_attr((yyval.declarator)->type->attrs, make_attrp(ATTR_CALLCONV, (yyvsp[(1) - (2)].str))); }
|
|
break;
|
|
|
|
case 339:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1025 "parser.y"
|
|
{ (yyval.declarator) = (yyvsp[(3) - (3)].declarator); (yyval.declarator)->type = append_ptrchain_type((yyval.declarator)->type, type_new_pointer(pointer_default, NULL, (yyvsp[(2) - (3)].attr_list))); }
|
|
break;
|
|
|
|
case 340:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1026 "parser.y"
|
|
{ (yyval.declarator) = (yyvsp[(2) - (2)].declarator); (yyval.declarator)->type->attrs = append_attr((yyval.declarator)->type->attrs, make_attrp(ATTR_CALLCONV, (yyvsp[(1) - (2)].str))); }
|
|
break;
|
|
|
|
case 341:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1030 "parser.y"
|
|
{ (yyval.declarator) = make_declarator(NULL); }
|
|
break;
|
|
|
|
case 343:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1038 "parser.y"
|
|
{ (yyval.declarator) = make_declarator((yyvsp[(1) - (1)].var)); }
|
|
break;
|
|
|
|
case 344:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1039 "parser.y"
|
|
{ (yyval.declarator) = (yyvsp[(2) - (3)].declarator); }
|
|
break;
|
|
|
|
case 345:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1040 "parser.y"
|
|
{ (yyval.declarator) = (yyvsp[(1) - (2)].declarator); (yyval.declarator)->array = append_array((yyval.declarator)->array, (yyvsp[(2) - (2)].expr)); }
|
|
break;
|
|
|
|
case 346:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1041 "parser.y"
|
|
{ (yyval.declarator) = make_declarator(NULL); (yyval.declarator)->array = append_array((yyval.declarator)->array, (yyvsp[(1) - (1)].expr)); }
|
|
break;
|
|
|
|
case 347:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1043 "parser.y"
|
|
{ (yyval.declarator) = make_declarator(NULL);
|
|
(yyval.declarator)->func_type = append_ptrchain_type((yyval.declarator)->type, type_new_function((yyvsp[(2) - (3)].var_list)));
|
|
(yyval.declarator)->type = NULL;
|
|
}
|
|
break;
|
|
|
|
case 348:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1048 "parser.y"
|
|
{ (yyval.declarator) = (yyvsp[(1) - (4)].declarator);
|
|
(yyval.declarator)->func_type = append_ptrchain_type((yyval.declarator)->type, type_new_function((yyvsp[(3) - (4)].var_list)));
|
|
(yyval.declarator)->type = NULL;
|
|
}
|
|
break;
|
|
|
|
case 349:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1055 "parser.y"
|
|
{ (yyval.declarator_list) = append_declarator( NULL, (yyvsp[(1) - (1)].declarator) ); }
|
|
break;
|
|
|
|
case 350:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1056 "parser.y"
|
|
{ (yyval.declarator_list) = append_declarator( (yyvsp[(1) - (3)].declarator_list), (yyvsp[(3) - (3)].declarator) ); }
|
|
break;
|
|
|
|
case 351:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1059 "parser.y"
|
|
{ (yyval.expr) = NULL; }
|
|
break;
|
|
|
|
case 352:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1060 "parser.y"
|
|
{ (yyval.expr) = (yyvsp[(2) - (2)].expr); }
|
|
break;
|
|
|
|
case 353:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1063 "parser.y"
|
|
{ (yyval.declarator) = (yyvsp[(1) - (2)].declarator); (yyval.declarator)->bits = (yyvsp[(2) - (2)].expr);
|
|
if (!(yyval.declarator)->bits && !(yyval.declarator)->var->name)
|
|
error_loc("unnamed fields are not allowed\n");
|
|
}
|
|
break;
|
|
|
|
case 354:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1070 "parser.y"
|
|
{ (yyval.declarator_list) = append_declarator( NULL, (yyvsp[(1) - (1)].declarator) ); }
|
|
break;
|
|
|
|
case 355:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1072 "parser.y"
|
|
{ (yyval.declarator_list) = append_declarator( (yyvsp[(1) - (3)].declarator_list), (yyvsp[(3) - (3)].declarator) ); }
|
|
break;
|
|
|
|
case 356:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1076 "parser.y"
|
|
{ (yyval.declarator) = (yyvsp[(1) - (1)].declarator); }
|
|
break;
|
|
|
|
case 357:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1077 "parser.y"
|
|
{ (yyval.declarator) = (yyvsp[(1) - (3)].declarator); (yyvsp[(1) - (3)].declarator)->var->eval = (yyvsp[(3) - (3)].expr); }
|
|
break;
|
|
|
|
case 358:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1081 "parser.y"
|
|
{ (yyval.num) = THREADING_APARTMENT; }
|
|
break;
|
|
|
|
case 359:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1082 "parser.y"
|
|
{ (yyval.num) = THREADING_NEUTRAL; }
|
|
break;
|
|
|
|
case 360:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1083 "parser.y"
|
|
{ (yyval.num) = THREADING_SINGLE; }
|
|
break;
|
|
|
|
case 361:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1084 "parser.y"
|
|
{ (yyval.num) = THREADING_FREE; }
|
|
break;
|
|
|
|
case 362:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1085 "parser.y"
|
|
{ (yyval.num) = THREADING_BOTH; }
|
|
break;
|
|
|
|
case 363:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1089 "parser.y"
|
|
{ (yyval.num) = RPC_FC_RP; }
|
|
break;
|
|
|
|
case 364:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1090 "parser.y"
|
|
{ (yyval.num) = RPC_FC_UP; }
|
|
break;
|
|
|
|
case 365:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1091 "parser.y"
|
|
{ (yyval.num) = RPC_FC_FP; }
|
|
break;
|
|
|
|
case 366:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1094 "parser.y"
|
|
{ (yyval.type) = type_new_struct((yyvsp[(2) - (5)].str), TRUE, (yyvsp[(4) - (5)].var_list)); }
|
|
break;
|
|
|
|
case 367:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1097 "parser.y"
|
|
{ (yyval.type) = type_new_void(); }
|
|
break;
|
|
|
|
case 368:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1098 "parser.y"
|
|
{ (yyval.type) = find_type_or_error((yyvsp[(1) - (1)].str), 0); }
|
|
break;
|
|
|
|
case 369:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1099 "parser.y"
|
|
{ (yyval.type) = (yyvsp[(1) - (1)].type); }
|
|
break;
|
|
|
|
case 370:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1100 "parser.y"
|
|
{ (yyval.type) = (yyvsp[(1) - (1)].type); }
|
|
break;
|
|
|
|
case 371:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1101 "parser.y"
|
|
{ (yyval.type) = type_new_enum((yyvsp[(2) - (2)].str), FALSE, NULL); }
|
|
break;
|
|
|
|
case 372:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1102 "parser.y"
|
|
{ (yyval.type) = (yyvsp[(1) - (1)].type); }
|
|
break;
|
|
|
|
case 373:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1103 "parser.y"
|
|
{ (yyval.type) = type_new_struct((yyvsp[(2) - (2)].str), FALSE, NULL); }
|
|
break;
|
|
|
|
case 374:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1104 "parser.y"
|
|
{ (yyval.type) = (yyvsp[(1) - (1)].type); }
|
|
break;
|
|
|
|
case 375:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1105 "parser.y"
|
|
{ (yyval.type) = type_new_nonencapsulated_union((yyvsp[(2) - (2)].str), FALSE, NULL); }
|
|
break;
|
|
|
|
case 376:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1106 "parser.y"
|
|
{ (yyval.type) = make_safearray((yyvsp[(3) - (4)].type)); }
|
|
break;
|
|
|
|
case 377:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1110 "parser.y"
|
|
{ reg_typedefs((yyvsp[(3) - (4)].declspec), (yyvsp[(4) - (4)].declarator_list), check_typedef_attrs((yyvsp[(2) - (4)].attr_list)));
|
|
(yyval.statement) = make_statement_typedef((yyvsp[(4) - (4)].declarator_list));
|
|
}
|
|
break;
|
|
|
|
case 378:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1116 "parser.y"
|
|
{ (yyval.type) = type_new_nonencapsulated_union((yyvsp[(2) - (5)].str), TRUE, (yyvsp[(4) - (5)].var_list)); }
|
|
break;
|
|
|
|
case 379:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1119 "parser.y"
|
|
{ (yyval.type) = type_new_encapsulated_union((yyvsp[(2) - (10)].str), (yyvsp[(5) - (10)].var), (yyvsp[(7) - (10)].var), (yyvsp[(9) - (10)].var_list)); }
|
|
break;
|
|
|
|
case 380:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1123 "parser.y"
|
|
{ (yyval.num) = MAKEVERSION((yyvsp[(1) - (1)].num), 0); }
|
|
break;
|
|
|
|
case 381:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 1124 "parser.y"
|
|
{ (yyval.num) = MAKEVERSION((yyvsp[(1) - (3)].num), (yyvsp[(3) - (3)].num)); }
|
|
break;
|
|
|
|
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 5489 "parser.tab.c"
|
|
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);
|
|
}
|
|
|
|
*++yyvsp = yylval;
|
|
|
|
|
|
/* 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 2067 of yacc.c */
|
|
#line 1127 "parser.y"
|
|
|
|
|
|
static void decl_builtin_basic(const char *name, enum type_basic_type type)
|
|
{
|
|
type_t *t = type_new_basic(type);
|
|
reg_type(t, name, 0);
|
|
}
|
|
|
|
static void decl_builtin_alias(const char *name, type_t *t)
|
|
{
|
|
reg_type(type_new_alias(t, name), name, 0);
|
|
}
|
|
|
|
void init_types(void)
|
|
{
|
|
decl_builtin_basic("byte", TYPE_BASIC_BYTE);
|
|
decl_builtin_basic("wchar_t", TYPE_BASIC_WCHAR);
|
|
decl_builtin_basic("float", TYPE_BASIC_FLOAT);
|
|
decl_builtin_basic("double", TYPE_BASIC_DOUBLE);
|
|
decl_builtin_basic("error_status_t", TYPE_BASIC_ERROR_STATUS_T);
|
|
decl_builtin_basic("handle_t", TYPE_BASIC_HANDLE);
|
|
decl_builtin_alias("boolean", type_new_basic(TYPE_BASIC_BYTE));
|
|
}
|
|
|
|
static str_list_t *append_str(str_list_t *list, char *str)
|
|
{
|
|
struct str_list_entry_t *entry;
|
|
|
|
if (!str) return list;
|
|
if (!list)
|
|
{
|
|
list = xmalloc( sizeof(*list) );
|
|
list_init( list );
|
|
}
|
|
entry = xmalloc( sizeof(*entry) );
|
|
entry->str = str;
|
|
list_add_tail( list, &entry->entry );
|
|
return list;
|
|
}
|
|
|
|
static attr_list_t *append_attr(attr_list_t *list, attr_t *attr)
|
|
{
|
|
attr_t *attr_existing;
|
|
if (!attr) return list;
|
|
if (!list)
|
|
{
|
|
list = xmalloc( sizeof(*list) );
|
|
list_init( list );
|
|
}
|
|
LIST_FOR_EACH_ENTRY(attr_existing, list, attr_t, entry)
|
|
if (attr_existing->type == attr->type)
|
|
{
|
|
parser_warning("duplicate attribute %s\n", get_attr_display_name(attr->type));
|
|
/* use the last attribute, like MIDL does */
|
|
list_remove(&attr_existing->entry);
|
|
break;
|
|
}
|
|
list_add_tail( list, &attr->entry );
|
|
return list;
|
|
}
|
|
|
|
static attr_list_t *move_attr(attr_list_t *dst, attr_list_t *src, enum attr_type type)
|
|
{
|
|
attr_t *attr;
|
|
if (!src) return dst;
|
|
LIST_FOR_EACH_ENTRY(attr, src, attr_t, entry)
|
|
if (attr->type == type)
|
|
{
|
|
list_remove(&attr->entry);
|
|
return append_attr(dst, attr);
|
|
}
|
|
return dst;
|
|
}
|
|
|
|
static attr_list_t *append_attr_list(attr_list_t *new_list, attr_list_t *old_list)
|
|
{
|
|
struct list *entry;
|
|
|
|
if (!old_list) return new_list;
|
|
|
|
while ((entry = list_head(old_list)))
|
|
{
|
|
attr_t *attr = LIST_ENTRY(entry, attr_t, entry);
|
|
list_remove(entry);
|
|
new_list = append_attr(new_list, attr);
|
|
}
|
|
return new_list;
|
|
}
|
|
|
|
static attr_list_t *dupattrs(const attr_list_t *list)
|
|
{
|
|
attr_list_t *new_list;
|
|
const attr_t *attr;
|
|
|
|
if (!list) return NULL;
|
|
|
|
new_list = xmalloc( sizeof(*list) );
|
|
list_init( new_list );
|
|
LIST_FOR_EACH_ENTRY(attr, list, const attr_t, entry)
|
|
{
|
|
attr_t *new_attr = xmalloc(sizeof(*new_attr));
|
|
*new_attr = *attr;
|
|
list_add_tail(new_list, &new_attr->entry);
|
|
}
|
|
return new_list;
|
|
}
|
|
|
|
static decl_spec_t *make_decl_spec(type_t *type, decl_spec_t *left, decl_spec_t *right, attr_t *attr, enum storage_class stgclass)
|
|
{
|
|
decl_spec_t *declspec = left ? left : right;
|
|
if (!declspec)
|
|
{
|
|
declspec = xmalloc(sizeof(*declspec));
|
|
declspec->type = NULL;
|
|
declspec->attrs = NULL;
|
|
declspec->stgclass = STG_NONE;
|
|
}
|
|
declspec->type = type;
|
|
if (left && declspec != left)
|
|
{
|
|
declspec->attrs = append_attr_list(declspec->attrs, left->attrs);
|
|
if (declspec->stgclass == STG_NONE)
|
|
declspec->stgclass = left->stgclass;
|
|
else if (left->stgclass != STG_NONE)
|
|
error_loc("only one storage class can be specified\n");
|
|
assert(!left->type);
|
|
free(left);
|
|
}
|
|
if (right && declspec != right)
|
|
{
|
|
declspec->attrs = append_attr_list(declspec->attrs, right->attrs);
|
|
if (declspec->stgclass == STG_NONE)
|
|
declspec->stgclass = right->stgclass;
|
|
else if (right->stgclass != STG_NONE)
|
|
error_loc("only one storage class can be specified\n");
|
|
assert(!right->type);
|
|
free(right);
|
|
}
|
|
|
|
declspec->attrs = append_attr(declspec->attrs, attr);
|
|
if (declspec->stgclass == STG_NONE)
|
|
declspec->stgclass = stgclass;
|
|
else if (stgclass != STG_NONE)
|
|
error_loc("only one storage class can be specified\n");
|
|
|
|
/* apply attributes to type */
|
|
if (type && declspec->attrs)
|
|
{
|
|
attr_list_t *attrs;
|
|
declspec->type = duptype(type, 1);
|
|
attrs = dupattrs(type->attrs);
|
|
declspec->type->attrs = append_attr_list(attrs, declspec->attrs);
|
|
declspec->attrs = NULL;
|
|
}
|
|
|
|
return declspec;
|
|
}
|
|
|
|
static attr_t *make_attr(enum attr_type type)
|
|
{
|
|
attr_t *a = xmalloc(sizeof(attr_t));
|
|
a->type = type;
|
|
a->u.ival = 0;
|
|
return a;
|
|
}
|
|
|
|
static attr_t *make_attrv(enum attr_type type, unsigned int val)
|
|
{
|
|
attr_t *a = xmalloc(sizeof(attr_t));
|
|
a->type = type;
|
|
a->u.ival = val;
|
|
return a;
|
|
}
|
|
|
|
static attr_t *make_attrp(enum attr_type type, void *val)
|
|
{
|
|
attr_t *a = xmalloc(sizeof(attr_t));
|
|
a->type = type;
|
|
a->u.pval = val;
|
|
return a;
|
|
}
|
|
|
|
static expr_list_t *append_expr(expr_list_t *list, expr_t *expr)
|
|
{
|
|
if (!expr) return list;
|
|
if (!list)
|
|
{
|
|
list = xmalloc( sizeof(*list) );
|
|
list_init( list );
|
|
}
|
|
list_add_tail( list, &expr->entry );
|
|
return list;
|
|
}
|
|
|
|
static array_dims_t *append_array(array_dims_t *list, expr_t *expr)
|
|
{
|
|
if (!expr) return list;
|
|
if (!list)
|
|
{
|
|
list = xmalloc( sizeof(*list) );
|
|
list_init( list );
|
|
}
|
|
list_add_tail( list, &expr->entry );
|
|
return list;
|
|
}
|
|
|
|
static struct list type_pool = LIST_INIT(type_pool);
|
|
typedef struct
|
|
{
|
|
type_t data;
|
|
struct list link;
|
|
} type_pool_node_t;
|
|
|
|
type_t *alloc_type(void)
|
|
{
|
|
type_pool_node_t *node = xmalloc(sizeof *node);
|
|
list_add_tail(&type_pool, &node->link);
|
|
return &node->data;
|
|
}
|
|
|
|
void set_all_tfswrite(int val)
|
|
{
|
|
type_pool_node_t *node;
|
|
LIST_FOR_EACH_ENTRY(node, &type_pool, type_pool_node_t, link)
|
|
node->data.tfswrite = val;
|
|
}
|
|
|
|
void clear_all_offsets(void)
|
|
{
|
|
type_pool_node_t *node;
|
|
LIST_FOR_EACH_ENTRY(node, &type_pool, type_pool_node_t, link)
|
|
node->data.typestring_offset = node->data.ptrdesc = 0;
|
|
}
|
|
|
|
static void type_function_add_head_arg(type_t *type, var_t *arg)
|
|
{
|
|
if (!type->details.function->args)
|
|
{
|
|
type->details.function->args = xmalloc( sizeof(*type->details.function->args) );
|
|
list_init( type->details.function->args );
|
|
}
|
|
list_add_head( type->details.function->args, &arg->entry );
|
|
}
|
|
|
|
static int is_allowed_range_type(const type_t *type)
|
|
{
|
|
switch (type_get_type(type))
|
|
{
|
|
case TYPE_ENUM:
|
|
return TRUE;
|
|
case TYPE_BASIC:
|
|
switch (type_basic_get_type(type))
|
|
{
|
|
case TYPE_BASIC_INT8:
|
|
case TYPE_BASIC_INT16:
|
|
case TYPE_BASIC_INT32:
|
|
case TYPE_BASIC_INT64:
|
|
case TYPE_BASIC_INT:
|
|
case TYPE_BASIC_INT3264:
|
|
case TYPE_BASIC_BYTE:
|
|
case TYPE_BASIC_CHAR:
|
|
case TYPE_BASIC_WCHAR:
|
|
case TYPE_BASIC_HYPER:
|
|
return TRUE;
|
|
case TYPE_BASIC_FLOAT:
|
|
case TYPE_BASIC_DOUBLE:
|
|
case TYPE_BASIC_ERROR_STATUS_T:
|
|
case TYPE_BASIC_HANDLE:
|
|
return FALSE;
|
|
}
|
|
return FALSE;
|
|
default:
|
|
return FALSE;
|
|
}
|
|
}
|
|
|
|
static type_t *append_ptrchain_type(type_t *ptrchain, type_t *type)
|
|
{
|
|
type_t *ptrchain_type;
|
|
if (!ptrchain)
|
|
return type;
|
|
for (ptrchain_type = ptrchain; type_pointer_get_ref(ptrchain_type); ptrchain_type = type_pointer_get_ref(ptrchain_type))
|
|
;
|
|
assert(ptrchain_type->type_type == TYPE_POINTER);
|
|
ptrchain_type->details.pointer.ref = type;
|
|
return ptrchain;
|
|
}
|
|
|
|
static var_t *declare_var(attr_list_t *attrs, decl_spec_t *decl_spec, const declarator_t *decl,
|
|
int top)
|
|
{
|
|
var_t *v = decl->var;
|
|
expr_list_t *sizes = get_attrp(attrs, ATTR_SIZEIS);
|
|
expr_list_t *lengs = get_attrp(attrs, ATTR_LENGTHIS);
|
|
int sizeless;
|
|
expr_t *dim;
|
|
type_t **ptype;
|
|
array_dims_t *arr = decl ? decl->array : NULL;
|
|
type_t *func_type = decl ? decl->func_type : NULL;
|
|
type_t *type = decl_spec->type;
|
|
|
|
/* In case of a range attribute, duplicate the type to keep track of
|
|
* the min/max values in the type format string */
|
|
if(is_attr(attrs, ATTR_RANGE))
|
|
type = duptype(type, 1);
|
|
|
|
if (is_attr(type->attrs, ATTR_INLINE))
|
|
{
|
|
if (!func_type)
|
|
error_loc("inline attribute applied to non-function type\n");
|
|
else
|
|
{
|
|
type_t *t;
|
|
/* move inline attribute from return type node to function node */
|
|
for (t = func_type; is_ptr(t); t = type_pointer_get_ref(t))
|
|
;
|
|
t->attrs = move_attr(t->attrs, type->attrs, ATTR_INLINE);
|
|
}
|
|
}
|
|
|
|
/* add type onto the end of the pointers in pident->type */
|
|
v->type = append_ptrchain_type(decl ? decl->type : NULL, type);
|
|
v->stgclass = decl_spec->stgclass;
|
|
v->attrs = attrs;
|
|
|
|
/* check for pointer attribute being applied to non-pointer, non-array
|
|
* type */
|
|
if (!arr)
|
|
{
|
|
int ptr_attr = get_attrv(v->attrs, ATTR_POINTERTYPE);
|
|
const type_t *ptr = NULL;
|
|
/* pointer attributes on the left side of the type belong to the function
|
|
* pointer, if one is being declared */
|
|
type_t **pt = func_type ? &func_type : &v->type;
|
|
for (ptr = *pt; ptr && !ptr_attr; )
|
|
{
|
|
ptr_attr = get_attrv(ptr->attrs, ATTR_POINTERTYPE);
|
|
if (!ptr_attr && type_is_alias(ptr))
|
|
ptr = type_alias_get_aliasee(ptr);
|
|
else
|
|
break;
|
|
}
|
|
if (is_ptr(ptr))
|
|
{
|
|
if (ptr_attr && ptr_attr != RPC_FC_UP &&
|
|
type_get_type(type_pointer_get_ref(ptr)) == TYPE_INTERFACE)
|
|
warning_loc_info(&v->loc_info,
|
|
"%s: pointer attribute applied to interface "
|
|
"pointer type has no effect\n", v->name);
|
|
if (!ptr_attr && top && (*pt)->details.pointer.def_fc != RPC_FC_RP)
|
|
{
|
|
/* FIXME: this is a horrible hack to cope with the issue that we
|
|
* store an offset to the typeformat string in the type object, but
|
|
* two typeformat strings may be written depending on whether the
|
|
* pointer is a toplevel parameter or not */
|
|
*pt = duptype(*pt, 1);
|
|
}
|
|
}
|
|
else if (ptr_attr)
|
|
error_loc("%s: pointer attribute applied to non-pointer type\n", v->name);
|
|
}
|
|
|
|
if (is_attr(v->attrs, ATTR_STRING))
|
|
{
|
|
type_t *t = type;
|
|
|
|
if (!is_ptr(v->type) && !arr)
|
|
error_loc("'%s': [string] attribute applied to non-pointer, non-array type\n",
|
|
v->name);
|
|
|
|
while (is_ptr(t))
|
|
t = type_pointer_get_ref(t);
|
|
|
|
if (type_get_type(t) != TYPE_BASIC &&
|
|
(get_basic_fc(t) != RPC_FC_CHAR &&
|
|
get_basic_fc(t) != RPC_FC_BYTE &&
|
|
get_basic_fc(t) != RPC_FC_WCHAR))
|
|
{
|
|
error_loc("'%s': [string] attribute is only valid on 'char', 'byte', or 'wchar_t' pointers and arrays\n",
|
|
v->name);
|
|
}
|
|
}
|
|
|
|
if (is_attr(v->attrs, ATTR_V1ENUM))
|
|
{
|
|
if (type_get_type_detect_alias(v->type) != TYPE_ENUM)
|
|
error_loc("'%s': [v1_enum] attribute applied to non-enum type\n", v->name);
|
|
}
|
|
|
|
if (is_attr(v->attrs, ATTR_RANGE) && !is_allowed_range_type(v->type))
|
|
error_loc("'%s': [range] attribute applied to non-integer type\n",
|
|
v->name);
|
|
|
|
ptype = &v->type;
|
|
sizeless = FALSE;
|
|
if (arr) LIST_FOR_EACH_ENTRY_REV(dim, arr, expr_t, entry)
|
|
{
|
|
if (sizeless)
|
|
error_loc("%s: only the first array dimension can be unspecified\n", v->name);
|
|
|
|
if (dim->is_const)
|
|
{
|
|
if (dim->cval <= 0)
|
|
error_loc("%s: array dimension must be positive\n", v->name);
|
|
|
|
/* FIXME: should use a type_memsize that allows us to pass in a pointer size */
|
|
if (0)
|
|
{
|
|
unsigned int size = type_memsize(v->type);
|
|
|
|
if (0xffffffffu / size < dim->cval)
|
|
error_loc("%s: total array size is too large\n", v->name);
|
|
}
|
|
}
|
|
else
|
|
sizeless = TRUE;
|
|
|
|
*ptype = type_new_array(NULL, *ptype, FALSE,
|
|
dim->is_const ? dim->cval : 0,
|
|
dim->is_const ? NULL : dim, NULL,
|
|
pointer_default);
|
|
}
|
|
|
|
ptype = &v->type;
|
|
if (sizes) LIST_FOR_EACH_ENTRY(dim, sizes, expr_t, entry)
|
|
{
|
|
if (dim->type != EXPR_VOID)
|
|
{
|
|
if (is_array(*ptype))
|
|
{
|
|
if (!type_array_get_conformance(*ptype) ||
|
|
type_array_get_conformance(*ptype)->type != EXPR_VOID)
|
|
error_loc("%s: cannot specify size_is for an already sized array\n", v->name);
|
|
else
|
|
*ptype = type_new_array((*ptype)->name,
|
|
type_array_get_element(*ptype), FALSE,
|
|
0, dim, NULL, 0);
|
|
}
|
|
else if (is_ptr(*ptype))
|
|
*ptype = type_new_array((*ptype)->name, type_pointer_get_ref(*ptype), TRUE,
|
|
0, dim, NULL, pointer_default);
|
|
else
|
|
error_loc("%s: size_is attribute applied to illegal type\n", v->name);
|
|
}
|
|
|
|
if (is_ptr(*ptype))
|
|
ptype = &(*ptype)->details.pointer.ref;
|
|
else if (is_array(*ptype))
|
|
ptype = &(*ptype)->details.array.elem;
|
|
else
|
|
error_loc("%s: too many expressions in size_is attribute\n", v->name);
|
|
}
|
|
|
|
ptype = &v->type;
|
|
if (lengs) LIST_FOR_EACH_ENTRY(dim, lengs, expr_t, entry)
|
|
{
|
|
if (dim->type != EXPR_VOID)
|
|
{
|
|
if (is_array(*ptype))
|
|
{
|
|
*ptype = type_new_array((*ptype)->name,
|
|
type_array_get_element(*ptype),
|
|
type_array_is_decl_as_ptr(*ptype),
|
|
type_array_get_dim(*ptype),
|
|
type_array_get_conformance(*ptype),
|
|
dim, type_array_get_ptr_default_fc(*ptype));
|
|
}
|
|
else
|
|
error_loc("%s: length_is attribute applied to illegal type\n", v->name);
|
|
}
|
|
|
|
if (is_ptr(*ptype))
|
|
ptype = &(*ptype)->details.pointer.ref;
|
|
else if (is_array(*ptype))
|
|
ptype = &(*ptype)->details.array.elem;
|
|
else
|
|
error_loc("%s: too many expressions in length_is attribute\n", v->name);
|
|
}
|
|
|
|
/* v->type is currently pointing to the type on the left-side of the
|
|
* declaration, so we need to fix this up so that it is the return type of the
|
|
* function and make v->type point to the function side of the declaration */
|
|
if (func_type)
|
|
{
|
|
type_t *ft, *t;
|
|
type_t *return_type = v->type;
|
|
v->type = func_type;
|
|
for (ft = v->type; is_ptr(ft); ft = type_pointer_get_ref(ft))
|
|
;
|
|
assert(type_get_type_detect_alias(ft) == TYPE_FUNCTION);
|
|
ft->details.function->retval = make_var(xstrdup("_RetVal"));
|
|
ft->details.function->retval->type = return_type;
|
|
/* move calling convention attribute, if present, from pointer nodes to
|
|
* function node */
|
|
for (t = v->type; is_ptr(t); t = type_pointer_get_ref(t))
|
|
ft->attrs = move_attr(ft->attrs, t->attrs, ATTR_CALLCONV);
|
|
}
|
|
else
|
|
{
|
|
type_t *t;
|
|
for (t = v->type; is_ptr(t); t = type_pointer_get_ref(t))
|
|
if (is_attr(t->attrs, ATTR_CALLCONV))
|
|
error_loc("calling convention applied to non-function-pointer type\n");
|
|
}
|
|
|
|
if (decl->bits)
|
|
v->type = type_new_bitfield(v->type, decl->bits);
|
|
|
|
return v;
|
|
}
|
|
|
|
static var_list_t *set_var_types(attr_list_t *attrs, decl_spec_t *decl_spec, declarator_list_t *decls)
|
|
{
|
|
declarator_t *decl, *next;
|
|
var_list_t *var_list = NULL;
|
|
|
|
LIST_FOR_EACH_ENTRY_SAFE( decl, next, decls, declarator_t, entry )
|
|
{
|
|
var_t *var = declare_var(attrs, decl_spec, decl, 0);
|
|
var_list = append_var(var_list, var);
|
|
free(decl);
|
|
}
|
|
free(decl_spec);
|
|
return var_list;
|
|
}
|
|
|
|
static ifref_list_t *append_ifref(ifref_list_t *list, ifref_t *iface)
|
|
{
|
|
if (!iface) return list;
|
|
if (!list)
|
|
{
|
|
list = xmalloc( sizeof(*list) );
|
|
list_init( list );
|
|
}
|
|
list_add_tail( list, &iface->entry );
|
|
return list;
|
|
}
|
|
|
|
static ifref_t *make_ifref(type_t *iface)
|
|
{
|
|
ifref_t *l = xmalloc(sizeof(ifref_t));
|
|
l->iface = iface;
|
|
l->attrs = NULL;
|
|
return l;
|
|
}
|
|
|
|
var_list_t *append_var(var_list_t *list, var_t *var)
|
|
{
|
|
if (!var) return list;
|
|
if (!list)
|
|
{
|
|
list = xmalloc( sizeof(*list) );
|
|
list_init( list );
|
|
}
|
|
list_add_tail( list, &var->entry );
|
|
return list;
|
|
}
|
|
|
|
static var_list_t *append_var_list(var_list_t *list, var_list_t *vars)
|
|
{
|
|
if (!vars) return list;
|
|
if (!list)
|
|
{
|
|
list = xmalloc( sizeof(*list) );
|
|
list_init( list );
|
|
}
|
|
list_move_tail( list, vars );
|
|
return list;
|
|
}
|
|
|
|
var_t *make_var(char *name)
|
|
{
|
|
var_t *v = xmalloc(sizeof(var_t));
|
|
v->name = name;
|
|
v->type = NULL;
|
|
v->attrs = NULL;
|
|
v->eval = NULL;
|
|
v->stgclass = STG_NONE;
|
|
init_loc_info(&v->loc_info);
|
|
return v;
|
|
}
|
|
|
|
static declarator_list_t *append_declarator(declarator_list_t *list, declarator_t *d)
|
|
{
|
|
if (!d) return list;
|
|
if (!list) {
|
|
list = xmalloc(sizeof(*list));
|
|
list_init(list);
|
|
}
|
|
list_add_tail(list, &d->entry);
|
|
return list;
|
|
}
|
|
|
|
static declarator_t *make_declarator(var_t *var)
|
|
{
|
|
declarator_t *d = xmalloc(sizeof(*d));
|
|
d->var = var ? var : make_var(NULL);
|
|
d->type = NULL;
|
|
d->func_type = NULL;
|
|
d->array = NULL;
|
|
d->bits = NULL;
|
|
return d;
|
|
}
|
|
|
|
static type_t *make_safearray(type_t *type)
|
|
{
|
|
return type_new_array(NULL, type_new_alias(type, "SAFEARRAY"), TRUE, 0,
|
|
NULL, NULL, RPC_FC_RP);
|
|
}
|
|
|
|
static typelib_t *make_library(const char *name, const attr_list_t *attrs)
|
|
{
|
|
typelib_t *typelib = xmalloc(sizeof(*typelib));
|
|
typelib->name = xstrdup(name);
|
|
typelib->attrs = attrs;
|
|
list_init( &typelib->importlibs );
|
|
return typelib;
|
|
}
|
|
|
|
#define HASHMAX 64
|
|
|
|
static int hash_ident(const char *name)
|
|
{
|
|
const char *p = name;
|
|
int sum = 0;
|
|
/* a simple sum hash is probably good enough */
|
|
while (*p) {
|
|
sum += *p;
|
|
p++;
|
|
}
|
|
return sum & (HASHMAX-1);
|
|
}
|
|
|
|
/***** type repository *****/
|
|
|
|
struct rtype {
|
|
const char *name;
|
|
type_t *type;
|
|
int t;
|
|
struct rtype *next;
|
|
};
|
|
|
|
struct rtype *type_hash[HASHMAX];
|
|
|
|
type_t *reg_type(type_t *type, const char *name, int t)
|
|
{
|
|
struct rtype *nt;
|
|
int hash;
|
|
if (!name) {
|
|
error_loc("registering named type without name\n");
|
|
return type;
|
|
}
|
|
hash = hash_ident(name);
|
|
nt = xmalloc(sizeof(struct rtype));
|
|
nt->name = name;
|
|
nt->type = type;
|
|
nt->t = t;
|
|
nt->next = type_hash[hash];
|
|
type_hash[hash] = nt;
|
|
if ((t == tsSTRUCT || t == tsUNION))
|
|
fix_incomplete_types(type);
|
|
return type;
|
|
}
|
|
|
|
static int is_incomplete(const type_t *t)
|
|
{
|
|
return !t->defined &&
|
|
(type_get_type_detect_alias(t) == TYPE_STRUCT ||
|
|
type_get_type_detect_alias(t) == TYPE_UNION ||
|
|
type_get_type_detect_alias(t) == TYPE_ENCAPSULATED_UNION);
|
|
}
|
|
|
|
void add_incomplete(type_t *t)
|
|
{
|
|
struct typenode *tn = xmalloc(sizeof *tn);
|
|
tn->type = t;
|
|
list_add_tail(&incomplete_types, &tn->entry);
|
|
}
|
|
|
|
static void fix_type(type_t *t)
|
|
{
|
|
if (type_is_alias(t) && is_incomplete(t)) {
|
|
type_t *ot = type_alias_get_aliasee(t);
|
|
fix_type(ot);
|
|
if (type_get_type_detect_alias(ot) == TYPE_STRUCT ||
|
|
type_get_type_detect_alias(ot) == TYPE_UNION ||
|
|
type_get_type_detect_alias(ot) == TYPE_ENCAPSULATED_UNION)
|
|
t->details.structure = ot->details.structure;
|
|
t->defined = ot->defined;
|
|
}
|
|
}
|
|
|
|
static void fix_incomplete(void)
|
|
{
|
|
struct typenode *tn, *next;
|
|
|
|
LIST_FOR_EACH_ENTRY_SAFE(tn, next, &incomplete_types, struct typenode, entry) {
|
|
fix_type(tn->type);
|
|
list_remove(&tn->entry);
|
|
free(tn);
|
|
}
|
|
}
|
|
|
|
static void fix_incomplete_types(type_t *complete_type)
|
|
{
|
|
struct typenode *tn, *next;
|
|
|
|
LIST_FOR_EACH_ENTRY_SAFE(tn, next, &incomplete_types, struct typenode, entry)
|
|
{
|
|
if (type_is_equal(complete_type, tn->type))
|
|
{
|
|
tn->type->details.structure = complete_type->details.structure;
|
|
list_remove(&tn->entry);
|
|
free(tn);
|
|
}
|
|
}
|
|
}
|
|
|
|
static type_t *reg_typedefs(decl_spec_t *decl_spec, declarator_list_t *decls, attr_list_t *attrs)
|
|
{
|
|
const declarator_t *decl;
|
|
type_t *type = decl_spec->type;
|
|
|
|
/* We must generate names for tagless enum, struct or union.
|
|
Typedef-ing a tagless enum, struct or union means we want the typedef
|
|
to be included in a library hence the public attribute. */
|
|
if ((type_get_type_detect_alias(type) == TYPE_ENUM ||
|
|
type_get_type_detect_alias(type) == TYPE_STRUCT ||
|
|
type_get_type_detect_alias(type) == TYPE_UNION ||
|
|
type_get_type_detect_alias(type) == TYPE_ENCAPSULATED_UNION) &&
|
|
!type->name && !parse_only)
|
|
{
|
|
if (! is_attr(attrs, ATTR_PUBLIC))
|
|
attrs = append_attr( attrs, make_attr(ATTR_PUBLIC) );
|
|
type->name = gen_name();
|
|
}
|
|
else if (is_attr(attrs, ATTR_UUID) && !is_attr(attrs, ATTR_PUBLIC))
|
|
attrs = append_attr( attrs, make_attr(ATTR_PUBLIC) );
|
|
|
|
/* Append the SWITCHTYPE attribute to a non-encapsulated union if it does not already have it. */
|
|
if (type_get_type_detect_alias(type) == TYPE_UNION &&
|
|
is_attr(attrs, ATTR_SWITCHTYPE) &&
|
|
!is_attr(type->attrs, ATTR_SWITCHTYPE))
|
|
type->attrs = append_attr(type->attrs, make_attrp(ATTR_SWITCHTYPE, get_attrp(attrs, ATTR_SWITCHTYPE)));
|
|
|
|
LIST_FOR_EACH_ENTRY( decl, decls, const declarator_t, entry )
|
|
{
|
|
|
|
if (decl->var->name) {
|
|
type_t *cur;
|
|
var_t *name;
|
|
|
|
cur = find_type(decl->var->name, 0);
|
|
if (cur)
|
|
error_loc("%s: redefinition error; original definition was at %s:%d\n",
|
|
cur->name, cur->loc_info.input_name,
|
|
cur->loc_info.line_number);
|
|
|
|
name = declare_var(attrs, decl_spec, decl, 0);
|
|
cur = type_new_alias(name->type, name->name);
|
|
cur->attrs = attrs;
|
|
|
|
if (is_incomplete(cur))
|
|
add_incomplete(cur);
|
|
reg_type(cur, cur->name, 0);
|
|
}
|
|
}
|
|
return type;
|
|
}
|
|
|
|
type_t *find_type(const char *name, int t)
|
|
{
|
|
struct rtype *cur = type_hash[hash_ident(name)];
|
|
while (cur && (cur->t != t || strcmp(cur->name, name)))
|
|
cur = cur->next;
|
|
return cur ? cur->type : NULL;
|
|
}
|
|
|
|
static type_t *find_type_or_error(const char *name, int t)
|
|
{
|
|
type_t *type = find_type(name, t);
|
|
if (!type) {
|
|
error_loc("type '%s' not found\n", name);
|
|
return NULL;
|
|
}
|
|
return type;
|
|
}
|
|
|
|
static type_t *find_type_or_error2(char *name, int t)
|
|
{
|
|
type_t *tp = find_type_or_error(name, t);
|
|
free(name);
|
|
return tp;
|
|
}
|
|
|
|
int is_type(const char *name)
|
|
{
|
|
return find_type(name, 0) != NULL;
|
|
}
|
|
|
|
type_t *get_type(enum type_type type, char *name, int t)
|
|
{
|
|
type_t *tp;
|
|
if (name) {
|
|
tp = find_type(name, t);
|
|
if (tp) {
|
|
free(name);
|
|
return tp;
|
|
}
|
|
}
|
|
tp = make_type(type);
|
|
tp->name = name;
|
|
if (!name) return tp;
|
|
return reg_type(tp, name, t);
|
|
}
|
|
|
|
/***** constant repository *****/
|
|
|
|
struct rconst {
|
|
char *name;
|
|
var_t *var;
|
|
struct rconst *next;
|
|
};
|
|
|
|
struct rconst *const_hash[HASHMAX];
|
|
|
|
static var_t *reg_const(var_t *var)
|
|
{
|
|
struct rconst *nc;
|
|
int hash;
|
|
if (!var->name) {
|
|
error_loc("registering constant without name\n");
|
|
return var;
|
|
}
|
|
hash = hash_ident(var->name);
|
|
nc = xmalloc(sizeof(struct rconst));
|
|
nc->name = var->name;
|
|
nc->var = var;
|
|
nc->next = const_hash[hash];
|
|
const_hash[hash] = nc;
|
|
return var;
|
|
}
|
|
|
|
var_t *find_const(const char *name, int f)
|
|
{
|
|
struct rconst *cur = const_hash[hash_ident(name)];
|
|
while (cur && strcmp(cur->name, name))
|
|
cur = cur->next;
|
|
if (!cur) {
|
|
if (f) error_loc("constant '%s' not found\n", name);
|
|
return NULL;
|
|
}
|
|
return cur->var;
|
|
}
|
|
|
|
static char *gen_name(void)
|
|
{
|
|
static const char format[] = "__WIDL_%s_generated_name_%08lX";
|
|
static unsigned long n = 0;
|
|
static const char *file_id;
|
|
static size_t size;
|
|
char *name;
|
|
|
|
if (! file_id)
|
|
{
|
|
char *dst = dup_basename(input_name, ".idl");
|
|
file_id = dst;
|
|
|
|
for (; *dst; ++dst)
|
|
if (! isalnum((unsigned char) *dst))
|
|
*dst = '_';
|
|
|
|
size = sizeof format - 7 + strlen(file_id) + 8;
|
|
}
|
|
|
|
name = xmalloc(size);
|
|
sprintf(name, format, file_id, n++);
|
|
return name;
|
|
}
|
|
|
|
struct allowed_attr
|
|
{
|
|
unsigned int dce_compatible : 1;
|
|
unsigned int acf : 1;
|
|
unsigned int on_interface : 1;
|
|
unsigned int on_function : 1;
|
|
unsigned int on_arg : 1;
|
|
unsigned int on_type : 1;
|
|
unsigned int on_enum : 1;
|
|
unsigned int on_struct : 1;
|
|
unsigned int on_union : 1;
|
|
unsigned int on_field : 1;
|
|
unsigned int on_library : 1;
|
|
unsigned int on_dispinterface : 1;
|
|
unsigned int on_module : 1;
|
|
unsigned int on_coclass : 1;
|
|
const char *display_name;
|
|
};
|
|
|
|
struct allowed_attr allowed_attr[] =
|
|
{
|
|
/* attr { D ACF I Fn ARG T En St Un Fi L DI M C <display name> } */
|
|
/* ATTR_AGGREGATABLE */ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, "aggregatable" },
|
|
/* ATTR_ANNOTATION */ { 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, "annotation" },
|
|
/* ATTR_APPOBJECT */ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, "appobject" },
|
|
/* ATTR_ASYNC */ { 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "async" },
|
|
/* ATTR_AUTO_HANDLE */ { 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "auto_handle" },
|
|
/* ATTR_BINDABLE */ { 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "bindable" },
|
|
/* ATTR_BROADCAST */ { 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "broadcast" },
|
|
/* ATTR_CALLAS */ { 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "call_as" },
|
|
/* ATTR_CALLCONV */ { 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL },
|
|
/* ATTR_CASE */ { 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, "case" },
|
|
/* ATTR_CODE */ { 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "code" },
|
|
/* ATTR_COMMSTATUS */ { 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, "comm_status" },
|
|
/* ATTR_CONST */ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "const" },
|
|
/* ATTR_CONTEXTHANDLE */ { 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "context_handle" },
|
|
/* ATTR_CONTROL */ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, "control" },
|
|
/* ATTR_DECODE */ { 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "decode" },
|
|
/* ATTR_DEFAULT */ { 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, "default" },
|
|
/* ATTR_DEFAULTBIND */ { 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "defaultbind" },
|
|
/* ATTR_DEFAULTCOLLELEM */ { 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "defaultcollelem" },
|
|
/* ATTR_DEFAULTVALUE */ { 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, "defaultvalue" },
|
|
/* ATTR_DEFAULTVTABLE */ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, "defaultvtable" },
|
|
/* ATTR_DISABLECONSISTENCYCHECK */{ 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, "disable_consistency_check" },
|
|
/* ATTR_DISPINTERFACE */ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL },
|
|
/* ATTR_DISPLAYBIND */ { 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "displaybind" },
|
|
/* ATTR_DLLNAME */ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, "dllname" },
|
|
/* ATTR_DUAL */ { 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "dual" },
|
|
/* ATTR_ENABLEALLOCATE */ { 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "enable_allocate" },
|
|
/* ATTR_ENCODE */ { 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "encode" },
|
|
/* ATTR_ENDPOINT */ { 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "endpoint" },
|
|
/* ATTR_ENTRY */ { 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "entry" },
|
|
/* ATTR_EXPLICIT_HANDLE */ { 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "explicit_handle" },
|
|
/* ATTR_FAULTSTATUS */ { 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, "fault_status" },
|
|
/* ATTR_FORCEALLOCATE */ { 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, "force_allocate" },
|
|
/* ATTR_HANDLE */ { 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "handle" },
|
|
/* ATTR_HELPCONTEXT */ { 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, "helpcontext" },
|
|
/* ATTR_HELPFILE */ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, "helpfile" },
|
|
/* ATTR_HELPSTRING */ { 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, "helpstring" },
|
|
/* ATTR_HELPSTRINGCONTEXT */ { 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, "helpstringcontext" },
|
|
/* ATTR_HELPSTRINGDLL */ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, "helpstringdll" },
|
|
/* ATTR_HIDDEN */ { 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, "hidden" },
|
|
/* ATTR_ID */ { 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, "id" },
|
|
/* ATTR_IDEMPOTENT */ { 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "idempotent" },
|
|
/* ATTR_IGNORE */ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, "ignore" },
|
|
/* ATTR_IIDIS */ { 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, "iid_is" },
|
|
/* ATTR_IMMEDIATEBIND */ { 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "immediatebind" },
|
|
/* ATTR_IMPLICIT_HANDLE */ { 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "implicit_handle" },
|
|
/* ATTR_IN */ { 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, "in" },
|
|
/* ATTR_INLINE */ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "inline" },
|
|
/* ATTR_INPUTSYNC */ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "inputsync" },
|
|
/* ATTR_LENGTHIS */ { 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, "length_is" },
|
|
/* ATTR_LIBLCID */ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, "lcid" },
|
|
/* ATTR_LICENSED */ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, "licensed" },
|
|
/* ATTR_LOCAL */ { 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "local" },
|
|
/* ATTR_MAYBE */ { 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "maybe" },
|
|
/* ATTR_MESSAGE */ { 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "message" },
|
|
/* ATTR_NOCODE */ { 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "nocode" },
|
|
/* ATTR_NONBROWSABLE */ { 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "nonbrowsable" },
|
|
/* ATTR_NONCREATABLE */ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, "noncreatable" },
|
|
/* ATTR_NONEXTENSIBLE */ { 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "nonextensible" },
|
|
/* ATTR_NOTIFY */ { 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "notify" },
|
|
/* ATTR_NOTIFYFLAG */ { 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "notify_flag" },
|
|
/* ATTR_OBJECT */ { 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "object" },
|
|
/* ATTR_ODL */ { 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, "odl" },
|
|
/* ATTR_OLEAUTOMATION */ { 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "oleautomation" },
|
|
/* ATTR_OPTIMIZE */ { 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "optimize" },
|
|
/* ATTR_OPTIONAL */ { 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, "optional" },
|
|
/* ATTR_OUT */ { 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, "out" },
|
|
/* ATTR_PARAMLCID */ { 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, "lcid" },
|
|
/* ATTR_PARTIALIGNORE */ { 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, "partial_ignore" },
|
|
/* ATTR_POINTERDEFAULT */ { 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "pointer_default" },
|
|
/* ATTR_POINTERTYPE */ { 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, "ref, unique or ptr" },
|
|
/* ATTR_PROGID */ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, "progid" },
|
|
/* ATTR_PROPGET */ { 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "propget" },
|
|
/* ATTR_PROPPUT */ { 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "propput" },
|
|
/* ATTR_PROPPUTREF */ { 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "propputref" },
|
|
/* ATTR_PROXY */ { 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "proxy" },
|
|
/* ATTR_PUBLIC */ { 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "public" },
|
|
/* ATTR_RANGE */ { 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, "range" },
|
|
/* ATTR_READONLY */ { 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, "readonly" },
|
|
/* ATTR_REPRESENTAS */ { 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "represent_as" },
|
|
/* ATTR_REQUESTEDIT */ { 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "requestedit" },
|
|
/* ATTR_RESTRICTED */ { 0, 0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, "restricted" },
|
|
/* ATTR_RETVAL */ { 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, "retval" },
|
|
/* ATTR_SIZEIS */ { 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, "size_is" },
|
|
/* ATTR_SOURCE */ { 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, "source" },
|
|
/* ATTR_STRICTCONTEXTHANDLE */ { 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "strict_context_handle" },
|
|
/* ATTR_STRING */ { 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, "string" },
|
|
/* ATTR_SWITCHIS */ { 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, "switch_is" },
|
|
/* ATTR_SWITCHTYPE */ { 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, "switch_type" },
|
|
/* ATTR_THREADING */ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, "threading" },
|
|
/* ATTR_TRANSMITAS */ { 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "transmit_as" },
|
|
/* ATTR_UIDEFAULT */ { 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "uidefault" },
|
|
/* ATTR_USESGETLASTERROR */ { 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "usesgetlasterror" },
|
|
/* ATTR_USERMARSHAL */ { 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "user_marshal" },
|
|
/* ATTR_UUID */ { 1, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, "uuid" },
|
|
/* ATTR_V1ENUM */ { 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, "v1_enum" },
|
|
/* ATTR_VARARG */ { 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "vararg" },
|
|
/* ATTR_VERSION */ { 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, "version" },
|
|
/* ATTR_VIPROGID */ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, "vi_progid" },
|
|
/* ATTR_WIREMARSHAL */ { 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "wire_marshal" },
|
|
};
|
|
|
|
const char *get_attr_display_name(enum attr_type type)
|
|
{
|
|
return allowed_attr[type].display_name;
|
|
}
|
|
|
|
static attr_list_t *check_iface_attrs(const char *name, attr_list_t *attrs)
|
|
{
|
|
const attr_t *attr;
|
|
if (!attrs) return attrs;
|
|
LIST_FOR_EACH_ENTRY(attr, attrs, const attr_t, entry)
|
|
{
|
|
if (!allowed_attr[attr->type].on_interface)
|
|
error_loc("inapplicable attribute %s for interface %s\n",
|
|
allowed_attr[attr->type].display_name, name);
|
|
if (attr->type == ATTR_IMPLICIT_HANDLE)
|
|
{
|
|
const var_t *var = attr->u.pval;
|
|
if (type_get_type( var->type) == TYPE_BASIC &&
|
|
type_basic_get_type( var->type ) == TYPE_BASIC_HANDLE)
|
|
continue;
|
|
if (is_aliaschain_attr( var->type, ATTR_HANDLE ))
|
|
continue;
|
|
error_loc("attribute %s requires a handle type in interface %s\n",
|
|
allowed_attr[attr->type].display_name, name);
|
|
}
|
|
}
|
|
return attrs;
|
|
}
|
|
|
|
static attr_list_t *check_function_attrs(const char *name, attr_list_t *attrs)
|
|
{
|
|
const attr_t *attr;
|
|
if (!attrs) return attrs;
|
|
LIST_FOR_EACH_ENTRY(attr, attrs, const attr_t, entry)
|
|
{
|
|
if (!allowed_attr[attr->type].on_function)
|
|
error_loc("inapplicable attribute %s for function %s\n",
|
|
allowed_attr[attr->type].display_name, name);
|
|
}
|
|
return attrs;
|
|
}
|
|
|
|
static void check_arg_attrs(const var_t *arg)
|
|
{
|
|
const attr_t *attr;
|
|
|
|
if (arg->attrs)
|
|
{
|
|
LIST_FOR_EACH_ENTRY(attr, arg->attrs, const attr_t, entry)
|
|
{
|
|
if (!allowed_attr[attr->type].on_arg)
|
|
error_loc("inapplicable attribute %s for argument %s\n",
|
|
allowed_attr[attr->type].display_name, arg->name);
|
|
}
|
|
}
|
|
}
|
|
|
|
static attr_list_t *check_typedef_attrs(attr_list_t *attrs)
|
|
{
|
|
const attr_t *attr;
|
|
if (!attrs) return attrs;
|
|
LIST_FOR_EACH_ENTRY(attr, attrs, const attr_t, entry)
|
|
{
|
|
if (!allowed_attr[attr->type].on_type)
|
|
error_loc("inapplicable attribute %s for typedef\n",
|
|
allowed_attr[attr->type].display_name);
|
|
}
|
|
return attrs;
|
|
}
|
|
|
|
static attr_list_t *check_enum_attrs(attr_list_t *attrs)
|
|
{
|
|
const attr_t *attr;
|
|
if (!attrs) return attrs;
|
|
LIST_FOR_EACH_ENTRY(attr, attrs, const attr_t, entry)
|
|
{
|
|
if (!allowed_attr[attr->type].on_enum)
|
|
error_loc("inapplicable attribute %s for enum\n",
|
|
allowed_attr[attr->type].display_name);
|
|
}
|
|
return attrs;
|
|
}
|
|
|
|
static attr_list_t *check_struct_attrs(attr_list_t *attrs)
|
|
{
|
|
const attr_t *attr;
|
|
if (!attrs) return attrs;
|
|
LIST_FOR_EACH_ENTRY(attr, attrs, const attr_t, entry)
|
|
{
|
|
if (!allowed_attr[attr->type].on_struct)
|
|
error_loc("inapplicable attribute %s for struct\n",
|
|
allowed_attr[attr->type].display_name);
|
|
}
|
|
return attrs;
|
|
}
|
|
|
|
static attr_list_t *check_union_attrs(attr_list_t *attrs)
|
|
{
|
|
const attr_t *attr;
|
|
if (!attrs) return attrs;
|
|
LIST_FOR_EACH_ENTRY(attr, attrs, const attr_t, entry)
|
|
{
|
|
if (!allowed_attr[attr->type].on_union)
|
|
error_loc("inapplicable attribute %s for union\n",
|
|
allowed_attr[attr->type].display_name);
|
|
}
|
|
return attrs;
|
|
}
|
|
|
|
static attr_list_t *check_field_attrs(const char *name, attr_list_t *attrs)
|
|
{
|
|
const attr_t *attr;
|
|
if (!attrs) return attrs;
|
|
LIST_FOR_EACH_ENTRY(attr, attrs, const attr_t, entry)
|
|
{
|
|
if (!allowed_attr[attr->type].on_field)
|
|
error_loc("inapplicable attribute %s for field %s\n",
|
|
allowed_attr[attr->type].display_name, name);
|
|
}
|
|
return attrs;
|
|
}
|
|
|
|
static attr_list_t *check_library_attrs(const char *name, attr_list_t *attrs)
|
|
{
|
|
const attr_t *attr;
|
|
if (!attrs) return attrs;
|
|
LIST_FOR_EACH_ENTRY(attr, attrs, const attr_t, entry)
|
|
{
|
|
if (!allowed_attr[attr->type].on_library)
|
|
error_loc("inapplicable attribute %s for library %s\n",
|
|
allowed_attr[attr->type].display_name, name);
|
|
}
|
|
return attrs;
|
|
}
|
|
|
|
static attr_list_t *check_dispiface_attrs(const char *name, attr_list_t *attrs)
|
|
{
|
|
const attr_t *attr;
|
|
if (!attrs) return attrs;
|
|
LIST_FOR_EACH_ENTRY(attr, attrs, const attr_t, entry)
|
|
{
|
|
if (!allowed_attr[attr->type].on_dispinterface)
|
|
error_loc("inapplicable attribute %s for dispinterface %s\n",
|
|
allowed_attr[attr->type].display_name, name);
|
|
}
|
|
return attrs;
|
|
}
|
|
|
|
static attr_list_t *check_module_attrs(const char *name, attr_list_t *attrs)
|
|
{
|
|
const attr_t *attr;
|
|
if (!attrs) return attrs;
|
|
LIST_FOR_EACH_ENTRY(attr, attrs, const attr_t, entry)
|
|
{
|
|
if (!allowed_attr[attr->type].on_module)
|
|
error_loc("inapplicable attribute %s for module %s\n",
|
|
allowed_attr[attr->type].display_name, name);
|
|
}
|
|
return attrs;
|
|
}
|
|
|
|
static attr_list_t *check_coclass_attrs(const char *name, attr_list_t *attrs)
|
|
{
|
|
const attr_t *attr;
|
|
if (!attrs) return attrs;
|
|
LIST_FOR_EACH_ENTRY(attr, attrs, const attr_t, entry)
|
|
{
|
|
if (!allowed_attr[attr->type].on_coclass)
|
|
error_loc("inapplicable attribute %s for coclass %s\n",
|
|
allowed_attr[attr->type].display_name, name);
|
|
}
|
|
return attrs;
|
|
}
|
|
|
|
static int is_allowed_conf_type(const type_t *type)
|
|
{
|
|
switch (type_get_type(type))
|
|
{
|
|
case TYPE_ENUM:
|
|
return TRUE;
|
|
case TYPE_BASIC:
|
|
switch (type_basic_get_type(type))
|
|
{
|
|
case TYPE_BASIC_INT8:
|
|
case TYPE_BASIC_INT16:
|
|
case TYPE_BASIC_INT32:
|
|
case TYPE_BASIC_INT64:
|
|
case TYPE_BASIC_INT:
|
|
case TYPE_BASIC_CHAR:
|
|
case TYPE_BASIC_HYPER:
|
|
case TYPE_BASIC_BYTE:
|
|
case TYPE_BASIC_WCHAR:
|
|
return TRUE;
|
|
default:
|
|
return FALSE;
|
|
}
|
|
case TYPE_ALIAS:
|
|
/* shouldn't get here because of type_get_type call above */
|
|
assert(0);
|
|
/* fall through */
|
|
case TYPE_STRUCT:
|
|
case TYPE_UNION:
|
|
case TYPE_ENCAPSULATED_UNION:
|
|
case TYPE_ARRAY:
|
|
case TYPE_POINTER:
|
|
case TYPE_VOID:
|
|
case TYPE_MODULE:
|
|
case TYPE_COCLASS:
|
|
case TYPE_FUNCTION:
|
|
case TYPE_INTERFACE:
|
|
case TYPE_BITFIELD:
|
|
return FALSE;
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
static int is_ptr_guid_type(const type_t *type)
|
|
{
|
|
/* first, make sure it is a pointer to something */
|
|
if (!is_ptr(type)) return FALSE;
|
|
|
|
/* second, make sure it is a pointer to something of size sizeof(GUID),
|
|
* i.e. 16 bytes */
|
|
return (type_memsize(type_pointer_get_ref(type)) == 16);
|
|
}
|
|
|
|
static void check_conformance_expr_list(const char *attr_name, const var_t *arg, const type_t *container_type, expr_list_t *expr_list)
|
|
{
|
|
expr_t *dim;
|
|
struct expr_loc expr_loc;
|
|
expr_loc.v = arg;
|
|
expr_loc.attr = attr_name;
|
|
if (expr_list) LIST_FOR_EACH_ENTRY(dim, expr_list, expr_t, entry)
|
|
{
|
|
if (dim->type != EXPR_VOID)
|
|
{
|
|
const type_t *expr_type = expr_resolve_type(&expr_loc, container_type, dim);
|
|
if (!is_allowed_conf_type(expr_type))
|
|
error_loc_info(&arg->loc_info, "expression must resolve to integral type <= 32bits for attribute %s\n",
|
|
attr_name);
|
|
}
|
|
}
|
|
}
|
|
|
|
static void check_remoting_fields(const var_t *var, type_t *type);
|
|
|
|
/* checks that properties common to fields and arguments are consistent */
|
|
static void check_field_common(const type_t *container_type,
|
|
const char *container_name, const var_t *arg)
|
|
{
|
|
type_t *type = arg->type;
|
|
int more_to_do;
|
|
const char *container_type_name;
|
|
const char *var_type;
|
|
|
|
switch (type_get_type(container_type))
|
|
{
|
|
case TYPE_STRUCT:
|
|
container_type_name = "struct";
|
|
var_type = "field";
|
|
break;
|
|
case TYPE_UNION:
|
|
container_type_name = "union";
|
|
var_type = "arm";
|
|
break;
|
|
case TYPE_ENCAPSULATED_UNION:
|
|
container_type_name = "encapsulated union";
|
|
var_type = "arm";
|
|
break;
|
|
case TYPE_FUNCTION:
|
|
container_type_name = "function";
|
|
var_type = "parameter";
|
|
break;
|
|
default:
|
|
/* should be no other container types */
|
|
assert(0);
|
|
return;
|
|
}
|
|
|
|
if (is_attr(arg->attrs, ATTR_LENGTHIS) &&
|
|
(is_attr(arg->attrs, ATTR_STRING) || is_aliaschain_attr(arg->type, ATTR_STRING)))
|
|
error_loc_info(&arg->loc_info,
|
|
"string and length_is specified for argument %s are mutually exclusive attributes\n",
|
|
arg->name);
|
|
|
|
if (is_attr(arg->attrs, ATTR_SIZEIS))
|
|
{
|
|
expr_list_t *size_is_exprs = get_attrp(arg->attrs, ATTR_SIZEIS);
|
|
check_conformance_expr_list("size_is", arg, container_type, size_is_exprs);
|
|
}
|
|
if (is_attr(arg->attrs, ATTR_LENGTHIS))
|
|
{
|
|
expr_list_t *length_is_exprs = get_attrp(arg->attrs, ATTR_LENGTHIS);
|
|
check_conformance_expr_list("length_is", arg, container_type, length_is_exprs);
|
|
}
|
|
if (is_attr(arg->attrs, ATTR_IIDIS))
|
|
{
|
|
struct expr_loc expr_loc;
|
|
expr_t *expr = get_attrp(arg->attrs, ATTR_IIDIS);
|
|
if (expr->type != EXPR_VOID)
|
|
{
|
|
const type_t *expr_type;
|
|
expr_loc.v = arg;
|
|
expr_loc.attr = "iid_is";
|
|
expr_type = expr_resolve_type(&expr_loc, container_type, expr);
|
|
if (!expr_type || !is_ptr_guid_type(expr_type))
|
|
error_loc_info(&arg->loc_info, "expression must resolve to pointer to GUID type for attribute iid_is\n");
|
|
}
|
|
}
|
|
if (is_attr(arg->attrs, ATTR_SWITCHIS))
|
|
{
|
|
struct expr_loc expr_loc;
|
|
expr_t *expr = get_attrp(arg->attrs, ATTR_SWITCHIS);
|
|
if (expr->type != EXPR_VOID)
|
|
{
|
|
const type_t *expr_type;
|
|
expr_loc.v = arg;
|
|
expr_loc.attr = "switch_is";
|
|
expr_type = expr_resolve_type(&expr_loc, container_type, expr);
|
|
if (!expr_type || !is_allowed_conf_type(expr_type))
|
|
error_loc_info(&arg->loc_info, "expression must resolve to integral type <= 32bits for attribute %s\n",
|
|
expr_loc.attr);
|
|
}
|
|
}
|
|
|
|
do
|
|
{
|
|
more_to_do = FALSE;
|
|
|
|
switch (typegen_detect_type(type, arg->attrs, TDT_IGNORE_STRINGS))
|
|
{
|
|
case TGT_STRUCT:
|
|
case TGT_UNION:
|
|
check_remoting_fields(arg, type);
|
|
break;
|
|
case TGT_INVALID:
|
|
{
|
|
const char *reason = "is invalid";
|
|
switch (type_get_type(type))
|
|
{
|
|
case TYPE_VOID:
|
|
reason = "cannot derive from void *";
|
|
break;
|
|
case TYPE_FUNCTION:
|
|
reason = "cannot be a function pointer";
|
|
break;
|
|
case TYPE_BITFIELD:
|
|
reason = "cannot be a bit-field";
|
|
break;
|
|
case TYPE_COCLASS:
|
|
reason = "cannot be a class";
|
|
break;
|
|
case TYPE_INTERFACE:
|
|
reason = "cannot be a non-pointer to an interface";
|
|
break;
|
|
case TYPE_MODULE:
|
|
reason = "cannot be a module";
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
error_loc_info(&arg->loc_info, "%s \'%s\' of %s \'%s\' %s\n",
|
|
var_type, arg->name, container_type_name, container_name, reason);
|
|
break;
|
|
}
|
|
case TGT_CTXT_HANDLE:
|
|
case TGT_CTXT_HANDLE_POINTER:
|
|
if (type_get_type(container_type) != TYPE_FUNCTION)
|
|
error_loc_info(&arg->loc_info,
|
|
"%s \'%s\' of %s \'%s\' cannot be a context handle\n",
|
|
var_type, arg->name, container_type_name,
|
|
container_name);
|
|
break;
|
|
case TGT_STRING:
|
|
{
|
|
const type_t *t = type;
|
|
while (is_ptr(t))
|
|
t = type_pointer_get_ref(t);
|
|
if (is_aliaschain_attr(t, ATTR_RANGE))
|
|
warning_loc_info(&arg->loc_info, "%s: range not verified for a string of ranged types\n", arg->name);
|
|
break;
|
|
}
|
|
case TGT_POINTER:
|
|
type = type_pointer_get_ref(type);
|
|
more_to_do = TRUE;
|
|
break;
|
|
case TGT_ARRAY:
|
|
type = type_array_get_element(type);
|
|
more_to_do = TRUE;
|
|
break;
|
|
case TGT_USER_TYPE:
|
|
case TGT_IFACE_POINTER:
|
|
case TGT_BASIC:
|
|
case TGT_ENUM:
|
|
case TGT_RANGE:
|
|
/* nothing to do */
|
|
break;
|
|
}
|
|
} while (more_to_do);
|
|
}
|
|
|
|
static void check_remoting_fields(const var_t *var, type_t *type)
|
|
{
|
|
const var_t *field;
|
|
const var_list_t *fields = NULL;
|
|
|
|
type = type_get_real_type(type);
|
|
|
|
if (type->checked)
|
|
return;
|
|
|
|
type->checked = TRUE;
|
|
|
|
if (type_get_type(type) == TYPE_STRUCT)
|
|
{
|
|
if (type_is_complete(type))
|
|
fields = type_struct_get_fields(type);
|
|
else
|
|
error_loc_info(&var->loc_info, "undefined type declaration %s\n", type->name);
|
|
}
|
|
else if (type_get_type(type) == TYPE_UNION || type_get_type(type) == TYPE_ENCAPSULATED_UNION)
|
|
fields = type_union_get_cases(type);
|
|
|
|
if (fields) LIST_FOR_EACH_ENTRY( field, fields, const var_t, entry )
|
|
if (field->type) check_field_common(type, type->name, field);
|
|
}
|
|
|
|
/* checks that arguments for a function make sense for marshalling and unmarshalling */
|
|
static void check_remoting_args(const var_t *func)
|
|
{
|
|
const char *funcname = func->name;
|
|
const var_t *arg;
|
|
|
|
if (func->type->details.function->args) LIST_FOR_EACH_ENTRY( arg, func->type->details.function->args, const var_t, entry )
|
|
{
|
|
const type_t *type = arg->type;
|
|
|
|
/* check that [out] parameters have enough pointer levels */
|
|
if (is_attr(arg->attrs, ATTR_OUT))
|
|
{
|
|
switch (typegen_detect_type(type, arg->attrs, TDT_ALL_TYPES))
|
|
{
|
|
case TGT_BASIC:
|
|
case TGT_ENUM:
|
|
case TGT_RANGE:
|
|
case TGT_STRUCT:
|
|
case TGT_UNION:
|
|
case TGT_CTXT_HANDLE:
|
|
case TGT_USER_TYPE:
|
|
error_loc_info(&arg->loc_info, "out parameter \'%s\' of function \'%s\' is not a pointer\n", arg->name, funcname);
|
|
break;
|
|
case TGT_IFACE_POINTER:
|
|
error_loc_info(&arg->loc_info, "out interface pointer \'%s\' of function \'%s\' is not a double pointer\n", arg->name, funcname);
|
|
break;
|
|
case TGT_STRING:
|
|
if (is_array(type))
|
|
{
|
|
/* needs conformance or fixed dimension */
|
|
if (type_array_has_conformance(type) &&
|
|
type_array_get_conformance(type)->type != EXPR_VOID) break;
|
|
if (!type_array_has_conformance(type) && type_array_get_dim(type)) break;
|
|
}
|
|
if (is_attr( arg->attrs, ATTR_IN )) break;
|
|
error_loc_info(&arg->loc_info, "out parameter \'%s\' of function \'%s\' cannot be an unsized string\n", arg->name, funcname);
|
|
break;
|
|
case TGT_INVALID:
|
|
/* already error'd before we get here */
|
|
case TGT_CTXT_HANDLE_POINTER:
|
|
case TGT_POINTER:
|
|
case TGT_ARRAY:
|
|
/* OK */
|
|
break;
|
|
}
|
|
}
|
|
|
|
check_field_common(func->type, funcname, arg);
|
|
}
|
|
|
|
if (type_get_type(type_function_get_rettype(func->type)) != TYPE_VOID)
|
|
{
|
|
var_t var;
|
|
var = *func;
|
|
var.type = type_function_get_rettype(func->type);
|
|
var.name = xstrdup("return value");
|
|
check_field_common(func->type, funcname, &var);
|
|
free(var.name);
|
|
}
|
|
}
|
|
|
|
static void add_explicit_handle_if_necessary(const type_t *iface, var_t *func)
|
|
{
|
|
unsigned char explicit_fc, implicit_fc;
|
|
|
|
/* check for a defined binding handle */
|
|
if (!get_func_handle_var( iface, func, &explicit_fc, &implicit_fc ) || !explicit_fc)
|
|
{
|
|
/* no explicit handle specified so add
|
|
* "[in] handle_t IDL_handle" as the first parameter to the
|
|
* function */
|
|
var_t *idl_handle = make_var(xstrdup("IDL_handle"));
|
|
idl_handle->attrs = append_attr(NULL, make_attr(ATTR_IN));
|
|
idl_handle->type = find_type_or_error("handle_t", 0);
|
|
type_function_add_head_arg(func->type, idl_handle);
|
|
}
|
|
}
|
|
|
|
static void check_functions(const type_t *iface, int is_inside_library)
|
|
{
|
|
const statement_t *stmt;
|
|
if (is_attr(iface->attrs, ATTR_EXPLICIT_HANDLE))
|
|
{
|
|
STATEMENTS_FOR_EACH_FUNC( stmt, type_iface_get_stmts(iface) )
|
|
{
|
|
var_t *func = stmt->u.var;
|
|
add_explicit_handle_if_necessary(iface, func);
|
|
}
|
|
}
|
|
if (!is_inside_library && !is_attr(iface->attrs, ATTR_LOCAL))
|
|
{
|
|
STATEMENTS_FOR_EACH_FUNC( stmt, type_iface_get_stmts(iface) )
|
|
{
|
|
const var_t *func = stmt->u.var;
|
|
if (!is_attr(func->attrs, ATTR_LOCAL))
|
|
check_remoting_args(func);
|
|
}
|
|
}
|
|
}
|
|
|
|
static void check_statements(const statement_list_t *stmts, int is_inside_library)
|
|
{
|
|
const statement_t *stmt;
|
|
|
|
if (stmts) LIST_FOR_EACH_ENTRY(stmt, stmts, const statement_t, entry)
|
|
{
|
|
if (stmt->type == STMT_LIBRARY)
|
|
check_statements(stmt->u.lib->stmts, TRUE);
|
|
else if (stmt->type == STMT_TYPE && type_get_type(stmt->u.type) == TYPE_INTERFACE)
|
|
check_functions(stmt->u.type, is_inside_library);
|
|
}
|
|
}
|
|
|
|
static void check_all_user_types(const statement_list_t *stmts)
|
|
{
|
|
const statement_t *stmt;
|
|
|
|
if (stmts) LIST_FOR_EACH_ENTRY(stmt, stmts, const statement_t, entry)
|
|
{
|
|
if (stmt->type == STMT_LIBRARY)
|
|
check_all_user_types(stmt->u.lib->stmts);
|
|
else if (stmt->type == STMT_TYPE && type_get_type(stmt->u.type) == TYPE_INTERFACE &&
|
|
!is_local(stmt->u.type->attrs))
|
|
{
|
|
const statement_t *stmt_func;
|
|
STATEMENTS_FOR_EACH_FUNC(stmt_func, type_iface_get_stmts(stmt->u.type)) {
|
|
const var_t *func = stmt_func->u.var;
|
|
check_for_additional_prototype_types(func->type->details.function->args);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
int is_valid_uuid(const char *s)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < 36; ++i)
|
|
if (i == 8 || i == 13 || i == 18 || i == 23)
|
|
{
|
|
if (s[i] != '-')
|
|
return FALSE;
|
|
}
|
|
else
|
|
if (!isxdigit(s[i]))
|
|
return FALSE;
|
|
|
|
return s[i] == '\0';
|
|
}
|
|
|
|
static statement_t *make_statement(enum statement_type type)
|
|
{
|
|
statement_t *stmt = xmalloc(sizeof(*stmt));
|
|
stmt->type = type;
|
|
return stmt;
|
|
}
|
|
|
|
static statement_t *make_statement_type_decl(type_t *type)
|
|
{
|
|
statement_t *stmt = make_statement(STMT_TYPE);
|
|
stmt->u.type = type;
|
|
return stmt;
|
|
}
|
|
|
|
static statement_t *make_statement_reference(type_t *type)
|
|
{
|
|
statement_t *stmt = make_statement(STMT_TYPEREF);
|
|
stmt->u.type = type;
|
|
return stmt;
|
|
}
|
|
|
|
static statement_t *make_statement_declaration(var_t *var)
|
|
{
|
|
statement_t *stmt = make_statement(STMT_DECLARATION);
|
|
stmt->u.var = var;
|
|
if (var->stgclass == STG_EXTERN && var->eval)
|
|
warning("'%s' initialised and declared extern\n", var->name);
|
|
if (is_const_decl(var))
|
|
{
|
|
if (var->eval)
|
|
reg_const(var);
|
|
}
|
|
else if (type_get_type(var->type) == TYPE_FUNCTION)
|
|
check_function_attrs(var->name, var->attrs);
|
|
else if (var->stgclass == STG_NONE || var->stgclass == STG_REGISTER)
|
|
error_loc("instantiation of data is illegal\n");
|
|
return stmt;
|
|
}
|
|
|
|
static statement_t *make_statement_library(typelib_t *typelib)
|
|
{
|
|
statement_t *stmt = make_statement(STMT_LIBRARY);
|
|
stmt->u.lib = typelib;
|
|
return stmt;
|
|
}
|
|
|
|
static statement_t *make_statement_cppquote(const char *str)
|
|
{
|
|
statement_t *stmt = make_statement(STMT_CPPQUOTE);
|
|
stmt->u.str = str;
|
|
return stmt;
|
|
}
|
|
|
|
static statement_t *make_statement_importlib(const char *str)
|
|
{
|
|
statement_t *stmt = make_statement(STMT_IMPORTLIB);
|
|
stmt->u.str = str;
|
|
return stmt;
|
|
}
|
|
|
|
static statement_t *make_statement_import(const char *str)
|
|
{
|
|
statement_t *stmt = make_statement(STMT_IMPORT);
|
|
stmt->u.str = str;
|
|
return stmt;
|
|
}
|
|
|
|
static statement_t *make_statement_module(type_t *type)
|
|
{
|
|
statement_t *stmt = make_statement(STMT_MODULE);
|
|
stmt->u.type = type;
|
|
return stmt;
|
|
}
|
|
|
|
static statement_t *make_statement_typedef(declarator_list_t *decls)
|
|
{
|
|
declarator_t *decl, *next;
|
|
statement_t *stmt;
|
|
type_list_t **type_list;
|
|
|
|
if (!decls) return NULL;
|
|
|
|
stmt = make_statement(STMT_TYPEDEF);
|
|
stmt->u.type_list = NULL;
|
|
type_list = &stmt->u.type_list;
|
|
|
|
LIST_FOR_EACH_ENTRY_SAFE( decl, next, decls, declarator_t, entry )
|
|
{
|
|
var_t *var = decl->var;
|
|
type_t *type = find_type_or_error(var->name, 0);
|
|
*type_list = xmalloc(sizeof(type_list_t));
|
|
(*type_list)->type = type;
|
|
(*type_list)->next = NULL;
|
|
|
|
type_list = &(*type_list)->next;
|
|
free(decl);
|
|
free(var);
|
|
}
|
|
|
|
return stmt;
|
|
}
|
|
|
|
static statement_list_t *append_statement(statement_list_t *list, statement_t *stmt)
|
|
{
|
|
if (!stmt) return list;
|
|
if (!list)
|
|
{
|
|
list = xmalloc( sizeof(*list) );
|
|
list_init( list );
|
|
}
|
|
list_add_tail( list, &stmt->entry );
|
|
return list;
|
|
}
|
|
|
|
void init_loc_info(loc_info_t *i)
|
|
{
|
|
i->input_name = input_name ? input_name : "stdin";
|
|
i->line_number = line_number;
|
|
i->near_text = parser_text;
|
|
}
|
|
|
|
static void check_def(const type_t *t)
|
|
{
|
|
if (t->defined)
|
|
error_loc("%s: redefinition error; original definition was at %s:%d\n",
|
|
t->name, t->loc_info.input_name, t->loc_info.line_number);
|
|
}
|
|
|