亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? c-parse.y

?? GCC編譯器源代碼
?? Y
?? 第 1 頁 / 共 5 頁
字號:
/*WARNING: This file is automatically generated!*//* YACC parser for C syntax and for Objective C.  -*-c-*-   Copyright (C) 1987, 88, 89, 92-6, 1997 Free Software Foundation, Inc.This file is part of GNU CC.GNU CC is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.GNU CC is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU CC; see the file COPYING.  If not, write tothe Free Software Foundation, 59 Temple Place - Suite 330,Boston, MA 02111-1307, USA.  *//* This file defines the grammar of C and that of Objective C.   ifobjc ... end ifobjc  conditionals contain code for Objective C only.   ifc ... end ifc  conditionals contain code for C only.   Sed commands in Makefile.in are used to convert this file into   c-parse.y and into objc-parse.y.  *//* To whomever it may concern: I have heard that such a thing was once   written by AT&T, but I have never seen it.  */%expect 46/* These are the 23 conflicts you should get in parse.output;   the state numbers may vary if minor changes in the grammar are made.State 42 contains 1 shift/reduce conflict.  (Two ways to parse ATTRIBUTE.)State 44 contains 1 shift/reduce conflict.  (Two ways to recover from error.)State 103 contains 1 shift/reduce conflict.  (Two ways to recover from error.)State 110 contains 1 shift/reduce conflict.  (Two ways to parse ATTRIBUTE.)State 111 contains 1 shift/reduce conflict.  (Two ways to recover from error.)State 115 contains 1 shift/reduce conflict.  (Two ways to recover from error.)State 132 contains 1 shift/reduce conflict.  (See comment at component_decl.)State 180 contains 1 shift/reduce conflict.  (Two ways to parse ATTRIBUTE.)State 194 contains 2 shift/reduce conflict.  (Four ways to parse this.)State 202 contains 1 shift/reduce conflict.  (Two ways to recover from error.)State 214 contains 1 shift/reduce conflict.  (Two ways to recover from error.)State 220 contains 1 shift/reduce conflict.  (Two ways to recover from error.)State 304 contains 2 shift/reduce conflicts.  (Four ways to parse this.)State 335 contains 2 shift/reduce conflicts.  (Four ways to parse this.)State 347 contains 1 shift/reduce conflict.  (Two ways to parse ATTRIBUTES.)State 352 contains 1 shift/reduce conflict.  (Two ways to parse ATTRIBUTES.)State 383 contains 2 shift/reduce conflicts.  (Four ways to parse this.)State 434 contains 2 shift/reduce conflicts.  (Four ways to parse this.)  */%{#include "config.h"#include <stdio.h>#include <errno.h>#include <setjmp.h>#include "tree.h"#include "input.h"#include "c-lex.h"#include "c-tree.h"#include "flags.h"#ifdef MULTIBYTE_CHARS#include <stdlib.h>#include <locale.h>#endif/* Since parsers are distinct for each language, put the language string   definition here.  */char *language_string = "GNU C";#ifndef errnoextern int errno;#endifvoid yyerror ();/* Like YYERROR but do call yyerror.  */#define YYERROR1 { yyerror ("syntax error"); YYERROR; }/* Cause the `yydebug' variable to be defined.  */#define YYDEBUG 1%}%start program%union {long itype; tree ttype; enum tree_code code;	char *filename; int lineno; int ends_in_label; }/* All identifiers that are not reserved words   and are not declared typedefs in the current block */%token IDENTIFIER/* All identifiers that are declared typedefs in the current block.   In some contexts, they are treated just like IDENTIFIER,   but they can also serve as typespecs in declarations.  */%token TYPENAME/* Reserved words that specify storage class.   yylval contains an IDENTIFIER_NODE which indicates which one.  */%token SCSPEC/* Reserved words that specify type.   yylval contains an IDENTIFIER_NODE which indicates which one.  */%token TYPESPEC/* Reserved words that qualify type: "const" or "volatile".   yylval contains an IDENTIFIER_NODE which indicates which one.  */%token TYPE_QUAL/* Character or numeric constants.   yylval is the node for the constant.  */%token CONSTANT/* String constants in raw form.   yylval is a STRING_CST node.  */%token STRING/* "...", used for functions with variable arglists.  */%token ELLIPSIS/* the reserved words *//* SCO include files test "ASM", so use something else. */%token SIZEOF ENUM STRUCT UNION IF ELSE WHILE DO FOR SWITCH CASE DEFAULT%token BREAK CONTINUE RETURN GOTO ASM_KEYWORD TYPEOF ALIGNOF%token ATTRIBUTE EXTENSION LABEL%token REALPART IMAGPART/* Add precedence rules to solve dangling else s/r conflict */%nonassoc IF%nonassoc ELSE/* Define the operator tokens and their precedences.   The value is an integer because, if used, it is the tree code   to use in the expression made from the operator.  */%right <code> ASSIGN '='%right <code> '?' ':'%left <code> OROR%left <code> ANDAND%left <code> '|'%left <code> '^'%left <code> '&'%left <code> EQCOMPARE%left <code> ARITHCOMPARE%left <code> LSHIFT RSHIFT%left <code> '+' '-'%left <code> '*' '/' '%'%right <code> UNARY PLUSPLUS MINUSMINUS%left HYPERUNARY%left <code> POINTSAT '.' '(' '['/* The Objective-C keywords.  These are included in C and in   Objective C, so that the token codes are the same in both.  */%token INTERFACE IMPLEMENTATION END SELECTOR DEFS ENCODE%token CLASSNAME PUBLIC PRIVATE PROTECTED PROTOCOL OBJECTNAME CLASS ALIAS/* Objective-C string constants in raw form.   yylval is an OBJC_STRING_CST node.  */%token OBJC_STRING%type <code> unop%type <ttype> identifier IDENTIFIER TYPENAME CONSTANT expr nonnull_exprlist exprlist%type <ttype> expr_no_commas cast_expr unary_expr primary string STRING%type <ttype> typed_declspecs reserved_declspecs%type <ttype> typed_typespecs reserved_typespecquals%type <ttype> declmods typespec typespecqual_reserved%type <ttype> typed_declspecs_no_prefix_attr reserved_declspecs_no_prefix_attr%type <ttype> declmods_no_prefix_attr%type <ttype> SCSPEC TYPESPEC TYPE_QUAL nonempty_type_quals maybe_type_qual%type <ttype> initdecls notype_initdecls initdcl notype_initdcl%type <ttype> init maybeasm%type <ttype> asm_operands nonnull_asm_operands asm_operand asm_clobbers%type <ttype> maybe_attribute attributes attribute attribute_list attrib%type <ttype> any_word%type <ttype> compstmt%type <ttype> declarator%type <ttype> notype_declarator after_type_declarator%type <ttype> parm_declarator%type <ttype> structsp component_decl_list component_decl_list2%type <ttype> component_decl components component_declarator%type <ttype> enumlist enumerator%type <ttype> typename absdcl absdcl1 type_quals%type <ttype> xexpr parms parm identifiers%type <ttype> parmlist parmlist_1 parmlist_2%type <ttype> parmlist_or_identifiers parmlist_or_identifiers_1%type <ttype> identifiers_or_typenames%type <itype> setspecs%type <ends_in_label> lineno_stmt_or_label lineno_stmt_or_labels stmt_or_label%type <filename> save_filename%type <lineno> save_lineno%{/* Number of statements (loosely speaking) and compound statements    seen so far.  */static int stmt_count;static int compstmt_count;  /* Input file and line number of the end of the body of last simple_if;   used by the stmt-rule immediately after simple_if returns.  */static char *if_stmt_file;static int if_stmt_line;/* List of types and structure classes of the current declaration.  */static tree current_declspecs = NULL_TREE;static tree prefix_attributes = NULL_TREE;/* Stack of saved values of current_declspecs and prefix_attributes.  */static tree declspec_stack;/* 1 if we explained undeclared var errors.  */static int undeclared_variable_notice;/* Tell yyparse how to print a token's value, if yydebug is set.  */#define YYPRINT(FILE,YYCHAR,YYLVAL) yyprint(FILE,YYCHAR,YYLVAL)extern void yyprint ();%}%%program: /* empty */		{ if (pedantic)		    pedwarn ("ANSI C forbids an empty source file");		  finish_file ();		}	| extdefs		{		  /* In case there were missing closebraces,		     get us back to the global binding level.  */		  while (! global_bindings_p ())		    poplevel (0, 0, 0);		  finish_file ();		}	;/* the reason for the strange actions in this rule is so that notype_initdecls when reached via datadef can find a valid list of type and sc specs in $0. */extdefs:	{$<ttype>$ = NULL_TREE; } extdef	| extdefs {$<ttype>$ = NULL_TREE; } extdef	;extdef:	fndef	| datadef	| ASM_KEYWORD '(' expr ')' ';'		{ STRIP_NOPS ($3);		  if ((TREE_CODE ($3) == ADDR_EXPR		       && TREE_CODE (TREE_OPERAND ($3, 0)) == STRING_CST)		      || TREE_CODE ($3) == STRING_CST)		    assemble_asm ($3);		  else		    error ("argument of `asm' is not a constant string"); }	| extension extdef		{ pedantic = $<itype>1; }	;datadef:	  setspecs notype_initdecls ';'		{ if (pedantic)		    error ("ANSI C forbids data definition with no type or storage class");		  else if (!flag_traditional)		    warning ("data definition has no type or storage class"); 		  current_declspecs = TREE_VALUE (declspec_stack);		  prefix_attributes = TREE_PURPOSE (declspec_stack);		  declspec_stack = TREE_CHAIN (declspec_stack);		  resume_momentary ($1); }        | declmods setspecs notype_initdecls ';'		{ current_declspecs = TREE_VALUE (declspec_stack);		  prefix_attributes = TREE_PURPOSE (declspec_stack);		  declspec_stack = TREE_CHAIN (declspec_stack);		  resume_momentary ($2); }	| typed_declspecs setspecs initdecls ';'		{ current_declspecs = TREE_VALUE (declspec_stack);		  prefix_attributes = TREE_PURPOSE (declspec_stack);		  declspec_stack = TREE_CHAIN (declspec_stack);		  resume_momentary ($2);  }        | declmods ';'	  { pedwarn ("empty declaration"); }	| typed_declspecs ';'	  { shadow_tag ($1); }	| error ';'	| error '}'	| ';'		{ if (pedantic)		    pedwarn ("ANSI C does not allow extra `;' outside of a function"); }	;fndef:	  typed_declspecs setspecs declarator		{ if (! start_function (current_declspecs, $3,					prefix_attributes, NULL_TREE, 0))		    YYERROR1;		  reinit_parse_for_function (); }	  old_style_parm_decls		{ store_parm_decls (); }	  compstmt_or_error		{ finish_function (0); 		  current_declspecs = TREE_VALUE (declspec_stack);		  prefix_attributes = TREE_PURPOSE (declspec_stack);		  declspec_stack = TREE_CHAIN (declspec_stack);		  resume_momentary ($2); }	| typed_declspecs setspecs declarator error		{ current_declspecs = TREE_VALUE (declspec_stack);		  prefix_attributes = TREE_PURPOSE (declspec_stack);		  declspec_stack = TREE_CHAIN (declspec_stack);		  resume_momentary ($2); }	| declmods setspecs notype_declarator		{ if (! start_function (current_declspecs, $3,					prefix_attributes, NULL_TREE, 0))		    YYERROR1;		  reinit_parse_for_function (); }	  old_style_parm_decls		{ store_parm_decls (); }	  compstmt_or_error		{ finish_function (0); 		  current_declspecs = TREE_VALUE (declspec_stack);		  prefix_attributes = TREE_PURPOSE (declspec_stack);		  declspec_stack = TREE_CHAIN (declspec_stack);		  resume_momentary ($2); }	| declmods setspecs notype_declarator error		{ current_declspecs = TREE_VALUE (declspec_stack);		  prefix_attributes = TREE_PURPOSE (declspec_stack);		  declspec_stack = TREE_CHAIN (declspec_stack);		  resume_momentary ($2); }	| setspecs notype_declarator		{ if (! start_function (NULL_TREE, $2,					prefix_attributes, NULL_TREE, 0))		    YYERROR1;		  reinit_parse_for_function (); }	  old_style_parm_decls		{ store_parm_decls (); }	  compstmt_or_error		{ finish_function (0); 		  current_declspecs = TREE_VALUE (declspec_stack);		  prefix_attributes = TREE_PURPOSE (declspec_stack);		  declspec_stack = TREE_CHAIN (declspec_stack);		  resume_momentary ($1); }	| setspecs notype_declarator error		{ current_declspecs = TREE_VALUE (declspec_stack);		  prefix_attributes = TREE_PURPOSE (declspec_stack);		  declspec_stack = TREE_CHAIN (declspec_stack);		  resume_momentary ($1); }	;identifier:	IDENTIFIER	| TYPENAME	;unop:     '&'		{ $$ = ADDR_EXPR; }	| '-'		{ $$ = NEGATE_EXPR; }	| '+'		{ $$ = CONVERT_EXPR; }	| PLUSPLUS		{ $$ = PREINCREMENT_EXPR; }	| MINUSMINUS		{ $$ = PREDECREMENT_EXPR; }	| '~'		{ $$ = BIT_NOT_EXPR; }	| '!'		{ $$ = TRUTH_NOT_EXPR; }	;expr:	nonnull_exprlist		{ $$ = build_compound_expr ($1); }	;exprlist:	  /* empty */		{ $$ = NULL_TREE; }	| nonnull_exprlist	;nonnull_exprlist:	expr_no_commas		{ $$ = build_tree_list (NULL_TREE, $1); }	| nonnull_exprlist ',' expr_no_commas		{ chainon ($1, build_tree_list (NULL_TREE, $3)); }	;unary_expr:	primary	| '*' cast_expr   %prec UNARY		{ $$ = build_indirect_ref ($2, "unary *"); }	/* __extension__ turns off -pedantic for following primary.  */	| extension cast_expr	  %prec UNARY		{ $$ = $2;		  pedantic = $<itype>1; }	| unop cast_expr  %prec UNARY		{ $$ = build_unary_op ($1, $2, 0);		  overflow_warning ($$); }	/* Refer to the address of a label as a pointer.  */	| ANDAND identifier		{ tree label = lookup_label ($2);		  if (pedantic)		    pedwarn ("ANSI C forbids `&&'");		  if (label == 0)		    $$ = null_pointer_node;		  else		    {		      TREE_USED (label) = 1;		      $$ = build1 (ADDR_EXPR, ptr_type_node, label);		      TREE_CONSTANT ($$) = 1;		    }

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
午夜精品福利一区二区三区av| 日本 国产 欧美色综合| 香蕉加勒比综合久久| 国模大尺度一区二区三区| 91蜜桃婷婷狠狠久久综合9色| 欧美浪妇xxxx高跟鞋交| 中文字幕中文字幕一区| 九色porny丨国产精品| 欧美视频日韩视频| 国产精品初高中害羞小美女文| 免费成人在线网站| 欧美日韩在线一区二区| 亚洲视频免费看| 高清av一区二区| 亚洲精品在线观| 性感美女久久精品| 日本高清成人免费播放| 国产精品久久久久国产精品日日| 久久久精品2019中文字幕之3| 国产综合色视频| 色综合婷婷久久| 国产调教视频一区| 国产在线观看免费一区| 在线电影院国产精品| 亚洲一区二区三区自拍| www.亚洲激情.com| 国产女人水真多18毛片18精品视频| 美女看a上一区| 欧美一区二区视频在线观看2022| 亚洲chinese男男1069| 在线免费观看成人短视频| 亚洲视频中文字幕| 91免费观看视频| 亚洲女人****多毛耸耸8| bt欧美亚洲午夜电影天堂| 欧美国产禁国产网站cc| 成人精品免费看| 中文字幕av资源一区| 成人av手机在线观看| 中文字幕亚洲一区二区va在线| 成人免费看黄yyy456| 中文字幕在线观看一区二区| aaa亚洲精品一二三区| 亚洲免费高清视频在线| 在线观看一区二区视频| 日韩高清不卡在线| 亚洲精品一区二区三区香蕉 | 99久久精品费精品国产一区二区| 国产精品色哟哟| 91一区一区三区| 一区二区高清在线| 这里只有精品99re| 国产一区二区三区四| 国产精品女上位| 一本色道a无线码一区v| 五月婷婷综合网| 久久久噜噜噜久久人人看 | 欧洲精品在线观看| 午夜视频一区在线观看| 精品国产伦一区二区三区观看方式 | 91精品国产一区二区三区蜜臀| 日本欧美一区二区三区乱码| 国产亚洲污的网站| 91亚洲午夜精品久久久久久| 水野朝阳av一区二区三区| 久久色在线视频| 色综合视频一区二区三区高清| 天天爽夜夜爽夜夜爽精品视频| 精品久久久三级丝袜| 91女人视频在线观看| 日韩精品一二区| 国产精品欧美久久久久无广告 | 丁香啪啪综合成人亚洲小说| 玉米视频成人免费看| 精品国产伦一区二区三区免费| 91一区二区三区在线播放| 蜜臀av性久久久久蜜臀aⅴ| 日本一区二区三区dvd视频在线| 欧美午夜视频网站| 国产成都精品91一区二区三| 日韩二区在线观看| 亚洲欧美日韩国产手机在线| ww久久中文字幕| 欧美美女网站色| 99精品国产一区二区三区不卡| 蜜臀av性久久久久av蜜臀妖精| 一区二区三区欧美亚洲| 国产亚洲短视频| 日韩欧美你懂的| 欧美精品乱码久久久久久| 91在线视频免费观看| 国产一区二区三区观看| 日本91福利区| 天堂精品中文字幕在线| 亚洲精品国产精华液| 国产精品狼人久久影院观看方式| 欧美成人女星排名| 91.xcao| 欧美色爱综合网| 色999日韩国产欧美一区二区| 国产乱淫av一区二区三区| 免费久久精品视频| 日韩高清欧美激情| 五月婷婷欧美视频| 午夜影院久久久| 亚洲大尺度视频在线观看| 亚洲人成亚洲人成在线观看图片| 国产免费观看久久| 久久久国产午夜精品| 日韩精品一区二区三区老鸭窝| 91精品久久久久久久久99蜜臂| 欧美卡1卡2卡| 欧美精品一卡二卡| 欧美精品777| 91精品国产免费| 91精品综合久久久久久| 91精品国产入口| 91精品婷婷国产综合久久竹菊| 欧美精品丝袜久久久中文字幕| 91精品国产综合久久香蕉的特点| 欧美挠脚心视频网站| 在线成人午夜影院| 日韩三区在线观看| 26uuuu精品一区二区| 中文字幕欧美日韩一区| 最新成人av在线| 亚洲一区二区视频在线观看| 无吗不卡中文字幕| 久久99精品国产| 国产成人免费网站| 99精品国产99久久久久久白柏| 色哟哟亚洲精品| 欧美丰满美乳xxx高潮www| 日韩欧美国产一二三区| 久久久久久久网| 亚洲视频一区在线| 亚洲成精国产精品女| 免费成人小视频| 风间由美一区二区三区在线观看| 91在线视频18| 91精品国产色综合久久不卡蜜臀 | 精品久久久三级丝袜| 国产精品久久久久久亚洲毛片| 亚洲精品高清在线| 精品亚洲成av人在线观看| 成人av手机在线观看| 欧美在线一二三| 日韩一级视频免费观看在线| 久久精品日韩一区二区三区| 亚洲欧美日韩一区二区三区在线观看| 一区二区三区四区亚洲| 日韩成人午夜精品| www.亚洲人| 精品国产乱码久久久久久浪潮| 国产精品久久久久久久久免费丝袜 | 亚洲欧洲日韩综合一区二区| 偷拍一区二区三区四区| 高清不卡在线观看| 日韩三级电影网址| 亚洲柠檬福利资源导航| 久久精品久久久精品美女| 91蝌蚪porny九色| 精品乱码亚洲一区二区不卡| 亚洲精品免费播放| 国产福利一区在线观看| 欧美一级精品在线| 一区二区视频在线看| 国产成人福利片| 日韩三级视频在线看| 亚洲一区二区三区爽爽爽爽爽 | 久草在线在线精品观看| 欧美影视一区在线| 中文字幕日韩一区二区| 久久精品国产网站| 欧美视频完全免费看| 亚洲欧美日韩成人高清在线一区| 国产综合成人久久大片91| 欧美日韩国产美| 亚洲精品一二三四区| 成人伦理片在线| 国产亚洲精品bt天堂精选| 秋霞影院一区二区| 欧美日韩精品二区第二页| 亚洲人成伊人成综合网小说| 成人精品gif动图一区| 日本一区二区三级电影在线观看| 激情文学综合插| 精品久久一区二区| 久久成人精品无人区| 日韩欧美精品三级| 狠狠色综合播放一区二区| 欧美一二三区在线| 美日韩一区二区| 在线播放中文一区| 青青草视频一区| 欧美成人video| 九九精品一区二区| xnxx国产精品| 成人精品免费视频| 亚洲色图19p|