From: Bruno Haible Date: Sat, 7 Mar 2009 10:19:12 +0000 (+0100) Subject: Optimize memory allocation. X-Git-Tag: v0.1~6207 X-Git-Url: http://erislabs.net/gitweb/?a=commitdiff_plain;h=69d5dd8768fdfca45ba0a65dd5c42f4e7069cb10;p=gnulib.git Optimize memory allocation. --- diff --git a/ChangeLog b/ChangeLog index dd6011631..ab7fd90ec 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-03-07 Bruno Haible + + * lib/uninorm/u-normcmp.h (FUNC): Use stack=allocated buffers for small + strings. + 2009-03-06 Bruno Haible Tests for module 'uninorm/u32-normcmp'. diff --git a/lib/uninorm/u-normcmp.h b/lib/uninorm/u-normcmp.h index 288bcab86..33d1e6252 100644 --- a/lib/uninorm/u-normcmp.h +++ b/lib/uninorm/u-normcmp.h @@ -1,4 +1,4 @@ -/* Normalization insensitive comparison of UTF-8 strings. +/* Normalization insensitive comparison of Unicode strings. Copyright (C) 2009 Free Software Foundation, Inc. Written by Bruno Haible , 2009. @@ -19,6 +19,8 @@ int FUNC (const UNIT *s1, size_t n1, const UNIT *s2, size_t n2, uninorm_t nf, int *result) { + UNIT buf1[2048 / sizeof (UNIT)]; + UNIT buf2[2048 / sizeof (UNIT)]; UNIT *norms1; size_t norms1_length; UNIT *norms2; @@ -26,16 +28,19 @@ FUNC (const UNIT *s1, size_t n1, const UNIT *s2, size_t n2, int cmp; /* Normalize S1. */ - norms1 = U_NORMALIZE (nf, s1, n1, NULL, &norms1_length); + norms1_length = sizeof (buf1) / sizeof (UNIT); + norms1 = U_NORMALIZE (nf, s1, n1, buf1, &norms1_length); if (norms1 == NULL) return errno; /* Normalize S2. */ - norms2 = U_NORMALIZE (nf, s2, n2, NULL, &norms2_length); + norms2_length = sizeof (buf2) / sizeof (UNIT); + norms2 = U_NORMALIZE (nf, s2, n2, buf2, &norms2_length); if (norms2 == NULL) { int saved_errno = errno; - free (norms1); + if (norms1 != buf1) + free (norms1); return saved_errno; } @@ -53,8 +58,10 @@ FUNC (const UNIT *s1, size_t n1, const UNIT *s2, size_t n2, else if (cmp < 0) cmp = -1; - free (norms2); - free (norms1); + if (norms2 != buf2) + free (norms2); + if (norms1 != buf1) + free (norms1); *result = cmp; return 0; }