2009-10-03 00:21:34 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 50; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* mozilla.org
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2008
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Vladimir Vukicevic <vladimir@pobox.com> (original author)
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
2008-03-05 17:28:25 -08:00
|
|
|
|
2011-07-06 22:54:34 -07:00
|
|
|
#include "nsAutoPtr.h"
|
2008-03-05 17:28:25 -08:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsServiceManagerUtils.h"
|
|
|
|
#include "nsMemoryReporterManager.h"
|
|
|
|
#include "nsArrayEnumerator.h"
|
2011-07-06 22:54:34 -07:00
|
|
|
#include "nsISimpleEnumerator.h"
|
2008-03-05 17:28:25 -08:00
|
|
|
|
2011-06-16 11:34:09 -07:00
|
|
|
#if defined(XP_LINUX) || defined(XP_MACOSX)
|
|
|
|
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/resource.h>
|
|
|
|
|
|
|
|
static PRInt64 GetHardPageFaults()
|
|
|
|
{
|
|
|
|
struct rusage usage;
|
|
|
|
int err = getrusage(RUSAGE_SELF, &usage);
|
|
|
|
if (err != 0) {
|
|
|
|
return PRInt64(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return usage.ru_majflt;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PRInt64 GetSoftPageFaults()
|
|
|
|
{
|
|
|
|
struct rusage usage;
|
|
|
|
int err = getrusage(RUSAGE_SELF, &usage);
|
|
|
|
if (err != 0) {
|
|
|
|
return PRInt64(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return usage.ru_minflt;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2011-05-03 17:12:58 -07:00
|
|
|
#if defined(XP_LINUX)
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
static PRInt64 GetProcSelfStatmField(int n)
|
|
|
|
{
|
|
|
|
// There are more than two fields, but we're only interested in the first
|
|
|
|
// two.
|
|
|
|
static const int MAX_FIELD = 2;
|
|
|
|
size_t fields[MAX_FIELD];
|
|
|
|
NS_ASSERTION(n < MAX_FIELD, "bad field number");
|
|
|
|
FILE *f = fopen("/proc/self/statm", "r");
|
|
|
|
if (f) {
|
|
|
|
int nread = fscanf(f, "%lu %lu", &fields[0], &fields[1]);
|
|
|
|
fclose(f);
|
|
|
|
return (PRInt64) ((nread == MAX_FIELD) ? fields[n]*getpagesize() : -1);
|
|
|
|
}
|
|
|
|
return (PRInt64) -1;
|
|
|
|
}
|
|
|
|
|
2011-06-16 11:34:09 -07:00
|
|
|
static PRInt64 GetVsize()
|
2011-05-03 17:12:58 -07:00
|
|
|
{
|
|
|
|
return GetProcSelfStatmField(0);
|
|
|
|
}
|
|
|
|
|
2011-06-16 11:34:09 -07:00
|
|
|
static PRInt64 GetResident()
|
2011-05-03 17:12:58 -07:00
|
|
|
{
|
|
|
|
return GetProcSelfStatmField(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
#elif defined(XP_MACOSX)
|
|
|
|
|
|
|
|
#include <mach/mach_init.h>
|
|
|
|
#include <mach/task.h>
|
|
|
|
|
|
|
|
static bool GetTaskBasicInfo(struct task_basic_info *ti)
|
|
|
|
{
|
|
|
|
mach_msg_type_number_t count = TASK_BASIC_INFO_COUNT;
|
|
|
|
kern_return_t kr = task_info(mach_task_self(), TASK_BASIC_INFO,
|
|
|
|
(task_info_t)ti, &count);
|
|
|
|
return kr == KERN_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2011-05-22 19:49:56 -07:00
|
|
|
// The VSIZE figure on Mac includes huge amounts of shared memory and is always
|
|
|
|
// absurdly high, eg. 2GB+ even at start-up. But both 'top' and 'ps' report
|
|
|
|
// it, so we might as well too.
|
2011-06-16 11:34:09 -07:00
|
|
|
static PRInt64 GetVsize()
|
2011-05-03 17:12:58 -07:00
|
|
|
{
|
|
|
|
task_basic_info ti;
|
|
|
|
return (PRInt64) (GetTaskBasicInfo(&ti) ? ti.virtual_size : -1);
|
|
|
|
}
|
|
|
|
|
2011-06-16 11:34:09 -07:00
|
|
|
static PRInt64 GetResident()
|
2011-05-03 17:12:58 -07:00
|
|
|
{
|
|
|
|
task_basic_info ti;
|
|
|
|
return (PRInt64) (GetTaskBasicInfo(&ti) ? ti.resident_size : -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
#elif defined(XP_WIN)
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#include <psapi.h>
|
|
|
|
|
2011-06-30 07:46:30 -07:00
|
|
|
static PRInt64 GetVsize()
|
|
|
|
{
|
|
|
|
MEMORYSTATUSEX s;
|
|
|
|
s.dwLength = sizeof(s);
|
|
|
|
|
|
|
|
bool success = GlobalMemoryStatusEx(&s);
|
|
|
|
if (!success)
|
|
|
|
return -1;
|
|
|
|
|
2011-07-05 06:38:45 -07:00
|
|
|
return s.ullTotalVirtual - s.ullAvailVirtual;
|
2011-06-30 07:46:30 -07:00
|
|
|
}
|
|
|
|
|
2011-05-03 17:12:58 -07:00
|
|
|
#if MOZ_WINSDK_TARGETVER >= MOZ_NTDDI_LONGHORN
|
2011-06-16 11:34:09 -07:00
|
|
|
static PRInt64 GetPrivate()
|
2011-05-22 19:49:56 -07:00
|
|
|
{
|
|
|
|
PROCESS_MEMORY_COUNTERS_EX pmcex;
|
|
|
|
pmcex.cb = sizeof(PROCESS_MEMORY_COUNTERS_EX);
|
2011-05-03 17:12:58 -07:00
|
|
|
|
2011-05-22 19:49:56 -07:00
|
|
|
if (!GetProcessMemoryInfo(GetCurrentProcess(),
|
|
|
|
(PPROCESS_MEMORY_COUNTERS) &pmcex, sizeof(pmcex)))
|
|
|
|
return (PRInt64) -1;
|
2011-05-03 17:12:58 -07:00
|
|
|
|
2011-05-22 19:49:56 -07:00
|
|
|
return pmcex.PrivateUsage;
|
2011-05-03 17:12:58 -07:00
|
|
|
}
|
|
|
|
|
2011-05-22 19:49:56 -07:00
|
|
|
NS_MEMORY_REPORTER_IMPLEMENT(Private,
|
|
|
|
"private",
|
2011-06-16 11:34:09 -07:00
|
|
|
KIND_OTHER,
|
|
|
|
UNITS_BYTES,
|
|
|
|
GetPrivate,
|
2011-05-22 19:49:56 -07:00
|
|
|
"Memory that cannot be shared with other processes, including memory that "
|
|
|
|
"is committed and marked MEM_PRIVATE, data that is not mapped, and "
|
2011-06-16 11:34:09 -07:00
|
|
|
"executable pages that have been written to.")
|
2011-05-22 19:49:56 -07:00
|
|
|
#endif
|
|
|
|
|
2011-06-16 11:34:09 -07:00
|
|
|
static PRInt64 GetResident()
|
2011-05-03 17:12:58 -07:00
|
|
|
{
|
|
|
|
PROCESS_MEMORY_COUNTERS pmc;
|
|
|
|
pmc.cb = sizeof(PROCESS_MEMORY_COUNTERS);
|
|
|
|
|
|
|
|
if (!GetProcessMemoryInfo(GetCurrentProcess(), &pmc, sizeof(pmc)))
|
|
|
|
return (PRInt64) -1;
|
|
|
|
|
|
|
|
return pmc.WorkingSetSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2011-06-16 11:34:09 -07:00
|
|
|
static PRInt64 GetResident()
|
2011-05-03 17:12:58 -07:00
|
|
|
{
|
|
|
|
return (PRInt64) -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2011-06-30 07:46:30 -07:00
|
|
|
#if defined(XP_LINUX) || defined(XP_MACOSX) || defined(XP_WIN)
|
2011-05-22 19:49:56 -07:00
|
|
|
NS_MEMORY_REPORTER_IMPLEMENT(Vsize,
|
|
|
|
"vsize",
|
2011-06-16 11:34:09 -07:00
|
|
|
KIND_OTHER,
|
|
|
|
UNITS_BYTES,
|
|
|
|
GetVsize,
|
2011-05-22 19:49:56 -07:00
|
|
|
"Memory mapped by the process, including code and data segments, the "
|
|
|
|
"heap, thread stacks, memory explicitly mapped by the process via mmap "
|
|
|
|
"and similar operations, and memory shared with other processes. "
|
2011-07-07 06:14:53 -07:00
|
|
|
"This is the vsize figure as reported by 'top' and 'ps'. This figure is of "
|
|
|
|
"limited use on Mac, where processes share huge amounts of memory with one "
|
|
|
|
"another. But even on other operating systems, 'resident' is a much better "
|
|
|
|
"measure of the memory resources used by the process.")
|
2011-06-30 07:46:30 -07:00
|
|
|
#endif
|
2011-06-16 11:34:09 -07:00
|
|
|
|
2011-06-30 07:46:30 -07:00
|
|
|
#if defined(XP_LINUX) || defined(XP_MACOSX)
|
2011-07-06 23:37:26 -07:00
|
|
|
NS_MEMORY_REPORTER_IMPLEMENT(PageFaultsSoft,
|
|
|
|
"page-faults-soft",
|
2011-06-16 11:34:09 -07:00
|
|
|
KIND_OTHER,
|
2011-07-24 20:56:50 -07:00
|
|
|
UNITS_COUNT_CUMULATIVE,
|
2011-06-16 11:34:09 -07:00
|
|
|
GetSoftPageFaults,
|
|
|
|
"The number of soft page faults (also known as \"minor page faults\") that "
|
|
|
|
"have occurred since the process started. A soft page fault occurs when the "
|
|
|
|
"process tries to access a page which is present in physical memory but is "
|
|
|
|
"not mapped into the process's address space. For instance, a process might "
|
|
|
|
"observe soft page faults when it loads a shared library which is already "
|
|
|
|
"present in physical memory. A process may experience many thousands of soft "
|
|
|
|
"page faults even when the machine has plenty of available physical memory, "
|
|
|
|
"and because the OS services a soft page fault without accessing the disk, "
|
|
|
|
"they impact performance much less than hard page faults.")
|
|
|
|
|
2011-07-06 23:37:26 -07:00
|
|
|
NS_MEMORY_REPORTER_IMPLEMENT(PageFaultsHard,
|
|
|
|
"page-faults-hard",
|
2011-06-16 11:34:09 -07:00
|
|
|
KIND_OTHER,
|
2011-07-24 20:56:50 -07:00
|
|
|
UNITS_COUNT_CUMULATIVE,
|
2011-06-16 11:34:09 -07:00
|
|
|
GetHardPageFaults,
|
|
|
|
"The number of hard page faults (also known as \"major page faults\") that "
|
|
|
|
"have occurred since the process started. A hard page fault occurs when a "
|
|
|
|
"process tries to access a page which is not present in physical memory. "
|
|
|
|
"The operating system must access the disk in order to fulfill a hard page "
|
|
|
|
"fault. When memory is plentiful, you should see very few hard page faults. "
|
|
|
|
"But if the process tries to use more memory than your machine has "
|
|
|
|
"available, you may see many thousands of hard page faults. Because "
|
|
|
|
"accessing the disk is up to a million times slower than accessing RAM, "
|
|
|
|
"the program may run very slowly when it is experiencing more than 100 or "
|
|
|
|
"so hard page faults a second.")
|
2011-05-22 19:49:56 -07:00
|
|
|
#endif
|
2011-05-03 17:12:58 -07:00
|
|
|
|
|
|
|
NS_MEMORY_REPORTER_IMPLEMENT(Resident,
|
|
|
|
"resident",
|
2011-06-16 11:34:09 -07:00
|
|
|
KIND_OTHER,
|
|
|
|
UNITS_BYTES,
|
|
|
|
GetResident,
|
2011-05-03 17:12:58 -07:00
|
|
|
"Memory mapped by the process that is present in physical memory, "
|
|
|
|
"also known as the resident set size (RSS). This is the best single "
|
|
|
|
"figure to use when considering the memory resources used by the process, "
|
|
|
|
"but it depends both on other processes being run and details of the OS "
|
|
|
|
"kernel and so is best used for comparing the memory usage of a single "
|
2011-06-16 11:34:09 -07:00
|
|
|
"process at different points in time.")
|
2011-05-03 17:12:58 -07:00
|
|
|
|
2009-10-03 00:21:34 -07:00
|
|
|
/**
|
|
|
|
** memory reporter implementation for jemalloc and OSX malloc,
|
|
|
|
** to obtain info on total memory in use (that we know about,
|
|
|
|
** at least -- on OSX, there are sometimes other zones in use).
|
|
|
|
**/
|
|
|
|
|
2010-05-26 12:40:52 -07:00
|
|
|
#if defined(MOZ_MEMORY)
|
2011-05-21 20:27:00 -07:00
|
|
|
# if defined(XP_WIN) || defined(SOLARIS) || defined(ANDROID) || defined(XP_MACOSX)
|
2010-05-26 12:40:52 -07:00
|
|
|
# define HAVE_JEMALLOC_STATS 1
|
|
|
|
# include "jemalloc.h"
|
|
|
|
# elif defined(XP_LINUX)
|
|
|
|
# define HAVE_JEMALLOC_STATS 1
|
|
|
|
# include "jemalloc_types.h"
|
|
|
|
// jemalloc is directly linked into firefox-bin; libxul doesn't link
|
|
|
|
// with it. So if we tried to use jemalloc_stats directly here, it
|
|
|
|
// wouldn't be defined. Instead, we don't include the jemalloc header
|
|
|
|
// and weakly link against jemalloc_stats.
|
|
|
|
extern "C" {
|
|
|
|
extern void jemalloc_stats(jemalloc_stats_t* stats)
|
|
|
|
NS_VISIBILITY_DEFAULT __attribute__((weak));
|
|
|
|
}
|
|
|
|
# endif // XP_LINUX
|
|
|
|
#endif // MOZ_MEMORY
|
2009-10-03 00:21:34 -07:00
|
|
|
|
2010-05-26 12:40:52 -07:00
|
|
|
#if HAVE_JEMALLOC_STATS
|
2009-10-03 00:21:34 -07:00
|
|
|
|
2011-07-07 06:14:53 -07:00
|
|
|
static PRInt64 GetHeapUnallocated()
|
2011-05-03 17:12:58 -07:00
|
|
|
{
|
2009-10-03 00:21:34 -07:00
|
|
|
jemalloc_stats_t stats;
|
|
|
|
jemalloc_stats(&stats);
|
2011-07-07 06:14:53 -07:00
|
|
|
return (PRInt64) stats.mapped - stats.allocated;
|
2009-10-03 00:21:34 -07:00
|
|
|
}
|
|
|
|
|
2011-07-07 06:14:53 -07:00
|
|
|
static PRInt64 GetHeapAllocated()
|
2011-05-03 17:12:58 -07:00
|
|
|
{
|
2009-10-03 00:21:34 -07:00
|
|
|
jemalloc_stats_t stats;
|
|
|
|
jemalloc_stats(&stats);
|
2011-07-07 06:14:53 -07:00
|
|
|
return (PRInt64) stats.allocated;
|
2009-10-03 00:21:34 -07:00
|
|
|
}
|
|
|
|
|
2011-06-16 11:34:09 -07:00
|
|
|
static PRInt64 GetHeapCommitted()
|
2011-05-03 17:12:58 -07:00
|
|
|
{
|
2009-10-03 00:21:34 -07:00
|
|
|
jemalloc_stats_t stats;
|
|
|
|
jemalloc_stats(&stats);
|
|
|
|
return (PRInt64) stats.committed;
|
|
|
|
}
|
|
|
|
|
2011-06-16 11:34:09 -07:00
|
|
|
static PRInt64 GetHeapDirty()
|
2011-05-03 17:12:58 -07:00
|
|
|
{
|
2009-10-03 00:21:34 -07:00
|
|
|
jemalloc_stats_t stats;
|
|
|
|
jemalloc_stats(&stats);
|
|
|
|
return (PRInt64) stats.dirty;
|
|
|
|
}
|
|
|
|
|
2011-05-03 17:12:58 -07:00
|
|
|
NS_MEMORY_REPORTER_IMPLEMENT(HeapCommitted,
|
2011-05-22 19:49:56 -07:00
|
|
|
"heap-committed",
|
2011-06-16 11:34:09 -07:00
|
|
|
KIND_OTHER,
|
|
|
|
UNITS_BYTES,
|
2011-05-22 19:49:56 -07:00
|
|
|
GetHeapCommitted,
|
2011-09-06 08:57:58 -07:00
|
|
|
"Memory mapped by the heap allocator that is committed, i.e. in physical "
|
|
|
|
"memory or paged to disk. When heap-committed is larger than "
|
|
|
|
"heap-allocated, the difference between the two values is likely due to "
|
|
|
|
"external fragmentation; that is, the allocator allocated a large block of "
|
|
|
|
"memory and is unable to decommit it because a small part of that block is "
|
|
|
|
"currently in use.")
|
2011-05-03 17:12:58 -07:00
|
|
|
|
|
|
|
NS_MEMORY_REPORTER_IMPLEMENT(HeapDirty,
|
2011-05-22 19:49:56 -07:00
|
|
|
"heap-dirty",
|
2011-06-16 11:34:09 -07:00
|
|
|
KIND_OTHER,
|
|
|
|
UNITS_BYTES,
|
2011-05-22 19:49:56 -07:00
|
|
|
GetHeapDirty,
|
2011-09-06 08:57:58 -07:00
|
|
|
"Memory which the allocator could return to the operating system, but "
|
|
|
|
"hasn't. The allocator keeps this memory around as an optimization, so it "
|
|
|
|
"doesn't have to ask the OS the next time it needs to fulfill a request. "
|
|
|
|
"This value is typically not larger than a few megabytes.")
|
2011-05-03 17:12:58 -07:00
|
|
|
|
2009-10-03 00:21:34 -07:00
|
|
|
#elif defined(XP_MACOSX) && !defined(MOZ_MEMORY)
|
|
|
|
#include <malloc/malloc.h>
|
|
|
|
|
2011-07-07 06:14:53 -07:00
|
|
|
static PRInt64 GetHeapUnallocated()
|
2011-05-03 17:12:58 -07:00
|
|
|
{
|
2009-10-03 00:21:34 -07:00
|
|
|
struct mstats stats = mstats();
|
2011-07-07 06:14:53 -07:00
|
|
|
return (PRInt64) (stats.bytes_total - stats.bytes_used);
|
2009-10-03 00:21:34 -07:00
|
|
|
}
|
|
|
|
|
2011-07-07 06:14:53 -07:00
|
|
|
static PRInt64 GetHeapAllocated()
|
2011-05-03 17:12:58 -07:00
|
|
|
{
|
2009-10-03 00:21:34 -07:00
|
|
|
struct mstats stats = mstats();
|
2011-07-07 06:14:53 -07:00
|
|
|
return (PRInt64) stats.bytes_used;
|
2009-10-03 00:21:34 -07:00
|
|
|
}
|
|
|
|
|
2011-06-16 11:34:09 -07:00
|
|
|
static PRInt64 GetHeapZone0Committed()
|
2011-05-03 17:12:58 -07:00
|
|
|
{
|
2009-10-03 00:21:34 -07:00
|
|
|
malloc_statistics_t stats;
|
|
|
|
malloc_zone_statistics(malloc_default_zone(), &stats);
|
|
|
|
return stats.size_in_use;
|
|
|
|
}
|
|
|
|
|
2011-06-16 11:34:09 -07:00
|
|
|
static PRInt64 GetHeapZone0Used()
|
2011-05-03 17:12:58 -07:00
|
|
|
{
|
2009-10-03 00:21:34 -07:00
|
|
|
malloc_statistics_t stats;
|
|
|
|
malloc_zone_statistics(malloc_default_zone(), &stats);
|
|
|
|
return stats.size_allocated;
|
|
|
|
}
|
|
|
|
|
2011-05-03 17:12:58 -07:00
|
|
|
NS_MEMORY_REPORTER_IMPLEMENT(HeapZone0Committed,
|
2011-05-22 19:49:56 -07:00
|
|
|
"heap-zone0-committed",
|
2011-06-16 11:34:09 -07:00
|
|
|
KIND_OTHER,
|
|
|
|
UNITS_BYTES,
|
2011-05-22 19:49:56 -07:00
|
|
|
GetHeapZone0Committed,
|
2011-06-16 11:34:09 -07:00
|
|
|
"Memory mapped by the heap allocator that is committed in the default "
|
|
|
|
"zone.")
|
2009-10-03 00:21:34 -07:00
|
|
|
|
2011-05-03 17:12:58 -07:00
|
|
|
NS_MEMORY_REPORTER_IMPLEMENT(HeapZone0Used,
|
2011-05-22 19:49:56 -07:00
|
|
|
"heap-zone0-used",
|
2011-06-16 11:34:09 -07:00
|
|
|
KIND_OTHER,
|
|
|
|
UNITS_BYTES,
|
2011-05-22 19:49:56 -07:00
|
|
|
GetHeapZone0Used,
|
2011-06-16 11:34:09 -07:00
|
|
|
"Memory mapped by the heap allocator in the default zone that is "
|
2011-07-07 06:14:53 -07:00
|
|
|
"allocated to the application.")
|
|
|
|
|
2010-05-20 22:58:53 -07:00
|
|
|
#else
|
|
|
|
|
2011-07-07 06:14:53 -07:00
|
|
|
static PRInt64 GetHeapAllocated()
|
2011-05-03 17:12:58 -07:00
|
|
|
{
|
|
|
|
return (PRInt64) -1;
|
2010-05-20 22:58:53 -07:00
|
|
|
}
|
|
|
|
|
2011-07-07 06:14:53 -07:00
|
|
|
static PRInt64 GetHeapUnallocated()
|
2011-05-03 17:12:58 -07:00
|
|
|
{
|
2011-07-07 06:14:53 -07:00
|
|
|
return (PRInt64) -1;
|
2011-05-03 17:12:58 -07:00
|
|
|
}
|
2010-05-20 22:58:53 -07:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2011-07-07 06:14:53 -07:00
|
|
|
NS_MEMORY_REPORTER_IMPLEMENT(HeapUnallocated,
|
|
|
|
"heap-unallocated",
|
2011-06-16 11:34:09 -07:00
|
|
|
KIND_OTHER,
|
|
|
|
UNITS_BYTES,
|
2011-07-07 06:14:53 -07:00
|
|
|
GetHeapUnallocated,
|
|
|
|
"Memory mapped by the heap allocator that is not part of an active "
|
|
|
|
"allocation. Much of this memory may be uncommitted -- that is, it does not "
|
|
|
|
"take up space in physical memory or in the swap file. Committed and "
|
|
|
|
"unallocated memory, perhaps a result of fragmentation, is reported in "
|
|
|
|
"heap-dirty, if that measure is available.")
|
|
|
|
|
|
|
|
NS_MEMORY_REPORTER_IMPLEMENT(HeapAllocated,
|
|
|
|
"heap-allocated",
|
2011-06-16 11:34:09 -07:00
|
|
|
KIND_OTHER,
|
|
|
|
UNITS_BYTES,
|
2011-07-07 06:14:53 -07:00
|
|
|
GetHeapAllocated,
|
|
|
|
"Memory mapped by the heap allocator that is currently allocated to the "
|
|
|
|
"application. This may exceed the amount of memory requested by the "
|
|
|
|
"application because the allocator regularly rounds up request sizes. (The "
|
|
|
|
"exact amount requested is not recorded.)")
|
2011-05-03 17:12:58 -07:00
|
|
|
|
2009-10-03 00:21:34 -07:00
|
|
|
/**
|
|
|
|
** nsMemoryReporterManager implementation
|
|
|
|
**/
|
|
|
|
|
2010-12-15 09:47:16 -08:00
|
|
|
NS_IMPL_THREADSAFE_ISUPPORTS1(nsMemoryReporterManager, nsIMemoryReporterManager)
|
2008-03-05 17:28:25 -08:00
|
|
|
|
2009-10-03 00:21:34 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsMemoryReporterManager::Init()
|
|
|
|
{
|
2010-11-17 00:56:19 -08:00
|
|
|
#if HAVE_JEMALLOC_STATS && defined(XP_LINUX)
|
|
|
|
if (!jemalloc_stats)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
#endif
|
2011-05-03 17:12:58 -07:00
|
|
|
|
2010-05-20 22:58:53 -07:00
|
|
|
#define REGISTER(_x) RegisterReporter(new NS_MEMORY_REPORTER_NAME(_x))
|
2009-10-03 00:21:34 -07:00
|
|
|
|
2011-07-07 06:14:53 -07:00
|
|
|
REGISTER(HeapAllocated);
|
|
|
|
REGISTER(HeapUnallocated);
|
2011-05-03 17:12:58 -07:00
|
|
|
REGISTER(Resident);
|
2009-10-03 00:21:34 -07:00
|
|
|
|
2011-06-30 07:46:30 -07:00
|
|
|
#if defined(XP_LINUX) || defined(XP_MACOSX) || defined(XP_WIN)
|
2011-06-29 21:48:57 -07:00
|
|
|
REGISTER(Vsize);
|
2011-06-30 07:46:30 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(XP_LINUX) || defined(XP_MACOSX)
|
2011-07-06 23:37:26 -07:00
|
|
|
REGISTER(PageFaultsSoft);
|
|
|
|
REGISTER(PageFaultsHard);
|
2011-06-30 07:46:30 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(XP_WIN) && MOZ_WINSDK_TARGETVER >= MOZ_NTDDI_LONGHORN
|
2011-05-22 19:49:56 -07:00
|
|
|
REGISTER(Private);
|
|
|
|
#endif
|
|
|
|
|
2011-09-06 08:57:58 -07:00
|
|
|
#if defined(HAVE_JEMALLOC_STATS) && defined(XP_WIN)
|
|
|
|
// heap-committed is only meaningful where we have MALLOC_DECOMMIT defined
|
|
|
|
// (currently, just on Windows). Elsewhere, it's the same as
|
|
|
|
// stats->mapped, which is heap-allocated + heap-unallocated.
|
|
|
|
//
|
|
|
|
// Ideally, we'd check for MALLOC_DECOMMIT in the #if defined above, but
|
|
|
|
// MALLOC_DECOMMIT is defined in jemalloc.c, not a header, so we'll just
|
|
|
|
// have to settle for the OS check for now.
|
|
|
|
|
2011-05-03 17:12:58 -07:00
|
|
|
REGISTER(HeapCommitted);
|
2011-09-06 08:57:58 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(HAVE_JEMALLOC_STATS)
|
2011-05-03 17:12:58 -07:00
|
|
|
REGISTER(HeapDirty);
|
2009-10-03 00:21:34 -07:00
|
|
|
#elif defined(XP_MACOSX) && !defined(MOZ_MEMORY)
|
2011-05-03 17:12:58 -07:00
|
|
|
REGISTER(HeapZone0Committed);
|
|
|
|
REGISTER(HeapZone0Used);
|
2009-10-03 00:21:34 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-12-15 09:47:16 -08:00
|
|
|
nsMemoryReporterManager::nsMemoryReporterManager()
|
|
|
|
: mMutex("nsMemoryReporterManager::mMutex")
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsMemoryReporterManager::~nsMemoryReporterManager()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-03-05 17:28:25 -08:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsMemoryReporterManager::EnumerateReporters(nsISimpleEnumerator **result)
|
|
|
|
{
|
2010-12-15 09:47:16 -08:00
|
|
|
nsresult rv;
|
2011-05-03 17:12:58 -07:00
|
|
|
mozilla::MutexAutoLock autoLock(mMutex);
|
2010-12-15 09:47:16 -08:00
|
|
|
rv = NS_NewArrayEnumerator(result, mReporters);
|
|
|
|
return rv;
|
2008-03-05 17:28:25 -08:00
|
|
|
}
|
|
|
|
|
2011-06-29 16:39:32 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsMemoryReporterManager::EnumerateMultiReporters(nsISimpleEnumerator **result)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
mozilla::MutexAutoLock autoLock(mMutex);
|
|
|
|
rv = NS_NewArrayEnumerator(result, mMultiReporters);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2008-03-05 17:28:25 -08:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsMemoryReporterManager::RegisterReporter(nsIMemoryReporter *reporter)
|
|
|
|
{
|
2011-05-03 17:12:58 -07:00
|
|
|
mozilla::MutexAutoLock autoLock(mMutex);
|
2008-03-05 17:28:25 -08:00
|
|
|
if (mReporters.IndexOf(reporter) != -1)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
mReporters.AppendObject(reporter);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-06-29 16:39:32 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsMemoryReporterManager::RegisterMultiReporter(nsIMemoryMultiReporter *reporter)
|
|
|
|
{
|
|
|
|
mozilla::MutexAutoLock autoLock(mMutex);
|
|
|
|
if (mMultiReporters.IndexOf(reporter) != -1)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
mMultiReporters.AppendObject(reporter);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2008-03-05 17:28:25 -08:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsMemoryReporterManager::UnregisterReporter(nsIMemoryReporter *reporter)
|
|
|
|
{
|
2011-05-03 17:12:58 -07:00
|
|
|
mozilla::MutexAutoLock autoLock(mMutex);
|
2008-03-05 17:28:25 -08:00
|
|
|
if (!mReporters.RemoveObject(reporter))
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-06-29 16:39:32 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsMemoryReporterManager::UnregisterMultiReporter(nsIMemoryMultiReporter *reporter)
|
|
|
|
{
|
|
|
|
mozilla::MutexAutoLock autoLock(mMutex);
|
|
|
|
if (!mMultiReporters.RemoveObject(reporter))
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-07-06 22:54:34 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsMemoryReporterManager::GetResident(PRInt64 *aResident)
|
|
|
|
{
|
|
|
|
*aResident = ::GetResident();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct MemoryReport {
|
|
|
|
MemoryReport(const nsACString &path, PRInt64 amount)
|
|
|
|
: path(path), amount(amount)
|
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(MemoryReport);
|
|
|
|
}
|
|
|
|
MemoryReport(const MemoryReport& rhs)
|
|
|
|
: path(rhs.path), amount(rhs.amount)
|
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(MemoryReport);
|
|
|
|
}
|
|
|
|
~MemoryReport()
|
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(MemoryReport);
|
|
|
|
}
|
|
|
|
const nsCString path;
|
|
|
|
PRInt64 amount;
|
|
|
|
};
|
|
|
|
|
|
|
|
// This is just a wrapper for InfallibleTArray<MemoryReport> that implements
|
|
|
|
// nsISupports, so it can be passed to nsIMemoryMultiReporter::CollectReports.
|
|
|
|
class MemoryReportsWrapper : public nsISupports {
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
MemoryReportsWrapper(InfallibleTArray<MemoryReport> *r) : mReports(r) { }
|
|
|
|
InfallibleTArray<MemoryReport> *mReports;
|
|
|
|
};
|
|
|
|
NS_IMPL_ISUPPORTS0(MemoryReportsWrapper)
|
|
|
|
|
|
|
|
class MemoryReportCallback : public nsIMemoryMultiReporterCallback
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
NS_IMETHOD Callback(const nsACString &aProcess, const nsACString &aPath,
|
|
|
|
PRInt32 aKind, PRInt32 aUnits, PRInt64 aAmount,
|
|
|
|
const nsACString &aDescription,
|
|
|
|
nsISupports *aWrappedMRs)
|
|
|
|
{
|
2011-08-05 15:22:11 -07:00
|
|
|
if (aKind == nsIMemoryReporter::KIND_NONHEAP &&
|
|
|
|
PromiseFlatCString(aPath).Find("explicit") == 0 &&
|
|
|
|
aAmount != PRInt64(-1)) {
|
|
|
|
|
2011-07-06 22:54:34 -07:00
|
|
|
MemoryReportsWrapper *wrappedMRs =
|
|
|
|
static_cast<MemoryReportsWrapper *>(aWrappedMRs);
|
|
|
|
MemoryReport mr(aPath, aAmount);
|
|
|
|
wrappedMRs->mReports->AppendElement(mr);
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
NS_IMPL_ISUPPORTS1(
|
|
|
|
MemoryReportCallback
|
|
|
|
, nsIMemoryMultiReporterCallback
|
|
|
|
)
|
|
|
|
|
|
|
|
// Is path1 a prefix, and thus a parent, of path2? Eg. "a/b" is a parent of
|
|
|
|
// "a/b/c", but "a/bb" is not.
|
|
|
|
static bool
|
|
|
|
isParent(const nsACString &path1, const nsACString &path2)
|
|
|
|
{
|
|
|
|
if (path1.Length() >= path2.Length())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const nsACString& subStr = Substring(path2, 0, path1.Length());
|
|
|
|
return subStr.Equals(path1) && path2[path1.Length()] == '/';
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsMemoryReporterManager::GetExplicit(PRInt64 *aExplicit)
|
|
|
|
{
|
2011-07-19 07:33:49 -07:00
|
|
|
InfallibleTArray<MemoryReport> nonheap;
|
2011-07-06 22:54:34 -07:00
|
|
|
PRInt64 heapUsed = PRInt64(-1);
|
|
|
|
|
2011-07-19 07:33:49 -07:00
|
|
|
// Get "heap-allocated" and all the KIND_NONHEAP measurements from vanilla
|
2011-08-05 15:22:11 -07:00
|
|
|
// "explicit" reporters.
|
2011-07-06 22:54:34 -07:00
|
|
|
nsCOMPtr<nsISimpleEnumerator> e;
|
|
|
|
EnumerateReporters(getter_AddRefs(e));
|
|
|
|
|
|
|
|
PRBool more;
|
|
|
|
while (NS_SUCCEEDED(e->HasMoreElements(&more)) && more) {
|
|
|
|
nsCOMPtr<nsIMemoryReporter> r;
|
|
|
|
e->GetNext(getter_AddRefs(r));
|
|
|
|
|
|
|
|
PRInt32 kind;
|
|
|
|
nsresult rv = r->GetKind(&kind);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2011-08-05 15:22:11 -07:00
|
|
|
nsCString path;
|
|
|
|
rv = r->GetPath(path);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
// We're only interested in NONHEAP explicit reporters and
|
|
|
|
// the 'heap-allocated' reporter.
|
|
|
|
if (kind == nsIMemoryReporter::KIND_NONHEAP &&
|
|
|
|
path.Find("explicit") == 0) {
|
2011-07-06 22:54:34 -07:00
|
|
|
|
|
|
|
PRInt64 amount;
|
|
|
|
rv = r->GetAmount(&amount);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2011-07-19 07:33:49 -07:00
|
|
|
// Just skip any NONHEAP reporters that fail, because
|
2011-07-07 06:14:53 -07:00
|
|
|
// "heap-allocated" is the most important one.
|
2011-07-06 22:54:34 -07:00
|
|
|
if (amount != PRInt64(-1)) {
|
|
|
|
MemoryReport mr(path, amount);
|
2011-07-19 07:33:49 -07:00
|
|
|
nonheap.AppendElement(mr);
|
2011-07-06 22:54:34 -07:00
|
|
|
}
|
2011-08-05 15:22:11 -07:00
|
|
|
} else if (path.Equals("heap-allocated")) {
|
|
|
|
rv = r->GetAmount(&heapUsed);
|
2011-07-06 22:54:34 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2011-08-05 15:22:11 -07:00
|
|
|
// If "heap-allocated" fails, we give up, because the result
|
|
|
|
// would be horribly inaccurate.
|
|
|
|
if (heapUsed == PRInt64(-1)) {
|
|
|
|
*aExplicit = PRInt64(-1);
|
|
|
|
return NS_OK;
|
2011-07-06 22:54:34 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-19 07:33:49 -07:00
|
|
|
// Get KIND_NONHEAP measurements from multi-reporters, too.
|
2011-07-06 22:54:34 -07:00
|
|
|
nsCOMPtr<nsISimpleEnumerator> e2;
|
|
|
|
EnumerateMultiReporters(getter_AddRefs(e2));
|
|
|
|
nsRefPtr<MemoryReportsWrapper> wrappedMRs =
|
2011-07-19 07:33:49 -07:00
|
|
|
new MemoryReportsWrapper(&nonheap);
|
2011-08-05 15:22:11 -07:00
|
|
|
|
|
|
|
// This callback adds only NONHEAP explicit reporters.
|
2011-07-06 22:54:34 -07:00
|
|
|
nsRefPtr<MemoryReportCallback> cb = new MemoryReportCallback();
|
|
|
|
|
|
|
|
while (NS_SUCCEEDED(e2->HasMoreElements(&more)) && more) {
|
|
|
|
nsCOMPtr<nsIMemoryMultiReporter> r;
|
|
|
|
e2->GetNext(getter_AddRefs(r));
|
|
|
|
r->CollectReports(cb, wrappedMRs);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ignore (by zeroing its amount) any reporter that is a child of another
|
|
|
|
// reporter. Eg. if we have "explicit/a" and "explicit/a/b", zero the
|
2011-08-05 15:22:11 -07:00
|
|
|
// latter. This is quadratic in the number of explicit NONHEAP reporters,
|
|
|
|
// but there shouldn't be many.
|
2011-07-19 07:33:49 -07:00
|
|
|
for (PRUint32 i = 0; i < nonheap.Length(); i++) {
|
|
|
|
const nsCString &iPath = nonheap[i].path;
|
|
|
|
for (PRUint32 j = i + 1; j < nonheap.Length(); j++) {
|
|
|
|
const nsCString &jPath = nonheap[j].path;
|
2011-07-06 22:54:34 -07:00
|
|
|
if (isParent(iPath, jPath)) {
|
2011-07-19 07:33:49 -07:00
|
|
|
nonheap[j].amount = 0;
|
2011-07-06 22:54:34 -07:00
|
|
|
} else if (isParent(jPath, iPath)) {
|
2011-07-19 07:33:49 -07:00
|
|
|
nonheap[i].amount = 0;
|
2011-07-06 22:54:34 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-19 07:33:49 -07:00
|
|
|
// Sum all the nonheap reporters and heapUsed.
|
2011-07-06 22:54:34 -07:00
|
|
|
*aExplicit = heapUsed;
|
2011-07-19 07:33:49 -07:00
|
|
|
for (PRUint32 i = 0; i < nonheap.Length(); i++) {
|
|
|
|
*aExplicit += nonheap[i].amount;
|
2011-07-06 22:54:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-02-16 10:43:23 -08:00
|
|
|
NS_IMPL_ISUPPORTS1(nsMemoryReporter, nsIMemoryReporter)
|
|
|
|
|
2011-07-07 19:45:16 -07:00
|
|
|
nsMemoryReporter::nsMemoryReporter(nsACString& process,
|
|
|
|
nsACString& path,
|
2011-05-22 19:49:56 -07:00
|
|
|
PRInt32 kind,
|
2011-06-16 11:34:09 -07:00
|
|
|
PRInt32 units,
|
|
|
|
PRInt64 amount,
|
2011-07-07 19:45:16 -07:00
|
|
|
nsACString& desc)
|
2011-06-05 18:22:45 -07:00
|
|
|
: mProcess(process)
|
|
|
|
, mPath(path)
|
|
|
|
, mKind(kind)
|
2011-06-16 11:34:09 -07:00
|
|
|
, mUnits(units)
|
|
|
|
, mAmount(amount)
|
2011-06-30 16:54:42 -07:00
|
|
|
, mDesc(desc)
|
2011-02-16 10:43:23 -08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsMemoryReporter::~nsMemoryReporter()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-07-07 19:45:16 -07:00
|
|
|
NS_IMETHODIMP nsMemoryReporter::GetProcess(nsACString &aProcess)
|
2011-06-05 18:22:45 -07:00
|
|
|
{
|
2011-07-07 19:45:16 -07:00
|
|
|
aProcess.Assign(mProcess);
|
2011-06-05 18:22:45 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-07-07 19:45:16 -07:00
|
|
|
NS_IMETHODIMP nsMemoryReporter::GetPath(nsACString &aPath)
|
2011-02-16 10:43:23 -08:00
|
|
|
{
|
2011-07-07 19:45:16 -07:00
|
|
|
aPath.Assign(mPath);
|
2011-05-03 17:12:58 -07:00
|
|
|
return NS_OK;
|
2011-02-16 10:43:23 -08:00
|
|
|
}
|
|
|
|
|
2011-05-22 19:49:56 -07:00
|
|
|
NS_IMETHODIMP nsMemoryReporter::GetKind(PRInt32 *aKind)
|
|
|
|
{
|
|
|
|
*aKind = mKind;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-06-16 11:34:09 -07:00
|
|
|
NS_IMETHODIMP nsMemoryReporter::GetUnits(PRInt32 *aUnits)
|
2011-02-16 10:43:23 -08:00
|
|
|
{
|
2011-06-16 11:34:09 -07:00
|
|
|
*aUnits = mUnits;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP nsMemoryReporter::GetAmount(PRInt64 *aAmount)
|
|
|
|
{
|
|
|
|
*aAmount = mAmount;
|
2011-05-03 17:12:58 -07:00
|
|
|
return NS_OK;
|
2011-02-16 10:43:23 -08:00
|
|
|
}
|
|
|
|
|
2011-07-07 19:45:16 -07:00
|
|
|
NS_IMETHODIMP nsMemoryReporter::GetDescription(nsACString &aDescription)
|
2011-02-16 10:43:23 -08:00
|
|
|
{
|
2011-07-07 19:45:16 -07:00
|
|
|
aDescription.Assign(mDesc);
|
2011-05-03 17:12:58 -07:00
|
|
|
return NS_OK;
|
2011-02-16 10:43:23 -08:00
|
|
|
}
|
|
|
|
|
2011-08-18 06:46:39 -07:00
|
|
|
nsresult
|
2008-03-05 17:28:25 -08:00
|
|
|
NS_RegisterMemoryReporter (nsIMemoryReporter *reporter)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIMemoryReporterManager> mgr = do_GetService("@mozilla.org/memory-reporter-manager;1");
|
|
|
|
if (mgr == nsnull)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
return mgr->RegisterReporter(reporter);
|
|
|
|
}
|
|
|
|
|
2011-08-18 06:46:39 -07:00
|
|
|
nsresult
|
2011-06-29 16:39:32 -07:00
|
|
|
NS_RegisterMemoryMultiReporter (nsIMemoryMultiReporter *reporter)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIMemoryReporterManager> mgr = do_GetService("@mozilla.org/memory-reporter-manager;1");
|
|
|
|
if (mgr == nsnull)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
return mgr->RegisterMultiReporter(reporter);
|
|
|
|
}
|
|
|
|
|
2011-08-18 06:46:39 -07:00
|
|
|
nsresult
|
2008-03-05 17:28:25 -08:00
|
|
|
NS_UnregisterMemoryReporter (nsIMemoryReporter *reporter)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIMemoryReporterManager> mgr = do_GetService("@mozilla.org/memory-reporter-manager;1");
|
|
|
|
if (mgr == nsnull)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
return mgr->UnregisterReporter(reporter);
|
|
|
|
}
|
|
|
|
|
2011-08-18 06:46:39 -07:00
|
|
|
nsresult
|
2011-06-29 16:39:32 -07:00
|
|
|
NS_UnregisterMemoryMultiReporter (nsIMemoryMultiReporter *reporter)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIMemoryReporterManager> mgr = do_GetService("@mozilla.org/memory-reporter-manager;1");
|
|
|
|
if (mgr == nsnull)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
return mgr->UnregisterMultiReporter(reporter);
|
|
|
|
}
|
|
|
|
|