Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
just a couple of smells
[simgrid.git] / src / xbt / mmalloc / mrealloc.c
1 /* Change the size of a block allocated by `mmalloc'. */
2
3 /* Copyright (c) 2010-2014. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 /* Copyright 1990, 1991 Free Software Foundation
10    Written May 1989 by Mike Haertel. */
11
12 #include <string.h>             /* Prototypes for memcpy, memmove, memset, etc */
13 #include <stdlib.h> /* abort */
14
15 #include "mmprivate.h"
16
17 /* Resize the given region to the new size, returning a pointer to the (possibly moved) region. This is optimized for
18  * speed; some benchmarks seem to indicate that greater compactness is achieved by unconditionally allocating and
19  * copying to a new region.  This module has incestuous knowledge of the internals of both mfree and mmalloc. */
20
21 void *mrealloc(xbt_mheap_t mdp, void *ptr, size_t size)
22 {
23   void *result;
24   size_t blocks;
25   size_t oldlimit;
26
27   /* Only keep real realloc, and reroute hidden malloc and free to the relevant functions */
28   if (size == 0) {
29     mfree(mdp, ptr);
30     return mmalloc(mdp, 0);
31   } else if (ptr == NULL) {
32     return mmalloc(mdp, size);
33   }
34
35   //printf("(%s)realloc %p to %d...",xbt_thread_self_name(),ptr,(int)size);
36
37   if ((char *) ptr < (char *) mdp->heapbase || BLOCK(ptr) > mdp->heapsize) {
38     printf("FIXME. Ouch, this pointer is not mine, refusing to proceed (another solution would be to malloc "
39            "it instead of reallocing it, see source code)\n");
40     result = mmalloc(mdp, size);
41     abort();
42     return result;
43   }
44
45   size_t requested_size = size; // The amount of memory requested by user, for real
46
47   /* Work even if the user was stupid enough to ask a ridicullously small block (even 0-length),
48    *    ie return a valid block that can be realloced and freed.
49    * glibc malloc does not use this trick but return a constant pointer, but we need to enlist the free fragments later on.
50    */
51   if (size < SMALLEST_POSSIBLE_MALLOC)
52     size = SMALLEST_POSSIBLE_MALLOC;
53
54   size_t block = BLOCK(ptr);
55
56   int type = mdp->heapinfo[block].type;
57
58   switch (type) {
59   case MMALLOC_TYPE_HEAPINFO:
60     fprintf(stderr, "Asked realloc a fragment coming from a heapinfo block. I'm confused.\n");
61     abort();
62     break;
63
64   case MMALLOC_TYPE_FREE:
65     fprintf(stderr, "Asked realloc a fragment coming from a *free* block. I'm puzzled.\n");
66     abort();
67     break;
68
69   case MMALLOC_TYPE_UNFRAGMENTED:
70     /* Maybe reallocate a large block to a small fragment.  */
71
72     if (size <= BLOCKSIZE / 2) { // Full block -> Fragment; no need to optimize for time
73
74       result = mmalloc(mdp, size);
75       if (result != NULL) { // useless (mmalloc never returns NULL), but harmless
76         memcpy(result, ptr, requested_size);
77         mfree(mdp, ptr);
78         return (result);
79       }
80     }
81
82     /* Full blocks -> Full blocks; see if we can hold it in place. */
83     blocks = BLOCKIFY(size);
84     if (blocks < mdp->heapinfo[block].busy_block.size) {
85       int it;
86       /* The new size is smaller; return excess memory to the free list. */
87       //printf("(%s) return excess memory...",xbt_thread_self_name());
88       for (it= block+blocks; it< mdp->heapinfo[block].busy_block.size ; it++){
89         mdp->heapinfo[it].type = MMALLOC_TYPE_UNFRAGMENTED; // FIXME that should be useless, type should already be 0 here
90         mdp->heapinfo[it].busy_block.ignore = 0;
91         mdp->heapinfo[it].busy_block.size = 0;
92         mdp->heapinfo[it].busy_block.busy_size = 0;
93       }
94
95       mdp->heapinfo[block + blocks].busy_block.size
96         = mdp->heapinfo[block].busy_block.size - blocks;
97       mfree(mdp, ADDRESS(block + blocks));
98
99       mdp->heapinfo[block].busy_block.size = blocks;
100       mdp->heapinfo[block].busy_block.busy_size = requested_size;
101       mdp->heapinfo[block].busy_block.ignore = 0;
102
103       result = ptr;
104     } else if (blocks == mdp->heapinfo[block].busy_block.size) {
105
106       /* No block size change necessary; only update the requested size  */
107       result = ptr;
108       mdp->heapinfo[block].busy_block.busy_size = requested_size;
109       mdp->heapinfo[block].busy_block.ignore = 0;
110
111     } else {
112       /* Won't fit, so allocate a new region that will.
113          Free the old region first in case there is sufficient adjacent free space to grow without moving.
114          This trick mandates using a specific version of mmalloc that does not memset the memory to 0 after
115            action for obvious reasons. */
116       blocks = mdp->heapinfo[block].busy_block.size;
117       /* Prevent free from actually returning memory to the system.  */
118       oldlimit = mdp->heaplimit;
119       mdp->heaplimit = 0;
120       mfree(mdp, ptr);
121       mdp->heaplimit = oldlimit;
122
123       result = mmalloc_no_memset(mdp, requested_size);
124       //fprintf(stderr,"remalloc(%zu)~>%p\n",requested_size,result);
125
126       if (ptr != result)
127         memmove(result, ptr, blocks * BLOCKSIZE);
128       /* FIXME: we should memset the end of the recently area */
129     }
130     break;
131
132   default: /* Fragment -> ??; type=logarithm to base two of the fragment size.  */
133
134     if (type < 0) {
135       fprintf(stderr, "Unkown mmalloc block type.\n");
136       abort();
137     }
138
139     if (size > (size_t) (1 << (type - 1)) && size <= (size_t) (1 << type)) {
140       /* The new size is the same kind of fragment.  */
141       //printf("(%s) new size is same kind of fragment...",xbt_thread_self_name());
142
143       result = ptr;
144       int frag_nb = RESIDUAL(result, BLOCKSIZE) >> type;
145       mdp->heapinfo[block].busy_frag.frag_size[frag_nb] = requested_size;
146       mdp->heapinfo[block].busy_frag.ignore[frag_nb] = 0;
147
148     } else { /* fragment -> Either other fragment, or block */
149       /* The new size is different; allocate a new space,
150          and copy the lesser of the new size and the old. */
151       //printf("(%s) new size is different...",xbt_thread_self_name());
152
153       result = mmalloc(mdp, requested_size);
154
155       memcpy(result, ptr, MIN(requested_size, (size_t) 1 << type));
156       mfree(mdp, ptr);
157     }
158     break;
159   }
160   //printf("(%s) Done reallocing: %p\n",xbt_thread_self_name(),result);fflush(stdout);
161   return (result);
162 }