[PATCH 0/5] Speed up string search routines

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Fredrik Kuivinen
Date: Saturday, February 13, 2010 - 7:20 am

This series speeds up git grep and pickaxe by using the string search
routines from GNU grep.

---

Fredrik Kuivinen (5):
      Use kwset in grep
      Use kwset in pickaxe
      Adapt the kwset code to Git
      Add string search routines from GNU grep
      Add obstack.[ch] from EGLIBC 2.10


 Makefile           |    2 
 diffcore-pickaxe.c |   34 ++
 grep.c             |   61 +++-
 grep.h             |    2 
 kwset.c            |  775 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 kwset.h            |   62 ++++
 obstack.c          |  441 ++++++++++++++++++++++++++++++
 obstack.h          |  509 ++++++++++++++++++++++++++++++++++
 8 files changed, 1855 insertions(+), 31 deletions(-)
 create mode 100644 kwset.c
 create mode 100644 kwset.h
 create mode 100644 obstack.c
 create mode 100644 obstack.h

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH 0/5] Speed up string search routines, Fredrik Kuivinen, (Sat Feb 13, 7:20 am)
Re: [PATCH 0/5] Speed up string search routines, Junio C Hamano, (Sat Feb 13, 11:52 am)
Re: [PATCH 0/5] Speed up string search routines, Fredrik Kuivinen, (Sun Feb 14, 9:47 am)
Re: [PATCH 0/5] Speed up string search routines, Junio C Hamano, (Sun Feb 14, 1:16 pm)