2013-01-16 09:29:48 +04: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 15:12:37 +04: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 10:17:07 +03:00
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
|
2011-07-08 06:45:16 +04:00
|
|
|
#include "nsString.h"
|
2010-11-05 10:17:07 +03:00
|
|
|
#include "nsIMemoryReporter.h"
|
2010-11-05 10:17:07 +03:00
|
|
|
#include "mozilla/ipc/SharedMemory.h"
|
2013-06-07 09:10:31 +04:00
|
|
|
#include "mozilla/Atomics.h"
|
2010-11-05 10:17:07 +03:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace ipc {
|
|
|
|
|
2013-06-07 09:10:31 +04:00
|
|
|
static Atomic<size_t> gShmemAllocated;
|
|
|
|
static Atomic<size_t> gShmemMapped;
|
2010-11-05 10:17:07 +03:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class ShmemReporter final : public nsIMemoryReporter {
|
2020-02-14 03:57:39 +03:00
|
|
|
~ShmemReporter() = default;
|
2014-06-24 02:40:03 +04:00
|
|
|
|
2013-01-16 09:29:48 +04:00
|
|
|
public:
|
2013-12-08 10:09:10 +04:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
2012-04-10 09:52:33 +04:00
|
|
|
|
2013-12-08 10:09:10 +04:00
|
|
|
NS_IMETHOD
|
2014-05-21 10:06:54 +04:00
|
|
|
CollectReports(nsIHandleReportCallback* aHandleReport, nsISupports* aData,
|
2015-03-21 19:28:04 +03:00
|
|
|
bool aAnonymize) override {
|
2016-08-24 08:23:45 +03:00
|
|
|
MOZ_COLLECT_REPORT(
|
2013-12-08 10:09:10 +04:00
|
|
|
"shmem-allocated", KIND_OTHER, UNITS_BYTES, gShmemAllocated,
|
|
|
|
"Memory shared with other processes that is accessible (but not "
|
|
|
|
"necessarily mapped).");
|
|
|
|
|
2016-08-24 08:23:45 +03:00
|
|
|
MOZ_COLLECT_REPORT(
|
2013-12-08 10:09:10 +04:00
|
|
|
"shmem-mapped", KIND_OTHER, UNITS_BYTES, gShmemMapped,
|
|
|
|
"Memory shared with other processes that is mapped into the address "
|
|
|
|
"space.");
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2013-01-16 09:29:48 +04:00
|
|
|
};
|
2010-11-05 10:17:07 +03:00
|
|
|
|
2014-04-27 11:06:00 +04:00
|
|
|
NS_IMPL_ISUPPORTS(ShmemReporter, nsIMemoryReporter)
|
2013-12-08 10:09:10 +04:00
|
|
|
|
2010-11-05 10:17:07 +03:00
|
|
|
SharedMemory::SharedMemory() : mAllocSize(0), mMappedSize(0) {
|
2014-02-07 10:17:07 +04:00
|
|
|
static Atomic<bool> registered;
|
|
|
|
if (registered.compareExchange(false, true)) {
|
2013-12-08 10:09:10 +04:00
|
|
|
RegisterStrongMemoryReporter(new ShmemReporter());
|
2010-11-05 10:17:07 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-26 01:08:36 +03:00
|
|
|
/*static*/
|
|
|
|
size_t SharedMemory::PageAlignedSize(size_t aSize) {
|
2010-11-05 10:17:07 +03:00
|
|
|
size_t pageSize = SystemPageSize();
|
|
|
|
size_t nPagesNeeded = size_t(ceil(double(aSize) / double(pageSize)));
|
|
|
|
return pageSize * nPagesNeeded;
|
|
|
|
}
|
|
|
|
|
2010-11-05 10:17:07 +03:00
|
|
|
void SharedMemory::Created(size_t aNBytes) {
|
2010-11-05 10:17:07 +03:00
|
|
|
mAllocSize = aNBytes;
|
|
|
|
gShmemAllocated += mAllocSize;
|
2010-11-05 10:17:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void SharedMemory::Mapped(size_t aNBytes) {
|
2010-11-05 10:17:07 +03:00
|
|
|
mMappedSize = aNBytes;
|
|
|
|
gShmemMapped += mMappedSize;
|
2010-11-05 10:17:07 +03:00
|
|
|
}
|
|
|
|
|
2010-11-05 10:17:07 +03:00
|
|
|
void SharedMemory::Unmapped() {
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(gShmemMapped >= mMappedSize, "Can't unmap more than mapped");
|
2010-11-05 10:17:07 +03:00
|
|
|
gShmemMapped -= mMappedSize;
|
|
|
|
mMappedSize = 0;
|
2010-11-05 10:17:07 +03:00
|
|
|
}
|
|
|
|
|
2019-02-26 01:08:36 +03:00
|
|
|
/*static*/
|
|
|
|
void SharedMemory::Destroyed() {
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(gShmemAllocated >= mAllocSize,
|
|
|
|
"Can't destroy more than allocated");
|
2010-11-05 10:17:07 +03:00
|
|
|
gShmemAllocated -= mAllocSize;
|
|
|
|
mAllocSize = 0;
|
2010-11-05 10:17:07 +03:00
|
|
|
}
|
|
|
|
|
2010-11-05 10:17:07 +03:00
|
|
|
} // namespace ipc
|
|
|
|
} // namespace mozilla
|