Trevor Saunders
|
b2dc01f1a7
|
bug 886526 - remove IS_COMPONENT and MODULE_NAME makefile vars for things in libxul r=bsmedberg r=glandium
|
2013-08-08 20:12:37 -04:00 |
|
Benoit Girard
|
ccf5b21c9c
|
Bug 820048 - Add microsecond profiling. r=ehsan
--HG--
extra : rebase_source : 40fee30c92f7e74dbe1e24778b66813beb8505da
|
2013-03-26 12:34:27 -04:00 |
|
Julian Seward
|
2e83bdb735
|
Bug 880158 - Remove glibc backtrace() native unwind on Linux. r=bgirard.
--HG--
extra : rebase_source : 0a9e752acfe2cad6ec1995c4d4e823e7d9adef23
|
2013-08-08 18:48:20 +02:00 |
|
Nicholas Nethercote
|
849635b8f1
|
Bug 898914 (part 1) - Remove JSBool.
--HG--
extra : rebase_source : 2d202e0e5005a7f54724b1540481c15cde3ad52e
|
2013-08-08 15:53:04 -07:00 |
|
Nicholas Nethercote
|
aa5919539d
|
Bug 902332 - Replace JS_{FALSE,TRUE} with {false,true} almost everywhere. r=luke,bz.
--HG--
extra : rebase_source : 25f4de1bfae830b0af6407d260a70b787ab1dc9b
|
2013-08-06 23:59:54 -07:00 |
|
Gijs Kruitbosch
|
67a8f23d20
|
Bug 901481 - add an environment variable to set the number of entries kept by the profiler, r=BenWa
|
2013-08-05 18:03:22 +02:00 |
|
Julian Seward
|
710e916d72
|
Bug 892774 - Breakpad Stack scan: speed up MyCodeModules::GetModuleForAddress. r=bgirard.
|
2013-08-06 10:36:10 +02:00 |
|
Jon Coppeard
|
da8c061053
|
Bug 900986 - Convert JS_*Element API to use MutableHandleValue for out params r=terrence r=bholley r=smaug
|
2013-08-05 14:02:47 +01:00 |
|
Bobby Holley
|
595cbc9fd5
|
Bug 897322 - Allow callers to manually fire OnNewGlobalObject when bootstrapping is complete. r=luke
|
2013-08-01 18:38:47 -07:00 |
|
Gregory Szorc
|
6d4af5d774
|
Bug 899818 - Don't add quotes to values when writing Mercurial configs; r=Gijs
DONTBUILD (NPOTB)
|
2013-07-31 00:07:57 -07:00 |
|
Ehsan Akhgari
|
085494b95d
|
Bug 895322 - Part 1: Replace the usages of MOZ_STATIC_ASSERT with C++11 static_assert; r=Waldo
This patch was mostly generated by running the following scripts on the codebase, with some
manual changes made afterwards:
# static_assert.sh
#!/bin/bash
# Command to convert an NSPR integer type to the equivalent standard integer type
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 "*.cc" \
-o -iname "*.mm" \) | \
xargs -n 1 `dirname $0`/assert_replacer.py #sed -i -e "s/\b$1\b/$2/g"
}
convert MOZ_STATIC_ASSERT static_assert
hg rev --no-backup mfbt/Assertions.h \
media/webrtc/signaling/src/sipcc/core/includes/ccapi.h \
modules/libmar/src/mar_private.h \
modules/libmar/src/mar.h
# assert_replacer.py
#!/usr/bin/python
import sys
import re
pattern = re.compile(r"\bMOZ_STATIC_ASSERT\b")
def replaceInPlace(fname):
print fname
f = open(fname, "rw+")
lines = f.readlines()
for i in range(0, len(lines)):
while True:
index = re.search(pattern, lines[i])
if index != None:
index = index.start()
lines[i] = lines[i][0:index] + "static_assert" + lines[i][index+len("MOZ_STATIC_ASSERT"):]
for j in range(i + 1, len(lines)):
if lines[j].find(" ", index) == index:
lines[j] = lines[j][0:index] + lines[j][index+4:]
else:
break
else:
break
f.seek(0, 0)
f.truncate()
f.write("".join(lines))
f.close()
argc = len(sys.argv)
for i in range(1, argc):
replaceInPlace(sys.argv[i])
--HG--
extra : rebase_source : 4b4a4047d82f2c205b9fad8d56dfc3f1afc0b045
|
2013-07-18 13:59:53 -04:00 |
|
Ehsan Akhgari
|
3717325909
|
Bug 872127 - Part 2: Replace mozilla/StandardInteger.h with stdint.h; r=Waldo,ted
|
2013-07-30 10:25:31 -04:00 |
|
Gregory Szorc
|
868c958cee
|
Bug 794580 - mach mercurial-setup; r=nalexander
DONTBUILD (NPOTB)
--HG--
extra : rebase_source : b5cfc81d1a0537b5ae25a76c3ccc604383f60f6c
|
2013-07-29 16:58:40 -07:00 |
|
Mike Hommey
|
70e713a366
|
Bug 893976 - Add a mach command to update uuids for specific interfaces and their descendants. r=gps
|
2013-07-30 08:57:28 +09:00 |
|
Ryan VanderMeulen
|
2ef7a9892a
|
Merge m-c to inbound.
|
2013-07-29 18:42:45 -04:00 |
|
Michael Wu
|
e015aaa9a9
|
Bug 898810 - Use bionic's getline where available, r=benwa
|
2013-07-29 13:17:28 -04:00 |
|
Trevor Saunders
|
64dbc43c4d
|
backout bug 886526 because it probably made us use a lot more memory to link on windows
|
2013-07-29 11:03:21 -04:00 |
|
Ehsan Akhgari
|
c069003a4b
|
Bug 895141 - Remove useless prlong.h inclusions from the tree; r=jcranmer
|
2013-07-18 12:06:38 -04:00 |
|
Xavier Fung
|
f68cd7c08f
|
Bug 892858 - Fix profiler build in Visual Studio 2013. r=snorp
|
2013-07-18 10:13:01 +09:00 |
|
Benoit Girard
|
fcfe7f62e4
|
Bug 887826 - Disable multi-threaded profiling on b2g to reduce memory usage. r=jseward
--HG--
extra : rebase_source : c3403864cd772414ddbf5bbda30e65322832e085
|
2013-07-16 09:56:43 -04:00 |
|
Graeme McCutcheon
|
1b75303086
|
Bug 893830 - implement mach uuid. r=gps DONTBUILD
|
2013-07-15 18:00:09 +01:00 |
|
Jed Davis
|
f02f703493
|
Bug 892201: replace SPS signal handler completion busy loop with POSIX semaphore. r=benwa
--HG--
extra : rebase_source : 48bfcc1a352ae600dd1294d5b5e122ad0c58a745
|
2013-07-11 23:41:19 -04:00 |
|
Trevor Saunders
|
238525e2d8
|
bug 887483 - remove a bunch of useless assignments to FORCE_STATIC_LIB implied by LIBXUL_LIBRARY=1 r=mshal
|
2013-07-11 11:06:34 -04:00 |
|
Jim Chen
|
94f8b791d9
|
Bug 888473 - Start GeckoJavaSampler early when profiling startup; r=BenWa
|
2013-07-09 16:34:44 -04:00 |
|
Trevor Saunders
|
ace23958ea
|
bug 886526 - disallow MODULE_NAME and IS_COMPONENT for makefiles in libxul r=bsmedberg
|
2013-06-25 11:15:21 -04:00 |
|
Mike Shal
|
8afd7f737d
|
Bug 880245 - Move EXTRA_JS_MODULES to moz.build (batch #4); r=joey
|
2013-07-01 11:34:30 -04:00 |
|
Benoit Girard
|
2d6bbf0628
|
Bug 872947 - Release pseudostack when unregister thread. r=snorp
|
2013-05-16 11:38:23 -04:00 |
|
Ehsan Akhgari
|
15c2073a3a
|
Bug 579517 follow-up: Remove NSPR types that crept in
|
2013-06-23 20:58:53 -04:00 |
|
Benoit Girard
|
9e23e52a50
|
Bug 873914 - Allow selecting profiled thread. r=snorp
--HG--
extra : rebase_source : 6623126a111b23f8871af1a2e64d077b67cb0930
|
2013-05-16 16:31:50 -04:00 |
|
Brian O'Keefe
|
20b45036df
|
Bug 875934 - Move LIBRARY_NAME to moz.build (batch #2); r=mshal
--HG--
extra : rebase_source : 555b28e5c3412ffc210c60b6fe2fee6f053fd587
|
2013-06-18 08:13:42 -04:00 |
|
Brian O'Keefe
|
ed17339221
|
Bug 875934 - Move LIBRARY_NAME to moz.build (batch #1); r=mshal
--HG--
extra : rebase_source : 385d3fd65475ffc18ee44ae088753649470e214b
|
2013-06-17 15:21:01 -04:00 |
|
Vladimir Vukicevic
|
9e17b8825a
|
b=882906; remove EXTRA_DSO_LIBS; r=ted
|
2013-06-13 22:58:22 -04:00 |
|
Aaron Klotz
|
a1cf98c04e
|
Bug 867762: NSPR and SQLite Main Thread I/O Interposing. r=BenWa
|
2013-06-14 12:01:02 -06:00 |
|
Jim Chen
|
cb655c5149
|
Bug 863777 - Add and turn on privacy mode in profiler for ANR reports; r=BenWa
|
2013-06-14 12:42:10 -04:00 |
|
Jim Chen
|
6e0c1a7ec4
|
Bug 863777 - Letting profiler start/stop from a non-registered thread; r=BenWa
|
2013-06-14 12:42:10 -04:00 |
|
Joey Armstrong
|
410e37a8c5
|
bug 872086: move SIMPLE_PROGRAMS to moz.build (file batch #1) r=mshal
|
2013-06-13 12:02:02 -04:00 |
|
Andrew McCreight
|
bef1e65930
|
Bug 550335 - fix_macosx_stack for 64-bit. r=ted
|
2012-05-25 09:07:24 -07:00 |
|
Florian Quèze
|
ac15af3aee
|
Bug 878419 - Syntax error in make_incremental_updates.py since bug 841094, r=glandium.
|
2013-06-05 18:19:18 +02:00 |
|
Boris Zbarsky
|
897328ff5b
|
Bug 877540. Fix remaining unsafe reference hazards in browser code. r=terrence
|
2013-05-30 17:46:48 -04:00 |
|
Trevor Saunders
|
2d8ba8d27a
|
bug 876519 - include ostream instead of iostream in the profiler to get rid of static initializers r=ehsan
|
2013-05-27 08:29:24 -04:00 |
|
Julian Seward
|
38e97ed8fa
|
Bug 872496 - Allow early registration of stack tops, to improve native unwind quality. r=bgirard.
|
2013-05-28 14:03:38 +02:00 |
|
Mike Shal
|
6f32ddf61c
|
Bug 864774 - Part 2: Move CPPSRCS to moz.build as CPP_SOURCES; r=joey CLOSED TREE
From 9e0ba7f425143f545eb6c4b26a9a96b5ade4d8e9 Mon Sep 17 00:00:00 2001
|
2013-04-23 17:54:15 -04:00 |
|
Joey Armstrong
|
b5eb4cb307
|
bug 870406: move to moz.build (config batch #1) r=mshal
|
2013-05-24 17:21:14 -07:00 |
|
L. David Baron
|
0074731aa4
|
Bug 855081: Make jprof compile for me by switching from cplus_demangle (which doesn't link) to abi::__cxa_demangle. r=jesup
|
2013-05-13 15:37:00 -07:00 |
|
Joey Armstrong
|
0d49db0381
|
bug 869143: phase2 cleanup for XPCSHELL_TEST conversion. r=mshal
|
2013-05-13 16:24:07 -04:00 |
|
Brian O'Keefe
|
3f66654fdb
|
Bug 862986 - Part 2a: Migrate PROGRAM from Makefile.in to moz.build. r=gps
|
2013-05-01 14:05:40 -04:00 |
|
Gregory Szorc
|
2afb3f3369
|
Bug 856392 - Categorize mach commands; r=jhammel
DONTBUILD (NPOTB)
|
2013-05-08 17:56:30 -07:00 |
|
Ehsan Akhgari
|
f0b001cdb7
|
Bug 869784 - Fix rooting hazards in the profiler; r=BenWa,till
X-Git-Commit-ID: da732de921f64d9bd6ea028ed384d2d5c80de66f
X-Mailer: git-send-email
|
2013-05-08 20:21:37 -04:00 |
|
Mike Hommey
|
5858426dab
|
Bug 777379 - Set .DEFAULT_GOAL unconditionally, override with OVERRIDE_DEFAULT_GOAL, and fix pymake to be on par with GNU make when handling .DEFAULT_GOAL. r=gps
|
2013-05-05 10:16:25 +02:00 |
|
Gregory Szorc
|
c6c1177427
|
Bug 863069 - Part 1: Sort lists in moz.build files; r=mshal
|
2013-05-03 09:54:45 -07:00 |
|