drop some dead code, clarify small comments and small cleanups to malloc.c

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>




git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4677 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer 2009-09-25 21:59:57 +00:00 committed by Stefan Reinauer
parent 0a181fd642
commit 6bd571e060
4 changed files with 13 additions and 28 deletions

View File

@ -394,6 +394,7 @@ static int build_self_segment_list(
segment++;
// FIXME: Explain what this is
for(ptr = head->next; ptr != head; ptr = ptr->next) {
if (new->s_srcaddr < ntohl((u32) segment->load_addr))
break;

View File

@ -12,13 +12,8 @@
#define MAX(a,b) ((a) > (b) ? (a) : (b))
#ifndef __ROMCC__
extern void *malloc(size_t size);
void *malloc(size_t size);
void free(void *ptr);
/* Extensions to malloc... */
typedef size_t malloc_mark_t;
void malloc_mark(malloc_mark_t *place);
void malloc_release(malloc_mark_t *place);
#endif
#endif /* STDLIB_H */

View File

@ -8,14 +8,11 @@ void *memcpy(void *dest, const void *src, size_t n);
void *memmove(void *dest, const void *src, size_t n);
void *memset(void *s, int c, size_t n);
int memcmp(const void *s1, const void *s2, size_t n);
#ifndef __ROMCC__
int sprintf(char * buf, const char *fmt, ...);
#endif
// yes, linux has fancy ones. We don't care. This stuff gets used
// hardly at all. And the pain of including those files is just too high.
//extern inline void strcpy(char *dst, char *src) {while (*src) *dst++ = *src++;}
//extern inline int strlen(char *src) { int i = 0; while (*src++) i++; return i;}
// simple string functions
static inline size_t strnlen(const char *src, size_t max)
{

View File

@ -10,36 +10,27 @@ extern unsigned char _heap, _eheap;
static void *free_mem_ptr = &_heap; /* Start of heap */
static void *free_mem_end_ptr = &_eheap; /* End of heap */
void malloc_mark(malloc_mark_t *place)
{
*place = (malloc_mark_t)free_mem_ptr;
printk_spew("malloc_mark %p\n", free_mem_ptr);
}
void malloc_release(malloc_mark_t *ptr)
{
free_mem_ptr = (void *)*ptr;
printk_spew("malloc_release %p\n", free_mem_ptr);
}
void *malloc(size_t size)
{
void *p;
MALLOCDBG("%s Enter, size %ld, free_mem_ptr %p\n", __func__, size, free_mem_ptr);
/* Checking arguments */
if (size < 0)
die("Error! malloc: Size < 0");
die("Error! malloc: size < 0");
/* Overzealous linker check */
if (free_mem_ptr <= 0)
die("Error! malloc: Free_mem_ptr <= 0");
free_mem_ptr = (void *)(((unsigned long)free_mem_ptr + 3) & ~3); /* Align */
free_mem_ptr = (void *)ALIGN((unsigned long)free_mem_ptr, 4);
p = (void *) free_mem_ptr;
free_mem_ptr += size;
if (free_mem_ptr >= free_mem_end_ptr)
die("Error! malloc: free_mem_ptr >= free_mem_end_ptr");
die("Error! malloc: Out of memory (free_mem_ptr >= free_mem_end_ptr)");
MALLOCDBG("malloc %p\n", p);
@ -49,4 +40,5 @@ void *malloc(size_t size)
void free(void *where)
{
/* Don't care */
MALLOCDBG("free %p\n", where);
}