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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專(zhuān)輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? c-lex.c

?? gcc庫(kù)的原代碼,對(duì)編程有很大幫助.
?? C
?? 第 1 頁(yè) / 共 4 頁(yè)
字號(hào):
/* Lexical analyzer for C and Objective C.   Copyright (C) 1987, 88, 89, 92, 94, 1995 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.  */#include <stdio.h>#include <errno.h>#include <setjmp.h>#include "config.h"#include "rtl.h"#include "tree.h"#include "input.h"#include "c-lex.h"#include "c-tree.h"#include "flags.h"#include "c-parse.h"#include "c-pragma.h"#include <ctype.h>#ifdef MULTIBYTE_CHARS#include <stdlib.h>#include <locale.h>#endif#ifndef errnoextern int errno;#endif/* The elements of `ridpointers' are identifier nodes   for the reserved type names and storage classes.   It is indexed by a RID_... value.  */tree ridpointers[(int) RID_MAX];/* Cause the `yydebug' variable to be defined.  */#define YYDEBUG 1/* the declaration found for the last IDENTIFIER token read in.   yylex must look this up to detect typedefs, which get token type TYPENAME,   so it is left around in case the identifier is not a typedef but is   used in a context which makes it a reference to a variable.  */tree lastiddecl;/* Nonzero enables objc features.  */int doing_objc_thang;extern tree is_class_name ();extern int yydebug;/* File used for outputting assembler code.  */extern FILE *asm_out_file;#ifndef WCHAR_TYPE_SIZE#ifdef INT_TYPE_SIZE#define WCHAR_TYPE_SIZE INT_TYPE_SIZE#else#define WCHAR_TYPE_SIZE	BITS_PER_WORD#endif#endif/* Number of bytes in a wide character.  */#define WCHAR_BYTES (WCHAR_TYPE_SIZE / BITS_PER_UNIT)static int maxtoken;		/* Current nominal length of token buffer.  */char *token_buffer;	/* Pointer to token buffer.			   Actual allocated length is maxtoken + 2.			   This is not static because objc-parse.y uses it.  *//* Nonzero if end-of-file has been seen on input.  */static int end_of_file;/* Buffered-back input character; faster than using ungetc.  */static int nextchar = -1;int check_newline ();/* Do not insert generated code into the source, instead, include it.   This allows us to build gcc automatically even for targets that   need to add or modify the reserved keyword lists.  */#include "c-gperf.h"/* Return something to represent absolute declarators containing a *.   TARGET is the absolute declarator that the * contains.   TYPE_QUALS is a list of modifiers such as const or volatile   to apply to the pointer type, represented as identifiers.   We return an INDIRECT_REF whose "contents" are TARGET   and whose type is the modifier list.  */treemake_pointer_declarator (type_quals, target)     tree type_quals, target;{  return build1 (INDIRECT_REF, type_quals, target);}voidforget_protocol_qualifiers (){  int i, n = sizeof wordlist / sizeof (struct resword);  for (i = 0; i < n; i++)    if ((int) wordlist[i].rid >= (int) RID_IN        && (int) wordlist[i].rid <= (int) RID_ONEWAY)      wordlist[i].name = "";}voidremember_protocol_qualifiers (){  int i, n = sizeof wordlist / sizeof (struct resword);  for (i = 0; i < n; i++)    if (wordlist[i].rid == RID_IN)      wordlist[i].name = "in";    else if (wordlist[i].rid == RID_OUT)      wordlist[i].name = "out";    else if (wordlist[i].rid == RID_INOUT)      wordlist[i].name = "inout";    else if (wordlist[i].rid == RID_BYCOPY)      wordlist[i].name = "bycopy";    else if (wordlist[i].rid == RID_ONEWAY)      wordlist[i].name = "oneway";   }voidinit_lex (){  /* Make identifier nodes long enough for the language-specific slots.  */  set_identifier_size (sizeof (struct lang_identifier));  /* Start it at 0, because check_newline is called at the very beginning     and will increment it to 1.  */  lineno = 0;#ifdef MULTIBYTE_CHARS  /* Change to the native locale for multibyte conversions.  */  setlocale (LC_CTYPE, "");#endif  maxtoken = 40;  token_buffer = (char *) xmalloc (maxtoken + 2);  ridpointers[(int) RID_INT] = get_identifier ("int");  ridpointers[(int) RID_CHAR] = get_identifier ("char");  ridpointers[(int) RID_VOID] = get_identifier ("void");  ridpointers[(int) RID_FLOAT] = get_identifier ("float");  ridpointers[(int) RID_DOUBLE] = get_identifier ("double");  ridpointers[(int) RID_SHORT] = get_identifier ("short");  ridpointers[(int) RID_LONG] = get_identifier ("long");  ridpointers[(int) RID_UNSIGNED] = get_identifier ("unsigned");  ridpointers[(int) RID_SIGNED] = get_identifier ("signed");  ridpointers[(int) RID_INLINE] = get_identifier ("inline");  ridpointers[(int) RID_CONST] = get_identifier ("const");  ridpointers[(int) RID_VOLATILE] = get_identifier ("volatile");  ridpointers[(int) RID_AUTO] = get_identifier ("auto");  ridpointers[(int) RID_STATIC] = get_identifier ("static");  ridpointers[(int) RID_EXTERN] = get_identifier ("extern");  ridpointers[(int) RID_TYPEDEF] = get_identifier ("typedef");  ridpointers[(int) RID_REGISTER] = get_identifier ("register");  ridpointers[(int) RID_ITERATOR] = get_identifier ("iterator");  ridpointers[(int) RID_COMPLEX] = get_identifier ("complex");  ridpointers[(int) RID_ID] = get_identifier ("id");  ridpointers[(int) RID_IN] = get_identifier ("in");  ridpointers[(int) RID_OUT] = get_identifier ("out");  ridpointers[(int) RID_INOUT] = get_identifier ("inout");  ridpointers[(int) RID_BYCOPY] = get_identifier ("bycopy");  ridpointers[(int) RID_ONEWAY] = get_identifier ("oneway");  forget_protocol_qualifiers();  /* Some options inhibit certain reserved words.     Clear those words out of the hash table so they won't be recognized.  */#define UNSET_RESERVED_WORD(STRING) \  do { struct resword *s = is_reserved_word (STRING, sizeof (STRING) - 1); \       if (s) s->name = ""; } while (0)  if (! doing_objc_thang)    UNSET_RESERVED_WORD ("id");  if (flag_traditional)    {      UNSET_RESERVED_WORD ("const");      UNSET_RESERVED_WORD ("volatile");      UNSET_RESERVED_WORD ("typeof");      UNSET_RESERVED_WORD ("signed");      UNSET_RESERVED_WORD ("inline");      UNSET_RESERVED_WORD ("iterator");      UNSET_RESERVED_WORD ("complex");    }  if (flag_no_asm)    {      UNSET_RESERVED_WORD ("asm");      UNSET_RESERVED_WORD ("typeof");      UNSET_RESERVED_WORD ("inline");      UNSET_RESERVED_WORD ("iterator");      UNSET_RESERVED_WORD ("complex");    }}voidreinit_parse_for_function (){}/* Function used when yydebug is set, to print a token in more detail.  */voidyyprint (file, yychar, yylval)     FILE *file;     int yychar;     YYSTYPE yylval;{  tree t;  switch (yychar)    {    case IDENTIFIER:    case TYPENAME:    case OBJECTNAME:      t = yylval.ttype;      if (IDENTIFIER_POINTER (t))	fprintf (file, " `%s'", IDENTIFIER_POINTER (t));      break;    case CONSTANT:      t = yylval.ttype;      if (TREE_CODE (t) == INTEGER_CST)	fprintf (file,#if HOST_BITS_PER_WIDE_INT == 64#if HOST_BITS_PER_WIDE_INT != HOST_BITS_PER_INT		 " 0x%lx%016lx",#else		 " 0x%x%016x",#endif#else#if HOST_BITS_PER_WIDE_INT != HOST_BITS_PER_INT		 " 0x%lx%08lx",#else		 " 0x%x%08x",#endif#endif		 TREE_INT_CST_HIGH (t), TREE_INT_CST_LOW (t));      break;    }}/* If C is not whitespace, return C.   Otherwise skip whitespace and return first nonwhite char read.  */static intskip_white_space (c)     register int c;{  static int newline_warning = 0;  for (;;)    {      switch (c)	{	  /* We don't recognize comments here, because	     cpp output can include / and * consecutively as operators.	     Also, there's no need, since cpp removes all comments.  */	case '\n':	  c = check_newline ();	  break;	case ' ':	case '\t':	case '\f':	case '\v':	case '\b':	  c = getc (finput);	  break;	case '\r':	  /* ANSI C says the effects of a carriage return in a source file	     are undefined.  */	  if (pedantic && !newline_warning)	    {	      warning ("carriage return in source file");	      warning ("(we only warn about the first carriage return)");	      newline_warning = 1;	    }	  c = getc (finput);	  break;	case '\\':	  c = getc (finput);	  if (c == '\n')	    lineno++;	  else	    error ("stray '\\' in program");	  c = getc (finput);	  break;	default:	  return (c);	}    }}/* Skips all of the white space at the current location in the input file.   Must use and reset nextchar if it has the next character.  */voidposition_after_white_space (){  register int c;  if (nextchar != -1)    c = nextchar, nextchar = -1;  else    c = getc (finput);  ungetc (skip_white_space (c), finput);}/* Make the token buffer longer, preserving the data in it.   P should point to just beyond the last valid character in the old buffer.   The value we return is a pointer to the new buffer   at a place corresponding to P.  */static char *extend_token_buffer (p)     char *p;{  int offset = p - token_buffer;  maxtoken = maxtoken * 2 + 10;  token_buffer = (char *) xrealloc (token_buffer, maxtoken + 2);  return token_buffer + offset;}/* At the beginning of a line, increment the line number   and process any #-directive on this line.   If the line is a #-directive, read the entire line and return a newline.   Otherwise, return the line's first non-whitespace character.  */intcheck_newline (){  register int c;  register int token;  lineno++;  /* Read first nonwhite char on the line.  */  c = getc (finput);  while (c == ' ' || c == '\t')    c = getc (finput);  if (c != '#')    {      /* If not #, return it so caller will use it.  */      return c;    }  /* Read first nonwhite char after the `#'.  */  c = getc (finput);  while (c == ' ' || c == '\t')    c = getc (finput);  /* If a letter follows, then if the word here is `line', skip     it and ignore it; otherwise, ignore the line, with an error     if the word isn't `pragma', `ident', `define', or `undef'.  */  if ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'))    {      if (c == 'p')	{	  if (getc (finput) == 'r'	      && getc (finput) == 'a'	      && getc (finput) == 'g'	      && getc (finput) == 'm'	      && getc (finput) == 'a'	      && ((c = getc (finput)) == ' ' || c == '\t' || c == '\n'))	    {#ifdef HANDLE_SYSV_PRAGMA	      return handle_sysv_pragma (finput, c);#else /* !HANDLE_SYSV_PRAGMA */#ifdef HANDLE_PRAGMA	      HANDLE_PRAGMA (finput);#endif /* HANDLE_PRAGMA */	      goto skipline;#endif /* !HANDLE_SYSV_PRAGMA */	    }	}      else if (c == 'd')	{	  if (getc (finput) == 'e'	      && getc (finput) == 'f'	      && getc (finput) == 'i'	      && getc (finput) == 'n'	      && getc (finput) == 'e'	      && ((c = getc (finput)) == ' ' || c == '\t' || c == '\n'))	    {#ifdef DWARF_DEBUGGING_INFO	      if ((debug_info_level == DINFO_LEVEL_VERBOSE)		  && (write_symbols == DWARF_DEBUG))	        dwarfout_define (lineno, get_directive_line (finput));#endif /* DWARF_DEBUGGING_INFO */	      goto skipline;	    }	}      else if (c == 'u')	{	  if (getc (finput) == 'n'	      && getc (finput) == 'd'	      && getc (finput) == 'e'	      && getc (finput) == 'f'	      && ((c = getc (finput)) == ' ' || c == '\t' || c == '\n'))	    {#ifdef DWARF_DEBUGGING_INFO	      if ((debug_info_level == DINFO_LEVEL_VERBOSE)		  && (write_symbols == DWARF_DEBUG))	        dwarfout_undef (lineno, get_directive_line (finput));#endif /* DWARF_DEBUGGING_INFO */	      goto skipline;	    }	}      else if (c == 'l')	{	  if (getc (finput) == 'i'	      && getc (finput) == 'n'	      && getc (finput) == 'e'	      && ((c = getc (finput)) == ' ' || c == '\t'))	    goto linenum;	}      else if (c == 'i')	{	  if (getc (finput) == 'd'	      && getc (finput) == 'e'	      && getc (finput) == 'n'	      && getc (finput) == 't'	      && ((c = getc (finput)) == ' ' || c == '\t'))	    {	      /* #ident.  The pedantic warning is now in cccp.c.  */	      /* Here we have just seen `#ident '.		 A string constant should follow.  */	      while (c == ' ' || c == '\t')		c = getc (finput);	      /* If no argument, ignore the line.  */	      if (c == '\n')		return c;	      ungetc (c, finput);	      token = yylex ();	      if (token != STRING		  || TREE_CODE (yylval.ttype) != STRING_CST)		{		  error ("invalid #ident");		  goto skipline;		}	      if (!flag_no_ident)		{#ifdef ASM_OUTPUT_IDENT		  ASM_OUTPUT_IDENT (asm_out_file, TREE_STRING_POINTER (yylval.ttype));#endif		}	      /* Skip the rest of this line.  */	      goto skipline;	    }	}      error ("undefined or invalid # directive");      goto skipline;    }linenum:  /* Here we have either `#line' or `# <nonletter>'.     In either case, it should be a line number; a digit should follow.  */  while (c == ' ' || c == '\t')    c = getc (finput);  /* If the # is the only nonwhite char on the line,     just ignore it.  Check the new newline.  */

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩欧美一级二级三级久久久| 国产精品99久久久久久似苏梦涵| 日本aⅴ免费视频一区二区三区| 蜜臀av性久久久久av蜜臀妖精| 国产自产视频一区二区三区| 成人性色生活片| 在线免费不卡视频| 欧美大片国产精品| 亚洲日本电影在线| 久久97超碰国产精品超碰| 99re8在线精品视频免费播放| 欧美老年两性高潮| 国产精品美日韩| 日韩高清欧美激情| 91片在线免费观看| 精品国产一区二区三区av性色| 亚洲欧洲日本在线| 美国一区二区三区在线播放| 99久久777色| 欧美成人一区二区三区| 一区二区三区影院| 国产乱淫av一区二区三区| 欧美色视频在线| 国产欧美日韩精品在线| 日韩电影在线观看一区| 91在线视频18| 国产日韩视频一区二区三区| 日韩高清在线电影| 在线看一区二区| 亚洲国产精品t66y| 看电视剧不卡顿的网站| 欧美中文字幕一区二区三区 | 午夜av电影一区| 成人91在线观看| 精品处破学生在线二十三| 亚洲国产成人tv| 91无套直看片红桃| 中文字幕免费不卡| 奇米精品一区二区三区在线观看一| 99久久婷婷国产| 欧美极品xxx| 国产精品综合久久| 日韩欧美在线1卡| 亚洲gay无套男同| 在线观看日韩精品| 亚洲视频免费在线观看| 国产成人综合在线播放| 日韩片之四级片| 性做久久久久久免费观看| 91美女视频网站| 中文字幕一区二区不卡| 国产不卡视频一区二区三区| wwww国产精品欧美| 理论电影国产精品| 日韩精品一区二区三区视频在线观看 | 亚洲国产综合91精品麻豆| av一区二区不卡| 欧美国产日本韩| 国产成人免费在线| 久久综合九色综合欧美亚洲| 久久国产精品第一页| 91精品国产综合久久久蜜臀粉嫩| 亚洲夂夂婷婷色拍ww47| 91麻豆视频网站| 亚洲免费观看高清在线观看| av电影天堂一区二区在线观看| 日本一区二区三区四区| 风流少妇一区二区| 国产视频一区在线观看| 成人综合激情网| 国产精品理论在线观看| av亚洲精华国产精华精华| 自拍av一区二区三区| 99国产精品久| 亚洲一区二区三区四区在线| 日本丶国产丶欧美色综合| 亚洲已满18点击进入久久| 欧美三级视频在线观看| 日韩中文字幕区一区有砖一区| 欧美日本一道本在线视频| 青青草97国产精品免费观看 | 精品在线免费观看| 久久久国产精品不卡| 成人永久免费视频| 日韩理论片中文av| 精品视频一区二区不卡| 日韩高清不卡在线| www一区二区| 99久久婷婷国产综合精品| 一区二区三区四区精品在线视频| 欧美伊人精品成人久久综合97| 午夜精品国产更新| 欧美v亚洲v综合ⅴ国产v| 国产精品亚洲а∨天堂免在线| 国产欧美日产一区| 色乱码一区二区三区88 | 欧美电影免费观看高清完整版| 国产剧情一区在线| 亚洲人午夜精品天堂一二香蕉| 欧美日韩免费视频| 精品一区二区三区不卡| 国产精品成人在线观看| 欧美三级日韩三级| 国产精品一区免费视频| 亚洲老妇xxxxxx| 精品国产制服丝袜高跟| 91麻豆文化传媒在线观看| 日韩二区三区四区| 日本一区二区成人| 欧美精品亚洲二区| 成人午夜在线免费| 亚洲成人av资源| 国产蜜臀av在线一区二区三区| 91精品办公室少妇高潮对白| 美国av一区二区| 亚洲丝袜制服诱惑| 日韩一区二区不卡| 99re视频这里只有精品| 蜜桃视频一区二区| ...中文天堂在线一区| 日韩一区和二区| 99久久er热在这里只有精品15| 日本美女视频一区二区| 国产精品拍天天在线| 555www色欧美视频| fc2成人免费人成在线观看播放| 午夜亚洲福利老司机| 国产精品美女久久久久久久久久久| 欧美男人的天堂一二区| 国产成a人亚洲精| 免费成人深夜小野草| 亚洲欧美日韩在线播放| 欧美精品一区二| 欧美猛男gaygay网站| 99re热视频这里只精品| 国产综合一区二区| 亚洲成a人v欧美综合天堂下载| 中文av一区二区| 日韩一级片网站| 欧美性受xxxx黑人xyx| 成人av午夜电影| 激情亚洲综合在线| 天堂精品中文字幕在线| 亚洲欧美日韩中文字幕一区二区三区 | 一个色综合av| 国产精品第五页| 国产亚洲va综合人人澡精品| 欧美一区二区视频观看视频| 色婷婷久久久久swag精品| 国产成人精品综合在线观看| 日韩成人免费看| 亚洲国产精品久久一线不卡| 最新中文字幕一区二区三区| 久久久精品国产免大香伊| 欧美大片拔萝卜| 69堂亚洲精品首页| 欧美在线免费观看亚洲| 一本色道久久综合亚洲aⅴ蜜桃| 国产69精品久久99不卡| 精品一区二区三区视频在线观看 | 欧美一级搡bbbb搡bbbb| 日本高清免费不卡视频| 91天堂素人约啪| 国产91色综合久久免费分享| 久久99这里只有精品| 日韩和欧美的一区| 亚洲成人免费在线观看| 一区二区三区在线观看视频| 亚洲日本中文字幕区| 亚洲三级小视频| 亚洲色图.com| 亚洲蜜臀av乱码久久精品蜜桃| 国产精品丝袜黑色高跟| 欧美激情一区二区三区全黄| 国产午夜精品美女毛片视频| 精品国产不卡一区二区三区| 欧美成人精品1314www| 国产精品福利影院| 欧美国产欧美综合| 亚洲国产精品二十页| 中文字幕一区二区三区视频| 国产精品人妖ts系列视频| 中文字幕一区二区三区蜜月| 国产精品成人免费| 亚洲人成网站在线| 亚洲一区二区在线免费看| 亚洲香蕉伊在人在线观| 污片在线观看一区二区| 日韩—二三区免费观看av| 麻豆精品在线播放| 国产美女精品人人做人人爽| 国产成人av网站| 波多野结衣在线一区| 91尤物视频在线观看| 色婷婷久久综合| 在线不卡一区二区| 日韩亚洲欧美在线观看| 国产亚洲精品aa午夜观看| 国产精品家庭影院| 亚洲无人区一区|