1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
|
/* $Header: /local/src/CVS/nickle/mem.h,v 1.17 2004/12/11 06:02:23 keithp Exp $ */
/*
* Copyright © 1988-2004 Keith Packard and Bart Massey.
* All Rights Reserved. See the file COPYING in this directory
* for licensing information.
*/
#ifndef _MEM_H_
#define _MEM_H_
#ifdef HAVE_STRING_H
#include <string.h>
#endif
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif
#ifdef MEM_TRACE
typedef struct _DataType DataType;
#else
typedef const struct _DataType DataType;
#endif
#if LOCAL_BUILD
#include "stack.h"
#else
#include <nickle/stack.h>
#endif
struct _DataType {
void (*Mark) (void *);
int (*Free) (void *);
char *name;
#ifdef MEM_TRACE
int added;
int total;
int active;
long long total_bytes;
long long active_bytes;
DataType *next;
#endif
};
struct bfree {
DataType *type;
struct bfree *next;
};
typedef unsigned long PtrInt;
struct block {
struct block *next;
int sizeIndex;
};
/* make sure we can store doubles in blocks */
union block_round {
struct block b;
double round;
};
# define MINHUNK (sizeof (struct bfree))
# define NUMSIZES 12
# define HUNKSIZE(i) (MINHUNK << (i))
# define MAXHUNK HUNKSIZE(NUMSIZES-1)
# define HEADSIZE (sizeof (union block_round))
# define HUNKS(b) ((unsigned char *) (b) + HEADSIZE)
#if HAVE_C_INLINE
#define USE_C_INLINE 1
#endif
struct bfree *
MemAllocateHunk (int sizeIndex);
struct bfree *
MemAllocateHuge (int size);
#ifndef USE_C_INLINE
void
*MemAllocate (DataType *type, int size);
void
*MemAllocateRef (DataType *type, int size);
#endif
#ifdef MEM_TRACE
void
MemAddType (DataType *type);
void
MemActiveDump (void);
#endif
void
MemInitialize (void);
void
MemAddRoot (void *object);
void
MemReference (void *object);
int
MemReferenceNoRecurse (void *object);
void
MemCollect (void);
/*
* These are used by the mem system and defined externally
*/
void
debug (char *, ...);
void
panic (char *, ...);
extern StackObject *MemStack;
extern void *TemporaryData;
extern struct bfree *freeList[NUMSIZES];
#define REFERENCE(o) STACK_PUSH(MemStack, (o))
#define ENTER() StackPointer __stackPointer = STACK_TOP(MemStack)
#define ALLOCATE(type,size) MemAllocateRef(type,size)
#define EXIT() STACK_RESET(MemStack, __stackPointer)
#define RETURN(r) return (STACK_RETURN (MemStack, __stackPointer, (r)))
#define NOREFRETURN(r) return (EXIT(), (r))
#if USE_C_INLINE || MEM_NEED_ALLOCATE
/*
* Allocator entry point
*/
#if USE_C_INLINE
static inline struct bfree *
#else
static struct bfree *
#endif
_MemAllocateInt (DataType *type, int size)
{
int sizeIndex = 0;
struct bfree *new;
#if NUMSIZES > 15
bad NUMSIZES
#endif
#ifdef MEM_TRACE
if (!type->added)
MemAddType (type);
type->total++;
type->total_bytes += size;
type->active++;
type->active_bytes += size;
#endif
if (size > HUNKSIZE(7))
sizeIndex += 8;
if (size > HUNKSIZE(sizeIndex+3))
sizeIndex += 4;
if (size > HUNKSIZE(sizeIndex+1))
sizeIndex += 2;
if (size > HUNKSIZE(sizeIndex))
sizeIndex += 1;
if (sizeIndex >= NUMSIZES)
new = MemAllocateHuge (size);
else if ((new = freeList[sizeIndex]))
freeList[sizeIndex] = new->next;
else
new = MemAllocateHunk (sizeIndex);
return new;
}
#if USE_C_INLINE
static inline void *
#else
void *
#endif
MemAllocateRef (DataType *type, int size)
{
struct bfree *new = _MemAllocateInt (type, size);
new->type = 0;
REFERENCE (new);
new->type = type;
return (void *) new;
}
#if USE_C_INLINE
static inline void *
#else
void *
#endif
MemAllocate (DataType *type, int size)
{
struct bfree *new = _MemAllocateInt (type, size);
new->type = type;
return (void *) new;
}
#endif /* USE_C_INLINE */
#endif /* _MEM_H_ */
|