blender/intern/cycles/util/util_memarena.cpp
Brecht Van Lommel e9b967d05b Cycles: remove deprecated strict aliasing flag for opencl, fix missing update
modifying object layer in properties editor, and add memarena utility.
2011-09-19 11:57:31 +00:00

62 lines
1.4 KiB
C++

/*
* Copyright 2011, Blender Foundation.
*
* 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
* of the License, or (at your option) any later version.
*
* 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,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "util_foreach.h"
#include "util_math.h"
#include "util_memarena.h"
CCL_NAMESPACE_BEGIN
MemArena::MemArena(bool use_calloc_, size_t buffer_size_)
{
use_calloc = use_calloc_;
buffer_size = buffer_size_;
last_left = 0;
last_buffer = NULL;
}
MemArena::~MemArena()
{
foreach(uint8_t *buffer, buffers)
delete [] buffer;
}
void *MemArena::alloc(size_t size)
{
if(size > last_left) {
last_left = (size > buffer_size)? size: buffer_size;
last_buffer = new uint8_t[last_left];
if(use_calloc)
memset(last_buffer, 0, last_left);
buffers.push_back(last_buffer);
}
uint8_t *mem = last_buffer;
last_buffer += size;
last_left -= size;
return (void*)mem;
}
CCL_NAMESPACE_END