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 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332
|
#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
#include <stdlib.h>
#include <string.h>
#include "omalloc/omConfig.h"
#if defined(HAVE_MALLOC_USABLE_SIZE) || defined(HAVE_MALLOC_SIZE)
#include <malloc.h>
#endif
#ifdef __cplusplus
extern "C" {
#if __cplusplus >= 201402L
/* clang 3.7, gcc 5.1 sets 201402L */
#define REGISTER
#else
#define REGISTER register
#endif
#else
#define REGISTER register
#endif
typedef size_t omBin;
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;
static inline void * omalloc(size_t s)
{ if (s!=0)
#if defined(HAVE_MALLOC_USABLE_SIZE) || defined(HAVE_MALLOC_SIZE)
{ return malloc(s); }
#else
{long *d=(long*)malloc(s+sizeof(long)); *d=s;d++;return d; }
#endif
else return NULL;
}
static inline void * omAlloc(size_t s)
#if defined(HAVE_MALLOC_USABLE_SIZE) || defined(HAVE_MALLOC_SIZE)
{ return malloc(s); }
#else
{ long *d=(long*)malloc(s+sizeof(long)); *d=s;d++;return d; }
#endif
static inline void * omAlloc0(size_t s)
{ void *d=omAlloc(s);memset(d,0,s); return d; }
static inline void * omalloc0(size_t s)
{ if (s!=0) { void *d=omAlloc(s);memset(d,0,s); return d;} else return NULL; }
static inline void *omRealloc(void *d, size_t ns)
{ if (d==NULL) return omAlloc(ns);
else
#if defined(HAVE_MALLOC_USABLE_SIZE) || defined(HAVE_MALLOC_SIZE)
return realloc(d,ns);
#else
{
long *dd=(long*)d; dd--; dd=(long*)realloc(dd,ns+sizeof(long));
*dd=ns+sizeof(long);dd++; return dd;
}
#endif
}
#define omReallocAligned(A,B) omRealloc(A,B)
static inline void *omReallocSize(void *d, __attribute__((unused)) size_t os, size_t ns)
{ if (d==NULL) return omAlloc(ns);
else
#if defined(HAVE_MALLOC_USABLE_SIZE) || defined(HAVE_MALLOC_SIZE)
return realloc(d,ns);
#else
{
long *dd=(long*)d; dd--; dd=(long*)realloc(dd,ns+sizeof(long));
*dd=ns+sizeof(long);dd++; return dd;
}
#endif
}
static inline long omSizeOfAddr(void *d)
#ifdef HAVE_MALLOC_USABLE_SIZE
{ return malloc_usable_size(d); }
#elif defined(HAVE_AMLLOC_SIZE)
{ return malloc_size(d); }
#else
{ long *dd=(long*)d; dd--; return *dd;}
#endif
static inline void omFree(void *d)
#if defined(HAVE_MALLOC_USABLE_SIZE) || defined(HAVE_MALLOC_SIZE)
{ free(d); }
#else
{ if (d!=NULL) { long *dd=(long*)d; dd--; free(dd);}}
#endif
static inline void *omRealloc0(void *d, size_t ns)
{
#ifdef HAVE_MALLOC_USABLE_SIZE
size_t os=0;
if (d!=NULL) os=malloc_usable_size(d);
if (os>=ns)
{
void *n=realloc(d,ns);
return n;
}
else
{
char *n=(char*)realloc(d,ns);
memset(n+(ns-os),0,ns-os);
return (void*)n;
}
#elif defined(HAVE_MALLOC_SIZE)
size_t os=0;
if (d!=NULL) os=malloc_size(d);
if (os>=ns)
{
void *n=realloc(d,ns);
return n;
}
else
{
char *n=(char*)realloc(d,ns);
memset(n+(ns-os),0,ns-os);
return (void*)n;
}
#else
void *n=omAlloc0(ns);
if (d!=NULL)
{
size_t c;
size_t os=omSizeOfAddr(d);
if (ns>os) c=os; else c=ns;
memcpy(n,d,c);
omFree(d);
}
return n;
#endif
}
static inline void omFreeSize(void *d, __attribute__((unused)) size_t s)
#if defined(HAVE_MALLOC_USABLE_SIZE) || defined(HAVE_MALLOC_SIZE)
{ free(d); }
#else
{ if (d!=NULL) { long *dd=(long*)d; dd--; free(dd);}}
#endif
static inline char * omStrDup(const char *s)
{ size_t l=strlen(s);char *ns=(char *)omAlloc(l+1);
return strcpy(ns,s);
}
static inline void * omMemDup(void * s)
#ifdef HAVE_MALLOC_USABLE_SIZE
{ size_t l=malloc_usable_size(s);
void *n=malloc(l);
memcpy(n,s,l);
return n;
}
#elif defined(HAVE_MALLOC_SIZE)
{ size_t l=malloc_size(s);
void *n=malloc(l);
memcpy(n,s,l);
return n;
}
#else
{ long *n;long *d=(long*)s; d--;
n=(long*)malloc(*d+sizeof(long));
memcpy(n,d,(*d)+sizeof(long));
n++;
return n;
}
#endif
/* #define omSizeWOfBin(bin_ptr) ((bin_ptr)->sizeW) */
#define omSizeWOfBin(bin_ptr) (((bin_ptr)+sizeof(long)-1)/sizeof(long))
/*******************************************************************
*
* 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 omTypeAllocBin(T,P,B) P=(T)omAlloc(B)
#define omTypeAlloc(T,P,S) P=(T)omAlloc(S)
#define omTypeAlloc0Bin(T,P,B) P=(T)omAlloc0(B)
#define omAlloc0Aligned(S) omAlloc0(S)
#define omAllocAligned(S) omAlloc(S)
#define omAllocBin(B) omAlloc(B)
#define omAllocBin0(B) omAlloc0(B)
#define omAlloc0Bin(B) omAlloc0(B)
#define omInitInfo()
#define omInitGetBackTrace()
#define omUpdateInfo()
#define omPrintStats(F)
#define omPrintInfo(F)
#define omPrintBinStats(F)
#define omMarkMemoryAsStatic()
#define omfree(P) omFree(P)
#define omFreeBin(P,B) omFree(P)
#define omfreeSize(P,S) omFreeSize(P,S)
#define omFreeFunc omFree
#define omFreeBinAddr(P) omFree(P)
#define omrealloc(A,NS) omRealloc(A,NS)
#define omreallocSize(A,OS,NS) omRealloc(A,NS)
#define omRealloc0Size(A,OS,NS) omRealloc0(A,NS)
#define omrealloc0Size(A,OS,NS) omRealloc(A,NS)
#define omMarkAsStaticAddr(A)
#define omMemCpyW(A,B,S) memcpy(A,B,(S)<<2)
#define omMemcpyW(A,B,S) memcpy(A,B,(S)<<2)
#define omGetSpecBin(A) (A)
#define omUnGetSpecBin(A) do {} while (0)
#define memcpyW(A,B,C) memcpy(A,B,(C)*sizeof(long))
#define omGetStickyBinOfBin(B) omGetSpecBin(B)
/* debug dummies: */
#define omTypeReallocAlignedSize omTypeReallocSize
#define omTypeRealloc0AlignedSize omTypeRealloc0Size
#define omReallocAlignedSize omReallocSize
#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 omAlloc
#define omReallocSizeFunc omReallocSize
#define omFreeSizeFunc omFreeSize
/* #define OM_NDEBUG */
#undef OM_SING_KEEP
#endif
|