⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vy.tab.c

📁 編譯器的虛擬yacc工具
💻 C
📖 第 1 页 / 共 3 页
字号:
	"yacc_variable_name : LHS opt_yacc_modifier",	"yacc_variable_name : RHS opt_yacc_modifier",	"yacc_variable_name : NAME opt_yacc_modifier",	"opt_yacc_modifier : '[' yacc_variable_name ']' opt_yacc_modifier",	"opt_yacc_modifier : '.' yacc_variable_name",	"opt_yacc_modifier : /* empty */",	"rule_list : rule_list rule",	"rule_list : rule",	"rule : NAME ':' rules ';'",	"rules : rules '|' rule_body opt_c",	"rules : rule_body opt_c",	"opt_c : /* empty */",	"opt_c : '{' yacc_rest '}'",	"opt_c : '{' '}'",	"rule_body : rule_body rule_elem",	"rule_body : /* empty */",	"rule_elem : NAME",	"rule_elem : CHAR",	"rule_elem : PREC_T",};#endif /* YYDEBUG */# line	1 "/usr/ccs/bin/yaccpar"/* * Copyright (c) 1993 by Sun Microsystems, Inc. */#pragma ident	"@(#)yaccpar	6.14	97/01/16 SMI"/*** Skeleton parser driver for yacc output*//*** yacc user known macros and defines*/#define YYERROR		goto yyerrlab#define YYACCEPT	return(0)#define YYABORT		return(1)#define YYBACKUP( newtoken, newvalue )\{\	if ( yychar >= 0 || ( yyr2[ yytmp ] >> 1 ) != 1 )\	{\		yyerror( "syntax error - cannot backup" );\		goto yyerrlab;\	}\	yychar = newtoken;\	yystate = *yyps;\	yylval = newvalue;\	goto yynewstate;\}#define YYRECOVERING()	(!!yyerrflag)#define YYNEW(type)	malloc(sizeof(type) * yynewmax)#define YYCOPY(to, from, type) \	(type *) memcpy(to, (char *) from, yymaxdepth * sizeof (type))#define YYENLARGE( from, type) \	(type *) realloc((char *) from, yynewmax * sizeof(type))#ifndef YYDEBUG#	define YYDEBUG	1	/* make debugging available */#endif/*** user known globals*/int yydebug;			/* set to 1 to get debugging *//*** driver internal defines*/#define YYFLAG		(-10000000)/*** global variables used by the parser*/YYSTYPE *yypv;			/* top of value stack */int *yyps;			/* top of state stack */int yystate;			/* current state */int yytmp;			/* extra var (lasts between blocks) */int yynerrs;			/* number of errors */int yyerrflag;			/* error recovery flag */int yychar;			/* current input token number */#ifdef YYNMBCHARS#define YYLEX()		yycvtok(yylex())/*** yycvtok - return a token if i is a wchar_t value that exceeds 255.**	If i<255, i itself is the token.  If i>255 but the neither **	of the 30th or 31st bit is on, i is already a token.*/#if defined(__STDC__) || defined(__cplusplus)int yycvtok(int i)#elseint yycvtok(i) int i;#endif{	int first = 0;	int last = YYNMBCHARS - 1;	int mid;	wchar_t j;	if(i&0x60000000){/*Must convert to a token. */		if( yymbchars[last].character < i ){			return i;/*Giving up*/		}		while ((last>=first)&&(first>=0)) {/*Binary search loop*/			mid = (first+last)/2;			j = yymbchars[mid].character;			if( j==i ){/*Found*/ 				return yymbchars[mid].tvalue;			}else if( j<i ){				first = mid + 1;			}else{				last = mid -1;			}		}		/*No entry in the table.*/		return i;/* Giving up.*/	}else{/* i is already a token. */		return i;	}}#else/*!YYNMBCHARS*/#define YYLEX()		yylex()#endif/*!YYNMBCHARS*//*** yyparse - return 0 if worked, 1 if syntax error not recovered from*/#if defined(__STDC__) || defined(__cplusplus)int yyparse(void)#elseint yyparse()#endif{	register YYSTYPE *yypvt = 0;	/* top of value stack for $vars */#if defined(__cplusplus) || defined(lint)/*	hacks to please C++ and lint - goto's inside	switch should never be executed*/	static int __yaccpar_lint_hack__ = 0;	switch (__yaccpar_lint_hack__)	{		case 1: goto yyerrlab;		case 2: goto yynewstate;	}#endif	/*	** Initialize externals - yyparse may be called more than once	*/	yypv = &yyv[-1];	yyps = &yys[-1];	yystate = 0;	yytmp = 0;	yynerrs = 0;	yyerrflag = 0;	yychar = -1;#if YYMAXDEPTH <= 0	if (yymaxdepth <= 0)	{		if ((yymaxdepth = YYEXPAND(0)) <= 0)		{			yyerror("yacc initialization error");			YYABORT;		}	}#endif	{		register YYSTYPE *yy_pv;	/* top of value stack */		register int *yy_ps;		/* top of state stack */		register int yy_state;		/* current state */		register int  yy_n;		/* internal state number info */	goto yystack;	/* moved from 6 lines above to here to please C++ */		/*		** get globals into registers.		** branch to here only if YYBACKUP was called.		*/	yynewstate:		yy_pv = yypv;		yy_ps = yyps;		yy_state = yystate;		goto yy_newstate;		/*		** get globals into registers.		** either we just started, or we just finished a reduction		*/	yystack:		yy_pv = yypv;		yy_ps = yyps;		yy_state = yystate;		/*		** top of for (;;) loop while no reductions done		*/	yy_stack:		/*		** put a state and value onto the stacks		*/#if YYDEBUG		/*		** if debugging, look up token value in list of value vs.		** name pairs.  0 and negative (-1) are special values.		** Note: linear search is used since time is not a real		** consideration while debugging.		*/		if ( yydebug )		{			register int yy_i;			printf( "State %d, token ", yy_state );			if ( yychar == 0 )				printf( "end-of-file\n" );			else if ( yychar < 0 )				printf( "-none-\n" );			else			{				for ( yy_i = 0; yytoks[yy_i].t_val >= 0;					yy_i++ )				{					if ( yytoks[yy_i].t_val == yychar )						break;				}				printf( "%s\n", yytoks[yy_i].t_name );			}		}#endif /* YYDEBUG */		if ( ++yy_ps >= &yys[ yymaxdepth ] )	/* room on stack? */		{			/*			** reallocate and recover.  Note that pointers			** have to be reset, or bad things will happen			*/			int yyps_index = (yy_ps - yys);			int yypv_index = (yy_pv - yyv);			int yypvt_index = (yypvt - yyv);			int yynewmax;#ifdef YYEXPAND			yynewmax = YYEXPAND(yymaxdepth);#else			yynewmax = 2 * yymaxdepth;	/* double table size */			if (yymaxdepth == YYMAXDEPTH)	/* first time growth */			{				char *newyys = (char *)YYNEW(int);				char *newyyv = (char *)YYNEW(YYSTYPE);				if (newyys != 0 && newyyv != 0)				{					yys = YYCOPY(newyys, yys, int);					yyv = YYCOPY(newyyv, yyv, YYSTYPE);				}				else					yynewmax = 0;	/* failed */			}			else				/* not first time */			{				yys = YYENLARGE(yys, int);				yyv = YYENLARGE(yyv, YYSTYPE);				if (yys == 0 || yyv == 0)					yynewmax = 0;	/* failed */			}#endif			if (yynewmax <= yymaxdepth)	/* tables not expanded */			{				yyerror( "yacc stack overflow" );				YYABORT;			}			yymaxdepth = yynewmax;			yy_ps = yys + yyps_index;			yy_pv = yyv + yypv_index;			yypvt = yyv + yypvt_index;		}		*yy_ps = yy_state;		*++yy_pv = yyval;		/*		** we have a new state - find out what to do		*/	yy_newstate:		if ( ( yy_n = yypact[ yy_state ] ) <= YYFLAG )			goto yydefault;		/* simple state */#if YYDEBUG		/*		** if debugging, need to mark whether new token grabbed		*/		yytmp = yychar < 0;#endif		if ( ( yychar < 0 ) && ( ( yychar = nylex() ) < 0 ) )			yychar = 0;		/* reached EOF */#if YYDEBUG		if ( yydebug && yytmp )		{			register int yy_i;			printf( "Received token " );			if ( yychar == 0 )				printf( "end-of-file\n" );			else if ( yychar < 0 )				printf( "-none-\n" );			else			{				for ( yy_i = 0; yytoks[yy_i].t_val >= 0;					yy_i++ )				{					if ( yytoks[yy_i].t_val == yychar )						break;				}				printf( "%s\n", yytoks[yy_i].t_name );			}		}#endif /* YYDEBUG */		if ( ( ( yy_n += yychar ) < 0 ) || ( yy_n >= YYLAST ) )			goto yydefault;		if ( yychk[ yy_n = yyact[ yy_n ] ] == yychar )	/*valid shift*/		{			yychar = -1;			yyval = yylval;			yy_state = yy_n;			if ( yyerrflag > 0 )				yyerrflag--; nyipop();			goto yy_stack;		}	yydefault:		if ( ( yy_n = yydef[ yy_state ] ) == -2 )		{#if YYDEBUG			yytmp = yychar < 0;#endif			if ( ( yychar < 0 ) && ( ( yychar = nylex() ) < 0 ) )				yychar = 0;		/* reached EOF */#if YYDEBUG			if ( yydebug && yytmp )			{				register int yy_i;				printf( "Received token " );				if ( yychar == 0 )					printf( "end-of-file\n" );				else if ( yychar < 0 )					printf( "-none-\n" );				else				{					for ( yy_i = 0;						yytoks[yy_i].t_val >= 0;						yy_i++ )					{						if ( yytoks[yy_i].t_val							== yychar )						{							break;						}					}					printf( "%s\n", yytoks[yy_i].t_name );				}			}#endif /* YYDEBUG */			/*			** look through exception table			*/			{				register const int *yyxi = yyexca;				while ( ( *yyxi != -1 ) ||					( yyxi[1] != yy_state ) )				{					yyxi += 2;				}				while ( ( *(yyxi += 2) >= 0 ) &&					( *yyxi != yychar ) )					;				if ( ( yy_n = yyxi[1] ) < 0 )					YYACCEPT;			}		}		/*		** check for syntax error		*/		if ( yy_n == 0 )	/* have an error */		{			/* no worry about speed here! */			switch ( yyerrflag )			{			case 0:		/* new error */				yyerror( "syntax error" );				goto skip_init;			yyerrlab:				/*				** get globals into registers.				** we have a user generated syntax type error				*/				yy_pv = yypv;				yy_ps = yyps;				yy_state = yystate;			skip_init:				yynerrs++;				/* FALLTHRU */			case 1:			case 2:		/* incompletely recovered error */					/* try again... */				yyerrflag = 3;				/*				** find state where "error" is a legal				** shift action				*/				while ( yy_ps >= yys )				{					yy_n = yypact[ *yy_ps ] + YYERRCODE;					if ( yy_n >= 0 && yy_n < YYLAST &&						yychk[yyact[yy_n]] == YYERRCODE)					{						/*						** simulate shift of "error"						*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -