mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 02:42:48 +00:00
khtml: further simplify the arena allocator
also for debug builds an assert has been added to ensure that memory has been freed as many times as it has been allocated Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
b460d91fb0
commit
cd76787921
6 changed files with 12 additions and 514 deletions
|
@ -227,7 +227,6 @@ set(khtmldom_STAT_SRCS
|
|||
set(khtmlmisc_STAT_SRCS
|
||||
${CMAKE_SOURCE_DIR}/khtml/misc/loader.cpp
|
||||
${CMAKE_SOURCE_DIR}/khtml/misc/helper.cpp
|
||||
${CMAKE_SOURCE_DIR}/khtml/misc/arena.cpp
|
||||
${CMAKE_SOURCE_DIR}/khtml/misc/stringit.cpp
|
||||
${CMAKE_SOURCE_DIR}/khtml/misc/paintbuffer.cpp
|
||||
${CMAKE_SOURCE_DIR}/khtml/misc/imagefilter.cpp
|
||||
|
@ -349,7 +348,6 @@ set(khtmlrender_STAT_SRCS
|
|||
${CMAKE_SOURCE_DIR}/khtml/rendering/render_box.cpp
|
||||
${CMAKE_SOURCE_DIR}/khtml/rendering/render_flow.cpp
|
||||
${CMAKE_SOURCE_DIR}/khtml/rendering/render_text.cpp
|
||||
${CMAKE_SOURCE_DIR}/khtml/rendering/render_arena.cpp
|
||||
${CMAKE_SOURCE_DIR}/khtml/rendering/render_layer.cpp
|
||||
${CMAKE_SOURCE_DIR}/khtml/rendering/render_image.cpp
|
||||
${CMAKE_SOURCE_DIR}/khtml/rendering/render_table.cpp
|
||||
|
|
|
@ -29,7 +29,6 @@
|
|||
#include "rendering/render_style.h"
|
||||
#include "misc/htmlnames.h"
|
||||
#include "misc/loader.h"
|
||||
#include "misc/arena.h"
|
||||
#include "misc/paintbuffer.h"
|
||||
|
||||
#include <QtCore/QLinkedList>
|
||||
|
@ -108,10 +107,9 @@ KHTMLGlobal::~KHTMLGlobal()
|
|||
khtml::PaintBuffer::cleanup();
|
||||
khtml::MediaQueryEvaluator::cleanup();
|
||||
khtml::Cache::clear();
|
||||
khtml::ArenaFinish();
|
||||
}
|
||||
else
|
||||
} else {
|
||||
deref();
|
||||
}
|
||||
}
|
||||
|
||||
void KHTMLGlobal::ref()
|
||||
|
|
|
@ -1,333 +0,0 @@
|
|||
/*
|
||||
* Copyright (C) 1998-2000 Netscape Communications Corporation.
|
||||
*
|
||||
* Other contributors:
|
||||
* Nick Blievers <nickb@adacel.com.au>
|
||||
* Jeff Hostetler <jeff@nerdone.com>
|
||||
* Tom Rini <trini@kernel.crashing.org>
|
||||
* Raffaele Sena <raff@netwinder.org>
|
||||
*
|
||||
* 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,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* 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 Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*
|
||||
* Alternatively, the contents of this file may be used under the terms
|
||||
* of either the Mozilla Public License Version 1.1, found at
|
||||
* http://www.mozilla.org/MPL/ (the "MPL") or the GNU General Public
|
||||
* License Version 2.0, found at http://www.fsf.org/copyleft/gpl.html
|
||||
* (the "GPL"), in which case the provisions of the MPL or the GPL are
|
||||
* applicable instead of those above. If you wish to allow use of your
|
||||
* version of this file only under the terms of one of those two
|
||||
* licenses (the MPL or the GPL) and not to allow others to use your
|
||||
* version of this file under the LGPL, indicate your decision by
|
||||
* deletingthe provisions above and replace them with the notice and
|
||||
* other provisions required by the MPL or the GPL, as the case may be.
|
||||
* If you do not delete the provisions above, a recipient may use your
|
||||
* version of this file under any of the LGPL, the MPL or the GPL.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Lifetime-based fast allocation, inspired by much prior art, including
|
||||
* "Fast Allocation and Deallocation of Memory Based on Object Lifetimes"
|
||||
* David R. Hanson, Software -- Practice and Experience, Vol. 20(1).
|
||||
*/
|
||||
|
||||
#include "arena.h"
|
||||
|
||||
#include <config.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <kglobal.h>
|
||||
|
||||
#ifdef HAVE_GETPAGESIZE
|
||||
#include <unistd.h>
|
||||
#define POOL_SIZE qMax(8192u, 2*( unsigned ) getpagesize())
|
||||
#else
|
||||
#define POOL_SIZE 8192
|
||||
#endif
|
||||
|
||||
//#define DEBUG_ARENA_MALLOC
|
||||
#ifdef DEBUG_ARENA_MALLOC
|
||||
#include <assert.h>
|
||||
#include <stdio.h>
|
||||
#endif
|
||||
|
||||
namespace khtml {
|
||||
|
||||
#ifdef DEBUG_ARENA_MALLOC
|
||||
static int i = 0;
|
||||
#endif
|
||||
|
||||
#define FREELIST_MAX 50
|
||||
#define LARGE_ALLOCATION_CEIL(pool) (pool)->arenasize * 256
|
||||
#define MAX_DISCRETE_ALLOCATION(pool) (pool)->arenasize * 64
|
||||
static Arena *arena_freelist = 0;
|
||||
static int freelist_count = 0;
|
||||
|
||||
#define ARENA_DEFAULT_ALIGN sizeof(double)
|
||||
#define BIT(n) ((unsigned int)1 << (n))
|
||||
#define BITMASK(n) (BIT(n) - 1)
|
||||
#define CEILING_LOG2(_log2,_n) \
|
||||
unsigned int j_ = (unsigned int)(_n); \
|
||||
(_log2) = 0; \
|
||||
if ((j_) & ((j_)-1)) \
|
||||
(_log2) += 1; \
|
||||
if ((j_) >> 16) \
|
||||
(_log2) += 16, (j_) >>= 16; \
|
||||
if ((j_) >> 8) \
|
||||
(_log2) += 8, (j_) >>= 8; \
|
||||
if ((j_) >> 4) \
|
||||
(_log2) += 4, (j_) >>= 4; \
|
||||
if ((j_) >> 2) \
|
||||
(_log2) += 2, (j_) >>= 2; \
|
||||
if ((j_) >> 1) \
|
||||
(_log2) += 1;
|
||||
|
||||
int CeilingLog2(unsigned int i) {
|
||||
int log2;
|
||||
CEILING_LOG2(log2,i);
|
||||
return log2;
|
||||
}
|
||||
|
||||
void InitArenaPool(ArenaPool *pool, const char* /*name*/,
|
||||
unsigned int /*size*/, unsigned int align)
|
||||
{
|
||||
unsigned int size = POOL_SIZE;
|
||||
if (align == 0)
|
||||
align = ARENA_DEFAULT_ALIGN;
|
||||
pool->mask = BITMASK(CeilingLog2(align));
|
||||
pool->first.next = NULL;
|
||||
pool->first.base = pool->first.avail = pool->first.limit =
|
||||
(uword)ARENA_ALIGN(pool, &pool->first + 1);
|
||||
pool->current = &pool->first;
|
||||
pool->arenasize = size;
|
||||
pool->largealloc = LARGE_ALLOCATION_CEIL(pool);
|
||||
pool->cumul = freelist_count*size;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
** ArenaAllocate() -- allocate space from an arena pool
|
||||
**
|
||||
** Description: ArenaAllocate() allocates space from an arena
|
||||
** pool.
|
||||
**
|
||||
** First try to satisfy the request from arenas starting at
|
||||
** pool->current.
|
||||
**
|
||||
** If there is not enough space in the arena pool->current, try
|
||||
** to claim an arena, on a first fit basis, from the global
|
||||
** freelist (arena_freelist).
|
||||
**
|
||||
** If no arena in arena_freelist is suitable, then try to
|
||||
** allocate a new arena from the heap.
|
||||
**
|
||||
** Returns: pointer to allocated space or NULL
|
||||
**
|
||||
*/
|
||||
void* ArenaAllocate(ArenaPool *pool, unsigned int nb)
|
||||
{
|
||||
Arena *a;
|
||||
char *rp; /* returned pointer */
|
||||
|
||||
#ifdef DEBUG_ARENA_MALLOC
|
||||
assert((nb & pool->mask) == 0);
|
||||
#endif
|
||||
|
||||
nb = (uword)ARENA_ALIGN(pool, nb); /* force alignment */
|
||||
|
||||
/* attempt to allocate from arenas at pool->current */
|
||||
{
|
||||
a = pool->current;
|
||||
do {
|
||||
if ( a->avail +nb <= a->limit ) {
|
||||
pool->current = a;
|
||||
rp = (char *)a->avail;
|
||||
a->avail += nb;
|
||||
return rp;
|
||||
}
|
||||
} while( NULL != (a = a->next) );
|
||||
}
|
||||
|
||||
/* attempt to allocate from arena_freelist */
|
||||
{
|
||||
Arena *p; /* previous pointer, for unlinking from freelist */
|
||||
|
||||
for ( a = p = arena_freelist; a != NULL ; p = a, a = a->next ) {
|
||||
if ( a->base +nb <= a->limit ) {
|
||||
if ( p == arena_freelist )
|
||||
arena_freelist = a->next;
|
||||
else
|
||||
p->next = a->next;
|
||||
a->avail = a->base;
|
||||
rp = (char *)a->avail;
|
||||
a->avail += nb;
|
||||
/* the newly allocated arena is linked after pool->current
|
||||
* and becomes pool->current */
|
||||
a->next = pool->current->next;
|
||||
pool->current->next = a;
|
||||
pool->current = a;
|
||||
if ( 0 == pool->first.next )
|
||||
pool->first.next = a;
|
||||
freelist_count--;
|
||||
return(rp);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* attempt to allocate from the heap */
|
||||
{
|
||||
unsigned int sz;
|
||||
#ifdef HAVE_MMAP
|
||||
if (pool->cumul > pool->largealloc) {
|
||||
// High memory pressure. Switch to a fractional allocation strategy
|
||||
// so that malloc gets a chance to successfully trim us down when it's over.
|
||||
sz = qMin(pool->cumul/12, MAX_DISCRETE_ALLOCATION(pool));
|
||||
#ifdef DEBUG_ARENA_MALLOC
|
||||
printf("allocating %d bytes (fractional strategy)\n", sz);
|
||||
#endif
|
||||
} else
|
||||
#endif
|
||||
sz = pool->arenasize > nb ? pool->arenasize : nb;
|
||||
sz += sizeof *a + pool->mask; /* header and alignment slop */
|
||||
pool->cumul += sz;
|
||||
#ifdef DEBUG_ARENA_MALLOC
|
||||
i++;
|
||||
printf("Malloc: %d\n", i);
|
||||
#endif
|
||||
a = (Arena*)malloc(sz);
|
||||
if (a) {
|
||||
a->limit = (uword)a + sz;
|
||||
a->base = a->avail = (uword)ARENA_ALIGN(pool, a + 1);
|
||||
rp = (char *)a->avail;
|
||||
a->avail += nb;
|
||||
|
||||
/* the newly allocated arena is linked after pool->current
|
||||
* and becomes pool->current */
|
||||
a->next = pool->current->next;
|
||||
pool->current->next = a;
|
||||
pool->current = a;
|
||||
if ( !pool->first.next )
|
||||
pool->first.next = a;
|
||||
return(rp);
|
||||
}
|
||||
}
|
||||
|
||||
/* we got to here, and there's no memory to allocate */
|
||||
return(0);
|
||||
} /* --- end ArenaAllocate() --- */
|
||||
|
||||
/*
|
||||
* Free tail arenas linked after head, which may not be the true list head.
|
||||
* Reset pool->current to point to head in case it pointed at a tail arena.
|
||||
*/
|
||||
static void FreeArenaList(ArenaPool *pool, Arena *head, bool reallyFree)
|
||||
{
|
||||
Arena **ap, *a;
|
||||
|
||||
ap = &head->next;
|
||||
a = *ap;
|
||||
if (!a)
|
||||
return;
|
||||
|
||||
#ifdef DEBUG_ARENA_MALLOC
|
||||
printf("****** Freeing arena pool. Total allocated memory: %d\n", pool->cumul);
|
||||
|
||||
do {
|
||||
assert(a->base <= a->avail && a->avail <= a->limit);
|
||||
a->avail = a->base;
|
||||
CLEAR_UNUSED(a);
|
||||
} while ((a = a->next) != 0);
|
||||
a = *ap;
|
||||
#endif
|
||||
|
||||
if (freelist_count >= FREELIST_MAX)
|
||||
reallyFree = true;
|
||||
|
||||
if (reallyFree) {
|
||||
do {
|
||||
*ap = a->next;
|
||||
CLEAR_ARENA(a);
|
||||
#ifdef DEBUG_ARENA_MALLOC
|
||||
if (a) {
|
||||
i--;
|
||||
printf("Free: %d\n", i);
|
||||
}
|
||||
#endif
|
||||
free(a); a = 0;
|
||||
} while ((a = *ap) != 0);
|
||||
} else {
|
||||
/* Insert as much of the arena chain as we can hold at the front of the freelist. */
|
||||
do {
|
||||
ap = &(*ap)->next;
|
||||
freelist_count++;
|
||||
} while (*ap && freelist_count < FREELIST_MAX);
|
||||
|
||||
/* Get rid of excess */
|
||||
if (*ap) {
|
||||
Arena *xa, *n;
|
||||
for (xa = *ap; xa; xa = n) {
|
||||
n = xa->next;
|
||||
#ifdef DEBUG_ARENA_MALLOC
|
||||
i--;
|
||||
printf("Free: %d\n", i);
|
||||
#endif
|
||||
CLEAR_ARENA(xa);
|
||||
free(xa);
|
||||
}
|
||||
}
|
||||
*ap = arena_freelist;
|
||||
arena_freelist = a;
|
||||
head->next = 0;
|
||||
}
|
||||
pool->current = head;
|
||||
}
|
||||
|
||||
void ArenaRelease(ArenaPool *pool, char *mark)
|
||||
{
|
||||
Arena *a;
|
||||
|
||||
for (a = pool->first.next; a; a = a->next) {
|
||||
if (UPTRDIFF(mark, a->base) < UPTRDIFF(a->avail, a->base)) {
|
||||
a->avail = (uword)ARENA_ALIGN(pool, mark);
|
||||
FreeArenaList(pool, a, false);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void FreeArenaPool(ArenaPool *pool)
|
||||
{
|
||||
FreeArenaList(pool, &pool->first, false);
|
||||
}
|
||||
|
||||
void FinishArenaPool(ArenaPool *pool)
|
||||
{
|
||||
FreeArenaList(pool, &pool->first, true);
|
||||
}
|
||||
|
||||
void ArenaFinish()
|
||||
{
|
||||
Arena *a, *next;
|
||||
#ifdef DEBUG_ARENA_MALLOC
|
||||
printf("releasing global Arena freelist\n");
|
||||
#endif
|
||||
for (a = arena_freelist; a; a = next) {
|
||||
next = a->next;
|
||||
free(a); a = 0;
|
||||
}
|
||||
freelist_count = 0;
|
||||
arena_freelist = NULL;
|
||||
}
|
||||
|
||||
} // namespace
|
|
@ -1,110 +0,0 @@
|
|||
/*
|
||||
* Copyright (C) 1998-2000 Netscape Communications Corporation.
|
||||
*
|
||||
* Other contributors:
|
||||
* Nick Blievers <nickb@adacel.com.au>
|
||||
* Jeff Hostetler <jeff@nerdone.com>
|
||||
* Tom Rini <trini@kernel.crashing.org>
|
||||
* Raffaele Sena <raff@netwinder.org>
|
||||
*
|
||||
* 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,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* 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 Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*
|
||||
* Alternatively, the contents of this file may be used under the terms
|
||||
* of either the Mozilla Public License Version 1.1, found at
|
||||
* http://www.mozilla.org/MPL/ (the "MPL") or the GNU General Public
|
||||
* License Version 2.0, found at http://www.fsf.org/copyleft/gpl.html
|
||||
* (the "GPL"), in which case the provisions of the MPL or the GPL are
|
||||
* applicable instead of those above. If you wish to allow use of your
|
||||
* version of this file only under the terms of one of those two
|
||||
* licenses (the MPL or the GPL) and not to allow others to use your
|
||||
* version of this file under the LGPL, indicate your decision by
|
||||
* deletingthe provisions above and replace them with the notice and
|
||||
* other provisions required by the MPL or the GPL, as the case may be.
|
||||
* If you do not delete the provisions above, a recipient may use your
|
||||
* version of this file under any of the LGPL, the MPL or the GPL.
|
||||
*/
|
||||
|
||||
#ifndef ARENA_H
|
||||
#define ARENA_H
|
||||
|
||||
#include <config-khtml.h>
|
||||
#include <QtGlobal>
|
||||
|
||||
#define ARENA_ALIGN_MASK 3
|
||||
|
||||
typedef quintptr uword;
|
||||
|
||||
namespace khtml {
|
||||
|
||||
struct Arena {
|
||||
Arena* next; // next arena
|
||||
uword base; // aligned base address
|
||||
uword limit; // end of arena (1+last byte)
|
||||
uword avail; // points to next available byte in arena
|
||||
};
|
||||
|
||||
struct ArenaPool {
|
||||
Arena first; // first arena in pool list.
|
||||
Arena* current; // current arena.
|
||||
unsigned int arenasize;
|
||||
unsigned int largealloc; // threshold for fractional allocation strategy
|
||||
unsigned int cumul; // total bytes in pool.
|
||||
uword mask; // Mask (power-of-2 - 1)
|
||||
};
|
||||
|
||||
void InitArenaPool(ArenaPool *pool, const char *name,
|
||||
unsigned int size, unsigned int align);
|
||||
void FinishArenaPool(ArenaPool *pool);
|
||||
void FreeArenaPool(ArenaPool *pool);
|
||||
void* ArenaAllocate(ArenaPool *pool, unsigned int nb);
|
||||
void ArenaFinish(void);
|
||||
|
||||
#define ARENA_ALIGN(pool, n) (((uword)(n) + ARENA_ALIGN_MASK) & ~ARENA_ALIGN_MASK)
|
||||
#define INIT_ARENA_POOL(pool, name, size) \
|
||||
InitArenaPool(pool, name, size, ARENA_ALIGN_MASK + 1)
|
||||
|
||||
#define ARENA_ALLOCATE(p, pool, nb) \
|
||||
Arena *_a = (pool)->current; \
|
||||
unsigned int _nb = ARENA_ALIGN(pool, nb); \
|
||||
uword _p = _a->avail; \
|
||||
uword _q = _p + _nb; \
|
||||
if (_q > _a->limit) \
|
||||
_p = (uword)ArenaAllocate(pool, _nb); \
|
||||
else { \
|
||||
VALGRIND_MEMPOOL_ALLOC(_a->base, _p, _nb); \
|
||||
_a->avail = _q; \
|
||||
} \
|
||||
p = (void *)_p;
|
||||
|
||||
|
||||
#define ARENA_MARK(pool) ((void *) (pool)->current->avail)
|
||||
#define UPTRDIFF(p,q) ((uword)(p) - (uword)(q))
|
||||
|
||||
#ifdef DEBUG
|
||||
#define FREE_PATTERN 0xDA
|
||||
#define CLEAR_UNUSED(a) (assert((a)->avail <= (a)->limit), \
|
||||
memset((void*)(a)->avail, FREE_PATTERN, \
|
||||
(a)->limit - (a)->avail))
|
||||
#define CLEAR_ARENA(a) memset((void*)(a), FREE_PATTERN, \
|
||||
(a)->limit - (uword)(a))
|
||||
#else
|
||||
#define CLEAR_UNUSED(a)
|
||||
#define CLEAR_ARENA(a)
|
||||
#endif
|
||||
|
||||
|
||||
} // namespace
|
||||
|
||||
#endif
|
|
@ -1,57 +0,0 @@
|
|||
/*
|
||||
* Copyright (C) 2002 Apple Computer, Inc.
|
||||
* Copyright (C) 2003 Dirk Mueller (mueller@kde.org)
|
||||
*
|
||||
* Portions are Copyright (C) 1998 Netscape Communications Corporation.
|
||||
*
|
||||
* 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,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* 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 Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*
|
||||
* Alternatively, the contents of this file may be used under the terms
|
||||
* of either the Mozilla Public License Version 1.1, found at
|
||||
* http://www.mozilla.org/MPL/ (the "MPL") or the GNU General Public
|
||||
* License Version 2.0, found at http://www.fsf.org/copyleft/gpl.html
|
||||
* (the "GPL"), in which case the provisions of the MPL or the GPL are
|
||||
* applicable instead of those above. If you wish to allow use of your
|
||||
* version of this file only under the terms of one of those two
|
||||
* licenses (the MPL or the GPL) and not to allow others to use your
|
||||
* version of this file under the LGPL, indicate your decision by
|
||||
* deletingthe provisions above and replace them with the notice and
|
||||
* other provisions required by the MPL or the GPL, as the case may be.
|
||||
* If you do not delete the provisions above, a recipient may use your
|
||||
* version of this file under any of the LGPL, the MPL or the GPL.
|
||||
*/
|
||||
|
||||
#include "render_arena.h"
|
||||
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
||||
|
||||
using namespace khtml;
|
||||
|
||||
namespace khtml {
|
||||
|
||||
RenderArena::RenderArena(unsigned int arenaSize)
|
||||
{
|
||||
// Initialize the arena pool
|
||||
INIT_ARENA_POOL(&m_pool, "RenderArena", arenaSize);
|
||||
}
|
||||
|
||||
RenderArena::~RenderArena()
|
||||
{
|
||||
// Free the arena in the pool and finish using it
|
||||
FreeArenaPool(&m_pool);
|
||||
}
|
||||
|
||||
}
|
|
@ -36,7 +36,6 @@
|
|||
#ifndef RENDERARENA_H
|
||||
#define RENDERARENA_H
|
||||
|
||||
#include "misc/arena.h"
|
||||
#include "misc/shared.h"
|
||||
#include "wtf/AlwaysInline.h"
|
||||
|
||||
|
@ -46,11 +45,10 @@ namespace khtml {
|
|||
|
||||
class RenderArena: public Shared<RenderArena> {
|
||||
public:
|
||||
RenderArena(unsigned int arenaSize = 4096);
|
||||
~RenderArena();
|
||||
|
||||
// Memory management functions
|
||||
#ifdef NDEBUG
|
||||
RenderArena() { };
|
||||
~RenderArena() { };
|
||||
|
||||
ALWAYS_INLINE void* allocate(size_t size) {
|
||||
return ::malloc(size);
|
||||
}
|
||||
|
@ -58,18 +56,22 @@ public:
|
|||
::free(ptr);
|
||||
}
|
||||
#else
|
||||
RenderArena() { m_alloccount = 0; };
|
||||
// if you get assert here the application is leaking memory
|
||||
~RenderArena() { assert(m_alloccount == 0); };
|
||||
|
||||
NEVER_INLINE void* allocate(size_t size) {
|
||||
m_alloccount++;
|
||||
return ::malloc(size);
|
||||
}
|
||||
NEVER_INLINE void deallocate(void* ptr) {
|
||||
m_alloccount--;
|
||||
assert(this);
|
||||
::free(ptr);
|
||||
}
|
||||
#endif
|
||||
|
||||
private:
|
||||
// Underlying arena pool
|
||||
ArenaPool m_pool;
|
||||
int m_alloccount;
|
||||
};
|
||||
|
||||
} // namespace
|
||||
|
|
Loading…
Add table
Reference in a new issue