X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=lib%2Fsorter%2Fs-fixint.h;h=20cce74b114998e12d4b5cdb6ddd13312e91e58b;hb=aafbea40b7613274180c8bab60012a0322f8d7dd;hp=972f04004e8241f8af1c7bb0427d7d4de8770609;hpb=7119957a2df57af617f432dd429e1d6ae5cbe0fd;p=libucw.git diff --git a/lib/sorter/s-fixint.h b/lib/sorter/s-fixint.h index 972f0400..20cce74b 100644 --- a/lib/sorter/s-fixint.h +++ b/lib/sorter/s-fixint.h @@ -11,10 +11,14 @@ #define ASORT_PREFIX(x) SORT_PREFIX(array_##x) #define ASORT_KEY_TYPE P(key) -#define ASORT_ELT(i) ary[i] #define ASORT_LT(x,y) (P(compare)(&(x), &(y)) < 0) -#define ASORT_EXTRA_ARGS , P(key) *ary -#include "lib/arraysort.h" +#ifdef SORT_INTERNAL_RADIX +# define ASORT_HASH(x) P(hash)(&(x)) +# ifdef SORT_LONG_HASH +# define ASORT_LONG_HASH +# endif +#endif +#include "lib/sorter/array.h" /* * This is a more efficient implementation of the internal sorter, @@ -28,10 +32,10 @@ static size_t P(internal_workspace)(void) { size_t workspace = 0; -#ifdef CONFIG_UNIFY +#ifdef SORT_UNIFY workspace = sizeof(P(key) *); #endif -#if 0 // FIXME: Workspace for radix-sort if needed +#ifdef SORT_INTERNAL_RADIX workspace = MAX(workspace, sizeof(P(key))); #endif return workspace; @@ -54,7 +58,7 @@ static int P(internal)(struct sort_context *ctx, struct sort_bucket *bin, struct P(key) *buf = ctx->big_buf; uns maxkeys = P(internal_num_keys)(ctx); - SORT_XTRACE(4, "s-fixint: Reading (maxkeys=%u)", maxkeys); + SORT_XTRACE(5, "s-fixint: Reading (maxkeys=%u, hash_bits=%d)", maxkeys, bin->hash_bits); uns n = 0; while (n < maxkeys && P(read_key)(in, &buf[n])) n++; @@ -62,16 +66,22 @@ static int P(internal)(struct sort_context *ctx, struct sort_bucket *bin, struct return 0; void *workspace UNUSED = ALIGN_PTR(&buf[n], CPU_PAGE_SIZE); - SORT_XTRACE(3, "s-fixint: Sorting %u items (%s items, %s workspace)", + SORT_XTRACE(4, "s-fixint: Sorting %u items (%s items, %s workspace)", n, stk_fsize(n * sizeof(P(key))), stk_fsize(n * P(internal_workspace)())); timestamp_t timer; init_timer(&timer); - P(array_sort)(n, buf); + buf = P(array_sort)(buf, n +#ifdef SORT_INTERNAL_RADIX + , workspace, bin->hash_bits +#endif + ); + if ((void *)buf != ctx->big_buf) + workspace = ctx->big_buf; ctx->total_int_time += get_timer(&timer); - SORT_XTRACE(4, "s-fixint: Writing"); + SORT_XTRACE(5, "s-fixint: Writing"); if (n < maxkeys) bout = bout_only; struct fastbuf *out = sbuck_write(bout); @@ -103,7 +113,7 @@ static int P(internal)(struct sort_context *ctx, struct sort_bucket *bin, struct P(write_key)(out, &buf[i]); } #ifdef SORT_UNIFY - SORT_XTRACE(3, "Merging reduced %d records", merged); + SORT_XTRACE(4, "Merging reduced %u records", merged); #endif return (n == maxkeys);