mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-27 07:30:33 +08:00
99eef24bc2
- Fix NCF-157 to modify DAP code to support partial variable retrieval. - Fix of NCF-154 to solve problem of ncgen improperly processing data lists for variables of size greater than 2**18 bytes. - Fix ncgen processing of char variables that have multiple unlimited dimensions. - Partly fix Jira issue: NCF-145 (vlen issues). - Benchmark program nc_test4/tst_ar4_*) requires arguments and should only be invoked inside a shell script; fixed so that they terminate cleanly if invoked with no arguments. - Fix the Doxygen processing so it will work with make distcheck. - Begin switchover to using an alternative to ncio. - Begin support for in-memory (diskless) files.
3773 lines
110 KiB
C
3773 lines
110 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 ncgparse
|
|
#define yylex ncglex
|
|
#define yyerror ncgerror
|
|
#define yylval ncglval
|
|
#define yychar ncgchar
|
|
#define yydebug ncgdebug
|
|
#define yynerrs ncgnerrs
|
|
|
|
|
|
/* Copy the first part of user declarations. */
|
|
|
|
/* Line 268 of yacc.c */
|
|
#line 11 "ncgen.y"
|
|
|
|
/*
|
|
static char SccsId[] = "$Id: ncgen.y,v 1.42 2010/05/18 21:32:46 dmh Exp $";
|
|
*/
|
|
#include "includes.h"
|
|
#include "offsets.h"
|
|
|
|
/* Following are in ncdump (for now)*/
|
|
/* Need some (unused) definitions to get it to compile */
|
|
#define ncatt_t void*
|
|
#define ncvar_t void
|
|
#include "nctime.h"
|
|
|
|
/* parser controls */
|
|
#define YY_NO_INPUT 1
|
|
|
|
/* True if string a equals string b*/
|
|
#define STREQ(a, b) (*(a) == *(b) && strcmp((a), (b)) == 0)
|
|
#define VLENSIZE (sizeof(nc_vlen_t))
|
|
#define MAXFLOATDIM 4294967295.0
|
|
|
|
/* mnemonic */
|
|
typedef enum Attrkind {ATTRVAR, ATTRGLOBAL, DONTKNOW} Attrkind;
|
|
|
|
typedef nc_vlen_t vlen_t;
|
|
|
|
/* We retain the old representation of the symbol list
|
|
as a linked list.
|
|
*/
|
|
Symbol* symlist;
|
|
|
|
/* Track rootgroup separately*/
|
|
Symbol* rootgroup;
|
|
|
|
/* Track the group sequence */
|
|
static List* groupstack;
|
|
|
|
/* Provide a separate sequence for accumulating values
|
|
during the parse.
|
|
*/
|
|
static List* stack;
|
|
|
|
/* track homogeneity of types for data lists*/
|
|
static nc_type consttype;
|
|
|
|
/* Misc. */
|
|
static int stackbase;
|
|
static int stacklen;
|
|
static int count;
|
|
static int opaqueid; /* counter for opaque constants*/
|
|
static int arrayuid; /* counter for pseudo-array types*/
|
|
|
|
char* primtypenames[PRIMNO] = {
|
|
"nat",
|
|
"byte", "char", "short",
|
|
"int", "float", "double",
|
|
"ubyte", "ushort", "uint",
|
|
"int64", "uint64",
|
|
"string"
|
|
};
|
|
|
|
/*Defined in ncgen.l*/
|
|
extern int lineno; /* line number for error messages */
|
|
extern Bytebuffer* lextext; /* name or string with escapes removed */
|
|
|
|
extern double double_val; /* last double value read */
|
|
extern float float_val; /* last float value read */
|
|
extern long long int64_val; /* last int64 value read */
|
|
extern int int32_val; /* last int32 value read */
|
|
extern short int16_val; /* last short value read */
|
|
extern unsigned long long uint64_val; /* last int64 value read */
|
|
extern unsigned int uint32_val; /* last int32 value read */
|
|
extern unsigned short uint16_val; /* last short value read */
|
|
extern char char_val; /* last char value read */
|
|
extern signed char byte_val; /* last byte value read */
|
|
extern unsigned char ubyte_val; /* last byte value read */
|
|
|
|
/* Track definitions of dims, types, attributes, and vars*/
|
|
List* grpdefs;
|
|
List* dimdefs;
|
|
List* attdefs; /* variable-specific attributes*/
|
|
List* gattdefs; /* global attributes only*/
|
|
List* xattdefs; /* unknown attributes*/
|
|
List* typdefs;
|
|
List* vardefs;
|
|
List* condefs; /* non-dimension constants used in type defs*/
|
|
List* tmp;
|
|
|
|
/* Forward */
|
|
static Constant makeconstdata(nc_type);
|
|
static Constant evaluate(Symbol* fcn, Datalist* arglist);
|
|
static Constant makeenumconst(Symbol*);
|
|
static void addtogroup(Symbol*);
|
|
static Symbol* currentgroup(void);
|
|
static Symbol* createrootgroup(void);
|
|
static Symbol* creategroup(Symbol*);
|
|
static int dupobjectcheck(nc_class,Symbol*);
|
|
static void setpathcurrent(Symbol* sym);
|
|
static Symbol* makeattribute(Symbol*,Symbol*,Symbol*,Datalist*,Attrkind);
|
|
static Symbol* makeprimitivetype(nc_type i);
|
|
static Symbol* makespecial(int tag, Symbol* vsym, Symbol* tsym, void* data, int isconst);
|
|
static int containsfills(Datalist* list);
|
|
static void datalistextend(Datalist* dl, Constant* con);
|
|
static void vercheck(int ncid);
|
|
|
|
int yylex(void);
|
|
|
|
#ifndef NO_STDARG
|
|
static void yyerror(const char *fmt, ...);
|
|
#else
|
|
static void yyerror(fmt,va_alist) const char* fmt; va_dcl;
|
|
#endif
|
|
|
|
/* Extern */
|
|
extern int lex_init(void);
|
|
|
|
|
|
|
|
/* Line 268 of yacc.c */
|
|
#line 198 "ncgen.tab.c"
|
|
|
|
/* Enabling traces. */
|
|
#ifndef YYDEBUG
|
|
# define YYDEBUG 1
|
|
#endif
|
|
|
|
/* Enabling verbose error messages. */
|
|
#ifdef YYERROR_VERBOSE
|
|
# undef YYERROR_VERBOSE
|
|
# define YYERROR_VERBOSE 1
|
|
#else
|
|
# define YYERROR_VERBOSE 1
|
|
#endif
|
|
|
|
/* Enabling the token table. */
|
|
#ifndef YYTOKEN_TABLE
|
|
# define YYTOKEN_TABLE 0
|
|
#endif
|
|
|
|
|
|
/* Tokens. */
|
|
#ifndef YYTOKENTYPE
|
|
# define YYTOKENTYPE
|
|
/* Put the tokens into the symbol table, so that GDB and other debuggers
|
|
know about them. */
|
|
enum yytokentype {
|
|
NC_UNLIMITED_K = 258,
|
|
CHAR_K = 259,
|
|
BYTE_K = 260,
|
|
SHORT_K = 261,
|
|
INT_K = 262,
|
|
FLOAT_K = 263,
|
|
DOUBLE_K = 264,
|
|
UBYTE_K = 265,
|
|
USHORT_K = 266,
|
|
UINT_K = 267,
|
|
INT64_K = 268,
|
|
UINT64_K = 269,
|
|
IDENT = 270,
|
|
TERMSTRING = 271,
|
|
CHAR_CONST = 272,
|
|
BYTE_CONST = 273,
|
|
SHORT_CONST = 274,
|
|
INT_CONST = 275,
|
|
INT64_CONST = 276,
|
|
UBYTE_CONST = 277,
|
|
USHORT_CONST = 278,
|
|
UINT_CONST = 279,
|
|
UINT64_CONST = 280,
|
|
FLOAT_CONST = 281,
|
|
DOUBLE_CONST = 282,
|
|
DIMENSIONS = 283,
|
|
VARIABLES = 284,
|
|
NETCDF = 285,
|
|
DATA = 286,
|
|
TYPES = 287,
|
|
COMPOUND = 288,
|
|
ENUM = 289,
|
|
OPAQUE = 290,
|
|
OPAQUESTRING = 291,
|
|
GROUP = 292,
|
|
PATH = 293,
|
|
FILLMARKER = 294,
|
|
_FILLVALUE = 295,
|
|
_FORMAT = 296,
|
|
_STORAGE = 297,
|
|
_CHUNKSIZES = 298,
|
|
_DEFLATELEVEL = 299,
|
|
_SHUFFLE = 300,
|
|
_ENDIANNESS = 301,
|
|
_NOFILL = 302,
|
|
_FLETCHER32 = 303,
|
|
DATASETID = 304
|
|
};
|
|
#endif
|
|
|
|
|
|
|
|
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
|
typedef union YYSTYPE
|
|
{
|
|
|
|
/* Line 293 of yacc.c */
|
|
#line 131 "ncgen.y"
|
|
|
|
Symbol* sym;
|
|
unsigned long size; /* allow for zero size to indicate e.g. UNLIMITED*/
|
|
long mark; /* track indices into the sequence*/
|
|
int nctype; /* for tracking attribute list type*/
|
|
Datalist* datalist;
|
|
Constant constant;
|
|
|
|
|
|
|
|
/* Line 293 of yacc.c */
|
|
#line 294 "ncgen.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 306 "ncgen.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 4
|
|
/* YYLAST -- Last index in YYTABLE. */
|
|
#define YYLAST 372
|
|
|
|
/* YYNTOKENS -- Number of terminals. */
|
|
#define YYNTOKENS 59
|
|
/* YYNNTS -- Number of nonterminals. */
|
|
#define YYNNTS 65
|
|
/* YYNRULES -- Number of rules. */
|
|
#define YYNRULES 147
|
|
/* YYNRULES -- Number of states. */
|
|
#define YYNSTATES 248
|
|
|
|
/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
|
|
#define YYUNDEFTOK 2
|
|
#define YYMAXUTOK 304
|
|
|
|
#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, 2, 2, 2, 2, 2, 2, 2,
|
|
55, 56, 57, 2, 53, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 58, 52,
|
|
2, 54, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 50, 2, 51, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 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
|
|
};
|
|
|
|
#if YYDEBUG
|
|
/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
|
|
YYRHS. */
|
|
static const yytype_uint16 yyprhs[] =
|
|
{
|
|
0, 0, 3, 7, 12, 18, 19, 22, 23, 24,
|
|
34, 35, 37, 40, 42, 45, 47, 49, 52, 55,
|
|
58, 61, 64, 65, 67, 74, 76, 80, 84, 90,
|
|
96, 102, 105, 109, 112, 114, 116, 118, 120, 122,
|
|
124, 126, 128, 130, 132, 134, 135, 137, 140, 143,
|
|
147, 149, 151, 153, 157, 161, 165, 169, 173, 175,
|
|
176, 178, 181, 184, 188, 190, 192, 195, 197, 201,
|
|
204, 205, 209, 211, 215, 217, 219, 223, 226, 227,
|
|
231, 233, 237, 239, 241, 243, 245, 247, 249, 250,
|
|
254, 259, 266, 272, 278, 285, 291, 297, 303, 309,
|
|
315, 321, 327, 332, 334, 336, 337, 339, 342, 345,
|
|
349, 353, 355, 357, 358, 360, 364, 366, 370, 372,
|
|
374, 376, 378, 380, 385, 387, 391, 393, 395, 397,
|
|
399, 401, 403, 405, 407, 409, 411, 413, 415, 417,
|
|
421, 423, 425, 427, 429, 431, 433, 435
|
|
};
|
|
|
|
/* YYRHS -- A `-1'-separated list of the rules' RHS. */
|
|
static const yytype_int8 yyrhs[] =
|
|
{
|
|
60, 0, -1, 30, 49, 61, -1, 50, 62, 63,
|
|
51, -1, 105, 67, 82, 88, 108, -1, -1, 63,
|
|
64, -1, -1, -1, 37, 123, 50, 65, 62, 63,
|
|
66, 51, 105, -1, -1, 32, -1, 32, 68, -1,
|
|
70, -1, 68, 70, -1, 123, -1, 71, -1, 106,
|
|
52, -1, 73, 72, -1, 78, 72, -1, 77, 72,
|
|
-1, 76, 72, -1, -1, 52, -1, 81, 34, 69,
|
|
50, 74, 51, -1, 75, -1, 74, 53, 75, -1,
|
|
123, 54, 115, -1, 35, 55, 20, 56, 69, -1,
|
|
103, 55, 57, 56, 69, -1, 33, 69, 50, 79,
|
|
51, -1, 80, 52, -1, 79, 80, 52, -1, 103,
|
|
97, -1, 4, -1, 5, -1, 6, -1, 7, -1,
|
|
8, -1, 9, -1, 10, -1, 11, -1, 12, -1,
|
|
13, -1, 14, -1, -1, 28, -1, 28, 83, -1,
|
|
84, 52, -1, 83, 84, 52, -1, 85, -1, 106,
|
|
-1, 86, -1, 85, 53, 86, -1, 87, 54, 24,
|
|
-1, 87, 54, 20, -1, 87, 54, 27, -1, 87,
|
|
54, 3, -1, 123, -1, -1, 29, -1, 29, 89,
|
|
-1, 90, 52, -1, 89, 90, 52, -1, 91, -1,
|
|
106, -1, 103, 92, -1, 93, -1, 92, 53, 93,
|
|
-1, 123, 94, -1, -1, 55, 95, 56, -1, 96,
|
|
-1, 95, 53, 96, -1, 107, -1, 98, -1, 97,
|
|
53, 98, -1, 123, 99, -1, -1, 55, 100, 56,
|
|
-1, 101, -1, 100, 53, 101, -1, 24, -1, 20,
|
|
-1, 104, -1, 104, -1, 107, -1, 81, -1, -1,
|
|
106, 52, 105, -1, 58, 123, 54, 111, -1, 103,
|
|
104, 58, 123, 54, 111, -1, 104, 58, 123, 54,
|
|
111, -1, 104, 58, 40, 54, 111, -1, 103, 104,
|
|
58, 40, 54, 111, -1, 104, 58, 42, 54, 121,
|
|
-1, 104, 58, 43, 54, 119, -1, 104, 58, 48,
|
|
54, 122, -1, 104, 58, 44, 54, 120, -1, 104,
|
|
58, 45, 54, 122, -1, 104, 58, 46, 54, 121,
|
|
-1, 104, 58, 47, 54, 122, -1, 58, 41, 54,
|
|
121, -1, 123, -1, 38, -1, -1, 31, -1, 31,
|
|
109, -1, 110, 52, -1, 109, 110, 52, -1, 102,
|
|
54, 111, -1, 112, -1, 113, -1, -1, 114, -1,
|
|
111, 53, 114, -1, 115, -1, 50, 111, 51, -1,
|
|
118, -1, 36, -1, 39, -1, 107, -1, 116, -1,
|
|
123, 55, 117, 56, -1, 118, -1, 117, 53, 118,
|
|
-1, 17, -1, 18, -1, 19, -1, 20, -1, 21,
|
|
-1, 22, -1, 23, -1, 24, -1, 25, -1, 26,
|
|
-1, 27, -1, 16, -1, 120, -1, 119, 53, 120,
|
|
-1, 20, -1, 24, -1, 21, -1, 25, -1, 16,
|
|
-1, 121, -1, 120, -1, 15, -1
|
|
};
|
|
|
|
/* YYRLINE[YYN] -- source line where rule number YYN was defined. */
|
|
static const yytype_uint16 yyrline[] =
|
|
{
|
|
0, 207, 207, 213, 220, 227, 227, 230, 239, 229,
|
|
244, 245, 246, 250, 250, 252, 262, 262, 265, 266,
|
|
267, 268, 271, 271, 274, 304, 306, 323, 332, 344,
|
|
358, 391, 392, 395, 409, 410, 411, 412, 413, 414,
|
|
415, 416, 417, 418, 419, 422, 423, 424, 427, 428,
|
|
431, 431, 433, 434, 438, 445, 456, 469, 479, 491,
|
|
492, 493, 496, 497, 500, 500, 502, 524, 528, 532,
|
|
559, 560, 563, 564, 568, 582, 586, 591, 620, 621,
|
|
625, 626, 631, 641, 661, 672, 683, 702, 709, 709,
|
|
712, 714, 723, 734, 736, 738, 740, 742, 744, 746,
|
|
748, 750, 752, 757, 763, 772, 773, 774, 777, 778,
|
|
781, 785, 786, 790, 794, 795, 800, 801, 805, 806,
|
|
807, 808, 809, 813, 817, 819, 824, 825, 826, 827,
|
|
828, 829, 830, 831, 832, 833, 834, 835, 839, 840,
|
|
844, 846, 848, 850, 855, 859, 860, 866
|
|
};
|
|
#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", "NC_UNLIMITED_K", "CHAR_K", "BYTE_K",
|
|
"SHORT_K", "INT_K", "FLOAT_K", "DOUBLE_K", "UBYTE_K", "USHORT_K",
|
|
"UINT_K", "INT64_K", "UINT64_K", "IDENT", "TERMSTRING", "CHAR_CONST",
|
|
"BYTE_CONST", "SHORT_CONST", "INT_CONST", "INT64_CONST", "UBYTE_CONST",
|
|
"USHORT_CONST", "UINT_CONST", "UINT64_CONST", "FLOAT_CONST",
|
|
"DOUBLE_CONST", "DIMENSIONS", "VARIABLES", "NETCDF", "DATA", "TYPES",
|
|
"COMPOUND", "ENUM", "OPAQUE", "OPAQUESTRING", "GROUP", "PATH",
|
|
"FILLMARKER", "_FILLVALUE", "_FORMAT", "_STORAGE", "_CHUNKSIZES",
|
|
"_DEFLATELEVEL", "_SHUFFLE", "_ENDIANNESS", "_NOFILL", "_FLETCHER32",
|
|
"DATASETID", "'{'", "'}'", "';'", "','", "'='", "'('", "')'", "'*'",
|
|
"':'", "$accept", "ncdesc", "rootgroup", "groupbody", "subgrouplist",
|
|
"namedgroup", "$@1", "$@2", "typesection", "typedecls", "typename",
|
|
"type_or_attr_decl", "typedecl", "optsemicolon", "enumdecl",
|
|
"enumidlist", "enumid", "opaquedecl", "vlendecl", "compounddecl",
|
|
"fields", "field", "primtype", "dimsection", "dimdecls",
|
|
"dim_or_attr_decl", "dimdeclist", "dimdecl", "dimd", "vasection",
|
|
"vadecls", "vadecl_or_attr", "vardecl", "varlist", "varspec", "dimspec",
|
|
"dimlist", "dimref", "fieldlist", "fieldspec", "fielddimspec",
|
|
"fielddimlist", "fielddim", "varref", "typeref", "type_var_ref",
|
|
"attrdecllist", "attrdecl", "path", "datasection", "datadecls",
|
|
"datadecl", "datalist", "datalist0", "datalist1", "dataitem",
|
|
"constdata", "function", "arglist", "simpleconstant", "intlist",
|
|
"constint", "conststring", "constbool", "ident", 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,
|
|
123, 125, 59, 44, 61, 40, 41, 42, 58
|
|
};
|
|
# endif
|
|
|
|
/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
|
|
static const yytype_uint8 yyr1[] =
|
|
{
|
|
0, 59, 60, 61, 62, 63, 63, 65, 66, 64,
|
|
67, 67, 67, 68, 68, 69, 70, 70, 71, 71,
|
|
71, 71, 72, 72, 73, 74, 74, 75, 76, 77,
|
|
78, 79, 79, 80, 81, 81, 81, 81, 81, 81,
|
|
81, 81, 81, 81, 81, 82, 82, 82, 83, 83,
|
|
84, 84, 85, 85, 86, 86, 86, 86, 87, 88,
|
|
88, 88, 89, 89, 90, 90, 91, 92, 92, 93,
|
|
94, 94, 95, 95, 96, 97, 97, 98, 99, 99,
|
|
100, 100, 101, 101, 102, 103, 104, 104, 105, 105,
|
|
106, 106, 106, 106, 106, 106, 106, 106, 106, 106,
|
|
106, 106, 106, 107, 107, 108, 108, 108, 109, 109,
|
|
110, 111, 111, 112, 113, 113, 114, 114, 115, 115,
|
|
115, 115, 115, 116, 117, 117, 118, 118, 118, 118,
|
|
118, 118, 118, 118, 118, 118, 118, 118, 119, 119,
|
|
120, 120, 120, 120, 121, 122, 122, 123
|
|
};
|
|
|
|
/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
|
|
static const yytype_uint8 yyr2[] =
|
|
{
|
|
0, 2, 3, 4, 5, 0, 2, 0, 0, 9,
|
|
0, 1, 2, 1, 2, 1, 1, 2, 2, 2,
|
|
2, 2, 0, 1, 6, 1, 3, 3, 5, 5,
|
|
5, 2, 3, 2, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 0, 1, 2, 2, 3,
|
|
1, 1, 1, 3, 3, 3, 3, 3, 1, 0,
|
|
1, 2, 2, 3, 1, 1, 2, 1, 3, 2,
|
|
0, 3, 1, 3, 1, 1, 3, 2, 0, 3,
|
|
1, 3, 1, 1, 1, 1, 1, 1, 0, 3,
|
|
4, 6, 5, 5, 6, 5, 5, 5, 5, 5,
|
|
5, 5, 4, 1, 1, 0, 1, 2, 2, 3,
|
|
3, 1, 1, 0, 1, 3, 1, 3, 1, 1,
|
|
1, 1, 1, 4, 1, 3, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 3,
|
|
1, 1, 1, 1, 1, 1, 1, 1
|
|
};
|
|
|
|
/* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM.
|
|
Performed when YYTABLE doesn't specify something else to do. Zero
|
|
means the default is an error. */
|
|
static const yytype_uint8 yydefact[] =
|
|
{
|
|
0, 0, 0, 0, 1, 88, 2, 34, 35, 36,
|
|
37, 38, 39, 40, 41, 42, 43, 44, 147, 104,
|
|
0, 5, 87, 0, 85, 10, 0, 86, 103, 0,
|
|
0, 0, 0, 0, 11, 45, 88, 0, 113, 0,
|
|
3, 6, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 12, 13, 16, 22, 22, 22,
|
|
22, 87, 0, 0, 46, 59, 89, 144, 102, 137,
|
|
126, 127, 128, 129, 130, 131, 132, 133, 134, 135,
|
|
136, 119, 120, 113, 121, 90, 111, 112, 114, 116,
|
|
122, 118, 103, 0, 0, 0, 113, 0, 0, 0,
|
|
0, 0, 0, 0, 113, 0, 15, 0, 14, 23,
|
|
18, 21, 20, 19, 0, 0, 17, 47, 0, 50,
|
|
52, 0, 51, 103, 60, 105, 0, 0, 0, 7,
|
|
113, 113, 93, 95, 140, 142, 141, 143, 96, 138,
|
|
98, 146, 145, 99, 100, 101, 97, 92, 0, 0,
|
|
0, 0, 0, 48, 0, 0, 61, 0, 64, 0,
|
|
65, 106, 4, 117, 115, 0, 124, 88, 94, 91,
|
|
0, 0, 0, 0, 85, 0, 0, 0, 49, 53,
|
|
58, 57, 55, 54, 56, 0, 62, 66, 67, 70,
|
|
0, 84, 107, 0, 0, 123, 5, 139, 30, 0,
|
|
31, 33, 75, 78, 28, 0, 25, 0, 29, 63,
|
|
0, 0, 69, 113, 0, 108, 125, 8, 32, 0,
|
|
0, 77, 24, 0, 0, 68, 70, 0, 72, 74,
|
|
110, 109, 0, 76, 83, 82, 0, 80, 26, 27,
|
|
0, 71, 88, 0, 79, 73, 9, 81
|
|
};
|
|
|
|
/* YYDEFGOTO[NTERM-NUM]. */
|
|
static const yytype_int16 yydefgoto[] =
|
|
{
|
|
-1, 2, 6, 21, 31, 41, 167, 232, 35, 54,
|
|
105, 55, 56, 110, 57, 205, 206, 58, 59, 60,
|
|
171, 172, 22, 65, 117, 118, 119, 120, 121, 125,
|
|
156, 157, 158, 187, 188, 212, 227, 228, 201, 202,
|
|
221, 236, 237, 190, 23, 24, 25, 26, 27, 162,
|
|
192, 193, 85, 86, 87, 88, 89, 90, 165, 91,
|
|
138, 141, 142, 143, 28
|
|
};
|
|
|
|
/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
|
|
STATE-NUM. */
|
|
#define YYPACT_NINF -127
|
|
static const yytype_int16 yypact[] =
|
|
{
|
|
-8, -22, 40, -15, -127, 206, -127, -127, -127, -127,
|
|
-127, -127, -127, -127, -127, -127, -127, -127, -127, -127,
|
|
-2, -127, -127, 320, -14, 29, 14, -127, -127, 36,
|
|
37, -5, 25, 131, 109, 61, 206, 76, 273, 78,
|
|
-127, -127, -10, 43, 48, 49, 51, 52, 53, 55,
|
|
56, 73, 78, 74, 109, -127, -127, 79, 79, 79,
|
|
79, 70, 218, 80, 206, 101, -127, -127, -127, -127,
|
|
-127, -127, -127, -127, -127, -127, -127, -127, -127, -127,
|
|
-127, -127, -127, 273, -127, 81, -127, -127, -127, -127,
|
|
-127, -127, 82, 86, 89, 91, 273, 76, 50, 50,
|
|
33, 76, 33, 33, 273, 99, -127, 130, -127, -127,
|
|
-127, -127, -127, -127, 78, 95, -127, 206, 103, 100,
|
|
-127, 105, -127, 106, 206, 132, 31, 273, 345, -127,
|
|
273, 273, 81, -127, -127, -127, -127, -127, 108, -127,
|
|
-127, -127, -127, -127, -127, -127, -127, 81, 320, 110,
|
|
112, 113, 116, -127, 78, 23, 206, 118, -127, 320,
|
|
-127, 320, -127, -127, -127, -28, -127, 206, 81, 81,
|
|
50, 270, 129, 78, -127, 78, 78, 78, -127, -127,
|
|
-127, -127, -127, -127, -127, 133, -127, 111, -127, -7,
|
|
134, -127, 320, 135, 345, -127, -127, -127, -127, 137,
|
|
-127, 139, -127, 128, -127, 35, -127, 136, -127, -127,
|
|
78, 0, -127, 273, 143, -127, -127, 147, -127, 78,
|
|
17, -127, -127, 78, 321, -127, 141, 6, -127, -127,
|
|
81, -127, 114, -127, -127, -127, 7, -127, -127, -127,
|
|
0, -127, 206, 17, -127, -127, -127, -127
|
|
};
|
|
|
|
/* YYPGOTO[NTERM-NUM]. */
|
|
static const yytype_int16 yypgoto[] =
|
|
{
|
|
-127, -127, -127, 19, 1, -127, -127, -127, -127, -127,
|
|
-108, 144, -127, 20, -127, -127, -24, -127, -127, -127,
|
|
-127, 30, -18, -127, -127, 85, -127, 54, -127, -127,
|
|
-127, 47, -127, -127, -3, -127, -127, -6, -127, 16,
|
|
-127, -127, -4, -127, -23, -20, -36, -30, -31, -127,
|
|
-127, 44, -75, -127, -127, 115, 13, -127, -127, -126,
|
|
-127, -89, -25, -85, -19
|
|
};
|
|
|
|
/* 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 -104
|
|
static const yytype_int16 yytable[] =
|
|
{
|
|
66, 30, 166, 32, 63, 18, 150, 84, 126, 139,
|
|
140, 62, 68, 18, 51, 18, 61, 145, 146, 92,
|
|
93, 132, 1, 95, 63, 194, 181, 3, 195, 147,
|
|
94, 62, 39, 106, 122, 5, 61, 234, 19, 29,
|
|
4, 235, 32, 182, 33, 123, 40, 183, 211, 67,
|
|
184, -103, 84, 134, 135, 168, 169, 136, 137, 240,
|
|
243, 34, 241, 244, 92, 84, 36, 204, 216, 208,
|
|
134, 135, 133, 84, 136, 137, 144, 92, 111, 112,
|
|
113, 197, 163, 42, 127, 92, 222, 122, 223, 64,
|
|
37, 38, 67, 18, 160, 106, 84, 96, 123, 84,
|
|
84, 159, 97, 98, 114, 99, 100, 101, 92, 102,
|
|
103, 92, 92, 7, 8, 9, 10, 11, 12, 13,
|
|
14, 15, 16, 17, 18, 173, 160, 104, 174, 107,
|
|
124, 109, 116, 159, 127, 180, 129, 128, 230, 32,
|
|
189, 191, 52, 130, 53, 131, 18, 19, 173, 148,
|
|
149, 174, 151, 154, 203, 153, 106, 207, 106, 155,
|
|
-58, 170, 176, 161, 210, 242, 175, 20, 178, 177,
|
|
186, 43, 191, 44, 45, 46, 47, 48, 49, 50,
|
|
229, 200, 84, 220, 39, 209, 196, 215, 213, 218,
|
|
224, 226, 219, 84, 92, 231, 211, 217, 108, 238,
|
|
203, 199, 152, 185, 207, 92, 246, 225, 179, 229,
|
|
7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
|
|
17, 18, 7, 8, 9, 10, 11, 12, 13, 14,
|
|
15, 16, 17, 18, 245, 233, 214, 239, 0, 247,
|
|
0, 0, 164, 0, 19, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 19, 0, 0, 0,
|
|
0, 0, 0, 0, 20, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 115, 7, 8, 9, 10, 11, 12,
|
|
13, 14, 15, 16, 17, 18, 0, 0, 18, 69,
|
|
70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
|
|
80, 0, 0, 0, 0, 0, 0, 0, 19, 81,
|
|
0, 19, 82, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 198, 0, 83, 7, 8, 9, 10, 11, 12,
|
|
13, 14, 15, 16, 17, 18, 18, 69, 70, 71,
|
|
72, 73, 74, 75, 76, 77, 78, 79, 80, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 81, 19, 19,
|
|
82, 69, 70, 71, 72, 73, 74, 75, 76, 77,
|
|
78, 79, 80
|
|
};
|
|
|
|
#define yypact_value_is_default(yystate) \
|
|
((yystate) == (-127))
|
|
|
|
#define yytable_value_is_error(yytable_value) \
|
|
YYID (0)
|
|
|
|
static const yytype_int16 yycheck[] =
|
|
{
|
|
36, 20, 128, 23, 34, 15, 114, 38, 83, 98,
|
|
99, 34, 37, 15, 33, 15, 34, 102, 103, 38,
|
|
39, 96, 30, 42, 54, 53, 3, 49, 56, 104,
|
|
40, 54, 37, 52, 64, 50, 54, 20, 38, 41,
|
|
0, 24, 62, 20, 58, 64, 51, 24, 55, 16,
|
|
27, 58, 83, 20, 21, 130, 131, 24, 25, 53,
|
|
53, 32, 56, 56, 83, 96, 52, 175, 194, 177,
|
|
20, 21, 97, 104, 24, 25, 101, 96, 58, 59,
|
|
60, 170, 51, 58, 53, 104, 51, 117, 53, 28,
|
|
54, 54, 16, 15, 124, 114, 127, 54, 117, 130,
|
|
131, 124, 54, 54, 34, 54, 54, 54, 127, 54,
|
|
54, 130, 131, 4, 5, 6, 7, 8, 9, 10,
|
|
11, 12, 13, 14, 15, 148, 156, 54, 148, 55,
|
|
29, 52, 52, 156, 53, 154, 50, 55, 213, 159,
|
|
159, 161, 33, 54, 35, 54, 15, 38, 171, 50,
|
|
20, 171, 57, 53, 173, 52, 175, 176, 177, 54,
|
|
54, 53, 50, 31, 53, 51, 56, 58, 52, 56,
|
|
52, 40, 192, 42, 43, 44, 45, 46, 47, 48,
|
|
211, 52, 213, 55, 37, 52, 167, 52, 54, 52,
|
|
54, 210, 53, 224, 213, 52, 55, 196, 54, 223,
|
|
219, 171, 117, 156, 223, 224, 242, 210, 154, 240,
|
|
4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
|
|
14, 15, 4, 5, 6, 7, 8, 9, 10, 11,
|
|
12, 13, 14, 15, 240, 219, 192, 224, -1, 243,
|
|
-1, -1, 127, -1, 38, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, 38, -1, -1, -1,
|
|
-1, -1, -1, -1, 58, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, 55, 4, 5, 6, 7, 8, 9,
|
|
10, 11, 12, 13, 14, 15, -1, -1, 15, 16,
|
|
17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
|
|
27, -1, -1, -1, -1, -1, -1, -1, 38, 36,
|
|
-1, 38, 39, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, 51, -1, 50, 4, 5, 6, 7, 8, 9,
|
|
10, 11, 12, 13, 14, 15, 15, 16, 17, 18,
|
|
19, 20, 21, 22, 23, 24, 25, 26, 27, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, 36, 38, 38,
|
|
39, 16, 17, 18, 19, 20, 21, 22, 23, 24,
|
|
25, 26, 27
|
|
};
|
|
|
|
/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
|
|
symbol of state STATE-NUM. */
|
|
static const yytype_uint8 yystos[] =
|
|
{
|
|
0, 30, 60, 49, 0, 50, 61, 4, 5, 6,
|
|
7, 8, 9, 10, 11, 12, 13, 14, 15, 38,
|
|
58, 62, 81, 103, 104, 105, 106, 107, 123, 41,
|
|
123, 63, 104, 58, 32, 67, 52, 54, 54, 37,
|
|
51, 64, 58, 40, 42, 43, 44, 45, 46, 47,
|
|
48, 123, 33, 35, 68, 70, 71, 73, 76, 77,
|
|
78, 81, 103, 106, 28, 82, 105, 16, 121, 16,
|
|
17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
|
|
27, 36, 39, 50, 107, 111, 112, 113, 114, 115,
|
|
116, 118, 123, 123, 40, 123, 54, 54, 54, 54,
|
|
54, 54, 54, 54, 54, 69, 123, 55, 70, 52,
|
|
72, 72, 72, 72, 34, 55, 52, 83, 84, 85,
|
|
86, 87, 106, 123, 29, 88, 111, 53, 55, 50,
|
|
54, 54, 111, 121, 20, 21, 24, 25, 119, 120,
|
|
120, 120, 121, 122, 121, 122, 122, 111, 50, 20,
|
|
69, 57, 84, 52, 53, 54, 89, 90, 91, 103,
|
|
106, 31, 108, 51, 114, 117, 118, 65, 111, 111,
|
|
53, 79, 80, 103, 104, 56, 50, 56, 52, 86,
|
|
123, 3, 20, 24, 27, 90, 52, 92, 93, 123,
|
|
102, 104, 109, 110, 53, 56, 62, 120, 51, 80,
|
|
52, 97, 98, 123, 69, 74, 75, 123, 69, 52,
|
|
53, 55, 94, 54, 110, 52, 118, 63, 52, 53,
|
|
55, 99, 51, 53, 54, 93, 123, 95, 96, 107,
|
|
111, 52, 66, 98, 20, 24, 100, 101, 75, 115,
|
|
53, 56, 51, 53, 56, 96, 105, 101
|
|
};
|
|
|
|
#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 210 "ncgen.y"
|
|
{if (error_count > 0) YYABORT;}
|
|
break;
|
|
|
|
case 7:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 230 "ncgen.y"
|
|
{
|
|
Symbol* id = (yyvsp[(2) - (3)].sym);
|
|
markcdf4("Group specification");
|
|
if(creategroup(id) == NULL)
|
|
yyerror("duplicate group declaration within parent group for %s",
|
|
id->name);
|
|
}
|
|
break;
|
|
|
|
case 8:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 239 "ncgen.y"
|
|
{listpop(groupstack);}
|
|
break;
|
|
|
|
case 11:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 245 "ncgen.y"
|
|
{}
|
|
break;
|
|
|
|
case 12:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 247 "ncgen.y"
|
|
{markcdf4("Type specification");}
|
|
break;
|
|
|
|
case 15:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 253 "ncgen.y"
|
|
{ /* Use when defining a type */
|
|
(yyvsp[(1) - (1)].sym)->objectclass = NC_TYPE;
|
|
if(dupobjectcheck(NC_TYPE,(yyvsp[(1) - (1)].sym)))
|
|
yyerror("duplicate type declaration for %s",
|
|
(yyvsp[(1) - (1)].sym)->name);
|
|
listpush(typdefs,(elem_t)(yyvsp[(1) - (1)].sym));
|
|
}
|
|
break;
|
|
|
|
case 16:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 262 "ncgen.y"
|
|
{}
|
|
break;
|
|
|
|
case 17:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 262 "ncgen.y"
|
|
{}
|
|
break;
|
|
|
|
case 24:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 276 "ncgen.y"
|
|
{
|
|
int i;
|
|
addtogroup((yyvsp[(3) - (6)].sym)); /* sets prefix*/
|
|
(yyvsp[(3) - (6)].sym)->objectclass=NC_TYPE;
|
|
(yyvsp[(3) - (6)].sym)->subclass=NC_ENUM;
|
|
(yyvsp[(3) - (6)].sym)->typ.basetype=(yyvsp[(1) - (6)].sym);
|
|
(yyvsp[(3) - (6)].sym)->typ.size = (yyvsp[(1) - (6)].sym)->typ.size;
|
|
(yyvsp[(3) - (6)].sym)->typ.alignment = (yyvsp[(1) - (6)].sym)->typ.alignment;
|
|
stackbase=(yyvsp[(5) - (6)].mark);
|
|
stacklen=listlength(stack);
|
|
(yyvsp[(3) - (6)].sym)->subnodes = listnew();
|
|
/* Variety of field fixups*/
|
|
/* 1. add in the enum values*/
|
|
/* 2. make this type be their container*/
|
|
/* 3. make constant names visible in the group*/
|
|
/* 4. set field basetype to be same as enum basetype*/
|
|
for(i=stackbase;i<stacklen;i++) {
|
|
Symbol* eid = (Symbol*)listget(stack,i);
|
|
assert(eid->subclass == NC_ECONST);
|
|
addtogroup(eid);
|
|
listpush((yyvsp[(3) - (6)].sym)->subnodes,(elem_t)eid);
|
|
eid->container = (yyvsp[(3) - (6)].sym);
|
|
eid->typ.basetype = (yyvsp[(3) - (6)].sym)->typ.basetype;
|
|
}
|
|
listsetlength(stack,stackbase);/* remove stack nodes*/
|
|
}
|
|
break;
|
|
|
|
case 25:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 305 "ncgen.y"
|
|
{(yyval.mark)=listlength(stack); listpush(stack,(elem_t)(yyvsp[(1) - (1)].sym));}
|
|
break;
|
|
|
|
case 26:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 307 "ncgen.y"
|
|
{
|
|
int i;
|
|
(yyval.mark)=(yyvsp[(1) - (3)].mark);
|
|
/* check for duplicates*/
|
|
stackbase=(yyvsp[(1) - (3)].mark);
|
|
stacklen=listlength(stack);
|
|
for(i=stackbase;i<stacklen;i++) {
|
|
Symbol* elem = (Symbol*)listget(stack,i);
|
|
if(strcmp((yyvsp[(3) - (3)].sym)->name,elem->name)==0)
|
|
yyerror("duplicate enum declaration for %s",
|
|
elem->name);
|
|
}
|
|
listpush(stack,(elem_t)(yyvsp[(3) - (3)].sym));
|
|
}
|
|
break;
|
|
|
|
case 27:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 324 "ncgen.y"
|
|
{
|
|
(yyvsp[(1) - (3)].sym)->objectclass=NC_TYPE;
|
|
(yyvsp[(1) - (3)].sym)->subclass=NC_ECONST;
|
|
(yyvsp[(1) - (3)].sym)->typ.econst=(yyvsp[(3) - (3)].constant);
|
|
(yyval.sym)=(yyvsp[(1) - (3)].sym);
|
|
}
|
|
break;
|
|
|
|
case 28:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 333 "ncgen.y"
|
|
{
|
|
vercheck(NC_OPAQUE);
|
|
addtogroup((yyvsp[(5) - (5)].sym)); /*sets prefix*/
|
|
(yyvsp[(5) - (5)].sym)->objectclass=NC_TYPE;
|
|
(yyvsp[(5) - (5)].sym)->subclass=NC_OPAQUE;
|
|
(yyvsp[(5) - (5)].sym)->typ.typecode=NC_OPAQUE;
|
|
(yyvsp[(5) - (5)].sym)->typ.size=int32_val;
|
|
(yyvsp[(5) - (5)].sym)->typ.alignment=nctypealignment(NC_OPAQUE);
|
|
}
|
|
break;
|
|
|
|
case 29:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 345 "ncgen.y"
|
|
{
|
|
Symbol* basetype = (yyvsp[(1) - (5)].sym);
|
|
vercheck(NC_VLEN);
|
|
addtogroup((yyvsp[(5) - (5)].sym)); /*sets prefix*/
|
|
(yyvsp[(5) - (5)].sym)->objectclass=NC_TYPE;
|
|
(yyvsp[(5) - (5)].sym)->subclass=NC_VLEN;
|
|
(yyvsp[(5) - (5)].sym)->typ.basetype=basetype;
|
|
(yyvsp[(5) - (5)].sym)->typ.typecode=NC_VLEN;
|
|
(yyvsp[(5) - (5)].sym)->typ.size=VLENSIZE;
|
|
(yyvsp[(5) - (5)].sym)->typ.alignment=nctypealignment(NC_VLEN);
|
|
}
|
|
break;
|
|
|
|
case 30:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 359 "ncgen.y"
|
|
{
|
|
int i,j;
|
|
vercheck(NC_COMPOUND);
|
|
addtogroup((yyvsp[(2) - (5)].sym));
|
|
/* check for duplicate field names*/
|
|
stackbase=(yyvsp[(4) - (5)].mark);
|
|
stacklen=listlength(stack);
|
|
for(i=stackbase;i<stacklen;i++) {
|
|
Symbol* elem1 = (Symbol*)listget(stack,i);
|
|
for(j=i+1;j<stacklen;j++) {
|
|
Symbol* elem2 = (Symbol*)listget(stack,j);
|
|
if(strcmp(elem1->name,elem2->name)==0) {
|
|
yyerror("duplicate field declaration for %s",elem1->name);
|
|
}
|
|
}
|
|
}
|
|
(yyvsp[(2) - (5)].sym)->objectclass=NC_TYPE;
|
|
(yyvsp[(2) - (5)].sym)->subclass=NC_COMPOUND;
|
|
(yyvsp[(2) - (5)].sym)->typ.basetype=NULL;
|
|
(yyvsp[(2) - (5)].sym)->typ.typecode=NC_COMPOUND;
|
|
(yyvsp[(2) - (5)].sym)->subnodes = listnew();
|
|
/* Add in the fields*/
|
|
for(i=stackbase;i<stacklen;i++) {
|
|
Symbol* fsym = (Symbol*)listget(stack,i);
|
|
fsym->container = (yyvsp[(2) - (5)].sym);
|
|
listpush((yyvsp[(2) - (5)].sym)->subnodes,(elem_t)fsym);
|
|
}
|
|
listsetlength(stack,stackbase);/* remove stack nodes*/
|
|
}
|
|
break;
|
|
|
|
case 31:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 391 "ncgen.y"
|
|
{(yyval.mark)=(yyvsp[(1) - (2)].mark);}
|
|
break;
|
|
|
|
case 32:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 392 "ncgen.y"
|
|
{(yyval.mark)=(yyvsp[(1) - (3)].mark);}
|
|
break;
|
|
|
|
case 33:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 396 "ncgen.y"
|
|
{
|
|
int i;
|
|
(yyval.mark)=(yyvsp[(2) - (2)].mark);
|
|
stackbase=(yyvsp[(2) - (2)].mark);
|
|
stacklen=listlength(stack);
|
|
/* process each field in the fieldlist*/
|
|
for(i=stackbase;i<stacklen;i++) {
|
|
Symbol* f = (Symbol*)listget(stack,i);
|
|
f->typ.basetype = (yyvsp[(1) - (2)].sym);
|
|
}
|
|
}
|
|
break;
|
|
|
|
case 34:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 409 "ncgen.y"
|
|
{ (yyval.sym) = primsymbols[NC_CHAR]; }
|
|
break;
|
|
|
|
case 35:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 410 "ncgen.y"
|
|
{ (yyval.sym) = primsymbols[NC_BYTE]; }
|
|
break;
|
|
|
|
case 36:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 411 "ncgen.y"
|
|
{ (yyval.sym) = primsymbols[NC_SHORT]; }
|
|
break;
|
|
|
|
case 37:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 412 "ncgen.y"
|
|
{ (yyval.sym) = primsymbols[NC_INT]; }
|
|
break;
|
|
|
|
case 38:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 413 "ncgen.y"
|
|
{ (yyval.sym) = primsymbols[NC_FLOAT]; }
|
|
break;
|
|
|
|
case 39:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 414 "ncgen.y"
|
|
{ (yyval.sym) = primsymbols[NC_DOUBLE]; }
|
|
break;
|
|
|
|
case 40:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 415 "ncgen.y"
|
|
{ vercheck(NC_UBYTE); (yyval.sym) = primsymbols[NC_UBYTE]; }
|
|
break;
|
|
|
|
case 41:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 416 "ncgen.y"
|
|
{ vercheck(NC_USHORT); (yyval.sym) = primsymbols[NC_USHORT]; }
|
|
break;
|
|
|
|
case 42:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 417 "ncgen.y"
|
|
{ vercheck(NC_UINT); (yyval.sym) = primsymbols[NC_UINT]; }
|
|
break;
|
|
|
|
case 43:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 418 "ncgen.y"
|
|
{ vercheck(NC_INT64); (yyval.sym) = primsymbols[NC_INT64]; }
|
|
break;
|
|
|
|
case 44:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 419 "ncgen.y"
|
|
{ vercheck(NC_UINT64); (yyval.sym) = primsymbols[NC_UINT64]; }
|
|
break;
|
|
|
|
case 46:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 423 "ncgen.y"
|
|
{}
|
|
break;
|
|
|
|
case 47:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 424 "ncgen.y"
|
|
{}
|
|
break;
|
|
|
|
case 50:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 431 "ncgen.y"
|
|
{}
|
|
break;
|
|
|
|
case 51:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 431 "ncgen.y"
|
|
{}
|
|
break;
|
|
|
|
case 54:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 439 "ncgen.y"
|
|
{
|
|
(yyvsp[(1) - (3)].sym)->dim.declsize = (size_t)uint32_val;
|
|
#ifdef DEBUG1
|
|
fprintf(stderr,"dimension: %s = %lu\n",(yyvsp[(1) - (3)].sym)->name,(unsigned long)(yyvsp[(1) - (3)].sym)->dim.declsize);
|
|
#endif
|
|
}
|
|
break;
|
|
|
|
case 55:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 446 "ncgen.y"
|
|
{
|
|
if(int32_val <= 0) {
|
|
derror("dimension size must be positive");
|
|
YYABORT;
|
|
}
|
|
(yyvsp[(1) - (3)].sym)->dim.declsize = (size_t)int32_val;
|
|
#ifdef DEBUG1
|
|
fprintf(stderr,"dimension: %s = %lu\n",(yyvsp[(1) - (3)].sym)->name,(unsigned long)(yyvsp[(1) - (3)].sym)->dim.declsize);
|
|
#endif
|
|
}
|
|
break;
|
|
|
|
case 56:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 457 "ncgen.y"
|
|
{ /* for rare case where 2^31 < dimsize < 2^32 */
|
|
if (double_val <= 0)
|
|
yyerror("dimension length must be positive");
|
|
if (double_val > MAXFLOATDIM)
|
|
yyerror("dimension too large");
|
|
if (double_val - (size_t) double_val > 0)
|
|
yyerror("dimension length must be an integer");
|
|
(yyvsp[(1) - (3)].sym)->dim.declsize = (size_t)double_val;
|
|
#ifdef DEBUG1
|
|
fprintf(stderr,"dimension: %s = %lu\n",(yyvsp[(1) - (3)].sym)->name,(unsigned long)(yyvsp[(1) - (3)].sym)->dim.declsize);
|
|
#endif
|
|
}
|
|
break;
|
|
|
|
case 57:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 470 "ncgen.y"
|
|
{
|
|
(yyvsp[(1) - (3)].sym)->dim.declsize = NC_UNLIMITED;
|
|
(yyvsp[(1) - (3)].sym)->dim.isunlimited = 1;
|
|
#ifdef DEBUG1
|
|
fprintf(stderr,"dimension: %s = UNLIMITED\n",(yyvsp[(1) - (3)].sym)->name);
|
|
#endif
|
|
}
|
|
break;
|
|
|
|
case 58:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 480 "ncgen.y"
|
|
{
|
|
(yyvsp[(1) - (1)].sym)->objectclass=NC_DIM;
|
|
if(dupobjectcheck(NC_DIM,(yyvsp[(1) - (1)].sym)))
|
|
yyerror( "Duplicate dimension declaration for %s",
|
|
(yyvsp[(1) - (1)].sym)->name);
|
|
addtogroup((yyvsp[(1) - (1)].sym));
|
|
(yyval.sym)=(yyvsp[(1) - (1)].sym);
|
|
listpush(dimdefs,(elem_t)(yyvsp[(1) - (1)].sym));
|
|
}
|
|
break;
|
|
|
|
case 60:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 492 "ncgen.y"
|
|
{}
|
|
break;
|
|
|
|
case 61:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 493 "ncgen.y"
|
|
{}
|
|
break;
|
|
|
|
case 64:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 500 "ncgen.y"
|
|
{}
|
|
break;
|
|
|
|
case 65:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 500 "ncgen.y"
|
|
{}
|
|
break;
|
|
|
|
case 66:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 503 "ncgen.y"
|
|
{
|
|
int i;
|
|
stackbase=(yyvsp[(2) - (2)].mark);
|
|
stacklen=listlength(stack);
|
|
/* process each variable in the varlist*/
|
|
for(i=stackbase;i<stacklen;i++) {
|
|
Symbol* sym = (Symbol*)listget(stack,i);
|
|
sym->objectclass = NC_VAR;
|
|
if(dupobjectcheck(NC_VAR,sym)) {
|
|
yyerror("Duplicate variable declaration for %s",
|
|
sym->name);
|
|
} else {
|
|
sym->typ.basetype = (yyvsp[(1) - (2)].sym);
|
|
addtogroup(sym);
|
|
listpush(vardefs,(elem_t)sym);
|
|
}
|
|
}
|
|
listsetlength(stack,stackbase);/* remove stack nodes*/
|
|
}
|
|
break;
|
|
|
|
case 67:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 525 "ncgen.y"
|
|
{(yyval.mark)=listlength(stack);
|
|
listpush(stack,(elem_t)(yyvsp[(1) - (1)].sym));
|
|
}
|
|
break;
|
|
|
|
case 68:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 529 "ncgen.y"
|
|
{(yyval.mark)=(yyvsp[(1) - (3)].mark); listpush(stack,(elem_t)(yyvsp[(3) - (3)].sym));}
|
|
break;
|
|
|
|
case 69:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 533 "ncgen.y"
|
|
{
|
|
int i;
|
|
Dimset dimset;
|
|
stacklen=listlength(stack);
|
|
stackbase=(yyvsp[(2) - (2)].mark);
|
|
count = stacklen - stackbase;
|
|
if(count >= NC_MAX_VAR_DIMS) {
|
|
yyerror("%s has too many dimensions",(yyvsp[(1) - (2)].sym)->name);
|
|
count = NC_MAX_VAR_DIMS - 1;
|
|
stacklen = stackbase + count;
|
|
}
|
|
dimset.ndims = count;
|
|
/* extract the actual dimensions*/
|
|
if(dimset.ndims > 0) {
|
|
for(i=0;i<count;i++) {
|
|
Symbol* dsym = (Symbol*)listget(stack,stackbase+i);
|
|
dimset.dimsyms[i] = dsym;
|
|
}
|
|
(yyvsp[(1) - (2)].sym)->typ.dimset = dimset;
|
|
}
|
|
(yyvsp[(1) - (2)].sym)->typ.basetype = NULL; /* not yet known*/
|
|
(yyvsp[(1) - (2)].sym)->objectclass=NC_VAR;
|
|
listsetlength(stack,stackbase);/* remove stack nodes*/
|
|
}
|
|
break;
|
|
|
|
case 70:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 559 "ncgen.y"
|
|
{(yyval.mark)=listlength(stack);}
|
|
break;
|
|
|
|
case 71:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 560 "ncgen.y"
|
|
{(yyval.mark)=(yyvsp[(2) - (3)].mark);}
|
|
break;
|
|
|
|
case 72:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 563 "ncgen.y"
|
|
{(yyval.mark)=listlength(stack); listpush(stack,(elem_t)(yyvsp[(1) - (1)].sym));}
|
|
break;
|
|
|
|
case 73:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 565 "ncgen.y"
|
|
{(yyval.mark)=(yyvsp[(1) - (3)].mark); listpush(stack,(elem_t)(yyvsp[(3) - (3)].sym));}
|
|
break;
|
|
|
|
case 74:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 569 "ncgen.y"
|
|
{Symbol* dimsym = (yyvsp[(1) - (1)].sym);
|
|
dimsym->objectclass = NC_DIM;
|
|
/* Find the actual dimension*/
|
|
dimsym = locate(dimsym);
|
|
if(dimsym == NULL) {
|
|
derror("Undefined or forward referenced dimension: %s",(yyvsp[(1) - (1)].sym)->name);
|
|
YYABORT;
|
|
}
|
|
(yyval.sym)=dimsym;
|
|
}
|
|
break;
|
|
|
|
case 75:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 583 "ncgen.y"
|
|
{(yyval.mark)=listlength(stack);
|
|
listpush(stack,(elem_t)(yyvsp[(1) - (1)].sym));
|
|
}
|
|
break;
|
|
|
|
case 76:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 587 "ncgen.y"
|
|
{(yyval.mark)=(yyvsp[(1) - (3)].mark); listpush(stack,(elem_t)(yyvsp[(3) - (3)].sym));}
|
|
break;
|
|
|
|
case 77:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 592 "ncgen.y"
|
|
{
|
|
int i;
|
|
Dimset dimset;
|
|
stackbase=(yyvsp[(2) - (2)].mark);
|
|
stacklen=listlength(stack);
|
|
count = stacklen - stackbase;
|
|
if(count >= NC_MAX_VAR_DIMS) {
|
|
yyerror("%s has too many dimensions",(yyvsp[(1) - (2)].sym)->name);
|
|
count = NC_MAX_VAR_DIMS - 1;
|
|
stacklen = stackbase + count;
|
|
}
|
|
dimset.ndims = count;
|
|
if(count > 0) {
|
|
/* extract the actual dimensions*/
|
|
for(i=0;i<count;i++) {
|
|
Symbol* dsym = (Symbol*)listget(stack,stackbase+i);
|
|
dimset.dimsyms[i] = dsym;
|
|
}
|
|
(yyvsp[(1) - (2)].sym)->typ.dimset = dimset;
|
|
}
|
|
(yyvsp[(1) - (2)].sym)->typ.basetype = NULL; /* not yet known*/
|
|
(yyvsp[(1) - (2)].sym)->objectclass=NC_TYPE;
|
|
(yyvsp[(1) - (2)].sym)->subclass=NC_FIELD;
|
|
listsetlength(stack,stackbase);/* remove stack nodes*/
|
|
(yyval.sym) = (yyvsp[(1) - (2)].sym);
|
|
}
|
|
break;
|
|
|
|
case 78:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 620 "ncgen.y"
|
|
{(yyval.mark)=listlength(stack);}
|
|
break;
|
|
|
|
case 79:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 621 "ncgen.y"
|
|
{(yyval.mark)=(yyvsp[(2) - (3)].mark);}
|
|
break;
|
|
|
|
case 80:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 625 "ncgen.y"
|
|
{(yyval.mark)=listlength(stack); listpush(stack,(elem_t)(yyvsp[(1) - (1)].sym));}
|
|
break;
|
|
|
|
case 81:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 627 "ncgen.y"
|
|
{(yyval.mark)=(yyvsp[(1) - (3)].mark); listpush(stack,(elem_t)(yyvsp[(3) - (3)].sym));}
|
|
break;
|
|
|
|
case 82:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 632 "ncgen.y"
|
|
{ /* Anonymous integer dimension.
|
|
Can only occur in type definitions*/
|
|
char anon[32];
|
|
sprintf(anon,"const%u",uint32_val);
|
|
(yyval.sym) = install(anon);
|
|
(yyval.sym)->objectclass = NC_DIM;
|
|
(yyval.sym)->dim.isconstant = 1;
|
|
(yyval.sym)->dim.declsize = uint32_val;
|
|
}
|
|
break;
|
|
|
|
case 83:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 642 "ncgen.y"
|
|
{ /* Anonymous integer dimension.
|
|
Can only occur in type definitions*/
|
|
char anon[32];
|
|
if(int32_val <= 0) {
|
|
derror("field dimension must be positive");
|
|
YYABORT;
|
|
}
|
|
sprintf(anon,"const%d",int32_val);
|
|
(yyval.sym) = install(anon);
|
|
(yyval.sym)->objectclass = NC_DIM;
|
|
(yyval.sym)->dim.isconstant = 1;
|
|
(yyval.sym)->dim.declsize = int32_val;
|
|
}
|
|
break;
|
|
|
|
case 84:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 662 "ncgen.y"
|
|
{Symbol* vsym = (yyvsp[(1) - (1)].sym);
|
|
if(vsym->objectclass != NC_VAR) {
|
|
derror("Undefined or forward referenced variable: %s",vsym->name);
|
|
YYABORT;
|
|
}
|
|
(yyval.sym)=vsym;
|
|
}
|
|
break;
|
|
|
|
case 85:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 673 "ncgen.y"
|
|
{Symbol* tsym = (yyvsp[(1) - (1)].sym);
|
|
if(tsym->objectclass != NC_TYPE) {
|
|
derror("Undefined or forward referenced type: %s",tsym->name);
|
|
YYABORT;
|
|
}
|
|
(yyval.sym)=tsym;
|
|
}
|
|
break;
|
|
|
|
case 86:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 684 "ncgen.y"
|
|
{Symbol* tvsym = (yyvsp[(1) - (1)].sym); Symbol* sym;
|
|
/* disambiguate*/
|
|
tvsym->objectclass = NC_VAR;
|
|
sym = locate(tvsym);
|
|
if(sym == NULL) {
|
|
tvsym->objectclass = NC_TYPE;
|
|
sym = locate(tvsym);
|
|
if(tvsym == NULL) {
|
|
derror("Undefined or forward referenced name: %s",(yyvsp[(1) - (1)].sym)->name);
|
|
YYABORT;
|
|
} else tvsym = sym;
|
|
} else tvsym = sym;
|
|
if(tvsym == NULL) {
|
|
derror("Undefined name: %s",(yyvsp[(1) - (1)].sym)->name);
|
|
YYABORT;
|
|
}
|
|
(yyval.sym)=tvsym;
|
|
}
|
|
break;
|
|
|
|
case 87:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 702 "ncgen.y"
|
|
{(yyval.sym)=(yyvsp[(1) - (1)].sym);}
|
|
break;
|
|
|
|
case 88:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 709 "ncgen.y"
|
|
{}
|
|
break;
|
|
|
|
case 89:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 709 "ncgen.y"
|
|
{}
|
|
break;
|
|
|
|
case 90:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 713 "ncgen.y"
|
|
{ (yyval.sym)=makeattribute((yyvsp[(2) - (4)].sym),NULL,NULL,(yyvsp[(4) - (4)].datalist),ATTRGLOBAL);}
|
|
break;
|
|
|
|
case 91:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 715 "ncgen.y"
|
|
{Symbol* tsym = (yyvsp[(1) - (6)].sym); Symbol* vsym = (yyvsp[(2) - (6)].sym); Symbol* asym = (yyvsp[(4) - (6)].sym);
|
|
if(vsym->objectclass == NC_VAR) {
|
|
(yyval.sym)=makeattribute(asym,vsym,tsym,(yyvsp[(6) - (6)].datalist),ATTRVAR);
|
|
} else {
|
|
derror("Doubly typed attribute: %s",asym->name);
|
|
YYABORT;
|
|
}
|
|
}
|
|
break;
|
|
|
|
case 92:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 724 "ncgen.y"
|
|
{Symbol* sym = (yyvsp[(1) - (5)].sym); Symbol* asym = (yyvsp[(3) - (5)].sym);
|
|
if(sym->objectclass == NC_VAR) {
|
|
(yyval.sym)=makeattribute(asym,sym,NULL,(yyvsp[(5) - (5)].datalist),ATTRVAR);
|
|
} else if(sym->objectclass == NC_TYPE) {
|
|
(yyval.sym)=makeattribute(asym,NULL,sym,(yyvsp[(5) - (5)].datalist),ATTRGLOBAL);
|
|
} else {
|
|
derror("Attribute prefix not a variable or type: %s",asym->name);
|
|
YYABORT;
|
|
}
|
|
}
|
|
break;
|
|
|
|
case 93:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 735 "ncgen.y"
|
|
{(yyval.sym) = makespecial(_FILLVALUE_FLAG,(yyvsp[(1) - (5)].sym),NULL,(void*)(yyvsp[(5) - (5)].datalist),0);}
|
|
break;
|
|
|
|
case 94:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 737 "ncgen.y"
|
|
{(yyval.sym) = makespecial(_FILLVALUE_FLAG,(yyvsp[(2) - (6)].sym),(yyvsp[(1) - (6)].sym),(void*)(yyvsp[(6) - (6)].datalist),0);}
|
|
break;
|
|
|
|
case 95:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 739 "ncgen.y"
|
|
{(yyval.sym) = makespecial(_STORAGE_FLAG,(yyvsp[(1) - (5)].sym),NULL,(void*)&(yyvsp[(5) - (5)].constant),1);}
|
|
break;
|
|
|
|
case 96:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 741 "ncgen.y"
|
|
{(yyval.sym) = makespecial(_CHUNKSIZES_FLAG,(yyvsp[(1) - (5)].sym),NULL,(void*)(yyvsp[(5) - (5)].datalist),0);}
|
|
break;
|
|
|
|
case 97:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 743 "ncgen.y"
|
|
{(yyval.sym) = makespecial(_FLETCHER32_FLAG,(yyvsp[(1) - (5)].sym),NULL,(void*)&(yyvsp[(5) - (5)].constant),1);}
|
|
break;
|
|
|
|
case 98:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 745 "ncgen.y"
|
|
{(yyval.sym) = makespecial(_DEFLATE_FLAG,(yyvsp[(1) - (5)].sym),NULL,(void*)&(yyvsp[(5) - (5)].constant),1);}
|
|
break;
|
|
|
|
case 99:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 747 "ncgen.y"
|
|
{(yyval.sym) = makespecial(_SHUFFLE_FLAG,(yyvsp[(1) - (5)].sym),NULL,(void*)&(yyvsp[(5) - (5)].constant),1);}
|
|
break;
|
|
|
|
case 100:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 749 "ncgen.y"
|
|
{(yyval.sym) = makespecial(_ENDIAN_FLAG,(yyvsp[(1) - (5)].sym),NULL,(void*)&(yyvsp[(5) - (5)].constant),1);}
|
|
break;
|
|
|
|
case 101:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 751 "ncgen.y"
|
|
{(yyval.sym) = makespecial(_NOFILL_FLAG,(yyvsp[(1) - (5)].sym),NULL,(void*)&(yyvsp[(5) - (5)].constant),1);}
|
|
break;
|
|
|
|
case 102:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 753 "ncgen.y"
|
|
{(yyval.sym) = makespecial(_FORMAT_FLAG,NULL,NULL,(void*)&(yyvsp[(4) - (4)].constant),1);}
|
|
break;
|
|
|
|
case 103:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 758 "ncgen.y"
|
|
{
|
|
(yyval.sym)=(yyvsp[(1) - (1)].sym);
|
|
(yyvsp[(1) - (1)].sym)->is_ref=1;
|
|
setpathcurrent((yyvsp[(1) - (1)].sym));
|
|
}
|
|
break;
|
|
|
|
case 104:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 764 "ncgen.y"
|
|
{
|
|
(yyval.sym)=(yyvsp[(1) - (1)].sym);
|
|
(yyvsp[(1) - (1)].sym)->is_ref=1;
|
|
(yyvsp[(1) - (1)].sym)->is_prefixed=1;
|
|
/* path is set in ncgen.l*/
|
|
}
|
|
break;
|
|
|
|
case 106:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 773 "ncgen.y"
|
|
{}
|
|
break;
|
|
|
|
case 107:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 774 "ncgen.y"
|
|
{}
|
|
break;
|
|
|
|
case 110:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 782 "ncgen.y"
|
|
{(yyvsp[(1) - (3)].sym)->data = (yyvsp[(3) - (3)].datalist);}
|
|
break;
|
|
|
|
case 111:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 785 "ncgen.y"
|
|
{(yyval.datalist) = (yyvsp[(1) - (1)].datalist);}
|
|
break;
|
|
|
|
case 112:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 786 "ncgen.y"
|
|
{(yyval.datalist) = (yyvsp[(1) - (1)].datalist);}
|
|
break;
|
|
|
|
case 113:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 790 "ncgen.y"
|
|
{(yyval.datalist) = builddatalist(0);}
|
|
break;
|
|
|
|
case 114:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 794 "ncgen.y"
|
|
{(yyval.datalist) = builddatalist(0); datalistextend((yyval.datalist),&((yyvsp[(1) - (1)].constant)));}
|
|
break;
|
|
|
|
case 115:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 796 "ncgen.y"
|
|
{datalistextend((yyvsp[(1) - (3)].datalist),&((yyvsp[(3) - (3)].constant))); (yyval.datalist)=(yyvsp[(1) - (3)].datalist);}
|
|
break;
|
|
|
|
case 116:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 800 "ncgen.y"
|
|
{(yyval.constant)=(yyvsp[(1) - (1)].constant);}
|
|
break;
|
|
|
|
case 117:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 801 "ncgen.y"
|
|
{(yyval.constant)=builddatasublist((yyvsp[(2) - (3)].datalist));}
|
|
break;
|
|
|
|
case 118:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 805 "ncgen.y"
|
|
{(yyval.constant)=(yyvsp[(1) - (1)].constant);}
|
|
break;
|
|
|
|
case 119:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 806 "ncgen.y"
|
|
{(yyval.constant)=makeconstdata(NC_OPAQUE);}
|
|
break;
|
|
|
|
case 120:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 807 "ncgen.y"
|
|
{(yyval.constant)=makeconstdata(NC_FILLVALUE);}
|
|
break;
|
|
|
|
case 121:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 808 "ncgen.y"
|
|
{(yyval.constant)=makeenumconst((yyvsp[(1) - (1)].sym));}
|
|
break;
|
|
|
|
case 123:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 813 "ncgen.y"
|
|
{(yyval.constant)=evaluate((yyvsp[(1) - (4)].sym),(yyvsp[(3) - (4)].datalist));}
|
|
break;
|
|
|
|
case 124:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 818 "ncgen.y"
|
|
{(yyval.datalist) = builddatalist(0); datalistextend((yyval.datalist),&((yyvsp[(1) - (1)].constant)));}
|
|
break;
|
|
|
|
case 125:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 820 "ncgen.y"
|
|
{datalistextend((yyvsp[(1) - (3)].datalist),&((yyvsp[(3) - (3)].constant))); (yyval.datalist)=(yyvsp[(1) - (3)].datalist);}
|
|
break;
|
|
|
|
case 126:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 824 "ncgen.y"
|
|
{(yyval.constant)=makeconstdata(NC_CHAR);}
|
|
break;
|
|
|
|
case 127:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 825 "ncgen.y"
|
|
{(yyval.constant)=makeconstdata(NC_BYTE);}
|
|
break;
|
|
|
|
case 128:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 826 "ncgen.y"
|
|
{(yyval.constant)=makeconstdata(NC_SHORT);}
|
|
break;
|
|
|
|
case 129:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 827 "ncgen.y"
|
|
{(yyval.constant)=makeconstdata(NC_INT);}
|
|
break;
|
|
|
|
case 130:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 828 "ncgen.y"
|
|
{(yyval.constant)=makeconstdata(NC_INT64);}
|
|
break;
|
|
|
|
case 131:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 829 "ncgen.y"
|
|
{(yyval.constant)=makeconstdata(NC_UBYTE);}
|
|
break;
|
|
|
|
case 132:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 830 "ncgen.y"
|
|
{(yyval.constant)=makeconstdata(NC_USHORT);}
|
|
break;
|
|
|
|
case 133:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 831 "ncgen.y"
|
|
{(yyval.constant)=makeconstdata(NC_UINT);}
|
|
break;
|
|
|
|
case 134:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 832 "ncgen.y"
|
|
{(yyval.constant)=makeconstdata(NC_UINT64);}
|
|
break;
|
|
|
|
case 135:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 833 "ncgen.y"
|
|
{(yyval.constant)=makeconstdata(NC_FLOAT);}
|
|
break;
|
|
|
|
case 136:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 834 "ncgen.y"
|
|
{(yyval.constant)=makeconstdata(NC_DOUBLE);}
|
|
break;
|
|
|
|
case 137:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 835 "ncgen.y"
|
|
{(yyval.constant)=makeconstdata(NC_STRING);}
|
|
break;
|
|
|
|
case 138:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 839 "ncgen.y"
|
|
{(yyval.datalist) = builddatalist(0); datalistextend((yyval.datalist),&((yyvsp[(1) - (1)].constant)));}
|
|
break;
|
|
|
|
case 139:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 840 "ncgen.y"
|
|
{(yyval.datalist)=(yyvsp[(1) - (3)].datalist); datalistextend((yyvsp[(1) - (3)].datalist),&((yyvsp[(3) - (3)].constant)));}
|
|
break;
|
|
|
|
case 140:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 845 "ncgen.y"
|
|
{(yyval.constant)=makeconstdata(NC_INT);}
|
|
break;
|
|
|
|
case 141:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 847 "ncgen.y"
|
|
{(yyval.constant)=makeconstdata(NC_UINT);}
|
|
break;
|
|
|
|
case 142:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 849 "ncgen.y"
|
|
{(yyval.constant)=makeconstdata(NC_INT64);}
|
|
break;
|
|
|
|
case 143:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 851 "ncgen.y"
|
|
{(yyval.constant)=makeconstdata(NC_UINT64);}
|
|
break;
|
|
|
|
case 144:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 855 "ncgen.y"
|
|
{(yyval.constant)=makeconstdata(NC_STRING);}
|
|
break;
|
|
|
|
case 145:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 859 "ncgen.y"
|
|
{(yyval.constant)=(yyvsp[(1) - (1)].constant);}
|
|
break;
|
|
|
|
case 146:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 860 "ncgen.y"
|
|
{(yyval.constant)=(yyvsp[(1) - (1)].constant);}
|
|
break;
|
|
|
|
case 147:
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 866 "ncgen.y"
|
|
{(yyval.sym)=(yyvsp[(1) - (1)].sym);}
|
|
break;
|
|
|
|
|
|
|
|
/* Line 1806 of yacc.c */
|
|
#line 2946 "ncgen.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 869 "ncgen.y"
|
|
|
|
|
|
#ifndef NO_STDARG
|
|
static void
|
|
yyerror(const char *fmt, ...)
|
|
#else
|
|
static void
|
|
yyerror(fmt,va_alist) const char* fmt; va_dcl
|
|
#endif
|
|
{
|
|
va_list argv;
|
|
vastart(argv,fmt);
|
|
(void)fprintf(stderr,"%s: %s line %d: ", progname, cdlname, lineno);
|
|
vderror(fmt,argv);
|
|
}
|
|
|
|
/* undefine yywrap macro, in case we are using bison instead of yacc */
|
|
#ifdef yywrap
|
|
#undef yywrap
|
|
#endif
|
|
|
|
static int
|
|
ncgwrap(void) /* returns 1 on EOF if no more input */
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
/* get lexical input routine generated by lex */
|
|
#include "ncgenyy.c"
|
|
|
|
/* Really should init our data within this file */
|
|
void
|
|
parse_init(void)
|
|
{
|
|
int i;
|
|
opaqueid = 0;
|
|
arrayuid = 0;
|
|
symlist = NULL;
|
|
stack = listnew();
|
|
groupstack = listnew();
|
|
consttype = NC_NAT;
|
|
grpdefs = listnew();
|
|
dimdefs = listnew();
|
|
attdefs = listnew();
|
|
gattdefs = listnew();
|
|
xattdefs = listnew();
|
|
typdefs = listnew();
|
|
vardefs = listnew();
|
|
condefs = listnew();
|
|
tmp = listnew();
|
|
createrootgroup();
|
|
/* Create the primitive types */
|
|
for(i=NC_NAT+1;i<=NC_STRING;i++) {
|
|
primsymbols[i] = makeprimitivetype(i);
|
|
}
|
|
lex_init();
|
|
}
|
|
|
|
static Symbol*
|
|
makeprimitivetype(nc_type nctype)
|
|
{
|
|
Symbol* sym = install(primtypenames[nctype]);
|
|
sym->objectclass=NC_TYPE;
|
|
sym->subclass=NC_PRIM;
|
|
sym->ncid = nctype;
|
|
sym->typ.basetype = NULL;
|
|
sym->typ.typecode = nctype;
|
|
sym->typ.size = ncsize(nctype);
|
|
sym->typ.nelems = 1;
|
|
sym->typ.alignment = nctypealignment(nctype);
|
|
sym->prefix = listnew();
|
|
return sym;
|
|
}
|
|
|
|
/* Symbol table operations for ncgen tool */
|
|
/* install sname in symbol table even if it is already there */
|
|
Symbol*
|
|
install(const char *sname)
|
|
{
|
|
Symbol* sp;
|
|
sp = (Symbol*) emalloc (sizeof (struct Symbol));
|
|
memset((void*)sp,0,sizeof(struct Symbol));
|
|
sp->name = nulldup(sname);
|
|
sp->next = symlist;
|
|
sp->lineno = lineno;
|
|
sp->location = currentgroup();
|
|
sp->container = currentgroup();
|
|
symlist = sp;
|
|
return sp;
|
|
}
|
|
|
|
|
|
static Symbol*
|
|
currentgroup(void)
|
|
{
|
|
if(listlength(groupstack) == 0) return rootgroup;
|
|
return (Symbol*)listtop(groupstack);
|
|
}
|
|
|
|
static Symbol*
|
|
createrootgroup(void)
|
|
{
|
|
Symbol* gsym = install(ROOTGROUPNAME);
|
|
gsym->objectclass = NC_GRP;
|
|
gsym->container = NULL;
|
|
gsym->subnodes = listnew();
|
|
gsym->grp.is_root = 1;
|
|
gsym->prefix = listnew();
|
|
listpush(grpdefs,(elem_t)gsym);
|
|
rootgroup = gsym;
|
|
return gsym;
|
|
}
|
|
|
|
static Symbol*
|
|
creategroup(Symbol * gsym)
|
|
{
|
|
/* See if this group already exists in currentgroup */
|
|
gsym->objectclass = NC_GRP;
|
|
if(dupobjectcheck(NC_GRP,gsym)) {
|
|
derror("Duplicate group name in same scope: %s",gsym->name);
|
|
return NULL;
|
|
}
|
|
addtogroup(gsym);
|
|
gsym->subnodes = listnew();
|
|
listpush(groupstack,(elem_t)gsym);
|
|
listpush(grpdefs,(elem_t)gsym);
|
|
return gsym;
|
|
}
|
|
|
|
static Constant
|
|
makeconstdata(nc_type nctype)
|
|
{
|
|
Constant con = nullconstant;
|
|
consttype = nctype;
|
|
con.nctype = nctype;
|
|
con.lineno = lineno;
|
|
switch (nctype) {
|
|
case NC_CHAR: con.value.charv = char_val; break;
|
|
case NC_BYTE: con.value.int8v = byte_val; break;
|
|
case NC_SHORT: con.value.int16v = int16_val; break;
|
|
case NC_INT: con.value.int32v = int32_val; break;
|
|
case NC_FLOAT:
|
|
con.value.floatv = float_val;
|
|
break;
|
|
case NC_DOUBLE:
|
|
con.value.doublev = double_val;
|
|
break;
|
|
case NC_STRING: { /* convert to a set of chars*/
|
|
size_t len;
|
|
len = bbLength(lextext);
|
|
con.value.stringv.len = len;
|
|
con.value.stringv.stringv = bbDup(lextext);
|
|
bbClear(lextext);
|
|
}
|
|
break;
|
|
|
|
/* Allow these constants even in netcdf-3 */
|
|
case NC_UBYTE: con.value.uint8v = ubyte_val; break;
|
|
case NC_USHORT: con.value.uint16v = uint16_val; break;
|
|
case NC_UINT: con.value.uint32v = uint32_val; break;
|
|
case NC_INT64: con.value.int64v = int64_val; break;
|
|
case NC_UINT64: con.value.uint64v = uint64_val; break;
|
|
|
|
#ifdef USE_NETCDF4
|
|
case NC_OPAQUE: {
|
|
char* s;
|
|
int len,padlen;
|
|
len = bbLength(lextext);
|
|
padlen = len;
|
|
if(padlen < 16) padlen = 16;
|
|
if((padlen % 2) == 1) padlen++;
|
|
s = (char*)emalloc(padlen+1);
|
|
memset((void*)s,'0',padlen);
|
|
s[padlen]='\0';
|
|
strncpy(s,bbContents(lextext),len);
|
|
con.value.opaquev.stringv = s;
|
|
con.value.opaquev.len = padlen;
|
|
} break;
|
|
#endif
|
|
|
|
case NC_FILLVALUE:
|
|
break; /* no associated value*/
|
|
|
|
default:
|
|
yyerror("Data constant: unexpected NC type: %s",
|
|
nctypename(nctype));
|
|
con.value.stringv.stringv = NULL;
|
|
con.value.stringv.len = 0;
|
|
}
|
|
return con;
|
|
}
|
|
|
|
static Constant
|
|
makeenumconst(Symbol* econst)
|
|
{
|
|
Constant con;
|
|
markcdf4("Enum type");
|
|
consttype = NC_ENUM;
|
|
con.nctype = NC_ECONST;
|
|
con.lineno = lineno;
|
|
/* fix up econst to be a ref to an econst*/
|
|
econst->objectclass = NC_TYPE;
|
|
econst->subclass = NC_ECONST;
|
|
{
|
|
Symbol* defsym;
|
|
defsym = locate(econst);
|
|
if(defsym == NULL)
|
|
derror("Undefined or forward referenced enum constant: %s",econst->name);
|
|
econst = defsym;
|
|
}
|
|
con.value.enumv = econst;
|
|
return con;
|
|
}
|
|
|
|
static void
|
|
addtogroup(Symbol* sym)
|
|
{
|
|
Symbol* grp = currentgroup();
|
|
sym->container = grp;
|
|
listpush(grp->subnodes,(elem_t)sym);
|
|
setpathcurrent(sym);
|
|
}
|
|
|
|
/* Check for duplicate name of given type within current group*/
|
|
static int
|
|
dupobjectcheck(nc_class objectclass, Symbol* pattern)
|
|
{
|
|
int i;
|
|
Symbol* grp;
|
|
if(pattern == NULL) return 0;
|
|
grp = pattern->container;
|
|
if(grp == NULL || grp->subnodes == NULL) return 0;
|
|
for(i=0;i<listlength(grp->subnodes);i++) {
|
|
Symbol* sym = (Symbol*)listget(grp->subnodes,i);
|
|
if(!sym->is_ref && sym->objectclass == objectclass
|
|
&& strcmp(sym->name,pattern->name)==0) return 1;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static void
|
|
setpathcurrent(Symbol* sym)
|
|
{
|
|
sym->is_prefixed = 0;
|
|
sym->prefix = prefixdup(groupstack);
|
|
}
|
|
|
|
/* Convert an nc_type code to the corresponding Symbol*/
|
|
Symbol*
|
|
basetypefor(nc_type nctype)
|
|
{
|
|
return primsymbols[nctype];
|
|
}
|
|
|
|
char*
|
|
specialname(int flag)
|
|
{
|
|
switch (flag) {
|
|
case _FILLVALUE_FLAG: return "_FillValue";
|
|
case _FORMAT_FLAG: return "_Format";
|
|
case _STORAGE_FLAG: return "_Storage";
|
|
case _CHUNKSIZES_FLAG: return "_ChunkSizes";
|
|
case _FLETCHER32_FLAG: return "_Fletcher32";
|
|
case _DEFLATE_FLAG: return "_DeflateLevel";
|
|
case _SHUFFLE_FLAG: return "_Shuffle";
|
|
case _ENDIAN_FLAG: return "_Endianness";
|
|
case _NOFILL_FLAG: return "_NoFill";
|
|
default: break;
|
|
}
|
|
return "<unknown>";
|
|
}
|
|
|
|
static int
|
|
truefalse(Constant* con, int tag)
|
|
{
|
|
if(con->nctype == NC_STRING) {
|
|
char* sdata = con->value.stringv.stringv;
|
|
if(strncmp(sdata,"false",NC_MAX_NAME) == 0
|
|
|| strncmp(sdata,"0",NC_MAX_NAME) == 0)
|
|
return 0;
|
|
else if(strncmp(sdata,"true",NC_MAX_NAME) == 0
|
|
|| strncmp(sdata,"1",NC_MAX_NAME) == 0)
|
|
return 1;
|
|
else goto fail;
|
|
} else if(con->value.int32v < 0 || con->value.int32v > 1)
|
|
goto fail;
|
|
return con->value.int32v;
|
|
|
|
fail:
|
|
derror("%s: illegal value",specialname(tag));
|
|
return 0;
|
|
}
|
|
|
|
/* Since this may be affected by the _Format attribute, which
|
|
may come last, capture all the special info and sort it out
|
|
in semantics.
|
|
*/
|
|
static Symbol*
|
|
makespecial(int tag, Symbol* vsym, Symbol* tsym, void* data, int isconst)
|
|
{
|
|
Symbol* attr = NULL;
|
|
Datalist* list;
|
|
Constant* con;
|
|
Specialdata* special;
|
|
Constant iconst;
|
|
int tf = 0;
|
|
char* sdata = NULL;
|
|
int idata = -1;
|
|
|
|
|
|
specials_flag += (tag == _FILLVALUE_FLAG ? 0 : 1);
|
|
|
|
if(isconst) {
|
|
con = (Constant*)data;
|
|
list = builddatalist(1);
|
|
dlappend(list,(Constant*)data);
|
|
} else {
|
|
list = (Datalist*)data;
|
|
con = (Constant*)list->data;
|
|
}
|
|
|
|
if(tag == _FORMAT && vsym != NULL) {
|
|
derror("_Format: must be global attribute");
|
|
vsym = NULL;
|
|
}
|
|
|
|
switch (tag) {
|
|
case _FLETCHER32_FLAG:
|
|
case _SHUFFLE_FLAG:
|
|
case _NOFILL_FLAG:
|
|
iconst.nctype = (con->nctype == NC_STRING?NC_STRING:NC_INT);
|
|
convert1(con,&iconst);
|
|
tf = truefalse(&iconst,tag);
|
|
break;
|
|
case _FORMAT_FLAG:
|
|
case _STORAGE_FLAG:
|
|
case _ENDIAN_FLAG:
|
|
iconst.nctype = NC_STRING;
|
|
convert1(con,&iconst);
|
|
if(iconst.nctype == NC_STRING)
|
|
sdata = iconst.value.stringv.stringv;
|
|
else
|
|
derror("%s: illegal value",specialname(tag));
|
|
break;
|
|
case _DEFLATE_FLAG:
|
|
iconst.nctype = NC_INT;
|
|
convert1(con,&iconst);
|
|
if(iconst.nctype == NC_INT)
|
|
idata = iconst.value.int32v;
|
|
else
|
|
derror("%s: illegal value",specialname(tag));
|
|
break;
|
|
case _CHUNKSIZES_FLAG:
|
|
case _FILLVALUE_FLAG:
|
|
/* Handle below */
|
|
break;
|
|
default: PANIC1("unexpected special tag: %d",tag);
|
|
}
|
|
|
|
if(vsym != NULL) special = &vsym->var.special;
|
|
if(tag == _FORMAT_FLAG) {
|
|
struct Kvalues* kvalue;
|
|
int found;
|
|
found = 0;
|
|
/* Use the table in main.c */
|
|
for(kvalue=legalkinds;kvalue->name;kvalue++) {
|
|
if(strcmp(sdata,kvalue->name) == 0) {
|
|
format_flag = kvalue->k_flag;
|
|
found = 1;
|
|
break;
|
|
}
|
|
}
|
|
if(!found)
|
|
derror("_Format: illegal value: %s",sdata);
|
|
} else if(tag == _FILLVALUE_FLAG) {
|
|
special->_Fillvalue = list;
|
|
/* fillvalue must be a single value*/
|
|
if(list->length != 1)
|
|
derror("_FillValue: must be a single (possibly compound) value",
|
|
vsym->name);
|
|
/* check that the attribute value contains no fill values*/
|
|
if(containsfills(list)) {
|
|
derror("Attribute data may not contain fill values (i.e. _ )");
|
|
}
|
|
/* _FillValue is also a real attribute*/
|
|
if(vsym->objectclass != NC_VAR) {
|
|
derror("_FillValue attribute not associated with variable: %s",vsym->name);
|
|
}
|
|
if(tsym == NULL) tsym = vsym->typ.basetype;
|
|
else if(vsym->typ.basetype != tsym) {
|
|
derror("_FillValue attribute type does not match variable type: %s",vsym->name);
|
|
}
|
|
attr=makeattribute(install("_FillValue"),vsym,tsym,list,ATTRVAR);
|
|
} else switch (tag) {
|
|
case _STORAGE_FLAG:
|
|
if(strcmp(sdata,"contiguous") == 0)
|
|
special->_Storage = NC_CONTIGUOUS;
|
|
else if(strcmp(sdata,"chunked") == 0)
|
|
special->_Storage = NC_CHUNKED;
|
|
else
|
|
derror("_Storage: illegal value: %s",sdata);
|
|
special->flags |= _STORAGE_FLAG;
|
|
break;
|
|
case _FLETCHER32_FLAG:
|
|
special->_Fletcher32 = tf;
|
|
special->flags |= _FLETCHER32_FLAG;
|
|
break;
|
|
case _DEFLATE_FLAG:
|
|
special->_DeflateLevel = idata;
|
|
special->flags |= _DEFLATE_FLAG;
|
|
break;
|
|
case _SHUFFLE_FLAG:
|
|
special->_Shuffle = tf;
|
|
special->flags |= _SHUFFLE_FLAG;
|
|
break;
|
|
case _ENDIAN_FLAG:
|
|
if(strcmp(sdata,"little") == 0)
|
|
special->_Endianness = 1;
|
|
else if(strcmp(sdata,"big") == 0)
|
|
special->_Endianness = 2;
|
|
else
|
|
derror("_Endianness: illegal value: %s",sdata);
|
|
special->flags |= _ENDIAN_FLAG;
|
|
break;
|
|
case _NOFILL_FLAG:
|
|
special->_Fill = (1 - tf); /* negate */
|
|
special->flags |= _NOFILL_FLAG;
|
|
break;
|
|
case _CHUNKSIZES_FLAG: {
|
|
int i;
|
|
special->nchunks = list->length;
|
|
special->_ChunkSizes = (size_t*)emalloc(sizeof(size_t)*special->nchunks);
|
|
for(i=0;i<special->nchunks;i++) {
|
|
iconst.nctype = NC_INT;
|
|
convert1(&list->data[i],&iconst);
|
|
if(iconst.nctype == NC_INT) {
|
|
special->_ChunkSizes[i] = (size_t)iconst.value.int32v;
|
|
} else
|
|
derror("%s: illegal value",specialname(tag));
|
|
}
|
|
special->flags |= _CHUNKSIZES_FLAG;
|
|
/* Chunksizes => storage == chunked */
|
|
special->flags |= _STORAGE_FLAG;
|
|
special->_Storage = NC_CHUNKED;
|
|
} break;
|
|
default: PANIC1("makespecial: illegal token: %d",tag);
|
|
}
|
|
|
|
return attr;
|
|
}
|
|
|
|
static Symbol*
|
|
makeattribute(Symbol* asym,
|
|
Symbol* vsym,
|
|
Symbol* tsym,
|
|
Datalist* data,
|
|
Attrkind kind) /* global var or unknown*/
|
|
{
|
|
asym->objectclass = NC_ATT;
|
|
asym->data = data;
|
|
addtogroup(asym);
|
|
switch (kind) {
|
|
case ATTRVAR:
|
|
asym->att.var = vsym;
|
|
asym->typ.basetype = tsym;
|
|
listpush(attdefs,(elem_t)asym);
|
|
break;
|
|
case ATTRGLOBAL:
|
|
asym->att.var = NULL; /* NULL => NC_GLOBAL*/
|
|
asym->typ.basetype = tsym;
|
|
listpush(gattdefs,(elem_t)asym);
|
|
break;
|
|
default: PANIC1("unexpected attribute type: %d",kind);
|
|
}
|
|
/* finally; check that the attribute value contains no fill values*/
|
|
if(containsfills(data)) {
|
|
derror("Attribute data may not contain fill values (i.e. _ ): %s",asym->name);
|
|
}
|
|
return asym;
|
|
}
|
|
|
|
static int
|
|
containsfills(Datalist* list)
|
|
{
|
|
if(list != NULL) {
|
|
int i;
|
|
Constant* con = list->data;
|
|
for(i=0;i<list->length;i++,con++) {
|
|
if(con->nctype == NC_COMPOUND) {
|
|
if(containsfills(con->value.compoundv)) return 1;
|
|
} else if(con->nctype == NC_FILLVALUE) return 1;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static void
|
|
datalistextend(Datalist* dl, Constant* con)
|
|
{
|
|
dlappend(dl,con);
|
|
}
|
|
|
|
static void
|
|
vercheck(int ncid)
|
|
{
|
|
char* tmsg = NULL;
|
|
switch (ncid) {
|
|
case NC_UBYTE: tmsg = "netCDF4 type: UBYTE"; break;
|
|
case NC_USHORT: tmsg = "netCDF4 type: USHORT"; break;
|
|
case NC_UINT: tmsg = "netCDF4 type: UINT"; break;
|
|
case NC_INT64: tmsg = "netCDF4 type: INT64"; break;
|
|
case NC_UINT64: tmsg = "netCDF4 type: UINT64"; break;
|
|
case NC_STRING: tmsg = "netCDF4 type: STRING"; break;
|
|
case NC_VLEN: tmsg = "netCDF4 type: VLEN"; break;
|
|
case NC_OPAQUE: tmsg = "netCDF4 type: OPAQUE"; break;
|
|
case NC_ENUM: tmsg = "netCDF4 type: ENUM"; break;
|
|
case NC_COMPOUND: tmsg = "netCDF4 type: COMPOUND"; break;
|
|
default: break;
|
|
}
|
|
if(tmsg != NULL) markcdf4(tmsg);
|
|
}
|
|
|
|
/*
|
|
Since the arguments are all simple constants,
|
|
we can evaluate the function immediately
|
|
and return its value.
|
|
Note that currently, only a single value can
|
|
be returned.
|
|
*/
|
|
|
|
static Constant
|
|
evaluate(Symbol* fcn, Datalist* arglist)
|
|
{
|
|
Constant result;
|
|
|
|
/* prepare the result */
|
|
result.lineno = fcn->lineno;
|
|
result.filled = 0;
|
|
|
|
if(strcasecmp(fcn->name,"time") == 0) {
|
|
char* timekind = NULL;
|
|
char* timevalue = NULL;
|
|
result.nctype = NC_DOUBLE;
|
|
result.value.doublev = 0;
|
|
/* int time([string],string) */
|
|
switch (arglist->length) {
|
|
case 2:
|
|
if(arglist->data[1].nctype != NC_STRING) {
|
|
derror("Expected function signature: time([string,]string)");
|
|
goto done;
|
|
}
|
|
/* fall thru */
|
|
case 1:
|
|
if(arglist->data[0].nctype != NC_STRING) {
|
|
derror("Expected function signature: time([string,]string)");
|
|
goto done;
|
|
}
|
|
break;
|
|
case 0:
|
|
default:
|
|
derror("Expected function signature: time([string,]string)");
|
|
goto done;
|
|
}
|
|
if(arglist->length == 2) {
|
|
timekind = arglist->data[0].value.stringv.stringv;
|
|
timevalue = arglist->data[1].value.stringv.stringv;
|
|
} else
|
|
timevalue = arglist->data[0].value.stringv.stringv;
|
|
if(timekind == NULL) { /* use cd time as the default */
|
|
cdCompTime comptime;
|
|
CdTime cdtime;
|
|
cdCalenType timetype = cdStandard;
|
|
cdChar2Comp(timetype,timevalue,&comptime);
|
|
/* convert comptime to cdTime */
|
|
cdtime.year = comptime.year;
|
|
cdtime.month = comptime.month;
|
|
cdtime.day = comptime.day;
|
|
cdtime.hour = comptime.hour;
|
|
cdtime.baseYear = 1970;
|
|
cdtime.timeType = CdChron;
|
|
/* convert to double value */
|
|
Cdh2e(&cdtime,&result.value.doublev);
|
|
} else {
|
|
derror("Time conversion '%s' not supported",timekind);
|
|
goto done;
|
|
}
|
|
} else { /* Unknown function */
|
|
derror("Unknown function name: %s",fcn->name);
|
|
goto done;
|
|
}
|
|
|
|
done:
|
|
return result;
|
|
}
|
|
|
|
|