/*
--------------------------------- mem_r.h prototypes for memory management functions see qh-mem_r.htm, mem_r.c and qset_r.h for error handling, writes message and calls qh_errexit(qhT *qh, qhmem_ERRmem, NULL, NULL) if insufficient memory and qh_errexit(qhT *qh, qhmem_ERRqhull, NULL, NULL) otherwise Copyright (c) 1993-2015 The Geometry Center. $Id: //main/2015/qhull/src/libqhull_r/mem_r.h#4 $$Change: 2079 $ $DateTime: 2016/02/07 17:43:34 $$Author: bbarber $ */ #ifndef qhDEFmem #define qhDEFmem 1 #include#ifndef DEFsetT #define DEFsetT 1 typedef struct setT setT; /* defined in qset_r.h */ #endif #ifndef DEFqhT #define DEFqhT 1 typedef struct qhT qhT; /* defined in libqhull_r.h */ #endif /*--------------------------------- qh_NOmem turn off quick-fit memory allocation notes: mem_r.c implements Quickfit memory allocation for about 20% time savings. If it fails on your machine, try to locate the problem, and send the answer to qhull@qhull.org. If this can not be done, define qh_NOmem to use malloc/free instead. #define qh_NOmem */ /*--------------------------------- qh_TRACEshort Trace short and quick memory allocations at T5 */ #define qh_TRACEshort /*------------------------------------------- to avoid bus errors, memory allocation must consider alignment requirements. malloc() automatically takes care of alignment. Since mem_r.c manages its own memory, we need to explicitly specify alignment in qh_meminitbuffers(). A safe choice is sizeof(double). sizeof(float) may be used if doubles do not occur in data structures and pointers are the same size. Be careful of machines (e.g., DEC Alpha) with large pointers. If gcc is available, use __alignof__(double) or fmax_(__alignof__(float), __alignof__(void *)). see qh_MEMalign in user.h for qhull's alignment */ #define qhmem_ERRmem 4 /* matches qh_ERRmem in libqhull_r.h */ #define qhmem_ERRqhull 5 /* matches qh_ERRqhull in libqhull_r.h */ /*---------------------------------- ptr_intT for casting a void * to an integer-type that holds a pointer Used for integer expressions (e.g., computing qh_gethash() in poly_r.c) notes: WARN64 -- these notes indicate 64-bit issues On 64-bit machines, a pointer may be larger than an 'int'. qh_meminit()/mem_r.c checks that 'ptr_intT' holds a 'void*' ptr_intT is typically a signed value, but not necessarily so size_t is typically unsigned, but should match the parameter type Qhull uses int instead of size_t except for system calls such as malloc, qsort, qh_malloc, etc. This matches Qt convention and is easier to work with. */ #if (defined(__MINGW64__)) && defined(_WIN64) typedef long long ptr_intT; #elif (_MSC_VER) && defined(_WIN64) typedef long long ptr_intT; #else typedef long ptr_intT; #endif /*---------------------------------- qhmemT global memory structure for mem_r.c notes: users should ignore qhmem except for writing extensions qhmem is allocated in mem_r.c qhmem could be swapable like qh and qhstat, but then multiple qh's and qhmem's would need to keep in synch. A swapable qhmem would also waste memory buffers. As long as memory operations are atomic, there is no problem with multiple qh structures being active at the same time. If you need separate address spaces, you can swap the contents of qh->qhmem. */ typedef struct qhmemT qhmemT; /* Update qhmem in mem_r.c if add or remove fields */ struct qhmemT { /* global memory management variables */ int BUFsize; /* size of memory allocation buffer */ int BUFinit; /* initial size of memory allocation buffer */ int TABLEsize; /* actual number of sizes in free list table */ int NUMsizes; /* maximum number of sizes in free list table */ int LASTsize; /* last size in free list table */ int ALIGNmask; /* worst-case alignment, must be 2^n-1 */ void **freelists; /* free list table, linked by offset 0 */ int *sizetable; /* size of each freelist */ int *indextable; /* size->index table */ void *curbuffer; /* current buffer, linked by offset 0 */ void *freemem; /* free memory in curbuffer */ int freesize; /* size of freemem in bytes */ setT *tempstack; /* stack of temporary memory, managed by users */ FILE *ferr; /* file for reporting errors when 'qh' may be undefined */ int IStracing; /* =5 if tracing memory allocations */ int cntquick; /* count of quick allocations */ /* Note: removing statistics doesn't effect speed */ int cntshort; /* count of short allocations */ int cntlong; /* count of long allocations */ int freeshort; /* count of short memfrees */ int freelong; /* count of long memfrees */ int totbuffer; /* total short memory buffers minus buffer links */ int totdropped; /* total dropped memory at end of short memory buffers (e.g., freesize) */ int totfree; /* total size of free, short memory on freelists */ int totlong; /* total size of long memory in use */ int maxlong; /* maximum totlong */ int totshort; /* total size of short memory in use */ int totunused; /* total unused short memory (estimated, short size - request size of first allocations) */ int cntlarger; /* count of setlarger's */ int totlarger; /* total copied by setlarger */ }; /*==================== -macros ====================*/ /*---------------------------------- qh_memalloc_(qh, insize, freelistp, object, type) returns object of size bytes assumes size<=qh->qhmem.LASTsize and void **freelistp is a temp */ #if defined qh_NOmem #define qh_memalloc_(qh, insize, freelistp, object, type) {\ object= (type*)qh_memalloc(qh, insize); } #elif defined qh_TRACEshort #define qh_memalloc_(qh, insize, freelistp, object, type) {\ freelistp= NULL; /* Avoid warnings */ \ object= (type*)qh_memalloc(qh, insize); } #else /* !qh_NOmem */ #define qh_memalloc_(qh, insize, freelistp, object, type) {\ freelistp= qh->qhmem.freelists + qh->qhmem.indextable[insize];\ if ((object= (type*)*freelistp)) {\ qh->qhmem.totshort += qh->qhmem.sizetable[qh->qhmem.indextable[insize]]; \ qh->qhmem.totfree -= qh->qhmem.sizetable[qh->qhmem.indextable[insize]]; \ qh->qhmem.cntquick++; \ *freelistp= *((void **)*freelistp);\ }else object= (type*)qh_memalloc(qh, insize);} #endif /*---------------------------------- qh_memfree_(qh, object, insize, freelistp) free up an object notes: object may be NULL assumes size<=qh->qhmem.LASTsize and void **freelistp is a temp */ #if defined qh_NOmem #define qh_memfree_(qh, object, insize, freelistp) {\ qh_memfree(qh, object, insize); } #elif defined qh_TRACEshort #define qh_memfree_(qh, object, insize, freelistp) {\ freelistp= NULL; /* Avoid warnings */ \ qh_memfree(qh, object, insize); } #else /* !qh_NOmem */ #define qh_memfree_(qh, object, insize, freelistp) {\ if (object) { \ qh->qhmem.freeshort++;\ freelistp= qh->qhmem.freelists + qh->qhmem.indextable[insize];\ qh->qhmem.totshort -= qh->qhmem.sizetable[qh->qhmem.indextable[insize]]; \ qh->qhmem.totfree += qh->qhmem.sizetable[qh->qhmem.indextable[insize]]; \ *((void **)object)= *freelistp;\ *freelistp= object;}} #endif /*=============== prototypes in alphabetical order ============*/ #ifdef __cplusplus extern "C" { #endif void *qh_memalloc(qhT *qh, int insize); void qh_memcheck(qhT *qh); void qh_memfree(qhT *qh, void *object, int insize); void qh_memfreeshort(qhT *qh, int *curlong, int *totlong); void qh_meminit(qhT *qh, FILE *ferr); void qh_meminitbuffers(qhT *qh, int tracelevel, int alignment, int numsizes, int bufsize, int bufinit); void qh_memsetup(qhT *qh); void qh_memsize(qhT *qh, int size); void qh_memstatistics(qhT *qh, FILE *fp); void qh_memtotal(qhT *qh, int *totlong, int *curlong, int *totshort, int *curshort, int *maxlong, int *totbuffer); #ifdef __cplusplus } /* extern "C" */ #endif #endif /* qhDEFmem */