]> granicus.if.org Git - re2c/shortlog
re2c
2019-01-27 Ulya Trofimovichlibre2c_posix: a small performance improvement in regex...
2019-01-27 Ulya Trofimovichlibre2c_posix: regex_t definition must be exposed to...
2019-01-27 Ulya Trofimovichlibre2c_posix: enable tag optimizations.
2019-01-27 Ulya Trofimovichlibre2c_posix: extended regex_t structure to hold more...
2019-01-27 Ulya TrofimovichAdjusted build system to correctly build DLLs for windows.
2019-01-19 Ulya TrofimovichUse libtool to build libraries.
2019-01-17 Ulya TrofimovichFixed operator precedence with --flex-syntax option.
2019-01-16 Ulya Trofimovichlibre2c_posix: handle empty group () in parser; added...
2019-01-16 Ulya TrofimovichMake re2c:eof usable with push-model lexers (-f, -...
2019-01-15 Ulya Trofimovichlibre2c_posix: parse repetition counters in the lexer.
2019-01-14 Ulya Trofimovichlibre2c_posix: initial support for character classes...
2019-01-13 Ulya Trofimovichlibre2c_posix (test): clear error status on expected...
2019-01-13 Ulya Trofimovichlibre2c_posix: skip fictive tags in regexec(); handle...
2019-01-12 Ulya Trofimovichlibre2c_posix: use C-array initializers instead of...
2019-01-12 Ulya Trofimovichlibre2c_posix (test): a more concise error message.
2019-01-12 Ulya Trofimovichlibre2c_posix: fixed -Wmaybe-uninitialized GCC warning.
2019-01-12 Ulya Trofimovichlibre2c_posix: fixed memleaks.
2019-01-12 Ulya TrofimovichExperimental: initial implementation of libre2c_posix...
2019-01-11 Ulya TrofimovichPaper: don't forget to pass precedence matrices to...
2019-01-11 Ulya TrofimovichMakefile.am: further simplify parser generation rules...
2019-01-11 Ulya TrofimovichMakefile.am: don't forget to run main test suite on...
2019-01-10 Ulya TrofimovichMakefile.am: use more universal rules for autogenerated...
2019-01-10 Ulya TrofimovichAvoid unexpected removal of untracked files and directo...
2019-01-10 Ulya TrofimovichMoved function declarations to the header they belong in.
2019-01-06 Ulya TrofimovichUpdated range test.
2019-01-06 Ulya TrofimovichUse a simple fixed-size slab allocator for ranges.
2019-01-06 Ulya TrofimovichHandle single chars and 1-char ranges in the same way.
2019-01-05 Ulya TrofimovichUpdated autogenerated files after change of directory...
2019-01-05 Ulya TrofimovichMoved duplicated code into a separate function.
2019-01-05 Ulya TrofimovichChanged directory layout (cosmetic).
2019-01-05 Ulya TrofimovichHandle EBCDIC like other encodings instead of coupling...
2019-01-05 Ulya TrofimovichMoved repeated code into a separate function.
2019-01-04 Ulya TrofimovichFixed error in range difference with EBCDIC, added...
2019-01-04 Ulya TrofimovichCompute range difference before applying encoding expan...
2019-01-04 Ulya TrofimovichAdded test for bug #238.
2019-01-04 Ulya TrofimovichFixed out-of-bounds write caused by misuse of slab...
2019-01-03 Ulya TrofimovichAdjusting formatting, dropping old macros (cosmetic).
2019-01-03 Ulya TrofimovichAdded tests for debug options.
2019-01-03 Ulya TrofimovichAdded debug options --dump-cfg and --dump-interf.
2019-01-03 Ulya TrofimovichMoved debug stuff to a separate subdirectory.
2019-01-03 Ulya TrofimovichDisable --dump-* options in non-debug mode.
2019-01-03 Ulya TrofimovichAdding --enable-debug to Travis CI configuration.
2019-01-03 Ulya TrofimovichAdded some tests for GTOP closure algorithm.
2019-01-03 Ulya TrofimovichAdded test comparing POSIX closure statistics with...
2019-01-03 Ulya TrofimovichIn debug build, add " (debug)" to version string.
2019-01-03 Ulya TrofimovichSmall simplifications in GOR1 initialization phase.
2019-01-03 Ulya TrofimovichPaper: simplifying GOR1 initialization pseudocode.
2019-01-02 Ulya TrofimovichSmall cosmetic simplifications in POSIX precedence.
2019-01-02 Ulya TrofimovichUse a specialized simplified version of POSIX compariso...
2019-01-01 Ulya TrofimovichIntrinsic options that do not have configurations shoul...
2019-01-01 Ulya TrofimovichAdded debug option --dump-closure-stats.
2018-12-31 Ulya TrofimovichAdjust TNFA construction for bounded repetition to...
2018-12-31 Ulya TrofimovichOrder initial configurations by POSIX precedence in...
2018-12-31 Ulya TrofimovichAdded option --posix-closure <gor1|gtop>. Removed confi...
2018-12-31 Ulya TrofimovichAdded GTOP SSSP algorithm for computing epsilon-closure...
2018-12-31 Ulya Trofimovichrun_tests.sh: cleanup .inc files.
2018-12-30 Ulya TrofimovichConverting tabs to spaces (cosmetic).
2018-12-30 Ulya TrofimovichEh, some of the asserts were doing useful work and...
2018-12-30 Ulya TrofimovichAdded assert wrapper that is turned on/off with --enabl...
2018-12-30 Ulya TrofimovichFixed errors in packing of signed integers.
2018-12-30 Ulya TrofimovichReduce boilerplate in option parser with a few macros.
2018-12-30 Ulya TrofimovichUse a couple of helper functions to make string constru...
2018-12-30 Ulya TrofimovichCorrectly parse -I option with or without space before...
2018-12-29 Ulya Trofimovichrun_tests.sh: use paths relative to build directory...
2018-12-29 Ulya TrofimovichAdding forgotten files to git.
2018-12-29 Ulya TrofimovichMore tests for include directive.
2018-12-29 Ulya TrofimovichResolve names of included files relative to including...
2018-12-29 Ulya TrofimovichUse correct order when unreading files from lexer buffer.
2018-12-27 Ulya TrofimovichSimplified lexing of include directive.
2018-12-27 Ulya TrofimovichTweaking a couple of labels in lexer to simplify updati...
2018-12-27 Ulya TrofimovichRemoved unused struct field.
2018-12-27 Ulya TrofimovichAdded test for EOF rule.
2018-12-27 Ulya TrofimovichTrack current line of each input file separately.
2018-12-26 Ulya TrofimovichCorrectly handle current directory '.' in include paths.
2018-12-26 Ulya TrofimovichAdded -I option (paths to include directories).
2018-12-25 Ulya TrofimovichAdded /*!include:re2c ... */ directive.
2018-12-23 Ulya TrofimovichPreparations to support #include: keep input files...
2018-12-23 Ulya Trofimovichconfigure.ac: set -Wreturn-type to error.
2018-12-22 Ulya TrofimovichInitial support of EOF rule.
2018-12-22 Ulya TrofimovichUpdated unicode tests and test generators for newer...
2018-12-20 Ulya TrofimovichPaper: added two output() functions that convert t...
2018-12-18 Ulya TrofimovichPaper: tweaked TNFA construction.
2018-12-06 Ulya TrofimovichLexer: use YYMAXFILL padding and don't forget to shift...
2018-12-06 Ulya TrofimovichCorrectly identify mapped TDFA state with --dump-dfa...
2018-11-29 Ulya TrofimovichMakefile.am: enable RE2C warnings (-W option).
2018-11-29 Ulya TrofimovichFixed read past the end of buffer in configuration...
2018-11-26 Ulya TrofimovichPaper: tweaking TNFA construction.
2018-11-22 Ulya TrofimovichMakefile.am: build autogenerates files before other...
2018-11-21 Ulya TrofimovichUse tags to lex condition goto.
2018-11-21 Ulya TrofimovichStarted using tags in re2c own lexer.
2018-11-21 Ulya TrofimovichRemoved redundant wrapper around output file struct.
2018-11-21 Ulya TrofimovichDump header on stdout if filename is not set, but ...
2018-11-21 Ulya TrofimovichAdded configurations for -o, --output and -t, --type...
2018-11-21 Ulya TrofimovichAdded missing #line info after /*!header:re2c: ......
2018-11-21 Ulya TrofimovichAdded /*!header:re2c:0*/ and /*!header:re2c:1*/ directives.
2018-11-21 Ulya TrofimovichTweaking condition list lexer.
2018-11-21 Ulya TrofimovichMerge pull request #230 from sergeyklay/patch-1
2018-11-21 Serghei IakovlevChanges for upcoming Travis' infra migration 230/head
2018-11-15 Ulya TrofimovichFixed segfault cause by out of bounds access.
2018-11-14 Ulya TrofimovichMoved tests into subdirectories.
next