* [PATCH v2 0/5] Speed up string search routines
@ 2011-08-20 22:40 Fredrik Kuivinen
0 siblings, 0 replies; only message in thread
From: Fredrik Kuivinen @ 2011-08-20 22:40 UTC (permalink / raw)
To: git; +Cc: bonzini, dpotapov, Junio C Hamano
This is v2 of a series sent a long time ago, in February 2010. The
patches speed up git grep and pickaxe by using the string search
routines from GNU grep.
Changes since v1:
* Rebased on top of current master.
* obstack.[ch] is now in compat/ (comment by Junio)
* kwset.[ch] is from the latest GNU grep commit which uses GPLv2. The
newer commits uses GPLv3, which is incompatible with GPLv2 used by
Git. There are no significant changes between the two. (pointed out
by Dmitry Potapov and Paolo Bonzini)
* Two new tests for git grep are fixed by this code, see patch 5 for
details.
In v1 Paolo pointed out that the kwset code is never used with more
than one string and therefore a much simpler Boyer-Moore search would
be sufficient (a kwset containing only one string uses a Boyer-Moore
search). However, the Boyer-Moore search implemented in kwset cannot
deal with case-insensitive searches, so the more complicated code is
still there.
---
Fredrik Kuivinen (5):
Add obstack.[ch] from EGLIBC 2.10
Add string search routines from GNU grep
Adapt the kwset code to Git
Use kwset in pickaxe
Use kwset in grep
Makefile | 4
compat/obstack.c | 441 +++++++++++++++++++++++++++
compat/obstack.h | 509 ++++++++++++++++++++++++++++++++
diffcore-pickaxe.c | 34 +-
grep.c | 66 +++-
grep.h | 2
kwset.c | 771 ++++++++++++++++++++++++++++++++++++++++++++++++
kwset.h | 63 ++++
t/t7008-grep-binary.sh | 4
9 files changed, 1860 insertions(+), 34 deletions(-)
create mode 100644 compat/obstack.c
create mode 100644 compat/obstack.h
create mode 100644 kwset.c
create mode 100644 kwset.h
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2011-08-20 22:40 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-20 22:40 [PATCH v2 0/5] Speed up string search routines Fredrik Kuivinen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox