]> git.ipfire.org Git - thirdparty/git.git/blame - alloc.c
Merge branch 'rj/add-i-leak-fix'
[thirdparty/git.git] / alloc.c
CommitLineData
855419f7
LT
1/*
2 * alloc.c - specialized allocator for internal objects
3 *
4 * Copyright (C) 2006 Linus Torvalds
5 *
6 * The standard malloc/free wastes too much space for objects, partly because
14ba97f8 7 * it maintains all the allocation infrastructure, but even more because it ends
855419f7
LT
8 * up with maximal alignment because it doesn't know what the object alignment
9 * for the new allocation is.
10 */
a64215b6 11#include "git-compat-util.h"
855419f7
LT
12#include "object.h"
13#include "blob.h"
14#include "tree.h"
15#include "commit.h"
d1cbe1e6 16#include "repository.h"
855419f7 17#include "tag.h"
14ba97f8 18#include "alloc.h"
855419f7
LT
19
20#define BLOCKING 1024
21
2c1cbec1
LT
22union any_object {
23 struct object object;
24 struct blob blob;
25 struct tree tree;
26 struct commit commit;
27 struct tag tag;
28};
29
225ea220 30struct alloc_state {
225ea220
RJ
31 int nr; /* number of nodes left in current allocation */
32 void *p; /* first free node in current allocation */
14ba97f8
SB
33
34 /* bookkeeping of allocations */
35 void **slabs;
36 int slab_nr, slab_alloc;
225ea220
RJ
37};
38
17313107 39struct alloc_state *allocate_alloc_state(void)
14ba97f8
SB
40{
41 return xcalloc(1, sizeof(struct alloc_state));
42}
43
44void clear_alloc_state(struct alloc_state *s)
45{
46 while (s->slab_nr > 0) {
47 s->slab_nr--;
48 free(s->slabs[s->slab_nr]);
49 }
50
51 FREE_AND_NULL(s->slabs);
52}
53
225ea220
RJ
54static inline void *alloc_node(struct alloc_state *s, size_t node_size)
55{
56 void *ret;
57
58 if (!s->nr) {
59 s->nr = BLOCKING;
60 s->p = xmalloc(BLOCKING * node_size);
14ba97f8
SB
61
62 ALLOC_GROW(s->slabs, s->slab_nr + 1, s->slab_alloc);
63 s->slabs[s->slab_nr++] = s->p;
225ea220
RJ
64 }
65 s->nr--;
225ea220
RJ
66 ret = s->p;
67 s->p = (char *)s->p + node_size;
68 memset(ret, 0, node_size);
14ba97f8 69
225ea220
RJ
70 return ret;
71}
72
14ba97f8 73void *alloc_blob_node(struct repository *r)
600e2a69 74{
14ba97f8 75 struct blob *b = alloc_node(r->parsed_objects->blob_state, sizeof(struct blob));
d36f51c1 76 b->object.type = OBJ_BLOB;
600e2a69
JK
77 return b;
78}
79
14ba97f8 80void *alloc_tree_node(struct repository *r)
600e2a69 81{
14ba97f8 82 struct tree *t = alloc_node(r->parsed_objects->tree_state, sizeof(struct tree));
d36f51c1 83 t->object.type = OBJ_TREE;
600e2a69
JK
84 return t;
85}
86
14ba97f8 87void *alloc_tag_node(struct repository *r)
600e2a69 88{
14ba97f8 89 struct tag *t = alloc_node(r->parsed_objects->tag_state, sizeof(struct tag));
d36f51c1 90 t->object.type = OBJ_TAG;
600e2a69
JK
91 return t;
92}
93
14ba97f8 94void *alloc_object_node(struct repository *r)
600e2a69 95{
14ba97f8 96 struct object *obj = alloc_node(r->parsed_objects->object_state, sizeof(union any_object));
d36f51c1 97 obj->type = OBJ_NONE;
600e2a69
JK
98 return obj;
99}
855419f7 100
6da43d93
AK
101/*
102 * The returned count is to be used as an index into commit slabs,
103 * that are *NOT* maintained per repository, and that is why a single
104 * global counter is used.
105 */
106static unsigned int alloc_commit_index(void)
94d5a22c 107{
6da43d93
AK
108 static unsigned int parsed_commits_count;
109 return parsed_commits_count++;
94d5a22c
JK
110}
111
6da43d93 112void init_commit_node(struct commit *c)
969eba63 113{
d36f51c1 114 c->object.type = OBJ_COMMIT;
6da43d93 115 c->index = alloc_commit_index();
4468d443
SG
116}
117
118void *alloc_commit_node(struct repository *r)
119{
120 struct commit *c = alloc_node(r->parsed_objects->commit_state, sizeof(struct commit));
6da43d93 121 init_commit_node(c);
969eba63
JK
122 return c;
123}