From 1b2c56585011f24ec0d0322913b24960c29ae83c Mon Sep 17 00:00:00 2001 From: Akos Kiss Date: Sun, 3 Jun 2018 15:29:28 +0200 Subject: [PATCH] Direct alloc/dealloc implementations for ecma_number_t (#2377) As a result of earlier developments, there remained no other instatiations of the `ALLOC`, `DEALLOC`, and `DECLARE_ROUTINES_FOR` templates. So, it's simpler to write the alloc/dealloc routines directly for `ecma_number_t` as well. JerryScript-DCO-1.0-Signed-off-by: Akos Kiss akiss@inf.u-szeged.hu --- jerry-core/ecma/base/ecma-alloc.c | 40 +++++++++++-------------------- 1 file changed, 14 insertions(+), 26 deletions(-) diff --git a/jerry-core/ecma/base/ecma-alloc.c b/jerry-core/ecma/base/ecma-alloc.c index 5c1d5d21d..c41456a3f 100644 --- a/jerry-core/ecma/base/ecma-alloc.c +++ b/jerry-core/ecma/base/ecma-alloc.c @@ -51,36 +51,24 @@ JERRY_STATIC_ASSERT (sizeof (ecma_extended_object_t) - sizeof (ecma_object_t) <= */ /** - * Template of an allocation routine. + * Allocate memory for ecma-number + * + * @return pointer to allocated memory */ -#define ALLOC(ecma_type) ecma_ ## ecma_type ## _t * \ - ecma_alloc_ ## ecma_type (void) \ -{ \ - ecma_ ## ecma_type ## _t *ecma_type ## _p; \ - ecma_type ## _p = (ecma_ ## ecma_type ## _t *) jmem_pools_alloc (sizeof (ecma_ ## ecma_type ## _t)); \ - \ - JERRY_ASSERT (ecma_type ## _p != NULL); \ - \ - return ecma_type ## _p; \ -} +ecma_number_t * +ecma_alloc_number (void) +{ + return (ecma_number_t *) jmem_pools_alloc (sizeof (ecma_number_t)); +} /* ecma_alloc_number */ /** - * Deallocation routine template + * Dealloc memory from an ecma-number */ -#define DEALLOC(ecma_type) void \ - ecma_dealloc_ ## ecma_type (ecma_ ## ecma_type ## _t *ecma_type ## _p) \ -{ \ - jmem_pools_free ((uint8_t *) ecma_type ## _p, sizeof (ecma_ ## ecma_type ## _t)); \ -} - -/** - * Declaration of alloc/free routine for specified ecma-type. - */ -#define DECLARE_ROUTINES_FOR(ecma_type) \ - ALLOC (ecma_type) \ - DEALLOC (ecma_type) - -DECLARE_ROUTINES_FOR (number) +void +ecma_dealloc_number (ecma_number_t *number_p) /**< number to be freed */ +{ + jmem_pools_free ((uint8_t *) number_p, sizeof (ecma_number_t)); +} /* ecma_dealloc_number */ /** * Allocate memory for ecma-object