2013-01-15 21:29:48 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 04:12:37 -07: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/. */
|
2010-11-05 00:17:07 -07:00
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
|
2011-07-07 19:45:16 -07:00
|
|
|
#include "nsString.h"
|
2010-11-05 00:17:07 -07:00
|
|
|
#include "nsIMemoryReporter.h"
|
2010-11-05 00:17:07 -07:00
|
|
|
#include "mozilla/ipc/SharedMemory.h"
|
2013-06-06 22:10:31 -07:00
|
|
|
#include "mozilla/Atomics.h"
|
2010-11-05 00:17:07 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace ipc {
|
|
|
|
|
2013-06-06 22:10:31 -07:00
|
|
|
static Atomic<size_t> gShmemAllocated;
|
|
|
|
static Atomic<size_t> gShmemMapped;
|
2010-11-05 00:17:07 -07:00
|
|
|
|
2013-12-07 22:09:10 -08:00
|
|
|
class ShmemReporter MOZ_FINAL : public nsIMemoryReporter
|
2013-01-15 21:29:48 -08:00
|
|
|
{
|
|
|
|
public:
|
2013-12-07 22:09:10 -08:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
2012-04-09 22:52:33 -07:00
|
|
|
|
2013-12-07 22:09:10 -08:00
|
|
|
NS_IMETHOD
|
|
|
|
CollectReports(nsIHandleReportCallback* aHandleReport, nsISupports* aData)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
rv = MOZ_COLLECT_REPORT(
|
|
|
|
"shmem-allocated", KIND_OTHER, UNITS_BYTES, gShmemAllocated,
|
|
|
|
"Memory shared with other processes that is accessible (but not "
|
|
|
|
"necessarily mapped).");
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
rv = MOZ_COLLECT_REPORT(
|
|
|
|
"shmem-mapped", KIND_OTHER, UNITS_BYTES, gShmemMapped,
|
|
|
|
"Memory shared with other processes that is mapped into the address "
|
|
|
|
"space.");
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2013-01-15 21:29:48 -08:00
|
|
|
};
|
2010-11-05 00:17:07 -07:00
|
|
|
|
2014-04-27 00:06:00 -07:00
|
|
|
NS_IMPL_ISUPPORTS(ShmemReporter, nsIMemoryReporter)
|
2013-12-07 22:09:10 -08:00
|
|
|
|
2010-11-05 00:17:07 -07:00
|
|
|
SharedMemory::SharedMemory()
|
2010-11-05 00:17:07 -07:00
|
|
|
: mAllocSize(0)
|
|
|
|
, mMappedSize(0)
|
2010-11-05 00:17:07 -07:00
|
|
|
{
|
2014-02-26 13:23:51 -08:00
|
|
|
MOZ_COUNT_CTOR(SharedMemory);
|
2014-02-06 22:17:07 -08:00
|
|
|
static Atomic<bool> registered;
|
|
|
|
if (registered.compareExchange(false, true)) {
|
2013-12-07 22:09:10 -08:00
|
|
|
RegisterStrongMemoryReporter(new ShmemReporter());
|
2010-11-05 00:17:07 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-05 00:17:07 -07:00
|
|
|
/*static*/ size_t
|
|
|
|
SharedMemory::PageAlignedSize(size_t aSize)
|
|
|
|
{
|
|
|
|
size_t pageSize = SystemPageSize();
|
|
|
|
size_t nPagesNeeded = size_t(ceil(double(aSize) / double(pageSize)));
|
|
|
|
return pageSize * nPagesNeeded;
|
|
|
|
}
|
|
|
|
|
2010-11-05 00:17:07 -07:00
|
|
|
void
|
2010-11-05 00:17:07 -07:00
|
|
|
SharedMemory::Created(size_t aNBytes)
|
|
|
|
{
|
2010-11-05 00:17:07 -07:00
|
|
|
mAllocSize = aNBytes;
|
|
|
|
gShmemAllocated += mAllocSize;
|
2010-11-05 00:17:07 -07:00
|
|
|
}
|
|
|
|
|
2010-11-05 00:17:07 -07:00
|
|
|
void
|
2010-11-05 00:17:07 -07:00
|
|
|
SharedMemory::Mapped(size_t aNBytes)
|
|
|
|
{
|
2010-11-05 00:17:07 -07:00
|
|
|
mMappedSize = aNBytes;
|
|
|
|
gShmemMapped += mMappedSize;
|
2010-11-05 00:17:07 -07:00
|
|
|
}
|
|
|
|
|
2010-11-05 00:17:07 -07:00
|
|
|
void
|
|
|
|
SharedMemory::Unmapped()
|
2010-11-05 00:17:07 -07:00
|
|
|
{
|
2013-06-06 22:10:31 -07:00
|
|
|
NS_ABORT_IF_FALSE(gShmemMapped >= mMappedSize,
|
2010-11-05 00:17:07 -07:00
|
|
|
"Can't unmap more than mapped");
|
2010-11-05 00:17:07 -07:00
|
|
|
gShmemMapped -= mMappedSize;
|
|
|
|
mMappedSize = 0;
|
2010-11-05 00:17:07 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/*static*/ void
|
2010-11-05 00:17:07 -07:00
|
|
|
SharedMemory::Destroyed()
|
2010-11-05 00:17:07 -07:00
|
|
|
{
|
2013-06-06 22:10:31 -07:00
|
|
|
NS_ABORT_IF_FALSE(gShmemAllocated >= mAllocSize,
|
2010-11-05 00:17:07 -07:00
|
|
|
"Can't destroy more than allocated");
|
2010-11-05 00:17:07 -07:00
|
|
|
gShmemAllocated -= mAllocSize;
|
|
|
|
mAllocSize = 0;
|
2010-11-05 00:17:07 -07:00
|
|
|
}
|
|
|
|
|
2010-11-05 00:17:07 -07:00
|
|
|
} // namespace ipc
|
|
|
|
} // namespace mozilla
|