Message ID | 20210728052841.3889012-1-siddhesh@sourceware.org |
---|---|
State | New |
Headers | show |
Series | tests: use xmalloc to allocate implementation array | expand |
* Siddhesh Poyarekar via Libc-alpha: > diff --git a/benchtests/bench-string.h b/benchtests/bench-string.h > index fd25264417..03de372cff 100644 > --- a/benchtests/bench-string.h > +++ b/benchtests/bench-string.h > @@ -18,6 +18,7 @@ > > #include <getopt.h> > #include <sys/cdefs.h> > +#include <support/support.h> > > /* We are compiled under _ISOMAC, so libc-symbols.h does not do this > for us. */ > @@ -200,8 +201,8 @@ static impl_t *impl_array; > skip = impl; \ > else \ > impl_count++; \ > - a = impl_array = malloc ((impl_count + func_count) * \ > - sizeof (impl_t)); \ > + a = impl_array = xmalloc ((impl_count + func_count) * \ > + sizeof (impl_t)); \ > for (impl = __start_impls; impl < __stop_impls; ++impl) \ > if (impl != skip) \ > *a++ = *impl; \ I'm surprised the benchtests link against libsupport. There's some non-trivial setup code involved in libsupport for failure handling, and that gets linked into xmalloc. It might affect the benchmarks. > diff --git a/string/test-string.h b/string/test-string.h > index febde61040..78b66efe36 100644 > --- a/string/test-string.h > +++ b/string/test-string.h > @@ -18,6 +18,7 @@ > <https://www.gnu.org/licenses/>. */ > > #include <sys/cdefs.h> > +#include <support/support.h> > > typedef struct > { > @@ -146,8 +147,8 @@ static impl_t *impl_array; > skip = impl; \ > else \ > impl_count++; \ > - a = impl_array = malloc ((impl_count + func_count) * \ > - sizeof (impl_t)); \ > + a = impl_array = xmalloc ((impl_count + func_count) * \ > + sizeof (impl_t)); \ > for (impl = __start_impls; impl < __stop_impls; ++impl) \ > if (impl != skip) \ > *a++ = *impl; \ > diff --git a/support/support.h b/support/support.h > index dbd270c78d..dce1ea3509 100644 > --- a/support/support.h > +++ b/support/support.h > @@ -87,14 +87,25 @@ int support_descriptor_supports_holes (int fd); > /* Error-checking wrapper functions which terminate the process on > error. */ > > -void *xmalloc (size_t) __attribute__ ((malloc)); > -void *xcalloc (size_t n, size_t s) __attribute__ ((malloc)); > -void *xrealloc (void *p, size_t n); > -void *xposix_memalign (size_t alignment, size_t n); > +extern void *xmalloc (size_t n) > + __attribute_malloc__ __attribute_alloc_size__ ((1)) __attr_dealloc_free > + __returns_nonnull; > +extern void *xcalloc (size_t n, size_t s) > + __attribute_malloc__ __attribute_alloc_size__ ((1, 2)) __attr_dealloc_free > + __returns_nonnull; > +extern void *xrealloc (void *o, size_t n) > + __attribute_malloc__ __attribute_alloc_size__ ((2)) __attr_dealloc_free > + __returns_nonnull; realloc will return NULL if the size is zero and the original pointer is not. See its implementation in support/. Rest looks okay. Thanks, Florian
On 7/28/21 12:55 PM, Florian Weimer wrote: > * Siddhesh Poyarekar via Libc-alpha: > >> diff --git a/benchtests/bench-string.h b/benchtests/bench-string.h >> index fd25264417..03de372cff 100644 >> --- a/benchtests/bench-string.h >> +++ b/benchtests/bench-string.h >> @@ -18,6 +18,7 @@ >> >> #include <getopt.h> >> #include <sys/cdefs.h> >> +#include <support/support.h> >> >> /* We are compiled under _ISOMAC, so libc-symbols.h does not do this >> for us. */ >> @@ -200,8 +201,8 @@ static impl_t *impl_array; >> skip = impl; \ >> else \ >> impl_count++; \ >> - a = impl_array = malloc ((impl_count + func_count) * \ >> - sizeof (impl_t)); \ >> + a = impl_array = xmalloc ((impl_count + func_count) * \ >> + sizeof (impl_t)); \ >> for (impl = __start_impls; impl < __stop_impls; ++impl) \ >> if (impl != skip) \ >> *a++ = *impl; \ > > I'm surprised the benchtests link against libsupport. There's some > non-trivial setup code involved in libsupport for failure handling, and > that gets linked into xmalloc. It might affect the benchmarks. Yeah, it may not hurt to wean them away; it's really just the string benchmarks that were copied over from tests and adapted. I'll use programs/xmalloc.h here then. Siddhesh
diff --git a/benchtests/bench-string.h b/benchtests/bench-string.h index fd25264417..03de372cff 100644 --- a/benchtests/bench-string.h +++ b/benchtests/bench-string.h @@ -18,6 +18,7 @@ #include <getopt.h> #include <sys/cdefs.h> +#include <support/support.h> /* We are compiled under _ISOMAC, so libc-symbols.h does not do this for us. */ @@ -200,8 +201,8 @@ static impl_t *impl_array; skip = impl; \ else \ impl_count++; \ - a = impl_array = malloc ((impl_count + func_count) * \ - sizeof (impl_t)); \ + a = impl_array = xmalloc ((impl_count + func_count) * \ + sizeof (impl_t)); \ for (impl = __start_impls; impl < __stop_impls; ++impl) \ if (impl != skip) \ *a++ = *impl; \ diff --git a/string/test-string.h b/string/test-string.h index febde61040..78b66efe36 100644 --- a/string/test-string.h +++ b/string/test-string.h @@ -18,6 +18,7 @@ <https://www.gnu.org/licenses/>. */ #include <sys/cdefs.h> +#include <support/support.h> typedef struct { @@ -146,8 +147,8 @@ static impl_t *impl_array; skip = impl; \ else \ impl_count++; \ - a = impl_array = malloc ((impl_count + func_count) * \ - sizeof (impl_t)); \ + a = impl_array = xmalloc ((impl_count + func_count) * \ + sizeof (impl_t)); \ for (impl = __start_impls; impl < __stop_impls; ++impl) \ if (impl != skip) \ *a++ = *impl; \ diff --git a/support/support.h b/support/support.h index dbd270c78d..dce1ea3509 100644 --- a/support/support.h +++ b/support/support.h @@ -87,14 +87,25 @@ int support_descriptor_supports_holes (int fd); /* Error-checking wrapper functions which terminate the process on error. */ -void *xmalloc (size_t) __attribute__ ((malloc)); -void *xcalloc (size_t n, size_t s) __attribute__ ((malloc)); -void *xrealloc (void *p, size_t n); -void *xposix_memalign (size_t alignment, size_t n); +extern void *xmalloc (size_t n) + __attribute_malloc__ __attribute_alloc_size__ ((1)) __attr_dealloc_free + __returns_nonnull; +extern void *xcalloc (size_t n, size_t s) + __attribute_malloc__ __attribute_alloc_size__ ((1, 2)) __attr_dealloc_free + __returns_nonnull; +extern void *xrealloc (void *o, size_t n) + __attribute_malloc__ __attribute_alloc_size__ ((2)) __attr_dealloc_free + __returns_nonnull; +extern char *xstrdup (const char *) __attribute_malloc__ __attr_dealloc_free + __returns_nonnull; +void *xposix_memalign (size_t alignment, size_t n) + __attribute_malloc__ __attribute_alloc_size__ ((2)) __attr_dealloc_free + __returns_nonnull; char *xasprintf (const char *format, ...) - __attribute__ ((format (printf, 1, 2), malloc)); -char *xstrdup (const char *); -char *xstrndup (const char *, size_t); + __attribute__ ((format (printf, 1, 2), malloc)) __attr_dealloc_free + __returns_nonnull; +char *xstrdup (const char *) __attr_dealloc_free __returns_nonnull; +char *xstrndup (const char *, size_t) __attr_dealloc_free __returns_nonnull; char *xsetlocale (int category, const char *locale); locale_t xnewlocale (int category_mask, const char *locale, locale_t base); char *xuselocale (locale_t newloc);