5 * define_commit_slab(slabname, elemtype) creates boilerplate code to define
6 * a new struct (struct slabname) that is used to associate a piece of data
7 * of elemtype to commits, and a few functions to use that struct.
9 * After including this header file, using:
11 * define_commit_slab(indegee, int);
13 * will let you call the following functions:
15 * - int *indegree_at(struct indegree *, struct commit *);
17 * This function locates the data associated with the given commit in
18 * the indegree slab, and returns the pointer to it.
20 * - void init_indegree(struct indegree *);
21 * void init_indegree_with_stride(struct indegree *, int);
23 * Initializes the indegree slab that associates an array of integers
24 * to each commit. 'stride' specifies how big each array is. The slab
25 * that is initialized by the variant without "_with_stride" associates
26 * each commit with an array of one integer.
28 * - void clear_indegree(struct indegree *);
30 * Empties the slab. The slab can be reused with the same stride
31 * without calling init_indegree() again or can be reconfigured to a
32 * different stride by calling init_indegree_with_stride().
34 * Call this function before the slab falls out of scope to avoid
38 /* allocate ~512kB at once, allowing for malloc overhead */
39 #ifndef COMMIT_SLAB_SIZE
40 #define COMMIT_SLAB_SIZE (512*1024-32)
43 #define define_commit_slab(slabname, elemtype) \
48 unsigned slab_count; \
51 static int stat_ ##slabname## realloc; \
53 static void init_ ##slabname## _with_stride(struct slabname *s, \
56 unsigned int elem_size; \
60 elem_size = sizeof(elemtype) * stride; \
61 s->slab_size = COMMIT_SLAB_SIZE / elem_size; \
66 static void init_ ##slabname(struct slabname *s) \
68 init_ ##slabname## _with_stride(s, 1); \
71 static void clear_ ##slabname(struct slabname *s) \
74 for (i = 0; i < s->slab_count; i++) \
81 static elemtype *slabname## _at(struct slabname *s, \
82 const struct commit *c) \
84 int nth_slab, nth_slot; \
86 nth_slab = c->index / s->slab_size; \
87 nth_slot = c->index % s->slab_size; \
89 if (s->slab_count <= nth_slab) { \
91 s->slab = xrealloc(s->slab, \
92 (nth_slab + 1) * sizeof(s->slab)); \
93 stat_ ##slabname## realloc++; \
94 for (i = s->slab_count; i <= nth_slab; i++) \
96 s->slab_count = nth_slab + 1; \
98 if (!s->slab[nth_slab]) \
99 s->slab[nth_slab] = xcalloc(s->slab_size, \
100 sizeof(**s->slab) * s->stride); \
101 return &s->slab[nth_slab][nth_slot * s->stride]; \
104 static int stat_ ##slabname## realloc
106 #endif /* COMMIT_SLAB_H */