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 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
|
#ifndef XMEMORY_H
#define XMEMORY_H
/****************************************
* Computer Algebra System SINGULAR *
****************************************/
/*
* ABSTRACT: omalloc simulation
*/
/* debug routines of omalloc are not implemented, but as dummies provided: */
#define OM_NDEBUG 1
/* use of Bins: define for optimal performancei(6%), undef for valgrind */
#define XALLOC_BIN 1
/* performancce of xalloc+XALLOC_BIN: +32.6 %, xalloc w/o XALLOC_BIN: +40.7 %
* (omalloc=100 %) */
#include <stdlib.h>
#include <string.h>
#include "omalloc/omConfig.h"
#ifdef __cplusplus
extern "C" {
#if __cplusplus >= 201402L
/* clang 3.7, gcc 5.1 sets 201402L */
#define REGISTER
#elif defined(__clang__)
#define REGISTER
#else
#define REGISTER register
#endif
#else
#define REGISTER register
#endif
struct omInfo_s;
typedef struct omInfo_s omInfo_t;
struct omInfo_s
{
long MaxBytesSystem; /* set in omUpdateInfo(), is more accurate with malloc support */
long CurrentBytesSystem; /* set in omUpdateInfo(), is more accurate with malloc support */
long MaxBytesSbrk; /* always up-to-date, not very accurate, needs omInintInfo() */
long CurrentBytesSbrk; /* set in omUpdateInfo(), needs omInintInfo() */
long MaxBytesMmap; /* set in omUpdateInfo(), not very accurate */
long CurrentBytesMmap; /* set in omUpdateInfo(), not very accurate */
long UsedBytes; /* set in omUpdateInfo() */
long AvailBytes; /* set in omUpdateInfo() */
long UsedBytesMalloc; /* set in omUpdateInfo(), needs malloc support */
long AvailBytesMalloc; /* set in omUpdateInfo(), needs malloc support */
long MaxBytesFromMalloc; /* always kept up-to-date */
long CurrentBytesFromMalloc; /* always kept up-to-date */
long MaxBytesFromValloc; /* always kept up-to-date */
long CurrentBytesFromValloc; /* always kept up-to-date */
long UsedBytesFromValloc; /* set in omUpdateInfo() */
long AvailBytesFromValloc;/* set in omUpdateInfo() */
long MaxPages; /* always kept up-to-date */
long UsedPages; /* always kept up-to-date */
long AvailPages; /* always kept up-to-date */
long MaxRegionsAlloc; /* always kept up-to-date */
long CurrentRegionsAlloc; /* always kept up-to-date */
};
extern struct omInfo_s om_Info;
struct omOpts_s;
extern struct omOpts_s
{
int MinTrack;
int MinCheck;
int MaxTrack;
int MaxCheck;
int Keep;
int HowToReportErrors;
int MarkAsStatic;
unsigned int PagesPerRegion;
void (*OutOfMemoryFunc)();
void (*MemoryLowFunc)();
void (*ErrorHook)();
} om_Opts;
typedef struct omOpts_s omOpts_t;
extern int om_sing_opt_show_mem;
#define omalloc(s) malloc(s)
#define omAlloc(s) malloc(s)
static inline void * omAlloc0(size_t s)
{ void *d=malloc(s);memset(d,0,s); return d; }
static inline void * omalloc0(size_t s)
{ if (s!=0) { void *d=malloc(s);memset(d,0,s); return d;} else return NULL; }
static inline void *omRealloc0Size(void *d, __attribute__((unused)) size_t os, size_t ns)
{ if (d==NULL)
return omAlloc0(ns);
else
{
char *p=(char *)realloc(d,ns);
if (ns>os) memset(p+os,0,ns-os);
return (void*)p;
}
}
#define omfree(d) free(d)
#define omFree(d) free(d)
#define omFreeSize(d,s) free(d)
#define omStrDup(s) strdup(s)
#ifdef XALLOC_BIN
typedef struct omBin_next_s omBin_next_t;
typedef omBin_next_t* omBin_next;
struct omBin_next_s
{
omBin_next next;
};
struct omBin_s
{
omBin_next curr; /* current freelist */
size_t size; /* size in bytes */
};
typedef struct omBin_s omBin_t;
typedef omBin_t* omBin;
#define omSizeWOfBin(bin_ptr) (((bin_ptr->size)+SIZEOF_LONG-1)/SIZEOF_LONG)
static inline void* omAllocBin(omBin b)
{
if (b->curr!=NULL)
{
omBin_next p=b->curr;
b->curr=p->next;
return p;
}
else return omAlloc(b->size);
}
static inline void* omAlloc0Bin(omBin b)
{
if (b->curr!=NULL)
{
omBin_next p=b->curr;
b->curr=p->next;
memset(p,0,b->size);
return p;
}
else return omAlloc0(b->size);
}
static inline void omFreeBin(void *p, omBin b)
{
*((void**) p) = b->curr;
b->curr=(omBin_next)p;
}
#define omTypeAllocBin(T,P,B) P=(T)omAllocBin(B)
#define omTypeAlloc0Bin(T,P,B) P=(T)omAlloc0Bin(B)
static inline omBin omGetSpecBin(size_t s)
{
omBin b=(omBin)omAlloc(sizeof(*b));
b->size=s;
b->curr=NULL;
return b;
}
static inline void omUnGetSpecBin(omBin *A)
{
omBin_next p=(*A)->curr;
omBin_next pp;
while(p!=NULL)
{
pp=p->next;
omFree(p);
p=pp;
}
(*A)->curr=NULL;
omFree(*A);
}
#else
typedef size_t omBin;
#define omSizeWOfBin(bin_ptr) (((bin_ptr)+SIZEOF_LONG-1)/SIZEOF_LONG)
#define omTypeAllocBin(T,P,B) P=(T)omAlloc(B)
#define omTypeAlloc0Bin(T,P,B) P=(T)omAlloc0(B)
#define omAllocBin(B) omAlloc(B)
#define omAlloc0Bin(B) omAlloc0(B)
#define omFreeBin(P,B) omFree(P)
#define omGetSpecBin(A) (A)
#define omUnGetSpecBin(A) do {} while (0)
#endif
/*******************************************************************
*
* error codes
*
*******************************************************************/
enum omError_e
{
omError_NoError = 0,
omError_Unknown,
omError_InternalBug,
omError_MemoryCorrupted,
omError_NullAddr,
omError_InvalidRangeAddr,
omError_FalseAddr,
omError_FalseAddrOrMemoryCorrupted,
omError_WrongSize,
omError_FreedAddr,
omError_FreedAddrOrMemoryCorrupted,
omError_WrongBin,
omError_UnknownBin,
omError_NotBinAddr,
omError_UnalignedAddr,
omError_NullSizeAlloc,
omError_ListCycleError,
omError_SortedListError,
omError_KeptAddrListCorrupted,
omError_FreePattern,
omError_BackPattern,
omError_FrontPattern,
omError_NotString,
omError_StickyBin,
omError_MaxError
};
// typedef enum omError_e omError_t;
#define omSizeWOfAddr(P) (omSizeOfAddr(P)/SIZEOF_LONG)
#define omTypeAlloc(T,P,S) P=(T)omAlloc(S)
#define omAlloc0Aligned(S) omAlloc0(S)
#define omAllocAligned(S) omAlloc(S)
#define omInitInfo()
#define omInitGetBackTrace()
#define omUpdateInfo()
#define omPrintStats(F)
#define omPrintInfo(F)
#define omPrintBinStats(F)
#define omMarkMemoryAsStatic()
#define omfreeSize(P,S) free(P)
#define omFreeFunc free
#define omFreeBinAddr(P) free(P)
#define omrealloc(A,NS) realloc(A,NS)
#define omreallocSize(A,OS,NS) realloc(A,NS)
#define omrealloc0Size(A,OS,NS) omRealloc0Size(A,OS,NS)
#define omRealloc(A,B) realloc(A,B)
#define omReallocAligned(A,B) realloc(A,B)
#define omReallocSize(A,B,C) realloc(A,C)
#define omReallocAlignedSize(A,B) realloc(A,B)
#define omMarkAsStaticAddr(A)
#define omMemcpyW(A,B,C) memcpy(A,B,(C)*SIZEOF_LONG)
#define omGetStickyBinOfBin(B) (B)
/* debug dummies: */
#define omTypeReallocAlignedSize omTypeReallocSize
#define omTypeRealloc0AlignedSize omTypeRealloc0Size
#define omRealloc0AlignedSize omRealloc0Size
#define omMemDupAligned omMemDup
#define omCheckIf(cond, test) do {} while (0)
#define omCheckBinAddr(addr) do {} while (0)
#define omCheckAddrBin(addr,bin) do {} while (0)
#define omCheckBinAddrSize(addr,size) do {} while (0)
#define omCheckAddrSize(addr,size) do {} while (0)
#define omCheckAddr(addr) do {} while (0)
#define omcheckAddrSize(addr,size) do {} while (0)
#define omcheckAddr(addr) do {} while (0)
#define omCheckBin(bin) do {} while (0)
#define omCheckMemory() do {} while (0)
#define omPrintCurrentBackTraceMax(A,B) do {} while (0)
#define omPrintUsedTrackAddrs(F,max) do {} while (0)
#define omPrintCurrentBackTrace(F) do {} while (0)
#define omPrintUsedAddrs(F,max) do {} while (0)
#define omdebugAddrSize(A,B) do {} while (0)
#define omPrintAddrInfo(A,B,C) do {} while (0)
#define omIsBinPageAddr(A) (1)
#define omTestBinAddrSize(A,B,C) (omError_NoError)
#define omTestList(ptr, level) (omError_NoError)
#define omInitRet_2_Info(argv0) do {} while (0)
#define omMergeStickyBinIntoBin(A,B) do {} while (0)
#ifdef __cplusplus
}
#endif
#undef OMALLOC_USES_MALLOC
#define X_OMALLOC
#define omMallocFunc malloc
#define omFreeSizeFunc omFreeSize
#define omReallocSizeFunc realloc
/* #define OM_NDEBUG */
#undef OM_SING_KEEP
#endif
|