Commit Graph

29394 Commits

Author SHA1 Message Date
Ryan VanderMeulen
08074605aa Merge m-c to b2g-inbound. 2013-10-01 16:47:09 -04:00
Benjamin Peterson
dbb9119fe9 Bug 922190 - Remove bundled copy of simplejson. r=gps
--HG--
extra : rebase_source : 5d33bafacd732e6bfb7acb6bb4d171eabb7d258a
2013-10-01 10:32:58 -04:00
Ehsan Akhgari
54eda21c57 Bug 920292 - Part 1: Stop passing string literals as the first argument to MOZ_ASSERT; r=Waldo 2013-10-01 08:25:08 -04:00
Andy Wingo
3aaf69b249 Bug 922028 - Only intern iterator result object shapes in compileAndGo mode. r=jorendorff 2013-09-30 12:53:20 +02:00
Martijn Wargers
4b5db21172 Bug 922008 - Remove more enablePrivilege calls, part2. r=jmaher 2013-09-30 11:30:01 +02:00
Nicholas Nethercote
7b28fd1ce6 Bug 921954 - Clean up type inference memory reporting. r=bhackett.
--HG--
extra : rebase_source : a3c640921882a997017b1cddca189f5b3217a88e
2013-09-30 16:20:33 -07:00
Nicholas Nethercote
952c97fdef Bug 921923 (part 2) - Make multi-output sizeOfFoo() functions more consistent in js/src/. r=till.
--HG--
extra : rebase_source : 6e912cba51103685042893bd590062015c8f68a3
2013-09-30 16:20:18 -07:00
Nicholas Nethercote
569e06f338 Bug 921923 (part 1) - Reorder StatsZoneCallback and StatsCompartmentCallback. r=till.
--HG--
extra : rebase_source : 2f381cf263d49d7d1047551fd0e43df54635351c
2013-09-30 16:20:07 -07:00
David Anderson
c8133fee65 Rename IPDL's RPC to Interrupt (bug 910020, r=bent).
--HG--
rename : ipc/ipdl/test/cxx/PTestRPCErrorCleanup.ipdl => ipc/ipdl/test/cxx/PTestInterruptErrorCleanup.ipdl
rename : ipc/ipdl/test/cxx/PTestRPCRaces.ipdl => ipc/ipdl/test/cxx/PTestInterruptRaces.ipdl
rename : ipc/ipdl/test/cxx/PTestRPCShutdownRace.ipdl => ipc/ipdl/test/cxx/PTestInterruptShutdownRace.ipdl
rename : ipc/ipdl/test/cxx/PTestRacyRPCReplies.ipdl => ipc/ipdl/test/cxx/PTestRacyInterruptReplies.ipdl
rename : ipc/ipdl/test/cxx/TestRPCErrorCleanup.cpp => ipc/ipdl/test/cxx/TestInterruptErrorCleanup.cpp
rename : ipc/ipdl/test/cxx/TestRPCErrorCleanup.h => ipc/ipdl/test/cxx/TestInterruptErrorCleanup.h
rename : ipc/ipdl/test/cxx/TestRPCRaces.cpp => ipc/ipdl/test/cxx/TestInterruptRaces.cpp
rename : ipc/ipdl/test/cxx/TestRPCRaces.h => ipc/ipdl/test/cxx/TestInterruptRaces.h
rename : ipc/ipdl/test/cxx/TestRPCShutdownRace.cpp => ipc/ipdl/test/cxx/TestInterruptShutdownRace.cpp
rename : ipc/ipdl/test/cxx/TestRPCShutdownRace.h => ipc/ipdl/test/cxx/TestInterruptShutdownRace.h
rename : ipc/ipdl/test/cxx/TestRacyRPCReplies.cpp => ipc/ipdl/test/cxx/TestRacyInterruptReplies.cpp
rename : ipc/ipdl/test/cxx/TestRacyRPCReplies.h => ipc/ipdl/test/cxx/TestRacyInterruptReplies.h
rename : ipc/ipdl/test/ipdl/error/rpcMessageCompress.ipdl => ipc/ipdl/test/ipdl/error/intrMessageCompress.ipdl
rename : ipc/ipdl/test/ipdl/error/tooWeakRPCAsync.ipdl => ipc/ipdl/test/ipdl/error/tooWeakInterruptAsync.ipdl
rename : ipc/ipdl/test/ipdl/ok/rpcProtocol.ipdl => ipc/ipdl/test/ipdl/ok/intrProtocol.ipdl
2013-09-30 17:27:45 -07:00
Mike Hommey
a6936c45ec Bug 921822 - Use existing install manifest for make install in js standalone builds. r=gps 2013-10-01 08:26:08 +09:00
Jeff Walden
12a52ef694 Back out caa83f3d823e, Windows bustage. r=bustage in a CLOSED TREE 2013-10-01 06:11:21 -07:00
Jeff Walden
4e2c45dc32 Back out 28eab6ee7425, error message changes I don't have time to fix right now. r=orange in a CLOSED TREE 2013-10-01 05:46:52 -07:00
Jeff Walden
94a362aae5 Back out 0a76209b85d2, error message changes I don't have time to fix right now. r=orange 2013-10-01 05:46:51 -07:00
Jeff Walden
263c753b7e Back out e8764878be44, b2g/gcc4.4 bustage. r=orange 2013-10-01 05:46:46 -07:00
Jeff Walden
6cf5365fb2 Bug 921548 - Remove js_ValueToObjectOrNull -- people should use ToObject or explicit null/undefined tests, for readability. r=jorendorff 2013-09-27 11:19:47 -07:00
Jeff Walden
afb3018ebb Bug 921548 - Remove js_ValueToNonNullObject, which was entirely equivalent to ToObject. r=jorendorff 2013-09-27 11:19:47 -07:00
Jeff Walden
77acd61ddf Bug 921631 - Restrict the JS_PSG/JS_PSGS flags to not contain JSPROP_READONLY (meaningless for accessors) or JSPROP_SHARED or JSPROP_NATIVE_ACCESSORS (implied by the macros already). r=jorendorff 2013-09-27 14:43:38 -07:00
Jeff Walden
21ba8471cf Bug 921561 - Make JS_DECLARE_NEW_METHODS use C++11 "perfect" forwarding (which isn't, because it won't let you pass an expression that's a bit field #nowyouknow), to eliminate issues arising when non-const references are used in these methods with classes that don't copy nicely, or shouldn't be copied for perf reasons. r=luke 2013-09-27 11:19:43 -07:00
Jeff Walden
551208e178 Bug 919872 - Compute the internal properties of Collator, NumberFormat, and DateTimeFormat objects only when they're actually needed -- not when the objects are constructed. r=till
--HG--
extra : rebase_source : 86493b4ce69b1379bd18c2a0d20fed9c5341072a
2013-09-27 16:07:00 -07:00
Terrence Cole
521b39de48 Bug 609896 - Optimize copy and initialization of DenseElements; r=billm
--HG--
extra : rebase_source : a0cf2605a7f1277352ff9163379632992c56d09a
2013-09-25 15:19:08 -07:00
Terrence Cole
d193fe71c8 Bug 921140 - Do not force an allocation for typical zone vectors; r=billm
--HG--
extra : rebase_source : 3b2b664643d2123c558a7fcce8f6248fd35dec7c
2013-09-30 15:02:06 -07:00
Terrence Cole
a127f041dd Bug 921178 - Remove unused fallback marking bitmap; r=billm
--HG--
extra : rebase_source : 4b53c8eb16d332ad8916a0abf4dd6ccd5f211ed4
2013-09-30 14:58:12 -07:00
Kannan Vijayan
23a5915301 Bug 912534. r=nbp 2013-09-30 18:01:37 -04:00
Ryan VanderMeulen
4dd576fb2f Merge m-c to inbound. 2013-09-30 16:51:06 -04:00
Ryan VanderMeulen
439f7d7d01 Merge m-c to b2g-inbound. 2013-09-30 16:30:26 -04:00
Ed Morley
e9e5ecef9d Merge mozilla-central and b2g-inbound 2013-09-30 17:20:26 +01:00
Ed Morley
ac9da39d05 Backed out changeset d3867bfc10e5 (bug 921130) for Android compilation failures on a CLOSED TREE 2013-09-30 17:03:43 +01:00
Jan de Mooij
70364254a2 Bug 921130 - Fix --disable-ion build. r=luke 2013-09-30 17:27:37 +02:00
Benjamin Smedberg
1db3c7955c Bug 920731 - stop exporting JS symbols from libxul in Firefox builds. r=glandium sr=bz
--HG--
extra : rebase_source : d3c73a8be14dea4156c53cc9f772178271f80e28
2013-09-30 16:09:28 -04:00
Benjamin Smedberg
9a1eae6f7b Bug 920695 part B - Remove references to JS_READLINE/EDITLINE since its in a different place now and won't work, r=bholley
--HG--
rename : js/xpconnect/shell/xpcshell.cpp => js/xpconnect/src/XPCShellImpl.cpp
extra : rebase_source : 01b0eb2d04a41fbc47f06c5030d730ae3e9323e2
2013-09-30 16:09:28 -04:00
Benjamin Smedberg
ac8ae5b462 Bug 920695 part A - move xpcshell code into libxul and make the xpcshell binary just a stub, r=bholley
--HG--
rename : js/xpconnect/shell/xpcshell.cpp => js/xpconnect/src/XPCShellImpl.cpp
rename : js/xpconnect/shell/jsshell.msg => js/xpconnect/src/jsshell.msg
extra : rebase_source : 9a2ab7508e3cb7a6bfec6b1e98f49799221d1376
2013-09-30 16:09:28 -04:00
Bill McCloskey
667d790901 Bug 911182 - Add test that incremental GC is enabled (r=luke) 2013-09-30 12:24:51 -07:00
Bill McCloskey
3ed01f38ad Bug 918170 - Handle StopIteration in CPOWs (r=dvander) 2013-09-30 12:20:51 -07:00
Nicolas B. Pierron
476005ce83 Bug 912264 - Reset OSI-regs flags before the implicit interrupt check. r= 2013-09-30 11:39:41 -07:00
Reuben Morais
551b5f8e6c Backed out 8 changesets (bug 916267, bug 850430) for mochitest failures 2013-09-30 01:44:06 -03:00
Jim Blandy
5e75884e6a Bug 921582: Avoid a 'may be used uninitialized' warning. r=waldo
Specifically:

In file included from ./../../dist/include/js/CallArgs.h:39:0,
                 from ./../../dist/include/js/CallNonGenericMethod.h:12,
                 from /home/jimb/moz/dbg/js/src/NamespaceImports.h:15,
                 from /home/jimb/moz/dbg/js/src/builtin/Intl.h:10,
                 from /home/jimb/moz/dbg/js/src/builtin/Intl.cpp:12:
./../../dist/include/js/Value.h: In function ‘bool js::intl_CompareStrings(JSContext*, unsigned int, JS::Value*)’:
./../../dist/include/js/Value.h:653:58: warning: ‘res’ may be used uninitialized in this function [-Wmaybe-uninitialized]
     JS_RETURN_LAYOUT_FROM_BITS(((uint64_t)(uint32_t)i32) | JSVAL_SHIFTED_TAG_INT32);
                                                          ^
/home/jimb/moz/dbg/js/src/builtin/Intl.cpp:968:13: note: ‘res’ was declared here
     int32_t res;
             ^
2013-09-29 21:18:26 -07:00
Reuben Morais
b0224bc97c Bug 916267 - Remove XPIDL for MozContactChangeEvent. r=smaug 2013-09-29 22:22:43 -03:00
Douglas Crosher
c24fffedff Bug 921490 - Ionmonkey ARM: fix the negative zero check path in convertFloat32ToInt32. r=mjrosenb 2013-09-28 00:36:51 +10:00
Douglas Crosher
5b1c170385 Bug 921437 - Restore perf-spewer include files in js/src/jit. r=ehsan 2013-09-28 01:56:51 +10:00
Jan de Mooij
7964dfbbcd Bug 921130 - Fix --disable-ion build. r=luke
--HG--
extra : rebase_source : e05014f0d4e6e6609907257fedd224ce38cc00c6
2013-09-30 17:27:37 +02:00
Gregory Szorc
b03f79a7e6 Bug 920223 - Part 3: Mass convert MOCHITEST_BROWSER_FILES to manifests; rs=Ms2ger 2013-09-30 09:52:06 +02:00
Gregory Szorc
cc1da2c22a Bug 920223 - Part 2: Mass convert MOCHITEST_CHROME_FILES to manifests; rs=Ms2ger 2013-09-30 09:52:01 +02:00
Brian Hackett
de16acd6a5 Bug 921809 - Only trigger full GCs due to excessive malloc'ing when on the main thread, r=billm. 2013-09-30 09:18:59 -06:00
Boris Zbarsky
f1ae9d4280 Bug 906166. Make sure to initialize the "succeeded" outparam of XPC_WN_Helper_DelProperty. r=bholley 2013-09-30 10:31:30 -04:00
Kannan Vijayan
44f1bc368f Bug 921120 - Enable Ion-compilation of JSOP_SETARG for functions which use magic arguments. r=nbp 2013-09-30 10:24:30 -04:00
Gregory Szorc
e53ac5e38d Bug 920223 - Part 1: Mass convert MOCHITEST_FILES to manifests; rs=Ms2ger 2013-09-30 09:51:57 +02:00
Jon Coppeard
204693e328 Bug 913224 - Fix js::DumpHeapComplete() to work with GGC r=billm r=mccr8 2013-09-30 13:05:32 +01:00
Ehsan Akhgari
1dad64a243 Bug 921881 - Remove PrintBailoutKind; r=jandem 2013-09-30 07:57:16 -04:00
Ed Morley
e6ab16d6a2 Backed out changeset 3e20fa222424 (bug 913224) for crashes on Android 4.0 2013-09-30 12:53:32 +01:00
Ed Morley
d84dee3273 Backed out changeset 77bff106b704 (bug 920223) 2013-09-30 12:50:12 +01:00