Index of /archives/NetBSD/NetBSD-release-9/src/external/bsd/tre/dist/lib
Name Last modified Size Description
Parent Directory -
CVS/ 2024-02-15 03:47 -
Makefile.am 2017-11-18 01:11 678
README 2010-02-25 16:33 2.7K
regcomp.c 2017-11-18 01:16 4.0K
regerror.c 2011-11-06 07:39 2.2K
regex.h 2010-02-25 16:33 1.0K
regexec.c 2017-11-19 22:00 11K
tre-alloca.h 2011-11-06 07:39 348
tre-ast.c 2010-02-25 16:33 5.0K
tre-ast.h 2011-11-06 07:39 3.4K
tre-compile.c 2017-11-19 21:35 59K
tre-compile.h 2010-02-25 16:33 445
tre-config.h.in 2010-02-25 16:33 1.2K
tre-filter.c 2017-11-18 01:11 1.6K
tre-filter.h 2017-11-18 01:11 363
tre-internal.h 2017-11-18 01:14 7.5K
tre-match-approx.c 2017-11-21 11:50 23K
tre-match-backtrack.c 2017-11-20 06:54 17K
tre-match-parallel.c 2017-11-21 11:50 13K
tre-match-utils.h 2017-11-19 22:22 6.6K
tre-mem.c 2011-11-06 07:39 3.1K
tre-mem.h 2010-02-25 16:33 1.8K
tre-parse.c 2017-11-19 21:13 44K
tre-parse.h 2017-11-18 01:14 1.4K
tre-stack.c 2011-11-06 07:39 2.3K
tre-stack.h 2017-11-18 01:14 2.3K
tre.h 2017-11-21 11:53 8.5K
xmalloc.c 2011-11-06 07:39 6.6K
xmalloc.h 2010-02-25 16:33 2.3K
This code is structured roughly as follows:
xmalloc.c:
- Wrappers for the malloc() functions, for error generation and
memory leak checking purposes.
tre-mem.c:
- A simple and efficient memory allocator.
tre-stack.c:
- Implements a simple stack data structure.
tre-ast.c:
- Abstract syntax tree (AST) definitions.
tre-parse.c:
- Regexp parser. Parses a POSIX regexp (with TRE extensions) into
an abstract syntax tree (AST).
tre-compile.c:
- Compiles ASTs to ready-to-use regex objects. Comprised of two parts:
* Routine to convert an AST to a tagged AST. A tagged AST has
appropriate minimized or maximized tags added to keep track of
submatches.
* Routine to convert tagged ASTs to tagged nondeterministic state
machines (TNFAs) without epsilon transitions (transitions on
empty strings).
tre-match-parallel.c:
- Parallel TNFA matcher.
* The matcher basically takes a string and a TNFA and finds the
leftmost longest match and submatches in one pass over the input
string. Only the beginning of the input string is scanned until
a leftmost match and longest match is found.
* The matcher cannot handle back references, but the worst case
time consumption is O(l) where l is the length of the input
string. The space consumption is constant.
tre-match-backtrack.c:
- A traditional backtracking matcher.
* Like the parallel matcher, takes a string and a TNFA and finds
the leftmost longest match and submatches. Portions of the
input string may (and usually are) scanned multiple times.
* Can handle back references. The worst case time consumption,
however, is O(k^l) where k is some constant and l is the length
of the input string. The worst case space consumption is O(l).
tre-match-approx.c:
- Approximate parallel TNFA matcher.
* Finds the leftmost and longest match and submatches in one pass
over the input string. The match may contain errors. Each
missing, substituted, or extra character in the match increases
the cost of the match. A maximum cost for the returned match
can be given. The cost of the found match is returned.
* Cannot handle back references. The space and time consumption
bounds are the same as for the parallel exact matcher, but
in general this matcher is slower than the exact matcher.
regcomp.c:
- Implementation of the regcomp() family of functions as simple
wrappers for tre_compile().
regexec.c:
- Implementation of the regexec() family of functions.
* The appropriate matcher is dispatched according to the
features used in the compiled regex object.
regerror.c:
- Implements the regerror() function.