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

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

?? changelog

?? bison 2.0 主要可以用來做語法分析用的
??
?? 第 1 頁 / 共 5 頁
字號:
2004-12-25  Paul Eggert  <eggert@cs.ucla.edu>	* NEWS: Version 2.0.  Reformat the existing news items since	1.875, so that related items are grouped together.	* configure.ac (AC_INIT): Bump version to 2.0.	* src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.	* tests/torture.at (Exploding the Stack Size with Alloca): Set	YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;	otherwise, we're not testing alloca.  Unfortunately there's no	simple way to consult HAVE_ALLOCA here.	* data/lalr1.cc (yydestruct_): Pacify unused variable warning	for yymsg, too.	* src/LR0.c (new_itemsets): Use memset rather than zeroing by	hand.  This avoids a warning about comparing int to size_t when	GCC warnings are enabled.2004-12-22  Paul Eggert  <eggert@cs.ucla.edu>	* NEWS: Bison-generated parsers no longer default to using the	alloca function (when available) to extend the parser stack, due	to widespread problems in unchecked stack-overflow detection.	* data/glr.c (YYMAXDEPTH): Remove undef when zero.  It's the user's	responsibility to set it to a positive value.  This lets the user	specify a value that is not a preprocessor constant.	* data/yacc.c (YYMAXDEPTH): Likewise.	(YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.	* doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs	to be a compile-time constant.  However, explain the constraints on it.	Also, explain the constraints on YYINITDEPTH.	(Table of Symbols): Explain that alloca is no longer the default.	Explain the user's responsibility if they define YYSTACK_USE_ALLOCA	to 1.	* doc/bison.texinfo (Location Default Action): Mention that n must	be zero when k is zero.  Suggested by Frank Heckenbach.2004-12-22  Akim Demaille  <akim@epita.fr>	* data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)	(parser::state_type, parser::semantic_type, parser::location_type):	Private, not public.	(parser::parse): Return ints, not bool.	Returning a bool introduces a problem: 0 corresponds to false, and	it seems weird to return false on success.  Returning true changes	the conventions for yyparse.	Alternatively we could return void and send an exception.	There is no clear consensus (yet?).	(state_stack, semantic_stack, location_stack): Rename as...	(state_stack_type, semantic_stack_type, location_stack_type): these.	Private, not public.	* tests/c++.at: New.	* tests/testsuite.at, tests/Makefile.am: Adjust.2004-12-21  Akim Demaille  <akim@epita.fr>	* data/lalr1.cc (parser::parse): Return a bool instead of an int.2004-12-21  Akim Demaille  <akim@epita.fr>	Don't impose std::string for filenames.	* data/lalr1.cc (b4_filename_type): New.	(position::filename): Use it.	(parser.hh): Move the inclusion of stack.hh and location.hh below	the user code, so that needed headers for the filename type can be	included first.	Forward declare them before the user code.	* tests/Makefile.am (check-local, installcheck-local): Pass	TESTSUITEFLAGS to the TESTSUITE.2004-12-20  Akim Demaille  <akim@epita.fr>	Use more STL like names: my_class instead of MyClass.	* data/lalr1.cc (LocationStack, LocationType, RhsNumberType)	(SemanticStack, SemanticType, StateStack, StateType)	(TokenNumberType, Stack, Slice, Traits, Parser::location)	(Parser::value): Rename as...	(location_stack, location_type, rhs_number_type, semantic_stack)	(semantic_type, state_stack, state_type, token_number_type, stack)	(slice, traits, parser::yylloc, parser::yylval): these.	* tests/calc.at, tests/regression.at, tests/actions.at: Adjust.2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>	* data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.	* data/yacc.c (YYLLOC_DEFAULT): Likewise.2004-12-17  Paul Eggert  <eggert@cs.ucla.edu>	Remove uses of 'short int' and 'unsigned short int'.  This raises	some arbitrary limits.  It uses more memory but nowadays that's	not much of an issue.	This change does not affect the generated parsers; that's a different	task, as some users will want to conserve memory there.	Ideally we should use size_t to represent all object counts, and	something like ptrdiff_t to represent signed differences of object	counts; but that will require more code-cleanup than I have the	time to do right now.	* src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):	Use size_t, not int or short int, to count objects.	* src/closure.c (nritemset, closure): Likewise.	* src/closure.h (nritemset, closure): Likewise.	* src/nullable.c (nullable_compute): Likewise.	* src/print.c (print_core): Likewise.	* src/print_graph.c (print_core): Likewise.	* src/state.c (state_compare, state_hash): Likewise.	* src/state.h (struct state): Likewise.	* src/tables.c (default_goto, goto_actions): Likewise.	* src/gram.h (rule_number, rule): Use int, not short int.	* src/output.c (prepare_rules): Likewise.	* src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,	errs, reductions): Likewise.	* src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):	Likewise.	* src/tables.c (vector_number, tally, action_number,	ACTION_NUMBER_MINIMUM): Likewise.	* src/output.c (muscle_insert_short_int_table): Remove.2004-12-17  Akim Demaille  <akim@epita.fr>	* data/lalr1.cc: Extensive Doxygenation.	(error_): Rename as...	(error): this, since it is visible to the user.	Adjust callers.	(Parser::message): Now an automatic variable from...	(Parser::yyreport_syntax_error_): here.	* tests/actions.at, tests/calc.at, tests/regression.at: Adjust to	Parser::error.	* tests/input.at: Escape $.2004-12-16  Paul Eggert  <eggert@cs.ucla.edu>	* data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):	Parenthesize rhs to avoid obscure problems with mistakes like	"foo$$bar = foo$1bar;".  Problem reported by twlevo at xs4all.	* data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,	b4_rhs_location): Likewise.	* data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,	b4_rhs_location): Likewise.2004-12-16  Akim Demaille  <akim@epita.fr>	* data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and	yacc.c: be sure to stay within yycheck_.	* tests/actions.at: Re-enable C++ tests.2004-12-16  Akim Demaille  <akim@epita.fr>	* src/print_graph.c (print_graph): Remove layoutalgorithm uses for	real.2004-12-16  Akim Demaille  <akim@epita.fr>	Use #define to handle the %name-prefix.	* data/glr.c, data/yacc.c: Comment changes.	* data/lalr1.cc (yylex): Use #define to select the name of yylex,	so that one can refer to yylex in the parser file, and have it	renamed, as is the case with other skeletons.2004-12-16  Akim Demaille  <akim@epita.fr>	Move lalr1.cc internals into yy*.	* data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)	(semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)	(pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)	(name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)	(empty_, final_, terror_, errcode_, ntokens_)	(user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)	(looka_, ilooka_, error_range_, nerrs_):	Rename as...	(yysemantic_stack_, yylocation_stack_, yystate_stack_)	(yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)	(yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)	(yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)	(yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)	(yyfinal_, yyterror_, yyerrcode_, yyntokens_)	(yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)	(yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):	these.2004-12-15  Paul Eggert  <eggert@cs.ucla.edu>	Fix some problems reported by twlevo at xs4all.	* src/symtab.c (symbol_new): Report an error if the input grammar	contains too many symbols.  This is better than calling abort() later.	* src/vcg.h (enum layoutalgorithm): Remove.  All uses removed.	(struct node, struct graph):	Rename member expand to stretch.  All uses changed.	(struct graph): Remove member layoutalgorithm.  All uses removed.	* src/vcg.c (get_layoutalgorithm_str): Remove.  All uses removed.	* src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.	All uses changed.	(N_STRETCH): Rename from N_EXPAND.  All uses changed.2004-12-15  Akim Demaille  <akim@epita.fr>	* data/lalr1.cc: Normalize /** \brief ... */ to ///.	Add more Doxygen comments.	(symprint_, stack_print_, reduce_print_, destruct_, pop)	(report_syntax_error_, translate_): Rename as...	(yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)	(yypop_, yyreport_syntax_error_, yytranslate_): this.2004-12-15  Akim Demaille  <akim@epita.fr>	* data/lalr1.cc (lex_): Rename as...	(yylex_): this.	Move the trace here.	Take the %name-prefix into account.	Reported by Alexandre Duret-Lutz.2004-12-15  Akim Demaille  <akim@epita.fr>	Simplify the C++ parser constructor.	* data/lalr1.cc (debug_): Rename as...	(yydebug_): so that the parser's internals are always in the yy*	pseudo namespace.	Adjust uses.	(b4_parse_param_decl): Remove the leading comma as it is now only	called as unique argument list.	(Parser::Parser): Remove the constructor accepting a location and	an initial debugging level.	Remove from the other ctor the argument for the debugging level.	(debug_level_type, debug_level, set_debug_level): New.	* tests/actions.at, tests/calc.at, tests/regression.at: Adjust	constructor calls.2004-12-15  Akim Demaille  <akim@epita.fr>	Remove b4_root related material: failure experiment	(which goal was to allow to derive from a class).	* data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove	definitions and uses.2004-12-14  Paul Eggert  <eggert@cs.ucla.edu>	* data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,	not 2, since it's not portable to subtract 1 from the start of an	array.  The new item 0 is never set or used.  All uses changed.	(yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming	the default definition of YYLLOC_DEFAULT.  Problem reported	by Frank Heckenbach.2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>	* data/glr.c (YYRHSLOC): Don't have two definitions, one for	the normal case and one for the error case.  Just use the	first one uniformly.  Problem reported by Frank Heckenbach.	(YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can	use exactly the same macro in both places.	(yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,	so that the normal-case YYRHSLOC works for the error case too.	All uses changed.	* data/yacc.c (YYRHSLOC): New macro, taken from glr.c.	(YYLLOC_DEFAULT): Use the same macro as glr.c.	* doc/bison.texinfo (Location Default Action): Don't claim that	we have an array of locations.  Use the same macro for both glr	and lalr parsers.  Mention YYRHSLOC.  Mention what happens when	the index is 0.2004-12-10  Paul Eggert  <eggert@cs.ucla.edu>	* HACKING: Update email addresses to send announcements to.	* configure.ac (AC_INIT): Bump version to 1.875f.2004-12-10  Paul Eggert  <eggert@cs.ucla.edu>	* NEWS: Version 1.875e.	* src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.	* src/scan-skel.l: Include "complain.h", for "fatal".	* src/relation.h (relation_print, relation_digraph):	Relation sizes are of type relation_node, not size_t (this is	merely a doc fix, since the two types are equivalent).	(relation_transpose): Relation sizes are of type relation_node,	not int.	* src/relation.c: Likewise.	(top, infinity): Now of type relation_node, not int.	(traverse, relation_transpose): Use relation_node, not int.	* data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args	with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.	(yyparse): Remove unused local introduced in 2004-10-25 patch.	* tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg	specifying whether the test should be skipped.  Use it tp	specify that the [%defines %skeleton "lalr1.cc"] tests currently	fail on some hosts, and should be skipped.2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>	* src/system.h (CALLOC, MALLOC, REALLOC): Remove.  All callers	changed to use xcalloc, xnmalloc, xnrealloc, respectively,	unless otherwise specified below.	* src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,	to allocate kernel_base, kernel_items, kernel_size, since	they needn't be initialized to 0.	(allocate_storgae): Likewise, for shiftset, redset, shift_symbol.	* src/closure.c (new_closure): Likewise, for itemset.	* src/derives.c (derives_compute): Likewise, for delts, derives, q.	* src/lalr.c (set_goto_map): Likewise, for temp_map.	(initialize_F): Likewise, for reads, edge, reads[i], includes[i].	(build_relations): Likewise for edge, states1, includes.	* src/nullable.c (nullable_compute): Likewise, for squeue, relts.	* src/reader.c (packgram): Likewise, for ritem, rules.	* src/reduce.c (nonterminals_reduce): Likewise for nontermmap.	* src/relation.c (relation_digraph): Likewise for VERTICES.	(relation_transpose): Likewise for new_R, end_R.	* src/symtab.c (symbols_token_translations_init): Likewise for	token_translations.	* src/tables.c (save_row): Likewise for froms, tos, conflict_tos.	(token_actions): Likewise for yydefact, actrow, conflrow,

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色综合天天综合网天天看片| 亚洲自拍都市欧美小说| 欧美性猛交xxxxxx富婆| 国产一区二区久久| 五月激情综合婷婷| 亚洲欧洲av一区二区三区久久| 欧美一级久久久久久久大片| 欧美色精品在线视频| 99久久99久久精品免费看蜜桃| 国产一区二区主播在线| 免费av网站大全久久| 午夜精品久久久久久久99樱桃| 国产精品久久久久天堂| 国产人成一区二区三区影院| 精品久久人人做人人爱| 欧美一区二区三区啪啪| 91久久人澡人人添人人爽欧美| a亚洲天堂av| 色综合中文字幕| 91麻豆swag| 91成人网在线| 成人免费视频视频| 亚洲精品中文字幕乱码三区| 亚洲一级片在线观看| 蜜桃av一区二区三区| 国产电影精品久久禁18| 91麻豆蜜桃一区二区三区| 欧美性猛交xxxx乱大交退制版| 91麻豆精品国产91久久久使用方法| 欧美成人bangbros| 亚洲少妇中出一区| 日本aⅴ免费视频一区二区三区| 国产精品亚洲视频| 日本高清不卡在线观看| 精品国产一区二区三区四区四| 欧美国产一区二区在线观看 | 欧美曰成人黄网| 欧美夫妻性生活| 国产午夜亚洲精品羞羞网站| 亚洲综合一区二区三区| 国产一区二区三区av电影| 91国偷自产一区二区使用方法| 日韩午夜小视频| 亚洲精品伦理在线| 国产精品 日产精品 欧美精品| 91福利视频久久久久| 久久精品在这里| 亚洲午夜免费福利视频| 国产成人综合精品三级| 欧美日精品一区视频| 久久久久国色av免费看影院| 亚洲成a人在线观看| 不卡的av电影在线观看| 精品国产一区二区三区av性色| 欧美日韩在线精品一区二区三区激情 | 懂色av一区二区夜夜嗨| 成人欧美一区二区三区黑人麻豆| 91日韩在线专区| 午夜精品久久一牛影视| 日韩欧美国产一区二区三区| 国产v综合v亚洲欧| 一卡二卡三卡日韩欧美| 3d成人动漫网站| 成人开心网精品视频| 洋洋av久久久久久久一区| 日韩一级免费观看| av资源网一区| 日韩精品成人一区二区三区| 国产日韩欧美高清在线| 色婷婷综合在线| 捆绑变态av一区二区三区| 国产精品国模大尺度视频| 国产亲近乱来精品视频| 成人性色生活片| 免费看日韩a级影片| 中文字幕巨乱亚洲| 欧美二区三区91| www.日韩在线| 日韩成人一区二区三区在线观看| 欧美经典一区二区三区| 51久久夜色精品国产麻豆| 成人深夜视频在线观看| 日本欧美一区二区| 一区二区三区在线视频免费 | 欧美色大人视频| 国产成a人亚洲| 秋霞午夜鲁丝一区二区老狼| 亚洲人午夜精品天堂一二香蕉| 日韩你懂的电影在线观看| 在线视频欧美精品| 成人理论电影网| 国产曰批免费观看久久久| 婷婷一区二区三区| 亚洲黄色片在线观看| 色网综合在线观看| 欧美激情一区二区| 91九色最新地址| 麻豆精品在线观看| 欧美国产丝袜视频| 在线观看一区日韩| 男人的天堂亚洲一区| 久久精品亚洲国产奇米99| 99久久精品国产精品久久| 亚洲图片欧美一区| 久久伊人蜜桃av一区二区| 成人性生交大合| 五月天丁香久久| 国产亚洲精品7777| 欧美在线免费观看亚洲| 蜜桃精品视频在线观看| 欧美激情一区二区在线| 欧美视频一区二区三区四区| 久久黄色级2电影| 亚洲欧美激情小说另类| 日韩精品一区二区三区蜜臀| 成人黄色电影在线| 日产欧产美韩系列久久99| 欧美国产国产综合| 欧美一区二区三区日韩视频| 成人av在线观| 久久精品国产一区二区三区免费看| 国产女人aaa级久久久级| 欧美福利视频导航| 91免费版在线看| 国产一区二区视频在线| 婷婷成人综合网| 亚洲日本va午夜在线电影| 日韩精品专区在线| 欧美色图在线观看| 99久久精品国产麻豆演员表| 久久丁香综合五月国产三级网站| 一区二区三区不卡视频| 国产精品日产欧美久久久久| 欧美一区二区福利在线| 欧美亚洲综合在线| 色综合久久久久久久久久久| 国产在线不卡一区| 亚洲成人一二三| 亚洲精品一二三区| 1区2区3区国产精品| 国产嫩草影院久久久久| 精品国产伦一区二区三区观看体验| 在线欧美日韩国产| 色综合久久中文字幕| 成人免费av网站| 懂色av一区二区三区蜜臀| 久久成人综合网| 久久99精品久久久久久动态图 | 欧美在线观看一区二区| 波多野结衣在线aⅴ中文字幕不卡| 国产一区亚洲一区| 国产在线乱码一区二区三区| 青娱乐精品在线视频| 秋霞午夜鲁丝一区二区老狼| 日韩在线播放一区二区| 日本中文在线一区| 免费在线观看不卡| 久久精品久久综合| 国产呦精品一区二区三区网站 | 国产亚洲精品aa| 国产亚洲精品久| 国产亚洲欧美日韩日本| 国产欧美日韩视频一区二区 | 99精品欧美一区| 色网站国产精品| 欧美性大战久久久久久久| 欧美日韩精品欧美日韩精品| 欧美欧美欧美欧美首页| 日韩视频免费观看高清完整版| 欧美成人免费网站| 中文字幕成人在线观看| 亚洲九九爱视频| 亚洲国产精品av| 亚洲精品国久久99热| 国产成人在线色| 欧美电视剧免费观看| 亚洲一区二区三区自拍| bt7086福利一区国产| 久久综合九色综合97婷婷女人| 午夜视频在线观看一区| av电影在线观看不卡| 国产香蕉久久精品综合网| 男人操女人的视频在线观看欧美| 在线中文字幕一区| 亚洲欧洲日产国产综合网| 国产成人亚洲综合a∨猫咪| 精品久久久网站| 日韩中文字幕麻豆| 8x8x8国产精品| 日韩综合一区二区| 欧美猛男男办公室激情| 夜夜嗨av一区二区三区| 色悠久久久久综合欧美99| 国产精品美女视频| 成人午夜又粗又硬又大| 国产精品嫩草影院com| 国产69精品一区二区亚洲孕妇| 久久这里只有精品视频网| 精品一区二区免费| 久久久久久久性|