2006-03-31 12:32:02 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
2005-06-14 17:06:59 +02:00
|
|
|
*
|
2006-03-31 12:32:02 +02:00
|
|
|
* Copyright (C) 2006 Artem Pavlenko
|
2005-06-14 17:06:59 +02:00
|
|
|
*
|
2006-03-31 12:32:02 +02:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
2005-06-14 17:06:59 +02:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2006-03-31 12:32:02 +02:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
2005-06-14 17:06:59 +02:00
|
|
|
*
|
2006-03-31 12:32:02 +02:00
|
|
|
*****************************************************************************/
|
2005-06-14 17:06:59 +02:00
|
|
|
|
|
|
|
//$Id: memory.cpp 17 2005-03-08 23:58:43Z pavlenko $
|
|
|
|
|
2006-10-04 13:22:18 +02:00
|
|
|
#include <mapnik/memory.hpp>
|
2005-06-14 17:06:59 +02:00
|
|
|
|
|
|
|
namespace mapnik
|
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
void* Object::operator new(size_t size)
|
|
|
|
{
|
|
|
|
void* block=::operator new (size);
|
|
|
|
return (char*) block;
|
|
|
|
}
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
void* Object::operator new(size_t size,MemoryManager* manager)
|
|
|
|
{
|
|
|
|
assert(manager);
|
|
|
|
size_t headerSize=MemoryUtils::alignPointerSize(sizeof(MemoryManager*));
|
|
|
|
void* const block=manager->allocate(headerSize+size);
|
|
|
|
*(MemoryManager**)block=manager;
|
|
|
|
return (char*)block+headerSize;
|
|
|
|
}
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
void Object::operator delete(void* p)
|
|
|
|
{
|
|
|
|
::operator delete(p);
|
|
|
|
}
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
void Object::operator delete(void* , MemoryManager* )
|
|
|
|
{
|
|
|
|
//std::clog <<"operator delete with Manager "<<std::hex<<p<<" "<<manager<<std::endl;
|
|
|
|
}
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
inline size_t MemoryUtils::alignPointerSize(size_t ptrSize)
|
|
|
|
{
|
|
|
|
size_t alignment=(sizeof(void*) >= sizeof(double)) ? sizeof(void*) : sizeof(double);
|
|
|
|
size_t current=ptrSize % alignment;
|
|
|
|
return (current==0)?ptrSize:(ptrSize+alignment-current);
|
|
|
|
}
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|