2011-02-25 11:47:18 +00:00
|
|
|
/*
|
2008-04-16 22:40:48 +00:00
|
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
2006-02-05 18:56:30 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
2008-04-16 22:40:48 +00:00
|
|
|
* of the License, or (at your option) any later version.
|
2006-02-05 18:56:30 +00:00
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software Foundation,
|
2010-02-12 13:34:04 +00:00
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2006-02-05 18:56:30 +00:00
|
|
|
*
|
|
|
|
* Contributor(s): Peter Schlaile <peter@schlaile.de> 2005
|
|
|
|
*
|
2008-04-16 22:40:48 +00:00
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
2006-02-05 18:56:30 +00:00
|
|
|
*/
|
|
|
|
|
2011-02-25 11:47:18 +00:00
|
|
|
/** \file memutil/MEM_Allocator.h
|
|
|
|
* \ingroup memutil
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2012-02-17 18:59:41 +00:00
|
|
|
#ifndef __MEM_ALLOCATOR_H__
|
|
|
|
#define __MEM_ALLOCATOR_H__
|
2006-02-05 18:56:30 +00:00
|
|
|
|
2011-03-30 16:14:54 +00:00
|
|
|
#include <stddef.h>
|
2006-02-05 18:56:30 +00:00
|
|
|
#include "guardedalloc/MEM_guardedalloc.h"
|
|
|
|
|
|
|
|
template<typename _Tp>
|
|
|
|
struct MEM_Allocator
|
|
|
|
{
|
|
|
|
typedef size_t size_type;
|
|
|
|
typedef ptrdiff_t difference_type;
|
|
|
|
typedef _Tp* pointer;
|
|
|
|
typedef const _Tp* const_pointer;
|
|
|
|
typedef _Tp& reference;
|
|
|
|
typedef const _Tp& const_reference;
|
|
|
|
typedef _Tp value_type;
|
|
|
|
|
|
|
|
template<typename _Tp1>
|
|
|
|
struct rebind {
|
|
|
|
typedef MEM_Allocator<_Tp1> other;
|
|
|
|
};
|
|
|
|
|
|
|
|
MEM_Allocator() throw() {}
|
2006-03-04 16:23:15 +00:00
|
|
|
MEM_Allocator(const MEM_Allocator&) throw() {}
|
2006-02-05 18:56:30 +00:00
|
|
|
|
|
|
|
template<typename _Tp1>
|
2006-03-04 16:23:15 +00:00
|
|
|
MEM_Allocator(const MEM_Allocator<_Tp1>) throw() { }
|
2006-02-05 18:56:30 +00:00
|
|
|
|
|
|
|
~MEM_Allocator() throw() {}
|
|
|
|
|
|
|
|
pointer address(reference __x) const { return &__x; }
|
|
|
|
|
|
|
|
const_pointer address(const_reference __x) const { return &__x; }
|
|
|
|
|
|
|
|
// NB: __n is permitted to be 0. The C++ standard says nothing
|
|
|
|
// about what the return value is when __n == 0.
|
|
|
|
_Tp* allocate(size_type __n, const void* = 0) {
|
2013-03-08 06:32:00 +00:00
|
|
|
_Tp* __ret = NULL;
|
2006-02-05 18:56:30 +00:00
|
|
|
if (__n)
|
|
|
|
__ret = static_cast<_Tp*>(
|
|
|
|
MEM_mallocN(__n * sizeof(_Tp),
|
|
|
|
"STL MEM_Allocator"));
|
|
|
|
return __ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
// __p is not permitted to be a null pointer.
|
2012-06-04 20:11:09 +00:00
|
|
|
void deallocate(pointer __p, size_type) {
|
2006-02-05 18:56:30 +00:00
|
|
|
MEM_freeN(__p);
|
|
|
|
}
|
|
|
|
|
|
|
|
size_type max_size() const throw() {
|
|
|
|
return size_t(-1) / sizeof(_Tp);
|
|
|
|
}
|
|
|
|
|
|
|
|
void construct(pointer __p, const _Tp& __val) {
|
|
|
|
new(__p) _Tp(__val);
|
|
|
|
}
|
|
|
|
|
|
|
|
void destroy(pointer __p) {
|
|
|
|
__p->~_Tp();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-02-17 18:59:41 +00:00
|
|
|
#endif // __MEM_ALLOCATOR_H__
|