/* Prints in python syntax for easy */ static void MEM_printmemlist_internal( int pydict ) { MemHead *membl; mem_lock_thread(); membl = membase->first; if (membl) membl = MEMNEXT(membl); if (pydict) { print_error("# membase_debug.py\n"); print_error("membase = [\\\n"); } while(membl) { if (pydict) { fprintf(stderr, "{'len':" SIZET_FORMAT ", 'name':'''%s''', 'pointer':'%p'},\\\n", SIZET_ARG(membl->len), membl->name, (void *)(membl+1)); } else { #ifdef DEBUG_MEMCOUNTER print_error("%s len: " SIZET_FORMAT " %p, count: %d\n", membl->name, SIZET_ARG(membl->len), membl+1, membl->_count); #else print_error("%s len: " SIZET_FORMAT " %p\n", membl->name, SIZET_ARG(membl->len), membl+1); #endif } if(membl->next) membl= MEMNEXT(membl->next); else break; } if (pydict) { fprintf(stderr, "]\n\n"); fprintf(stderr, "mb_userinfo = {}\n" "totmem = 0\n" "for mb_item in membase:\n" "\tmb_item_user_size = mb_userinfo.setdefault(mb_item['name'], [0,0])\n" "\tmb_item_user_size[0] += 1 # Add a user\n" "\tmb_item_user_size[1] += mb_item['len'] # Increment the size\n" "\ttotmem += mb_item['len']\n" "print '(membase) items:', len(membase), '| unique-names:', len(mb_userinfo), '| total-mem:', totmem\n" "mb_userinfo_sort = mb_userinfo.items()\n" "for sort_name, sort_func in (('size', lambda a: -a[1][1]), ('users', lambda a: -a[1][0]), ('name', lambda a: a[0])):\n" "\tprint '\\nSorting by:', sort_name\n" "\tmb_userinfo_sort.sort(key = sort_func)\n" "\tfor item in mb_userinfo_sort:\n" "\t\tprint 'name:%%s, users:%%i, len:%%i' %% (item[0], item[1][0], item[1][1])\n" ); } mem_unlock_thread(); }
void *MEM_mallocN(size_t len, const char *str) { MemHead *memh; mem_lock_thread(); len = (len + 3 ) & ~3; /* allocate in units of 4 */ memh= (MemHead *)malloc(len+sizeof(MemHead)+sizeof(MemTail)); if(memh) { make_memhead_header(memh, len, str); mem_unlock_thread(); if(malloc_debug_memset && len) memset(memh+1, 255, len); #ifdef DEBUG_MEMCOUNTER if(_mallocn_count==DEBUG_MEMCOUNTER_ERROR_VAL) memcount_raise("MEM_mallocN"); memh->_count= _mallocn_count++; #endif return (++memh); } mem_unlock_thread(); print_error("Malloc returns null: len=" SIZET_FORMAT " in %s, total %u\n", SIZET_ARG(len), str, mem_in_use); return NULL; }
void *MEM_lockfree_mallocN_aligned(size_t len, size_t alignment, const char *str) { MemHeadAligned *memh; /* It's possible that MemHead's size is not properly aligned, * do extra padding to deal with this. * * We only support small alignments which fits into short in * order to save some bits in MemHead structure. */ size_t extra_padding = MEMHEAD_ALIGN_PADDING(alignment); /* Huge alignment values doesn't make sense and they * wouldn't fit into 'short' used in the MemHead. */ assert(alignment < 1024); /* We only support alignment to a power of two. */ assert(IS_POW2(alignment)); len = SIZET_ALIGN_4(len); memh = (MemHeadAligned *)aligned_malloc( len + extra_padding + sizeof(MemHeadAligned), alignment); if (LIKELY(memh)) { /* We keep padding in the beginning of MemHead, * this way it's always possible to get MemHead * from the data pointer. */ memh = (MemHeadAligned *)((char *)memh + extra_padding); if (UNLIKELY(malloc_debug_memset && len)) { memset(memh + 1, 255, len); } memh->len = len | (size_t) MEMHEAD_ALIGN_FLAG; memh->alignment = (short) alignment; atomic_add_and_fetch_u(&totblock, 1); atomic_add_and_fetch_z(&mem_in_use, len); update_maximum(&peak_mem, mem_in_use); return PTR_FROM_MEMHEAD(memh); } print_error("Malloc returns null: len=" SIZET_FORMAT " in %s, total %u\n", SIZET_ARG(len), str, (unsigned int) mem_in_use); return NULL; }
void *MEM_lockfree_callocN(size_t len, const char *str) { MemHead *memh; len = SIZET_ALIGN_4(len); memh = (MemHead *)calloc(1, len + sizeof(MemHead)); if (LIKELY(memh)) { memh->len = len; atomic_add_and_fetch_u(&totblock, 1); atomic_add_and_fetch_z(&mem_in_use, len); update_maximum(&peak_mem, mem_in_use); return PTR_FROM_MEMHEAD(memh); } print_error("Calloc returns null: len=" SIZET_FORMAT " in %s, total %u\n", SIZET_ARG(len), str, (unsigned int) mem_in_use); return NULL; }
void *MEM_lockfree_mapallocN(size_t len, const char *str) { MemHead *memh; /* on 64 bit, simply use calloc instead, as mmap does not support * allocating > 4 GB on Windows. the only reason mapalloc exists * is to get around address space limitations in 32 bit OSes. */ if (sizeof(void *) >= 8) return MEM_lockfree_callocN(len, str); len = SIZET_ALIGN_4(len); #if defined(WIN32) /* our windows mmap implementation is not thread safe */ mem_lock_thread(); #endif memh = mmap(NULL, len + sizeof(MemHead), PROT_READ | PROT_WRITE, MAP_SHARED | MAP_ANON, -1, 0); #if defined(WIN32) mem_unlock_thread(); #endif if (memh != (MemHead *)-1) { memh->len = len | (size_t) MEMHEAD_MMAP_FLAG; atomic_add_and_fetch_u(&totblock, 1); atomic_add_and_fetch_z(&mem_in_use, len); atomic_add_and_fetch_z(&mmap_in_use, len); update_maximum(&peak_mem, mem_in_use); update_maximum(&peak_mem, mmap_in_use); return PTR_FROM_MEMHEAD(memh); } print_error("Mapalloc returns null, fallback to regular malloc: " "len=" SIZET_FORMAT " in %s, total %u\n", SIZET_ARG(len), str, (unsigned int) mmap_in_use); return MEM_lockfree_callocN(len, str); }
/* note; mmap returns zero'd memory */ void *MEM_mapallocN(size_t len, const char *str) { MemHead *memh; mem_lock_thread(); len = (len + 3 ) & ~3; /* allocate in units of 4 */ #ifdef __sgi { #include <fcntl.h> int fd; fd = open("/dev/zero", O_RDWR); memh= mmap(0, len+sizeof(MemHead)+sizeof(MemTail), PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0); close(fd); } #else memh= mmap(NULL, len+sizeof(MemHead)+sizeof(MemTail), PROT_READ|PROT_WRITE, MAP_SHARED|MAP_ANON, -1, 0); #endif if(memh!=(MemHead *)-1) { make_memhead_header(memh, len, str); memh->mmap= 1; mmap_in_use += len; peak_mem = mmap_in_use > peak_mem ? mmap_in_use : peak_mem; mem_unlock_thread(); #ifdef DEBUG_MEMCOUNTER if(_mallocn_count==DEBUG_MEMCOUNTER_ERROR_VAL) memcount_raise("MEM_mapallocN"); memh->_count= _mallocn_count++; #endif return (++memh); } else { mem_unlock_thread(); print_error("Mapalloc returns null, fallback to regular malloc: len=" SIZET_FORMAT " in %s, total %u\n", SIZET_ARG(len), str, mmap_in_use); return MEM_callocN(len, str); } }