GNU header update.
[cacao.git] / src / mm / memory.h
index 7029f4b48f0b9db58b45e1d695f33afd79b3dbeb..5a4baa8532c21dd11921962ff3fef43baf5618ab 100644 (file)
@@ -1,73 +1,45 @@
-/************************* toolbox/memory.h ************************************
+/* toolbox/memory.h - macros for memory management
 
-       Copyright (c) 1997 A. Krall, R. Grafl, M. Gschwind, M. Probst
+   Copyright (C) 1996-2005 R. Grafl, A. Krall, C. Kruegel, C. Oates,
+   R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
+   C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
+   Institut f. Computersprachen - TU Wien
 
-       See file COPYRIGHT for information on usage and disclaimer of warranties
+   This file is part of CACAO.
 
-       Macros for memory management
+   This program is free software; you can redistribute it and/or
+   modify it under the terms of the GNU General Public License as
+   published by the Free Software Foundation; either version 2, or (at
+   your option) any later version.
 
-       Authors: Reinhard Grafl      EMAIL: cacao@complang.tuwien.ac.at
+   This program is distributed in the hope that it will be useful, but
+   WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   General Public License for more details.
 
-       Last Change: 1996/10/03
+   You should have received a copy of the GNU General Public License
+   along with this program; if not, write to the Free Software
+   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+   02111-1307, USA.
 
-*******************************************************************************/
-
-#include "types.h"
-
-#ifdef USE_BOEHM
-/* Uncollectable memory which can contain references */
-void *heap_alloc_uncollectable(u4 bytelen);
-#define GCNEW(type,num) heap_alloc_uncollectable(sizeof(type) * (num))
-#endif
+   Contact: cacao@complang.tuwien.ac.at
 
-#define ALIGN(pos,size)       ( ( ((pos)+(size)-1) / (size))*(size) )
-#define PADDING(pos,size)     ( ALIGN((pos),(size)) - (pos) )
-#define OFFSET(s,el)          ( (int) ( (size_t) &( ((s*)0) -> el ) ) )
+   Authors: Reinhard Grafl
 
+   $Id: memory.h 1735 2004-12-07 14:33:27Z twisti $
 
-#define NEW(type)             ((type*) mem_alloc ( sizeof(type) ))
-#define FREE(ptr,type)        mem_free (ptr, sizeof(type) )
+*/
 
-#define LNEW(type)             ((type*) lit_mem_alloc ( sizeof(type) ))
-#define LFREE(ptr,type)        lit_mem_free (ptr, sizeof(type) )
 
-#define MNEW(type,num)        ((type*) mem_alloc ( sizeof(type) * (num) ))
-#define MFREE(ptr,type,num)   mem_free (ptr, sizeof(type) * (num) )
-#define MREALLOC(ptr,type,num1,num2) mem_realloc (ptr, sizeof(type) * (num1), \
-                                                       sizeof(type) * (num2) )
+#ifndef _MEMORY_H
+#define _MEMORY_H
 
-#define DNEW(type)            ((type*) mem_alloc ( sizeof(type) ))
-#define DMNEW(type,num)       ((type*) mem_alloc ( sizeof(type) * (num) ))
-#define DMREALLOC(ptr,type,num1,num2)  mem_realloc (ptr, sizeof(type)*(num1),\
-                                                       sizeof(type) * (num2) )
+#include <string.h>
 
-#define MCOPY(dest,src,type,num)  memcpy (dest,src, sizeof(type)* (num) )
+#include "arch.h"
+#include "types.h"
 
-#ifdef USE_CODEMMAP
-#define CNEW(type,num)        ((type*) mem_mmap ( sizeof(type) * (num) ))
-#define CFREE(ptr,num)
-#else
-#define CNEW(type,num)        ((type*) mem_alloc ( sizeof(type) * (num) ))
-#define CFREE(ptr,num)        mem_free (ptr, num)
-#endif
 
-void *mem_alloc(int length);
-void *mem_mmap(int length);
-void *lit_mem_alloc(int length);
-void mem_free(void *m, int length);
-void lit_mem_free(void *m, int length);
-void *mem_realloc(void *m, int len1, int len2);
-long int mem_usage();
-
-void *dump_alloc(int length);
-void *dump_realloc(void *m, int len1, int len2);
-long int dump_size();
-void dump_release(long int size);
-
-void mem_usagelog(int givewarnings);
 /* 
 ---------------------------- Interface description -----------------------
 
@@ -118,3 +90,101 @@ Some more macros:
        
 
 */
+
+
+#define DUMPBLOCKSIZE    2 << 13    /* 2 * 8192 bytes */
+#define ALIGNSIZE        8
+
+
+/* dumpblock *******************************************************************
+
+   TODO
+
+*******************************************************************************/
+
+typedef struct dumpblock dumpblock;
+
+struct dumpblock {
+       dumpblock *prev;
+       u1        *dumpmem;
+       s4         size;
+};
+
+
+/* dumpinfo ********************************************************************
+
+   DOCUMENT ME!
+
+*******************************************************************************/
+
+typedef struct dumpinfo dumpinfo;
+
+struct dumpinfo {
+       dumpblock *currentdumpblock;
+       s4         allocateddumpsize;
+       s4         useddumpsize;
+};
+
+
+/* Uncollectable memory which can contain references */
+
+#define GCNEW(type,num)       ((type *) heap_alloc_uncollectable(sizeof(type) * (num)))
+#define GCFREE(ptr)           heap_free((ptr))
+
+#define ALIGN(pos,size)       ((((pos) + (size) - 1) / (size)) * (size))
+#define PADDING(pos,size)     (ALIGN((pos),(size)) - (pos))
+#define OFFSET(s,el)          ((int) ((size_t) & (((s*) 0)->el)))
+
+
+#define NEW(type)             ((type *) mem_alloc(sizeof(type)))
+#define FREE(ptr,type)        mem_free((ptr), sizeof(type))
+
+#define MNEW(type,num)        ((type *) mem_alloc(sizeof(type) * (num)))
+#define MFREE(ptr,type,num)   mem_free((ptr), sizeof(type) * (num))
+#define MREALLOC(ptr,type,num1,num2) mem_realloc((ptr), sizeof(type) * (num1), \
+                                                        sizeof(type) * (num2))
+
+#define DNEW(type)            ((type *) dump_alloc(sizeof(type)))
+#define DMNEW(type,num)       ((type *) dump_alloc(sizeof(type) * (num)))
+#define DMREALLOC(ptr,type,num1,num2) dump_realloc((ptr), sizeof(type) * (num1), \
+                                                          sizeof(type) * (num2))
+
+#define MCOPY(dest,src,type,num) memcpy((dest), (src), sizeof(type) * (num))
+#define MSET(ptr,byte,type,num) memset((ptr), (byte), sizeof(type) * (num))
+
+#if defined(USE_CODEMMAP)
+#define CNEW(type,num)        ((type *) mem_mmap(sizeof(type) * (num)))
+#define CFREE(ptr,num)        /* nothing */
+#else
+#define CNEW(type,num)        ((type *) mem_alloc(sizeof(type) * (num)))
+#define CFREE(ptr,num)        mem_free((ptr), (num))
+#endif
+
+
+/* function prototypes ********************************************************/
+
+void *mem_mmap(s4 size);
+void *mem_alloc(s4 size);
+void  mem_free(void *m, s4 size);
+void *mem_realloc(void *src, s4 len1, s4 len2);
+
+void *dump_alloc(s4 size);
+void *dump_realloc(void *src, s4 len1, s4 len2);
+s4    dump_size();
+void  dump_release(s4 size);
+
+#endif /* _MEMORY_H */
+
+
+/*
+ * These are local overrides for various environment variables in Emacs.
+ * Please do not remove this and leave it at the end of the file, where
+ * Emacs will automagically detect them.
+ * ---------------------------------------------------------------------
+ * Local variables:
+ * mode: c
+ * indent-tabs-mode: t
+ * c-basic-offset: 4
+ * tab-width: 4
+ * End:
+ */