X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/5e893e1c884b0d39965d6b694821a36648f1eda1..8e864447445e3674133ddd8906f42f5a4cddc1d9:/src/state.c diff --git a/src/state.c b/src/state.c index 7c3b6921..b8c647e8 100644 --- a/src/state.c +++ b/src/state.c @@ -26,6 +26,10 @@ | Create a new array of N shitfs. | `---------------------------------*/ +#define SHIFTS_ALLOC(Nshifts) \ + (shifts *) xcalloc ((unsigned) (sizeof (shifts) \ + + (Nshifts - 1) * sizeof (short)), 1) + shifts * shifts_new (int n) { @@ -33,3 +37,46 @@ shifts_new (int n) res->nshifts = n; return res; } + + +/*-------------------------------. +| Create a new array of N errs. | +`-------------------------------*/ + +#define ERRS_ALLOC(Nerrs) \ + (errs *) xcalloc ((unsigned) (sizeof (errs) \ + + (Nerrs - 1) * sizeof (short)), 1) + + +errs * +errs_new (int n) +{ + errs *res = ERRS_ALLOC (n); + res->nerrs = n; + return res; +} + + +errs * +errs_dup (errs *src) +{ + errs *res = errs_new (src->nerrs); + memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0])); + return res; +} + +/*-------------------------------------. +| Create a new array of N reductions. | +`-------------------------------------*/ + +#define REDUCTIONS_ALLOC(Nreductions) \ + (reductions *) xcalloc ((unsigned) (sizeof (reductions) \ + + (Nreductions - 1) * sizeof (short)), 1) + +reductions * +reductions_new (int n) +{ + reductions *res = REDUCTIONS_ALLOC (n); + res->nreds = n; + return res; +}