2009-08-18 03:21:06 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
* vim: set ts=2 sw=2 et tw=78:
|
2012-05-21 11:12:37 +00:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2009-08-18 03:21:06 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* arena allocation for the frame tree and closely-related objects */
|
|
|
|
|
|
|
|
#include "nsPresArena.h"
|
|
|
|
#include "nsCRT.h"
|
|
|
|
#include "nsDebug.h"
|
2009-09-15 22:00:04 +00:00
|
|
|
#include "nsTArray.h"
|
|
|
|
#include "nsTHashtable.h"
|
2009-08-18 03:21:06 +00:00
|
|
|
#include "prmem.h"
|
2009-11-17 19:17:20 +00:00
|
|
|
#include "prinit.h"
|
|
|
|
#include "prlog.h"
|
2012-06-06 17:29:16 +00:00
|
|
|
#include "nsArenaMemoryStats.h"
|
2009-12-01 22:48:23 +00:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsServiceManagerUtils.h"
|
|
|
|
#include "nsPrintfCString.h"
|
2012-08-30 01:27:01 +00:00
|
|
|
|
|
|
|
#ifdef MOZ_CRASHREPORTER
|
|
|
|
#include "nsICrashReporter.h"
|
2009-12-01 22:48:23 +00:00
|
|
|
#endif
|
|
|
|
|
2012-04-12 00:17:44 +00:00
|
|
|
#include "mozilla/StandardInteger.h"
|
|
|
|
|
2009-08-18 03:21:06 +00:00
|
|
|
// Even on 32-bit systems, we allocate objects from the frame arena
|
2012-04-12 00:17:44 +00:00
|
|
|
// that require 8-byte alignment. The cast to uintptr_t is needed
|
2009-08-18 03:21:06 +00:00
|
|
|
// because plarena isn't as careful about mask construction as it
|
|
|
|
// ought to be.
|
|
|
|
#define ALIGN_SHIFT 3
|
2012-04-12 00:17:44 +00:00
|
|
|
#define PL_ARENA_CONST_ALIGN_MASK ((uintptr_t(1) << ALIGN_SHIFT) - 1)
|
2009-08-18 03:21:06 +00:00
|
|
|
#include "plarena.h"
|
|
|
|
|
2009-11-17 19:17:20 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
# include <windows.h>
|
2011-02-15 22:10:16 +00:00
|
|
|
#elif !defined(__OS2__)
|
2009-11-17 19:17:20 +00:00
|
|
|
# include <unistd.h>
|
|
|
|
# include <sys/mman.h>
|
|
|
|
# ifndef MAP_ANON
|
|
|
|
# ifdef MAP_ANONYMOUS
|
|
|
|
# define MAP_ANON MAP_ANONYMOUS
|
|
|
|
# else
|
|
|
|
# error "Don't know how to get anonymous memory"
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2009-09-15 00:26:08 +00:00
|
|
|
// Size to use for PLArena block allocations.
|
2011-08-22 06:34:11 +00:00
|
|
|
static const size_t ARENA_PAGE_SIZE = 8192;
|
2009-09-14 21:29:56 +00:00
|
|
|
|
2009-11-17 19:17:20 +00:00
|
|
|
// Freed memory is filled with a poison value, which we arrange to
|
|
|
|
// form a pointer either to an always-unmapped region of the address
|
|
|
|
// space, or to a page that has been reserved and rendered
|
|
|
|
// inaccessible via OS primitives. See tests/TestPoisonArea.cpp for
|
|
|
|
// extensive discussion of the requirements for this page. The code
|
|
|
|
// from here to 'class FreeList' needs to be kept in sync with that
|
|
|
|
// file.
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
static void *
|
2012-04-12 00:17:44 +00:00
|
|
|
ReserveRegion(uintptr_t region, uintptr_t size)
|
2009-11-17 19:17:20 +00:00
|
|
|
{
|
|
|
|
return VirtualAlloc((void *)region, size, MEM_RESERVE, PAGE_NOACCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-04-12 00:17:44 +00:00
|
|
|
ReleaseRegion(void *region, uintptr_t size)
|
2009-11-17 19:17:20 +00:00
|
|
|
{
|
|
|
|
VirtualFree(region, size, MEM_RELEASE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2012-04-12 00:17:44 +00:00
|
|
|
ProbeRegion(uintptr_t region, uintptr_t size)
|
2009-11-17 19:17:20 +00:00
|
|
|
{
|
|
|
|
SYSTEM_INFO sinfo;
|
|
|
|
GetSystemInfo(&sinfo);
|
2012-04-12 00:17:44 +00:00
|
|
|
if (region >= (uintptr_t)sinfo.lpMaximumApplicationAddress &&
|
|
|
|
region + size >= (uintptr_t)sinfo.lpMaximumApplicationAddress) {
|
2009-11-17 19:17:20 +00:00
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-12 00:17:44 +00:00
|
|
|
static uintptr_t
|
2009-11-17 19:17:20 +00:00
|
|
|
GetDesiredRegionSize()
|
|
|
|
{
|
|
|
|
SYSTEM_INFO sinfo;
|
|
|
|
GetSystemInfo(&sinfo);
|
|
|
|
return sinfo.dwAllocationGranularity;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define RESERVE_FAILED 0
|
|
|
|
|
2011-02-15 22:10:16 +00:00
|
|
|
#elif defined(__OS2__)
|
|
|
|
static void *
|
2012-04-12 00:17:44 +00:00
|
|
|
ReserveRegion(uintptr_t region, uintptr_t size)
|
2011-02-15 22:10:16 +00:00
|
|
|
{
|
|
|
|
// OS/2 doesn't support allocation at an arbitrary address,
|
|
|
|
// so return an address that is known to be invalid.
|
|
|
|
return (void*)0xFFFD0000;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-04-12 00:17:44 +00:00
|
|
|
ReleaseRegion(void *region, uintptr_t size)
|
2011-02-15 22:10:16 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2012-04-12 00:17:44 +00:00
|
|
|
ProbeRegion(uintptr_t region, uintptr_t size)
|
2011-02-15 22:10:16 +00:00
|
|
|
{
|
|
|
|
// There's no reliable way to probe an address in the system
|
|
|
|
// arena other than by touching it and seeing if a trap occurs.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-04-12 00:17:44 +00:00
|
|
|
static uintptr_t
|
2011-02-15 22:10:16 +00:00
|
|
|
GetDesiredRegionSize()
|
|
|
|
{
|
|
|
|
// Page size is fixed at 4k.
|
|
|
|
return 0x1000;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define RESERVE_FAILED 0
|
|
|
|
|
2009-11-17 19:17:20 +00:00
|
|
|
#else // Unix
|
|
|
|
|
|
|
|
static void *
|
2012-04-12 00:17:44 +00:00
|
|
|
ReserveRegion(uintptr_t region, uintptr_t size)
|
2009-11-17 19:17:20 +00:00
|
|
|
{
|
2009-11-20 06:11:42 +00:00
|
|
|
return mmap((caddr_t)region, size, PROT_NONE, MAP_PRIVATE|MAP_ANON, -1, 0);
|
2009-11-17 19:17:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-04-12 00:17:44 +00:00
|
|
|
ReleaseRegion(void *region, uintptr_t size)
|
2009-11-17 19:17:20 +00:00
|
|
|
{
|
2009-11-20 06:11:42 +00:00
|
|
|
munmap((caddr_t)region, size);
|
2009-11-17 19:17:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2012-04-12 00:17:44 +00:00
|
|
|
ProbeRegion(uintptr_t region, uintptr_t size)
|
2009-11-17 19:17:20 +00:00
|
|
|
{
|
2009-11-20 06:11:42 +00:00
|
|
|
if (madvise((caddr_t)region, size, MADV_NORMAL)) {
|
2009-11-17 19:17:20 +00:00
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-12 00:17:44 +00:00
|
|
|
static uintptr_t
|
2009-11-17 19:17:20 +00:00
|
|
|
GetDesiredRegionSize()
|
|
|
|
{
|
|
|
|
return sysconf(_SC_PAGESIZE);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define RESERVE_FAILED MAP_FAILED
|
|
|
|
|
|
|
|
#endif // system dependencies
|
|
|
|
|
2012-04-12 00:17:44 +00:00
|
|
|
PR_STATIC_ASSERT(sizeof(uintptr_t) == 4 || sizeof(uintptr_t) == 8);
|
|
|
|
PR_STATIC_ASSERT(sizeof(uintptr_t) == sizeof(void *));
|
2009-11-17 19:17:20 +00:00
|
|
|
|
2012-04-12 00:17:44 +00:00
|
|
|
static uintptr_t
|
|
|
|
ReservePoisonArea(uintptr_t rgnsize)
|
2009-11-17 19:17:20 +00:00
|
|
|
{
|
2012-04-12 00:17:44 +00:00
|
|
|
if (sizeof(uintptr_t) == 8) {
|
2009-11-17 19:17:20 +00:00
|
|
|
// Use the hardware-inaccessible region.
|
|
|
|
// We have to avoid 64-bit constants and shifts by 32 bits, since this
|
|
|
|
// code is compiled in 32-bit mode, although it is never executed there.
|
2009-12-01 22:48:23 +00:00
|
|
|
return
|
2012-04-12 00:17:44 +00:00
|
|
|
(((uintptr_t(0x7FFFFFFFu) << 31) << 1 | uintptr_t(0xF0DEAFFFu))
|
2009-12-01 22:48:23 +00:00
|
|
|
& ~(rgnsize-1));
|
2009-11-17 19:17:20 +00:00
|
|
|
|
|
|
|
} else {
|
2009-11-30 16:51:07 +00:00
|
|
|
// First see if we can allocate the preferred poison address from the OS.
|
2012-04-12 00:17:44 +00:00
|
|
|
uintptr_t candidate = (0xF0DEAFFF & ~(rgnsize-1));
|
2009-11-30 16:51:07 +00:00
|
|
|
void *result = ReserveRegion(candidate, rgnsize);
|
|
|
|
if (result == (void *)candidate) {
|
|
|
|
// success - inaccessible page allocated
|
2009-12-01 22:48:23 +00:00
|
|
|
return candidate;
|
2009-11-30 16:51:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// That didn't work, so see if the preferred address is within a range
|
|
|
|
// of permanently inacessible memory.
|
|
|
|
if (ProbeRegion(candidate, rgnsize)) {
|
|
|
|
// success - selected page cannot be usable memory
|
|
|
|
if (result != RESERVE_FAILED)
|
|
|
|
ReleaseRegion(result, rgnsize);
|
2009-12-01 22:48:23 +00:00
|
|
|
return candidate;
|
2009-11-30 16:51:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// The preferred address is already in use. Did the OS give us a
|
|
|
|
// consolation prize?
|
|
|
|
if (result != RESERVE_FAILED) {
|
2012-04-12 00:17:44 +00:00
|
|
|
return uintptr_t(result);
|
2009-11-30 16:51:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// It didn't, so try to allocate again, without any constraint on
|
|
|
|
// the address.
|
|
|
|
result = ReserveRegion(0, rgnsize);
|
|
|
|
if (result != RESERVE_FAILED) {
|
2012-04-12 00:17:44 +00:00
|
|
|
return uintptr_t(result);
|
2009-11-17 19:17:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_RUNTIMEABORT("no usable poison region identified");
|
2009-12-01 22:48:23 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-12 00:17:44 +00:00
|
|
|
static uintptr_t ARENA_POISON;
|
2009-12-01 22:48:23 +00:00
|
|
|
static PRCallOnceType ARENA_POISON_guard;
|
|
|
|
|
|
|
|
static PRStatus
|
|
|
|
ARENA_POISON_init()
|
|
|
|
{
|
2012-04-12 00:17:44 +00:00
|
|
|
uintptr_t rgnsize = GetDesiredRegionSize();
|
|
|
|
uintptr_t rgnbase = ReservePoisonArea(rgnsize);
|
2009-12-01 22:48:23 +00:00
|
|
|
|
|
|
|
if (rgnsize == 0) // can't happen
|
2009-11-17 19:17:20 +00:00
|
|
|
return PR_FAILURE;
|
2009-12-01 22:48:23 +00:00
|
|
|
|
|
|
|
ARENA_POISON = rgnbase + rgnsize/2 - 1;
|
|
|
|
|
|
|
|
#ifdef MOZ_CRASHREPORTER
|
|
|
|
nsCOMPtr<nsICrashReporter> cr =
|
|
|
|
do_GetService("@mozilla.org/toolkit/crash-reporter;1");
|
2011-09-29 06:19:26 +00:00
|
|
|
bool enabled;
|
2009-12-01 22:48:23 +00:00
|
|
|
if (cr && NS_SUCCEEDED(cr->GetEnabled(&enabled)) && enabled) {
|
|
|
|
cr->AnnotateCrashReport(NS_LITERAL_CSTRING("FramePoisonBase"),
|
2012-08-22 15:56:38 +00:00
|
|
|
nsPrintfCString("%.16llx", uint64_t(rgnbase)));
|
2009-12-01 22:48:23 +00:00
|
|
|
cr->AnnotateCrashReport(NS_LITERAL_CSTRING("FramePoisonSize"),
|
2012-08-22 15:56:38 +00:00
|
|
|
nsPrintfCString("%lu", uint32_t(rgnsize)));
|
2009-11-17 19:17:20 +00:00
|
|
|
}
|
2009-12-01 22:48:23 +00:00
|
|
|
#endif
|
|
|
|
return PR_SUCCESS;
|
2009-11-17 19:17:20 +00:00
|
|
|
}
|
|
|
|
|
2011-04-04 11:41:02 +00:00
|
|
|
#ifndef DEBUG_TRACEMALLOC_PRESARENA
|
2009-09-15 22:00:04 +00:00
|
|
|
|
|
|
|
// All keys to this hash table fit in 32 bits (see below) so we do not
|
|
|
|
// bother actually hashing them.
|
2009-11-17 19:17:20 +00:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2009-09-15 22:00:04 +00:00
|
|
|
class FreeList : public PLDHashEntryHdr
|
|
|
|
{
|
|
|
|
public:
|
2012-08-22 15:56:38 +00:00
|
|
|
typedef uint32_t KeyType;
|
2009-09-15 22:00:04 +00:00
|
|
|
nsTArray<void *> mEntries;
|
|
|
|
size_t mEntrySize;
|
2012-06-06 17:29:16 +00:00
|
|
|
size_t mEntriesEverAllocated;
|
2009-09-15 22:00:04 +00:00
|
|
|
|
|
|
|
typedef const void* KeyTypePointer;
|
|
|
|
KeyTypePointer mKey;
|
|
|
|
|
2012-06-06 17:29:16 +00:00
|
|
|
FreeList(KeyTypePointer aKey)
|
|
|
|
: mEntrySize(0), mEntriesEverAllocated(0), mKey(aKey) {}
|
2009-09-15 22:00:04 +00:00
|
|
|
// Default copy constructor and destructor are ok.
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool KeyEquals(KeyTypePointer const aKey) const
|
2009-09-15 22:00:04 +00:00
|
|
|
{ return mKey == aKey; }
|
|
|
|
|
|
|
|
static KeyTypePointer KeyToPointer(KeyType aKey)
|
|
|
|
{ return NS_INT32_TO_PTR(aKey); }
|
|
|
|
|
|
|
|
static PLDHashNumber HashKey(KeyTypePointer aKey)
|
|
|
|
{ return NS_PTR_TO_INT32(aKey); }
|
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
enum { ALLOW_MEMMOVE = false };
|
2009-09-15 22:00:04 +00:00
|
|
|
};
|
|
|
|
|
2009-11-17 19:17:20 +00:00
|
|
|
}
|
|
|
|
|
2009-08-18 03:21:06 +00:00
|
|
|
struct nsPresArena::State {
|
2009-09-15 22:00:04 +00:00
|
|
|
nsTHashtable<FreeList> mFreeLists;
|
2009-08-18 03:21:06 +00:00
|
|
|
PLArenaPool mPool;
|
|
|
|
|
|
|
|
State()
|
|
|
|
{
|
2009-09-15 22:00:04 +00:00
|
|
|
mFreeLists.Init();
|
2009-08-18 03:21:06 +00:00
|
|
|
PL_INIT_ARENA_POOL(&mPool, "PresArena", ARENA_PAGE_SIZE);
|
2009-11-17 19:17:20 +00:00
|
|
|
PR_CallOnce(&ARENA_POISON_guard, ARENA_POISON_init);
|
2009-08-18 03:21:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
~State()
|
|
|
|
{
|
|
|
|
PL_FinishArenaPool(&mPool);
|
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
void* Allocate(uint32_t aCode, size_t aSize)
|
2009-08-18 03:21:06 +00:00
|
|
|
{
|
2009-09-15 22:00:04 +00:00
|
|
|
NS_ABORT_IF_FALSE(aSize > 0, "PresArena cannot allocate zero bytes");
|
2009-08-18 03:21:06 +00:00
|
|
|
|
2009-09-15 22:00:04 +00:00
|
|
|
// We only hand out aligned sizes
|
2009-08-18 03:21:06 +00:00
|
|
|
aSize = PL_ARENA_ALIGN(&mPool, aSize);
|
|
|
|
|
2009-09-15 22:00:04 +00:00
|
|
|
// If there is no free-list entry for this type already, we have
|
|
|
|
// to create one now, to record its size.
|
|
|
|
FreeList* list = mFreeLists.PutEntry(aCode);
|
2009-09-14 21:29:56 +00:00
|
|
|
|
2009-09-15 22:00:04 +00:00
|
|
|
nsTArray<void*>::index_type len = list->mEntries.Length();
|
|
|
|
if (list->mEntrySize == 0) {
|
|
|
|
NS_ABORT_IF_FALSE(len == 0, "list with entries but no recorded size");
|
|
|
|
list->mEntrySize = aSize;
|
|
|
|
} else {
|
|
|
|
NS_ABORT_IF_FALSE(list->mEntrySize == aSize,
|
|
|
|
"different sizes for same object type code");
|
|
|
|
}
|
|
|
|
|
|
|
|
void* result;
|
|
|
|
if (len > 0) {
|
|
|
|
// LIFO behavior for best cache utilization
|
|
|
|
result = list->mEntries.ElementAt(len - 1);
|
|
|
|
list->mEntries.RemoveElementAt(len - 1);
|
|
|
|
#ifdef DEBUG
|
|
|
|
{
|
|
|
|
char* p = reinterpret_cast<char*>(result);
|
|
|
|
char* limit = p + list->mEntrySize;
|
2012-04-12 00:17:44 +00:00
|
|
|
for (; p < limit; p += sizeof(uintptr_t)) {
|
2012-08-30 01:27:01 +00:00
|
|
|
uintptr_t val = *reinterpret_cast<uintptr_t*>(p);
|
|
|
|
NS_ABORT_IF_FALSE(val == ARENA_POISON,
|
|
|
|
nsPrintfCString("PresArena: poison overwritten; "
|
|
|
|
"wanted %.16llx "
|
|
|
|
"found %.16llx "
|
|
|
|
"errors in bits %.16llx",
|
|
|
|
uint64_t(ARENA_POISON),
|
|
|
|
uint64_t(val),
|
|
|
|
uint64_t(ARENA_POISON ^ val)
|
|
|
|
).get());
|
2009-09-15 22:00:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return result;
|
2009-08-18 03:21:06 +00:00
|
|
|
}
|
|
|
|
|
2009-09-15 22:00:04 +00:00
|
|
|
// Allocate a new chunk from the arena
|
2012-06-06 17:29:16 +00:00
|
|
|
list->mEntriesEverAllocated++;
|
2009-09-15 22:00:04 +00:00
|
|
|
PL_ARENA_ALLOCATE(result, &mPool, aSize);
|
2009-08-18 03:21:06 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
void Free(uint32_t aCode, void* aPtr)
|
2009-08-18 03:21:06 +00:00
|
|
|
{
|
2009-09-15 22:00:04 +00:00
|
|
|
// Try to recycle this entry.
|
|
|
|
FreeList* list = mFreeLists.GetEntry(aCode);
|
|
|
|
NS_ABORT_IF_FALSE(list, "no free list for pres arena object");
|
|
|
|
NS_ABORT_IF_FALSE(list->mEntrySize > 0, "PresArena cannot free zero bytes");
|
|
|
|
|
|
|
|
char* p = reinterpret_cast<char*>(aPtr);
|
|
|
|
char* limit = p + list->mEntrySize;
|
2012-04-12 00:17:44 +00:00
|
|
|
for (; p < limit; p += sizeof(uintptr_t)) {
|
|
|
|
*reinterpret_cast<uintptr_t*>(p) = ARENA_POISON;
|
2009-09-15 00:26:08 +00:00
|
|
|
}
|
2009-09-15 22:00:04 +00:00
|
|
|
|
|
|
|
list->mEntries.AppendElement(aPtr);
|
2009-08-18 03:21:06 +00:00
|
|
|
}
|
2010-06-01 02:19:35 +00:00
|
|
|
|
2012-06-05 16:33:54 +00:00
|
|
|
static size_t SizeOfFreeListEntryExcludingThis(FreeList* aEntry,
|
|
|
|
nsMallocSizeOfFun aMallocSizeOf,
|
|
|
|
void *)
|
|
|
|
{
|
|
|
|
return aEntry->mEntries.SizeOfExcludingThis(aMallocSizeOf);
|
|
|
|
}
|
|
|
|
|
2012-06-06 17:29:16 +00:00
|
|
|
size_t SizeOfIncludingThisFromMalloc(nsMallocSizeOfFun aMallocSizeOf) const
|
2011-12-09 05:01:52 +00:00
|
|
|
{
|
2012-01-25 08:52:51 +00:00
|
|
|
size_t n = aMallocSizeOf(this);
|
2011-12-09 05:01:52 +00:00
|
|
|
|
|
|
|
// The first PLArena is within the PLArenaPool, i.e. within |this|, so we
|
|
|
|
// don't measure it. Subsequent PLArenas are by themselves and must be
|
|
|
|
// measured.
|
|
|
|
const PLArena *arena = mPool.first.next;
|
|
|
|
while (arena) {
|
2012-01-25 08:52:51 +00:00
|
|
|
n += aMallocSizeOf(arena);
|
2011-12-09 05:01:52 +00:00
|
|
|
arena = arena->next;
|
|
|
|
}
|
2012-06-05 16:33:54 +00:00
|
|
|
n += mFreeLists.SizeOfExcludingThis(SizeOfFreeListEntryExcludingThis,
|
|
|
|
aMallocSizeOf);
|
2011-12-09 05:01:52 +00:00
|
|
|
return n;
|
2010-06-01 02:19:35 +00:00
|
|
|
}
|
2012-06-06 17:29:16 +00:00
|
|
|
|
|
|
|
struct EnumerateData {
|
|
|
|
nsArenaMemoryStats* stats;
|
|
|
|
size_t total;
|
|
|
|
};
|
|
|
|
|
|
|
|
static PLDHashOperator FreeListEnumerator(FreeList* aEntry, void* aData)
|
|
|
|
{
|
|
|
|
EnumerateData* data = static_cast<EnumerateData*>(aData);
|
|
|
|
// Note that we're not measuring the size of the entries on the free
|
|
|
|
// list here. The free list knows how many objects we've allocated
|
|
|
|
// ever (which includes any objects that may be on the FreeList's
|
|
|
|
// |mEntries| at this point) and we're using that to determine the
|
|
|
|
// total size of objects allocated with a given ID.
|
|
|
|
size_t totalSize = aEntry->mEntrySize * aEntry->mEntriesEverAllocated;
|
|
|
|
size_t* p;
|
|
|
|
|
|
|
|
switch (NS_PTR_TO_INT32(aEntry->mKey)) {
|
|
|
|
#define FRAME_ID(classname) \
|
|
|
|
case nsQueryFrame::classname##_id: \
|
|
|
|
p = &data->stats->FRAME_ID_STAT_FIELD(classname); \
|
|
|
|
break;
|
|
|
|
#include "nsFrameIdList.h"
|
|
|
|
#undef FRAME_ID
|
2012-06-06 17:35:40 +00:00
|
|
|
case nsLineBox_id:
|
|
|
|
p = &data->stats->mLineBoxes;
|
|
|
|
break;
|
|
|
|
case nsRuleNode_id:
|
|
|
|
p = &data->stats->mRuleNodes;
|
|
|
|
break;
|
|
|
|
case nsStyleContext_id:
|
|
|
|
p = &data->stats->mStyleContexts;
|
|
|
|
break;
|
2012-06-06 17:29:16 +00:00
|
|
|
default:
|
|
|
|
return PL_DHASH_NEXT;
|
|
|
|
}
|
|
|
|
|
|
|
|
*p += totalSize;
|
|
|
|
data->total += totalSize;
|
|
|
|
|
|
|
|
return PL_DHASH_NEXT;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SizeOfIncludingThis(nsMallocSizeOfFun aMallocSizeOf,
|
|
|
|
nsArenaMemoryStats* aArenaStats)
|
|
|
|
{
|
|
|
|
// We do a complicated dance here because we want to measure the
|
|
|
|
// space taken up by the different kinds of objects in the arena,
|
|
|
|
// but we don't have pointers to those objects. And even if we did,
|
|
|
|
// we wouldn't be able to use aMallocSizeOf on them, since they were
|
|
|
|
// allocated out of malloc'd chunks of memory. So we compute the
|
|
|
|
// size of the arena as known by malloc and we add up the sizes of
|
|
|
|
// all the objects that we care about. Subtracting these two
|
|
|
|
// quantities gives us a catch-all "other" number, which includes
|
|
|
|
// slop in the arena itself as well as the size of objects that
|
|
|
|
// we've not measured explicitly.
|
|
|
|
|
|
|
|
size_t mallocSize = SizeOfIncludingThisFromMalloc(aMallocSizeOf);
|
|
|
|
EnumerateData data = { aArenaStats, 0 };
|
|
|
|
mFreeLists.EnumerateEntries(FreeListEnumerator, &data);
|
|
|
|
aArenaStats->mOther = mallocSize - data.total;
|
|
|
|
}
|
2011-12-09 05:01:52 +00:00
|
|
|
};
|
2010-06-01 02:19:35 +00:00
|
|
|
|
2012-06-06 17:29:16 +00:00
|
|
|
void
|
|
|
|
nsPresArena::SizeOfExcludingThis(nsMallocSizeOfFun aMallocSizeOf,
|
|
|
|
nsArenaMemoryStats* aArenaStats)
|
2011-12-09 05:01:52 +00:00
|
|
|
{
|
2012-06-06 17:29:16 +00:00
|
|
|
mState->SizeOfIncludingThis(aMallocSizeOf, aArenaStats);
|
2010-06-01 02:19:35 +00:00
|
|
|
}
|
|
|
|
|
2009-08-18 03:21:06 +00:00
|
|
|
#else
|
2009-09-15 22:00:04 +00:00
|
|
|
// Stub implementation that forwards everything to malloc and does not
|
2011-04-04 11:41:02 +00:00
|
|
|
// poison allocations (it still initializes the poison value though,
|
|
|
|
// for external use through GetPoisonValue()).
|
2009-08-18 03:21:06 +00:00
|
|
|
|
|
|
|
struct nsPresArena::State
|
|
|
|
{
|
2011-04-04 11:41:02 +00:00
|
|
|
|
|
|
|
State()
|
|
|
|
{
|
|
|
|
PR_CallOnce(&ARENA_POISON_guard, ARENA_POISON_init);
|
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
void* Allocate(uint32_t /* unused */, size_t aSize)
|
2009-08-18 03:21:06 +00:00
|
|
|
{
|
|
|
|
return PR_Malloc(aSize);
|
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
void Free(uint32_t /* unused */, void* aPtr)
|
2009-08-18 03:21:06 +00:00
|
|
|
{
|
|
|
|
PR_Free(aPtr);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-06-06 17:29:16 +00:00
|
|
|
void
|
|
|
|
nsPresArena::SizeOfExcludingThis(nsMallocSizeOfFun, nsArenaMemoryStats*)
|
|
|
|
{}
|
2010-06-01 02:19:35 +00:00
|
|
|
|
2009-08-18 03:21:06 +00:00
|
|
|
#endif // DEBUG_TRACEMALLOC_PRESARENA
|
|
|
|
|
|
|
|
// Public interface
|
|
|
|
nsPresArena::nsPresArena()
|
|
|
|
: mState(new nsPresArena::State())
|
|
|
|
{}
|
|
|
|
|
|
|
|
nsPresArena::~nsPresArena()
|
|
|
|
{
|
|
|
|
delete mState;
|
|
|
|
}
|
|
|
|
|
|
|
|
void*
|
2009-09-15 22:00:04 +00:00
|
|
|
nsPresArena::AllocateBySize(size_t aSize)
|
2009-08-18 03:21:06 +00:00
|
|
|
{
|
2012-08-22 15:56:38 +00:00
|
|
|
return mState->Allocate(uint32_t(aSize) | uint32_t(NON_OBJECT_MARKER),
|
2009-09-15 22:00:04 +00:00
|
|
|
aSize);
|
2009-09-14 21:29:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-09-15 22:00:04 +00:00
|
|
|
nsPresArena::FreeBySize(size_t aSize, void* aPtr)
|
2009-09-14 21:29:56 +00:00
|
|
|
{
|
2012-08-22 15:56:38 +00:00
|
|
|
mState->Free(uint32_t(aSize) | uint32_t(NON_OBJECT_MARKER), aPtr);
|
2009-09-15 22:00:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void*
|
2012-05-04 00:14:02 +00:00
|
|
|
nsPresArena::AllocateByFrameID(nsQueryFrame::FrameIID aID, size_t aSize)
|
2009-09-15 22:00:04 +00:00
|
|
|
{
|
2012-05-04 00:14:02 +00:00
|
|
|
return mState->Allocate(aID, aSize);
|
2009-09-15 22:00:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-05-04 00:14:02 +00:00
|
|
|
nsPresArena::FreeByFrameID(nsQueryFrame::FrameIID aID, void* aPtr)
|
2009-09-15 22:00:04 +00:00
|
|
|
{
|
2012-05-04 00:14:02 +00:00
|
|
|
mState->Free(aID, aPtr);
|
2009-08-18 03:21:06 +00:00
|
|
|
}
|
2011-03-18 03:14:31 +00:00
|
|
|
|
2012-05-04 00:14:02 +00:00
|
|
|
void*
|
|
|
|
nsPresArena::AllocateByObjectID(ObjectID aID, size_t aSize)
|
|
|
|
{
|
|
|
|
return mState->Allocate(aID, aSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsPresArena::FreeByObjectID(ObjectID aID, void* aPtr)
|
|
|
|
{
|
|
|
|
mState->Free(aID, aPtr);
|
|
|
|
}
|
|
|
|
|
2012-04-12 00:17:44 +00:00
|
|
|
/* static */ uintptr_t
|
2011-03-18 03:14:31 +00:00
|
|
|
nsPresArena::GetPoisonValue()
|
|
|
|
{
|
|
|
|
return ARENA_POISON;
|
|
|
|
}
|