dxx-rebirth/common/include/u_mem.h

128 lines
4.1 KiB
C
Raw Normal View History

2006-03-20 17:12:09 +00:00
/*
2014-06-01 17:55:23 +00:00
* Portions of this file are copyright Rebirth contributors and licensed as
* described in COPYING.txt.
* Portions of this file are copyright Parallax Software and licensed
* according to the Parallax license below.
* See COPYING.txt for license details.
2006-03-20 17:12:09 +00:00
THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX
SOFTWARE CORPORATION ("PARALLAX"). PARALLAX, IN DISTRIBUTING THE CODE TO
END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A
ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS
IN USING, DISPLAYING, AND CREATING DERIVATIVE WORKS THEREOF, SO LONG AS
SUCH USE, DISPLAY OR CREATION IS FOR NON-COMMERCIAL, ROYALTY OR REVENUE
FREE PURPOSES. IN NO EVENT SHALL THE END-USER USE THE COMPUTER CODE
CONTAINED HEREIN FOR REVENUE-BEARING PURPOSES. THE END-USER UNDERSTANDS
AND AGREES TO THE TERMS HEREIN AND ACCEPTS THE SAME BY USE OF THIS FILE.
COPYRIGHT 1993-1999 PARALLAX SOFTWARE CORPORATION. ALL RIGHTS RESERVED.
*/
#ifndef _U_MEM_H
#define _U_MEM_H
2006-03-20 17:12:09 +00:00
#include <stdlib.h>
#ifdef __cplusplus
#include "dxxsconf.h"
2014-07-25 01:36:12 +00:00
#include "compiler-type_traits.h"
#define MEM_K 1.5 // Dynamic array growth factor
#ifdef DEBUG_MEMORY_ALLOCATIONS
void mem_init(void);
2006-03-20 17:12:09 +00:00
void mem_display_blocks();
void * mem_malloc( unsigned int size, const char * var, const char * file, unsigned line) __attribute_alloc_size(1) __attribute_malloc();
void * mem_calloc( size_t nmemb, size_t size, const char * var, const char * filename, unsigned line) __attribute_alloc_size(1,2) __attribute_malloc();
void * mem_realloc( void * buffer, unsigned int size, const char * var, const char * file, int line ) __attribute_alloc_size(2);
2006-03-20 17:12:09 +00:00
extern void mem_free( void * buffer );
/* DPH: Changed malloc, etc. to d_malloc. Overloading system calls is very evil and error prone */
// Checks to see if any blocks are overwritten
void mem_validate_heap();
2013-07-13 04:23:18 +00:00
#define mem_calloc(nmemb,size,var,file,line) ((mem_calloc)((size) ? (nmemb) : 0, (size), (var), (file), (line)))
2006-03-20 17:12:09 +00:00
2013-07-13 04:23:18 +00:00
#else
2006-03-20 17:12:09 +00:00
2013-07-13 04:23:18 +00:00
#define mem_malloc(size,var,file,line) malloc((size))
#define mem_calloc(nmemb,size,var,file,line) calloc((nmemb), (size))
#define mem_realloc(ptr,size,var,file,line) realloc((ptr),(size))
#define mem_free free
2006-03-20 17:12:09 +00:00
static inline void mem_init(void)
{
}
2006-03-20 17:12:09 +00:00
#endif
2014-07-25 01:36:12 +00:00
template <typename T>
T *MALLOC(std::size_t count, const char *var, const char *file, unsigned line)
{
static_assert(tt::is_pod<T>::value, "MALLOC cannot allocate non-POD");
return reinterpret_cast<T *>(mem_malloc(count, var, file, line));
}
template <typename T>
T *CALLOC(std::size_t count, const char *var, const char *file, unsigned line)
{
static_assert(tt::is_pod<T>::value, "CALLOC cannot allocate non-POD");
return reinterpret_cast<T *>(mem_calloc(count, sizeof(T), var, file, line));
}
#define MALLOC( var, type, count ) (var=MALLOC<type>((count)*sizeof(type),#var, __FILE__,__LINE__ ))
#define CALLOC( var, type, count ) (var=CALLOC<type>((count),#var, __FILE__,__LINE__ ))
2013-07-13 04:23:18 +00:00
#define d_malloc(size) mem_malloc((size),"Unknown", __FILE__,__LINE__ )
#define d_calloc(nmemb,size) mem_calloc((nmemb),(size),"Unknown", __FILE__,__LINE__ )
#define d_realloc(ptr,size) mem_realloc((ptr),(size),"Unknown", __FILE__,__LINE__ )
#define d_free(ptr) (mem_free(ptr), ptr=NULL)
class BaseRAIIdmem
{
BaseRAIIdmem(const BaseRAIIdmem&);
BaseRAIIdmem& operator=(const BaseRAIIdmem&);
protected:
void *p;
BaseRAIIdmem() : p(NULL) {}
BaseRAIIdmem(void *v) : p(v) {}
~BaseRAIIdmem() {
*this = NULL;
}
BaseRAIIdmem& operator=(void *v)
{
if (p != v)
{
#ifdef DEBUG_MEMORY_ALLOCATIONS
if (p) // Avoid bogus warning about freeing NULL
#endif
d_free(p);
p = v;
}
return *this;
}
};
template <typename T>
class RAIIdmem : public BaseRAIIdmem
{
RAIIdmem(const RAIIdmem&);
RAIIdmem& operator=(const RAIIdmem&);
public:
RAIIdmem() {}
RAIIdmem(T *v) : BaseRAIIdmem(v) {}
operator T*() const { return static_cast<T*>(p); }
T *operator->() const { return static_cast<T*>(p); }
RAIIdmem& operator=(T *v)
{
BaseRAIIdmem::operator=(v);
return *this;
}
};
typedef RAIIdmem<unsigned char> RAIIdubyte;
2013-12-08 18:41:36 +00:00
typedef RAIIdmem<char> RAIIdchar;
#endif
#endif // _U_MEM_H