Spostato lo heap da kern/ a mware/
authorrasky <rasky@38d2e660-2303-0410-9eaa-f027e97ec537>
Sat, 31 Jul 2004 16:33:58 +0000 (16:33 +0000)
committerrasky <rasky@38d2e660-2303-0410-9eaa-f027e97ec537>
Sat, 31 Jul 2004 16:33:58 +0000 (16:33 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@97 38d2e660-2303-0410-9eaa-f027e97ec537

kern/heap.c [deleted file]
kern/heap.h [deleted file]
mware/heap.c [new file with mode: 0755]
mware/heap.h [new file with mode: 0755]

diff --git a/kern/heap.c b/kern/heap.c
deleted file mode 100755 (executable)
index 8fb3caa..0000000
+++ /dev/null
@@ -1,181 +0,0 @@
-/*!
- * \file
- * <!--
- * Copyright 2004 Develer S.r.l. (http://www.develer.com/)
- * Copyright 1999,2000,2001 Bernardo Innocenti <bernie@develer.com>
- * This file is part of DevLib - See devlib/README for information.
- * -->
- *
- * \brief Heap subsystem (public interface).
- *
- * \version $Id$
- *
- * \author Bernardo Innocenti <bernie@develer.com>
- */
-
-/*
- * $Log$
- * Revision 1.2  2004/06/03 11:27:09  bernie
- * Add dual-license information.
- *
- * Revision 1.1  2004/05/23 17:27:00  bernie
- * Import kern/ subdirectory.
- *
- */
-
-#include "heap.h"
-
-/* NOTE: struct size must be a 2's power! */
-typedef struct _MemChunk
-{
-       struct _MemChunk *next;
-       size_t size;
-} MemChunk;
-
-static REGISTER MemChunk *FreeList;    /* Head of the free list */
-static uint8_t Heap[HEAP_SIZE];                /* Heap memory block */
-
-
-
-void heap_init(void)
-{
-#ifdef _DEBUG
-       int i;
-
-       /* Fill the heap with a "DEAD" code to help debugging */
-       for (i = 0; i < HEAP_SIZE / sizeof (uint16_t); i++)
-               ((uint16_t *)Heap)[i] = MEM_FILL_CODE;
-#endif
-
-       /* Initialize heap with a single big chunk */
-       FreeList = (MemChunk *)Heap;
-       FreeList->next = NULL;
-       FreeList->size = sizeof(Heap);
-}
-
-
-void *heap_alloc(size_t size)
-{
-       MemChunk *chunk, *prev;
-
-       /* Round size up to the allocation granularity */
-       size = ROUND2(size, sizeof(MemChunk));
-
-       /* Walk on the free list looking for any chunk big enough to
-        * fit the requested block size.
-        */
-       for (prev = (MemChunk *)&FreeList, chunk = FreeList;
-               chunk;
-               prev = chunk, chunk = chunk->next)
-       {
-               if (chunk->size <= size)
-               {
-                       if (chunk->size == size)
-                       {
-                               /* Just remove this chunk from the free list */
-                               prev->next = chunk->next;
-                               return (void *)chunk;
-                       }
-                       else
-                       {
-                               /* Allocate from the END of an existing chunk */
-                               prev->size -= size;
-                               return (void *)(((uint8_t *)prev) + prev->size);
-                       }
-               }
-       }
-
-       return NULL; /* fail */
-}
-
-
-void heap_free(void *mem, size_t size)
-{
-       MemChunk *prev;
-
-       /* Round size up to the allocation granularity */
-       size = ROUND2(size, sizeof(MemChunk));
-
-       /* Special case: first chunk in the free list */
-       if (((uint8_t *)mem) < ((uint8_t *)FreeList))
-       {
-               /* Insert memory block before the current free list head */
-               prev = (MemChunk *)mem;
-               prev->next = FreeList;
-               prev->size = size;
-               FreeList = prev;
-       }
-       else /* Normal case: not the first chunk in the free list */
-       {
-               /* Walk on the free list. Stop at the insertion point */
-               prev = FreeList;
-               while ((prev->next >= ((MemChunk *)mem)) || (!prev->next))
-                       prev = prev->next;
-
-               /* Should it be merged with previous block? */
-               if (((uint8_t *)prev) + prev->Size == ((uint8_t *)mem))
-               {
-                       /* Yes */
-                       prev->size += size;
-               }
-               else /* not merged with previous chunk */
-               {
-                       /* insert it after the previous node
-                        * and move the 'prev' pointer forward
-                        * for the following operations
-                        */
-                       ((MemChunk *)mem)->next = prev->next;
-                       prev->next = (MemChunk *)mem;
-                       prev = (MemChunk *)mem;
-               }
-       }
-
-       /* Also merge with next chunk? */
-       if (((uint8_t *)prev) + prev->size == ((uint8_t *)prev->next))
-       {
-               prev->size += prev->next->size;
-               prev->next = prev->next->next;
-       }
-}
-
-#ifdef __POSIX__
-
-/*! ANSI/POSIX-like malloc() implementation based on heap_alloc()/heap_free() */
-void *malloc(size_t size)
-{
-       void *mem;
-
-       size += sizeof(size_t);
-
-       if (mem = heap_alloc(size))
-               *((size_t *)mem)++ = size;
-
-       return mem;
-}
-
-
-/*! ANSI/POSIX-like calloc() implementation based on heap_alloc()/heap_free() */
-void *calloc(size_t nelem, size_t size)
-{
-       void *mem, *tmp;
-
-       size *= nelem;
-
-       if (mem = malloc(size))
-       {
-               tmp = mem;
-               while (size--)
-                       ((uint8_t *)tmp++) = 0;
-       }
-
-       return mem;
-}
-
-/*! ANSI/POSIX-like free() implementation based on heap_alloc()/heap_free() */
-void free(void *mem)
-{
-       ((size_t *)mem)--;
-       heap_free(mem, *((size_t *)mem));
-}
-
-#endif /* __POSIX__ */
diff --git a/kern/heap.h b/kern/heap.h
deleted file mode 100755 (executable)
index 26acc90..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-/*!
- * \file
- * <!--
- * Copyright 2004 Develer S.r.l. (http://www.develer.com/)
- * Copyright 1999,2000,2001 Bernardo Innocenti <bernie@develer.com>
- * This file is part of DevLib - See devlib/README for information.
- * -->
- *
- * \brief Heap subsystem (public interface).
- *
- * \version $Id$
- *
- * \author Bernardo Innocenti <bernie@develer.com>
- */
-
-/*
- * $Log$
- * Revision 1.2  2004/06/03 11:27:09  bernie
- * Add dual-license information.
- *
- * Revision 1.1  2004/05/23 17:27:00  bernie
- * Import kern/ subdirectory.
- *
- */
-
-#ifndef KERN_HEAP_H
-#define KERN_HEAP_H
-
-#include "compiler.h"
-
-
-/* Memory allocation services */
-void heap_init(void);
-void *heap_alloc(size_t size);
-void heap_free(void *mem, size_t size);
-
-#ifdef __POSIX__ /* unused */
-void *malloc(size_t size);
-void *calloc(unsigned int nelem, size_t size);
-void free(void * mem);
-#endif /* __POSIX__ */
-
-#endif /* KERN_HEAP_H */
-
diff --git a/mware/heap.c b/mware/heap.c
new file mode 100755 (executable)
index 0000000..a228e1a
--- /dev/null
@@ -0,0 +1,184 @@
+/*!
+ * \file
+ * <!--
+ * Copyright 2004 Develer S.r.l. (http://www.develer.com/)
+ * Copyright 1999,2000,2001 Bernardo Innocenti <bernie@develer.com>
+ * This file is part of DevLib - See devlib/README for information.
+ * -->
+ *
+ * \brief Heap subsystem (public interface).
+ *
+ * \version $Id$
+ *
+ * \author Bernardo Innocenti <bernie@develer.com>
+ */
+
+/*
+ * $Log$
+ * Revision 1.1  2004/07/31 16:33:58  rasky
+ * Spostato lo heap da kern/ a mware/
+ *
+ * Revision 1.2  2004/06/03 11:27:09  bernie
+ * Add dual-license information.
+ *
+ * Revision 1.1  2004/05/23 17:27:00  bernie
+ * Import kern/ subdirectory.
+ *
+ */
+
+#include "heap.h"
+
+/* NOTE: struct size must be a 2's power! */
+typedef struct _MemChunk
+{
+       struct _MemChunk *next;
+       size_t size;
+} MemChunk;
+
+static REGISTER MemChunk *FreeList;    /* Head of the free list */
+static uint8_t Heap[HEAP_SIZE];                /* Heap memory block */
+
+
+
+void heap_init(void)
+{
+#ifdef _DEBUG
+       int i;
+
+       /* Fill the heap with a "DEAD" code to help debugging */
+       for (i = 0; i < HEAP_SIZE / sizeof (uint16_t); i++)
+               ((uint16_t *)Heap)[i] = MEM_FILL_CODE;
+#endif
+
+       /* Initialize heap with a single big chunk */
+       FreeList = (MemChunk *)Heap;
+       FreeList->next = NULL;
+       FreeList->size = sizeof(Heap);
+}
+
+
+void *heap_alloc(size_t size)
+{
+       MemChunk *chunk, *prev;
+
+       /* Round size up to the allocation granularity */
+       size = ROUND2(size, sizeof(MemChunk));
+
+       /* Walk on the free list looking for any chunk big enough to
+        * fit the requested block size.
+        */
+       for (prev = (MemChunk *)&FreeList, chunk = FreeList;
+               chunk;
+               prev = chunk, chunk = chunk->next)
+       {
+               if (chunk->size <= size)
+               {
+                       if (chunk->size == size)
+                       {
+                               /* Just remove this chunk from the free list */
+                               prev->next = chunk->next;
+                               return (void *)chunk;
+                       }
+                       else
+                       {
+                               /* Allocate from the END of an existing chunk */
+                               prev->size -= size;
+                               return (void *)(((uint8_t *)prev) + prev->size);
+                       }
+               }
+       }
+
+       return NULL; /* fail */
+}
+
+
+void heap_free(void *mem, size_t size)
+{
+       MemChunk *prev;
+
+       /* Round size up to the allocation granularity */
+       size = ROUND2(size, sizeof(MemChunk));
+
+       /* Special case: first chunk in the free list */
+       if (((uint8_t *)mem) < ((uint8_t *)FreeList))
+       {
+               /* Insert memory block before the current free list head */
+               prev = (MemChunk *)mem;
+               prev->next = FreeList;
+               prev->size = size;
+               FreeList = prev;
+       }
+       else /* Normal case: not the first chunk in the free list */
+       {
+               /* Walk on the free list. Stop at the insertion point */
+               prev = FreeList;
+               while ((prev->next >= ((MemChunk *)mem)) || (!prev->next))
+                       prev = prev->next;
+
+               /* Should it be merged with previous block? */
+               if (((uint8_t *)prev) + prev->Size == ((uint8_t *)mem))
+               {
+                       /* Yes */
+                       prev->size += size;
+               }
+               else /* not merged with previous chunk */
+               {
+                       /* insert it after the previous node
+                        * and move the 'prev' pointer forward
+                        * for the following operations
+                        */
+                       ((MemChunk *)mem)->next = prev->next;
+                       prev->next = (MemChunk *)mem;
+                       prev = (MemChunk *)mem;
+               }
+       }
+
+       /* Also merge with next chunk? */
+       if (((uint8_t *)prev) + prev->size == ((uint8_t *)prev->next))
+       {
+               prev->size += prev->next->size;
+               prev->next = prev->next->next;
+       }
+}
+
+#ifdef __POSIX__
+
+/*! ANSI/POSIX-like malloc() implementation based on heap_alloc()/heap_free() */
+void *malloc(size_t size)
+{
+       void *mem;
+
+       size += sizeof(size_t);
+
+       if (mem = heap_alloc(size))
+               *((size_t *)mem)++ = size;
+
+       return mem;
+}
+
+
+/*! ANSI/POSIX-like calloc() implementation based on heap_alloc()/heap_free() */
+void *calloc(size_t nelem, size_t size)
+{
+       void *mem, *tmp;
+
+       size *= nelem;
+
+       if (mem = malloc(size))
+       {
+               tmp = mem;
+               while (size--)
+                       ((uint8_t *)tmp++) = 0;
+       }
+
+       return mem;
+}
+
+/*! ANSI/POSIX-like free() implementation based on heap_alloc()/heap_free() */
+void free(void *mem)
+{
+       ((size_t *)mem)--;
+       heap_free(mem, *((size_t *)mem));
+}
+
+#endif /* __POSIX__ */
diff --git a/mware/heap.h b/mware/heap.h
new file mode 100755 (executable)
index 0000000..c81b728
--- /dev/null
@@ -0,0 +1,47 @@
+/*!
+ * \file
+ * <!--
+ * Copyright 2004 Develer S.r.l. (http://www.develer.com/)
+ * Copyright 1999,2000,2001 Bernardo Innocenti <bernie@develer.com>
+ * This file is part of DevLib - See devlib/README for information.
+ * -->
+ *
+ * \brief Heap subsystem (public interface).
+ *
+ * \version $Id$
+ *
+ * \author Bernardo Innocenti <bernie@develer.com>
+ */
+
+/*
+ * $Log$
+ * Revision 1.1  2004/07/31 16:33:58  rasky
+ * Spostato lo heap da kern/ a mware/
+ *
+ * Revision 1.2  2004/06/03 11:27:09  bernie
+ * Add dual-license information.
+ *
+ * Revision 1.1  2004/05/23 17:27:00  bernie
+ * Import kern/ subdirectory.
+ *
+ */
+
+#ifndef KERN_HEAP_H
+#define KERN_HEAP_H
+
+#include "compiler.h"
+
+
+/* Memory allocation services */
+void heap_init(void);
+void *heap_alloc(size_t size);
+void heap_free(void *mem, size_t size);
+
+#ifdef __POSIX__ /* unused */
+void *malloc(size_t size);
+void *calloc(unsigned int nelem, size_t size);
+void free(void * mem);
+#endif /* __POSIX__ */
+
+#endif /* KERN_HEAP_H */
+