]> granicus.if.org Git - re2c/shortlog
re2c
2017-03-03 Ulya TrofimovichRemove dead 'copy' commands.
2017-03-03 Ulya TrofimovichFixed code generation for '--skeleton' with '--posix...
2017-03-03 Ulya TrofimovichAdded option '--posix-captures'.
2017-03-03 Ulya TrofimovichNow code generation can handle zero-offset fixed tags...
2017-03-03 Ulya TrofimovichPrepare default tags insertion for non-sequential tag...
2017-03-03 Ulya TrofimovichDelay expansion of counted repetition until NFA constru...
2017-03-03 Ulya TrofimovichKeep the full history of tag occurences found by epsilo...
2017-02-26 Ulya TrofimovichMoved splitting charset and nullable rule analysis...
2017-02-26 Ulya TrofimovichAdded yet another intermediate representation (after...
2017-02-24 Ulya Trofimovich'--dump-nfa': correctly print symbol ranges on NFA...
2017-02-24 Ulya TrofimovichKeep fixed and variable tags together in one array.
2017-02-14 Ulya TrofimovichStop preserving order of tag versions when mapping...
2017-02-14 Ulya TrofimovichMoved tests to subdirectory.
2017-02-14 Ulya TrofimovichChanged disambiguation policy: leftmost rather than...
2017-02-13 Ulya TrofimovichDon't trace tags in epcilon-cycles when building tagged...
2017-02-13 Ulya TrofimovichIn greedy regexps first alternative must correspond...
2017-02-13 Ulya TrofimovichTags that occur earlier in regular expression must...
2017-02-13 Ulya TrofimovichAdded debug option '--dump-nfa'.
2017-02-12 Sergei Trofimovichre2c: cleanup a few clang ++ warnings
2017-02-11 Ulya TrofimovichPack lookahead tags together with tag versions in TDFA...
2017-02-09 Ulya TrofimovichUse 'normal form' of version matrix to test if states...
2017-02-09 Ulya TrofimovichAdded tests that fail if mapping of TDFA states ignores...
2017-02-09 Ulya TrofimovichStop supporting non-bijective mappings of TDFA states.
2017-02-08 Ulya TrofimovichAssert that operands of 'copy' command are different.
2017-02-01 Ulya Trofimovich'--dump-dfa-raw': better formatting of item's tags.
2017-02-01 Ulya Trofimovich'--dump-dfa-raw': show proper shadowed items with updat...
2017-01-31 Ulya TrofimovichAllocate final tag versions on the go instead of preall...
2017-01-31 Ulya Trofimovich'--dump-dfa-raw': show shadowed NFA sub-states.
2017-01-25 Ulya TrofimovichFixed yet another case of disordered tags update and...
2017-01-25 Ulya TrofimovichDon't loose 'YYBACKUPTAG' command in case of equal...
2017-01-23 jcfpcorrect some minor manpage typos
2017-01-23 Ulya TrofimovichUpdate tags after reading character in TDFAs without...
2017-01-23 Ulya TrofimovichFixed memory leak.
2017-01-23 Ulya TrofimovichIterate CFG nodes in postorder to speed up liveness...
2017-01-23 Ulya TrofimovichUse the same tag version for all transitions from the...
2017-01-23 Ulya TrofimovichCompact tag versions before doing liveness analysis.
2017-01-23 Ulya TrofimovichUpdated parser for bison-3.0.4.
2017-01-18 Ulya TrofimovichAdded option '--no-lookahead'.
2017-01-17 Ulya TrofimovichAdded option '--eager-skip'.
2017-01-15 Ulya TrofimovichReuse mode: always reparse rules and restore options...
2017-01-01 Ulya TrofimovichConsistently use current block's options for code gener...
2016-12-30 Ulya TrofimovichFold output expressions in a separate pass over the...
2016-12-29 Ulya TrofimovichMemorize options for each block and use them for delaye...
2016-12-27 Ulya TrofimovichDelay code generation for condition dispatch.
2016-12-27 Ulya TrofimovichFinally separated parsing, consistensy checking and...
2016-12-25 Ulya TrofimovichEmit conditions ordered by their number rather than...
2016-12-24 Ulya TrofimovichReuse 'Code' data struct for setup code.
2016-12-24 Ulya TrofimovichReduced one argument to function as it is a part of...
2016-12-24 Ulya TrofimovichParser: started gathering all error messages in one...
2016-12-23 Ulya TrofimovichKeep startup code '<>' separately from other rules.
2016-12-23 Ulya TrofimovichKeep '*' rules separately from other rules.
2016-12-23 Ulya TrofimovichSetup code for rules belongs in DFA scope, not the...
2016-12-23 Ulya TrofimovichRestructured parser grammar to explicitly list differen...
2016-12-22 Ulya TrofimovichParser grammar: separate production for code in conditi...
2016-12-22 Ulya TrofimovichPass context as parameter to 'yyparse' instead of a...
2016-12-22 Ulya TrofimovichRemoved unused typedef.
2016-12-22 Ulya TrofimovichFixed memleaks (found by valgrind).
2016-12-22 Ulya TrofimovichHandle all types of rules in one place (in parser).
2016-12-22 Ulya TrofimovichSimplified handling of user-defined code in parser.
2016-12-22 Ulya TrofimovichInlined small function with only one user.
2016-12-22 Ulya TrofimovichSimplified line tracking in lexer.
2016-12-22 Ulya TrofimovichSeparated compilation pass from code generation pass.
2016-12-21 Ulya TrofimovichParse rules in a uniform way regardless of the '-c...
2016-12-21 Ulya TrofimovichSimplified parsing of startup code '<>'.
2016-12-21 Ulya TrofimovichDon't use special token type for '<!' and '<>'.
2016-12-21 Ulya TrofimovichFurther simplified default rule parsing.
2016-12-21 Ulya TrofimovichSimplified handling of default rule in parser.
2016-12-21 Ulya TrofimovichDon't loose condition if it consists of default rule...
2016-12-20 Ulya TrofimovichSimplified '*' condition handling in parser.
2016-12-20 Ulya TrofimovichMoved variable from global scope to function scope.
2016-12-19 Ulya TrofimovichMake 'Scanner' parameter to 'yyparse' instead of global...
2016-12-19 Ulya TrofimovichRemoved empty header 'globals.h' and all includes of it.
2016-12-19 Ulya TrofimovichRemoved variable from global scope.
2016-12-19 Ulya TrofimovichRemoved variable from global scope.
2016-12-19 Ulya TrofimovichRemoved variable from global scope, simplified bitmaps.
2016-12-18 Ulya TrofimovichRemoved variable from global scope.
2016-12-18 Ulya TrofimovichRemoved variable from global scope.
2016-12-18 Ulya TrofimovichRemoved warnings from global scope.
2016-12-18 Ulya TrofimovichRemoved options from global scope.
2016-12-14 Ulya TrofimovichSimplified code generation for initial state.
2016-12-14 Ulya TrofimovichSimplified generation of code for buffer refilling.
2016-12-14 Ulya TrofimovichDon't delay reading next character until dispatch.
2016-12-14 Ulya TrofimovichDon't peek next input character if all transitions...
2016-12-12 Ulya TrofimovichRenamed option '--dfa-mapping <bijective | injective...
2016-12-12 Ulya TrofimovichSearch for the best candidate in case of non-bijective...
2016-12-09 Ulya TrofimovichRespect injective mappings when optimizing save(X)...
2016-12-08 Ulya TrofimovichNow checking for tag priority violation respects inject...
2016-12-08 Ulya TrofimovichFixed atrocious typo that unconditionally enabled injec...
2016-12-07 Ulya TrofimovichAdded test: exponential blowup if bottom is treated...
2016-12-07 Ulya TrofimovichCleaned up determinization.
2016-12-06 Ulya TrofimovichUntwined determinization and '-Wnondeterministic-tags...
2016-12-05 Ulya TrofimovichDebug '--dump-adfa' option: drop 'YYFILL' in move state...
2016-12-05 Ulya TrofimovichAdded debug option '--dump-dfa-raw'.
2016-12-04 Ulya TrofimovichAdded option '--dfa-mapping <bijective | injective>'.
2016-12-04 Ulya TrofimovichDebug '--dump-adfa' option: correctly display range...
2016-12-04 Ulya TrofimovichDrop hoisted tags in 'base' states duplicated by tunneling.
2016-12-03 Ulya TrofimovichFixed 'uniq' on commands (algorithm that removes duplic...
2016-12-02 Ulya TrofimovichDon't loose liveness of tags that occur on both sides...
2016-12-02 Ulya TrofimovichProperly remove useless final states.
2016-12-02 Ulya TrofimovichRetry tunnel optimization if the first attempt is unsuc...
next