Nicholas Nethercote
|
e8a94a9944
|
Bug 831193 (part 1) - Remove uses of NS_MEMORY_REPORTER_IMPLEMENT from nsMemoryReporterManager.cpp. r=jlebar.
--HG--
extra : rebase_source : bb51ea8dcd4600a675a0ce1ddb45d7ced4f8c359
|
2013-01-15 23:02:45 -08:00 |
|
Nicholas Nethercote
|
e7d64e972a
|
Bug 829439 (part 1) - Add MemoryReporterBase class that promotes better encapsulation within nsIMemoryReporter sub-classes. r=jlebar.
--HG--
extra : rebase_source : 53a77ea456f2aedafe05954ceece7e64db743e66
|
2013-01-14 16:26:47 -08:00 |
|
Nicholas Nethercote
|
b7723e3c58
|
Bug 819819 (part 2) - Remove |name| from NS_MEMORY_REPORTER_MALLOC_SIZEOF_FUN. r=jlebar.
--HG--
rename : dom/tests/mochitest/localstorage/test_localStorageQuotaPrivateBrowsing_perwindowpb.html => dom/tests/mochitest/localstorage/test_localStorageQuotaPrivateBrowsing.html
rename : toolkit/components/places/tests/browser/browser_favicon_privatebrowsing_perwindowpb.js => toolkit/components/places/tests/browser/browser_favicon_privatebrowsing.js
extra : rebase_source : 557cc60522970ce7eea3b006d357284d9b4694c4
|
2012-12-23 16:59:51 -08:00 |
|
Nicholas Nethercote
|
efaf0192cb
|
Bug 819819 (part 1) - Remove DMDV. r=khuey.
--HG--
extra : rebase_source : af193a276409e33f0099d256cdfcd0f11917ea25
|
2012-12-20 23:03:50 -08:00 |
|
Nicholas Nethercote
|
7f23ff5546
|
Bug 822148 (part 1) - DMD: remove reporter names from output because they're redundant. r=jlebar.
--HG--
extra : rebase_source : c9bf57dbd3612719ba60951cb14988ec38b392f0
|
2012-12-16 16:56:04 -08:00 |
|
Gabriele Svelto
|
ba62bce29e
|
Bug 814771 - Add a cancelable runnable and use it to cancel a pending memory minimization procedure when an application is brought to the foreground r=jlebar
|
2012-12-11 19:13:29 +01:00 |
|
Nicholas Nethercote
|
7d32dc00e9
|
Bug 717853 - Add a native version of DMD. r=jlebar,glandium.
--HG--
extra : rebase_source : 9b824556591abd63b42aa7ff823e9cd25976c162
|
2012-12-10 16:05:07 -08:00 |
|
Justin Lebar
|
46036e9207
|
Bug 800166 - Fire a low-memory notification when a B2G process is backgrounded. r=gwagner,bent
|
2012-10-22 15:40:19 -04:00 |
|
Justin Lebar
|
4a590b2df4
|
Bug 800486 - Part 2: Move signal-watching and memory-report-dumping code out of nsMemoryReporterManager and into a new file, MemoryInfoDumper. r=njn
|
2012-10-15 22:12:14 -04:00 |
|
Justin Lebar
|
70048a2062
|
Bug 800486 - Part 1: Dump a GC and CC log upon receiving SIGRTMIN + 2. r=mccr8,njn,cjones
|
2012-10-15 22:12:14 -04:00 |
|
Nicholas Nethercote
|
e844eb7d01
|
Bug 800187 (part 2) - Add a clarifying comment about memory reporter registration. r=bz.
--HG--
extra : rebase_source : 950d0a0bb9a6ffdea94b41ae16f62a407acff6d8
|
2012-10-11 21:05:42 -07:00 |
|
Nicholas Nethercote
|
3ee916ea11
|
Bug 800703 - Rename the existing, Valgrind-based DMD as "DMDV". r=khuey.
--HG--
rename : xpcom/base/dmd.h => tools/dmdv/dmdv.h
|
2012-10-08 15:31:17 -07:00 |
|
Justin Lebar
|
b252cbe108
|
Bug 788021 - Part 2: Add and implement nsIMemoryReporter::DumpMemoryReportsToFile. r=njn,cjones
|
2012-10-02 21:19:11 -04:00 |
|
Phil Ringnalda
|
9823cbba0f
|
Back out 17b5b5dcd308, 04af81445c05, 15cc0aabab67 (bug 788021) and 2575a2f89d22 (bug 790417) for Linux crashes
|
2012-10-01 23:00:51 -07:00 |
|
Justin Lebar
|
0de944c855
|
Bug 788021 - Part 2: Add and implement nsIMemoryReporter::DumpMemoryReportsToFile. r=njn,cjones
|
2012-10-02 00:11:42 -04:00 |
|
Nicholas Nethercote
|
d72524cd51
|
Bug 768470 - Add ability to import/export memory reports as JSON. r=jlebar.
--HG--
extra : rebase_source : 8e03a7e8c82204ea8e353a9ba583c4d53917a267
|
2012-08-27 18:14:14 -07:00 |
|
Ehsan Akhgari
|
e368dc9c85
|
Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg
This patch was generated by a script. Here's the source of the script for
future reference:
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
! -wholename "*security/nss*" \
! -wholename "*/.hg*" \
! -wholename "obj-ff-dbg*" \
! -name nsXPCOMCID.h \
! -name prtypes.h \
-type f \
\( -iname "*.cpp" \
-o -iname "*.h" \
-o -iname "*.c" \
-o -iname "*.cc" \
-o -iname "*.idl" \
-o -iname "*.ipdl" \
-o -iname "*.ipdlh" \
-o -iname "*.mm" \) | \
xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}
convert PRInt8 int8_t
convert PRUint8 uint8_t
convert PRInt16 int16_t
convert PRUint16 uint16_t
convert PRInt32 int32_t
convert PRUint32 uint32_t
convert PRInt64 int64_t
convert PRUint64 uint64_t
convert PRIntn int
convert PRUintn unsigned
convert PRSize size_t
convert PROffset32 int32_t
convert PROffset64 int64_t
convert PRPtrdiff ptrdiff_t
convert PRFloat64 double
|
2012-08-22 11:56:38 -04:00 |
|
Nicholas Nethercote
|
e23d7588a7
|
Bug 711130 (part 5) - Overhaul the "other measurements" measurements for JS memory consumption. r=terrence.
--HG--
extra : rebase_source : 492af75618c40eb2a92be2756f67db93834729cf
|
2012-06-25 17:08:59 -07:00 |
|
Nathan Froyd
|
70bf86d653
|
Bug 764985 - make memory reporter helper macros ever-so-slightly more efficient; r=njn
|
2012-06-14 16:29:00 -04:00 |
|
Nicholas Nethercote
|
a9106b5cbe
|
Bug 760352 (part 1) - Allow KIND_OTHER memory reports to be in trees. r=jlebar.
--HG--
extra : rebase_source : d28d117fbc2c91069222649741f5ef6b567b3e2a
|
2012-06-11 20:29:12 -07:00 |
|
Gervase Markham
|
82ff7027aa
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
|
Justin Lebar
|
1dff62b86c
|
Bug 748440 - Part 1: Add heap-committed-unused and heap-committed-unused-ratio memory reporters, and rename some JS memory reporters to match. Also add back the js-gc-heap memory reporter. r=njn
--HG--
rename : browser/components/privatebrowsing/test/unit/test_privatebrowsing_telemetry.js => browser/components/privatebrowsing/test/unit/test_privatebrowsing_autostart.js
rename : browser/components/privatebrowsing/test/unit/test_privatebrowsingwrapper_telemetry.js => browser/components/privatebrowsing/test/unit/test_privatebrowsingwrapper_autostart.js
rename : security/manager/ssl/src/TransportSecurityInfo.cpp => security/manager/ssl/src/nsNSSIOLayer.cpp
rename : security/manager/ssl/src/TransportSecurityInfo.h => security/manager/ssl/src/nsNSSIOLayer.h
extra : rebase_source : 237a72f9b82f0e39dd0f15afa6056f231dc58358
|
2012-04-30 14:27:15 -04:00 |
|
Nicholas Nethercote
|
b954a09a35
|
Bug 744311 (part 2) - Don't use -1 to represent "unknown" in memory reporters. r=jlebar.
--HG--
extra : rebase_source : 8f726aef17e5b814f5b740b453c9a67a1ef7646d
|
2012-04-11 19:38:31 -07:00 |
|
Justin Lebar
|
31cebc2b87
|
Bug 738624 - Add ghost windows to about:compartments. r=njn
--HG--
extra : rebase_source : c16cdfc4c06b363f54f1d0f37bb006cf977b079a
|
2012-04-02 22:28:05 -04:00 |
|
Matt Brubeck
|
6113f7efa8
|
Back out bug 738011, bug 738624, and bug 737857 because of WinXP debug reftest log errors
--HG--
extra : rebase_source : 965c755f6416e2ca102b38633fe7a2c7267e956e
|
2012-04-02 12:44:31 -07:00 |
|
Justin Lebar
|
39bee4009c
|
Bug 738624 - Add ghost windows to about:compartments. r=njn
--HG--
extra : rebase_source : a486e644351af72a4276f26de2e4588ee851426f
|
2012-04-02 10:37:04 -04:00 |
|
Ed Morley
|
3de190bb3e
|
Backout 9e4d09efa335 (bug 737857), bd73daadcfe9 (bug 738624), 110338618465 (bug 738011) for mochitest-oth orange
|
2012-04-01 03:58:06 +01:00 |
|
Justin Lebar
|
285de39efb
|
Bug 738624 - Add ghost windows to about:compartments. r=njn
--HG--
extra : rebase_source : 37480ae937cbe2a09ae0ce7c187dafef94db5e16
|
2012-03-31 15:39:31 -07:00 |
|
Nicholas Nethercote
|
4583ceebea
|
Bug 732842 - Add assertions for memory reports. r=jlebar.
|
2012-03-15 15:16:11 -07:00 |
|
Nicholas Nethercote
|
a14057dd8c
|
Bug 702300 (part 8) - Add about:compartments. r=jlebar, ehsan.
--HG--
extra : rebase_source : ad9de010f0b51d5ae7d74b8cbc04c8748767ec0b
|
2012-02-16 22:10:39 -08:00 |
|
Nicholas Nethercote
|
5a1cbe043f
|
Bug 689583 - Add names for memory multi-reporters. r=jlebar.
--HG--
extra : rebase_source : adb3fb2cbbb8a07b60edd48c7dc9a3a4a4763b79
|
2012-02-06 17:02:59 -08:00 |
|
Rafael Ávila de Espíndola
|
7ab5ca14fb
|
Bug 723501 - Mark MemoryReporter_* final. r=justin.lebar.
--HG--
extra : rebase_source : 7c1066ab8353c8d4766b060491cbbd4adfa44ce0
|
2012-02-03 10:22:01 +01:00 |
|
Nicholas Nethercote
|
0709e1673b
|
Bug 671299 (part 3) - Add style sheet memory reporters. r=dbaron.
|
2012-01-02 18:19:14 -08:00 |
|
Nicholas Nethercote
|
7559a70a04
|
Bug 715453 - Remove computedSize from nsMallocSizeOfFun. r=jlebar,bhackett.
--HG--
extra : rebase_source : a65039a407daab45360a5b375b53cbf1bc05b7f6
|
2012-01-25 00:52:51 -08:00 |
|
Nicholas Nethercote
|
bfdbdcd83a
|
Bug 715453 (part 2) - Ignore computedSize in nsMallocSizeOfFun. r=jlebar.
|
2012-01-17 20:23:55 -08:00 |
|
Nicholas Nethercote
|
f54b204948
|
Bug 700508 - Disallow non-leaf memory reporters (attempt 3). r=jlebar.
|
2012-01-07 21:45:35 +11:00 |
|
Nicholas Nethercote
|
530f96e164
|
Bug 715453 (part 1) - Remove NS_MEMORY_REPORTER_CHECK_SIZES. rs=edmorley.
--HG--
extra : rebase_source : 79361dc475812d7f804ceaab4e3313127f96b677
|
2012-01-07 13:01:18 +11:00 |
|
Ed Morley
|
b9d68ddfdd
|
Backout 4779d8df054b (bug 700508) for linux64 Moth orange
|
2012-01-06 16:23:05 +00:00 |
|
Nicholas Nethercote
|
56807bf845
|
Bug 700508 - Disallow non-leaf memory reporters (attempt 2). r=jlebar.
--HG--
extra : rebase_source : 040e3e7093f019caf7157a316e5fc75654eb5d65
|
2012-01-05 19:41:31 -08:00 |
|
Nicholas Nethercote
|
01617bd3af
|
Bug 708159 - Avoid unnecessary work done by multi-reporters in nsMemoryReporterManager::GetExplicit. r=jlebar,bent.
|
2011-12-12 19:04:12 -08:00 |
|
Nicholas Nethercote
|
6bbcf3b4f8
|
Bug 704400 - Implement --enable-dmd. r=khuey.
|
2011-12-08 19:09:36 -08:00 |
|
Nicholas Nethercote
|
6adcf21f7f
|
Bug 703143 - backout 61d41436beb3 so that bug 700508 can be backed out. r=crashes.
|
2011-12-08 11:34:18 -08:00 |
|
Nicholas Nethercote
|
e2df423d2d
|
Bug 700508 - Disallow non-leaf memory reporters. r=jlebar.
|
2011-12-06 16:20:17 -08:00 |
|
Nicholas Nethercote
|
6c6258e659
|
Bug 698968 - Add mallocSizeOf functions and start using them. r=jlebar,bhackett,jfkthame, sr=bz.
|
2011-11-27 19:03:14 -08:00 |
|
Justin Lebar
|
81a4fe113d
|
Bug 674290 - Expose contents of /proc/self/maps and smaps in about:memory. r=njn
--HG--
extra : rebase_source : 3bbe2f926ba3b0c46a122d51b027a5a6283ae2b0
|
2011-08-05 18:22:11 -04:00 |
|
Matt Brubeck
|
353c30193a
|
Back out 6cd3556fc807 (bug 674290) because of unittest leaks
|
2011-09-06 20:42:09 -07:00 |
|
Justin Lebar
|
b8add9c282
|
Bug 674290 - Expose contents of /proc/self/maps and smaps in about:memory. r=njn
|
2011-08-05 18:22:11 -04:00 |
|
Matheus Kerschbaum
|
8a4cb927fd
|
Bug 678155 - Remove NS_COM. r=bsmedberg
|
2011-08-18 15:46:39 +02:00 |
|
Justin Lebar
|
e99e6d9530
|
Bug 672731 - Followup to fix botched merge. Update the comment for UNITS_COUNT in nsIMemoryReporter. r=njn
|
2011-07-26 09:19:55 -04:00 |
|
Justin Lebar
|
eb96e07e82
|
Bug 672731 - Add UNITS_COUNT_CUMULATIVE to nsIMemoryReporter. r=njn
|
2011-07-24 23:56:50 -04:00 |
|