Tooru Fujisawa
726a539a34
Bug 1016936 - Part 2: Support JSOP_CHECKISOBJ in baseline. r=jandem
2016-08-10 22:26:07 +09:00
Tooru Fujisawa
142095d2ef
Bug 1016936 - Part 1: Throw if the value returned by iterator.next() is not an object. r=jorendorff
2016-08-10 22:26:07 +09:00
Eddy Bruel
974151839a
Bug 1271650 - Add GC typedefs for commonly used debugger types. r=fitzgen
2016-08-10 14:24:50 +02:00
Eddy Bruel
2330c2ae38
Bug 1271650 - DebuggerFrameVector should be a GCVector<DebuggerFrame*>. r=fitzgen
2016-08-10 14:23:36 +02:00
Heiher
6497612dd6
Bug 1293606 - IonMonkey: MIPS: Import Loongson optimizations to ma_load and ma_store baseindex. r=arai
...
---
.../jit/mips-shared/MacroAssembler-mips-shared.cpp | 110 +++++++++++++++++++++
1 file changed, 110 insertions(+)
2016-08-10 14:18:22 +08:00
Nicholas Nethercote
e7f10a07fd
Bug 1293603 (part 2) - Make Run() declarations consistent. r=erahm.
...
This patch makes most Run() declarations in subclasses of nsIRunnable have the
same form: |NS_IMETHOD Run() override|.
As a result of these changes, I had to add |override| to a couple of other
functions to satisfy clang's -Winconsistent-missing-override warning.
--HG--
extra : rebase_source : 815d0018b0b13329bb5698c410f500dddcc3ee12
2016-08-08 12:18:10 +10:00
Mike Hommey
77ee4f3ce4
Bug 1292463 - Move MOZ_C{,XX}_SUPPORTS_WARNING to python configure. r=chmanchester
2016-08-10 10:50:01 +09:00
Mike Hommey
4585ac7815
Bug 1292463 - Move --enable-warnings-as-errors to python configure. r=chmanchester
2016-08-10 10:49:54 +09:00
Nick Fitzgerald
b26d2ef244
Bug 1293456 - Make js::Zone::usedByExclusiveThread atomic; r=jimb
...
The usedByExclusiveThread member is asserted against both on and off main thread
in at least js::ExclusiveContext::setCompartment and maybe other places. As
such, it should be atomic to protect against data races.
2016-08-09 16:33:39 -07:00
Nick Fitzgerald
dea6f2236e
Bug 1293419 - Make the trace logger use js::Thread instead of PRThread; r=terrence
...
This also introduces a hasher for js::Thread::Id.
2016-08-09 16:33:39 -07:00
Nick Fitzgerald
4a00e77409
Bug 1293396 - Make the js shell's worker threads a js::Thread instead of a PRThread; r=terrence
2016-08-09 16:33:39 -07:00
Nick Fitzgerald
e0707d9ca9
Bug 1290589 - Part 1: Thread AutoLockForExclusiveAccess params through compartment setting functions as proof of lock holding; r=terrence
2016-08-09 16:33:38 -07:00
Nick Fitzgerald
40f7a426d3
Bug 1290589 - Part 0: Remove JSRuntime's exclusiveAccessOwner and *CanLock assertions; r=terrence
...
PTHREAD_MUTEX_ERRORCHECK gives us this error checking against reentrancy and
unlocking an unlocked lock or another thread's lock already, so it isn't
needed. This also makes the *CanLock assertions no-ops.
In the future, it would be nice to introduce ordering checks against inversions.
2016-08-09 16:33:38 -07:00
Dan Gohman
95d7524476
Bug 1293313
- IonMonkey: Handle non-canonical NaNs in constant folding. r=luke
2016-08-09 15:35:55 -07:00
Tom Schuster
0aa1f8a13a
Bug 1171586 - Remove regress-476427.js test. r=arai
2016-08-09 23:16:48 +02:00
Luke Wagner
3f0b63f537
Bug 1293312 - Baldr: handle big offsets in unaligned loads/stores (r=sunfish)
...
MozReview-Commit-ID: 6szRIg3LrjI
--HG--
extra : rebase_source : 02820500d81339f3ceb1c26304c7ad8fd41300f4
2016-08-08 21:44:36 -05:00
Jon Coppeard
30cadf6976
Bug 1292664 - Improve GC state assertion in JitcodeGlobalTable r=terrence
...
--HG--
extra : rebase_source : 98f9142b15a4685ce7dadfd1741437852d7c4145
2016-08-09 10:27:00 +01:00
Jon Coppeard
5bdb3ddba7
Bug 1292529 - Fix assertion used by GCPtr destructor to not assume referent is still allocated r=terrence
...
--HG--
extra : rebase_source : 08e0aa0d95f6a25818a16f30c453d7be60ae4ef0
2016-08-09 10:26:00 +01:00
Jon Coppeard
eecd67a0ff
Bug 1293262 - Always pre-tenure objects after minor GC r=terrence
...
--HG--
extra : rebase_source : 899e56975eb9c2e0c73e8510e2b4a2a9c284247f
2016-08-09 10:23:01 +01:00
Jon Coppeard
03687f37c9
Bug 1293260 - Improve ObjectGroup hash in TenureCountCache in 64 bit builds r=terrence
...
--HG--
extra : rebase_source : adba3718d1a646b1446c12f16f969068aae0907d
2016-08-09 10:22:21 +01:00
Jeff Walden
5a875fc573
Backed out changeset c3f06ba15fda -- worker setup isn't happening quite as early as it was assumed to occur, so we have impermissible cross-thread happenings occurring sometimes. r=three-to-five-oranges-per-push-per-philor
2016-08-08 19:43:15 -07:00
Luke Wagner
312d869101
Bug 1284155 - Baldr: improve tracing of wasm::Table (r=terrence)
...
MozReview-Commit-ID: CPMOmVGNFZb
--HG--
extra : rebase_source : cff0f4924cf5ddb81aa794bc4cfea8c62fe03f25
2016-08-08 08:53:07 -05:00
Jeff Walden
bedc4de0a4
Bug 1291076 - Reorder Intl initialization to be both OOM-safe *and* smaller. r=sfink
2016-08-01 17:24:04 -07:00
Andrew McCreight
b22f612021
Bug 1289137 - Make XPCNativeSet::NewInstance() take an nsTArray argument. r=billm
...
I could clean up ArrayAutoMarkingPtr more, but it is going to be
removed entirely in bug 1288870.
MozReview-Commit-ID: Jyjc2ZfvF3i
--HG--
extra : rebase_source : d7954ab821722b26fe5fc4f5ddc319dd824c6879
2016-07-27 16:36:48 -07:00
Jeff Walden
f316e4cdc9
Bug 1291077
- Remove a use of JS_strdup from Intl.cpp. r=sfink
2014-07-21 19:09:36 -04:00
Arthur Edelstein
099e7246db
Bug 1174386 - Make workers inherit the default Intl locale from the main thread, rather than using a bogus fallback value. r=jwalden
2016-08-08 13:33:39 -07:00
Jeff Walden
6b30070c81
Bug 1280362 - Remove browser.js's never-used include() function. r=arai
...
--HG--
extra : rebase_source : beb4b62701bd299dca9b6c363c6ac3c6e0f941f5
2016-07-28 09:33:42 -07:00
Jeff Walden
6d66d5c376
Bug 1280362 - Remove the pointless stopTest function from shell.js. r=arai
...
--HG--
extra : rebase_source : 71a9d20474545b139d548d05751db5cc6d27ca8e
2016-07-28 09:22:15 -07:00
Jeff Walden
437dd1b555
Bug 1280362 - Define and export print and dump functions from shell.js's IIFE *only*. r=arai
...
--HG--
extra : rebase_source : fc8cc48aede273e68082b9181164ea6837e3e3ee
2016-07-27 23:10:45 -07:00
Jeff Walden
f8b0f4ec6d
Bug 1280362 - Remove DocumentWrite and htmlesc as unused. r=arai
...
--HG--
extra : rebase_source : 8343509b1250ab440e18c516748031687063f65b
2016-07-27 23:02:29 -07:00
Jeff Walden
57cc3af889
Bug 1280362 - Make writeFormattedResult write into the page in a way that never sets innerHTML or uses document.write. r=arai
...
--HG--
extra : rebase_source : 72567e4928157a615f8a6becd0f7a2da29e8c783
2016-07-27 22:53:36 -07:00
Jeff Walden
ec858b79e3
Bug 1280362 - Make browser.js's writeHeaderToLog write into the page in a way that never sets innerHTML or uses document.write. r=arai
...
--HG--
extra : rebase_source : 50da22fa6051bcc9e4bd8ba45a16dfa42d344cc5
2016-07-27 22:21:05 -07:00
Jeff Walden
18af58d6c1
Bug 1280362 - Make browser.js's print() function write into the page in a way that never sets innerHTML or uses document.write. r=arai
...
--HG--
extra : rebase_source : 8f0f8d928a6ee8c4a1c09dea89a9bdf34e314d42
2016-07-27 22:13:23 -07:00
Jeff Walden
a2197e632c
Bug 1280362 - Make browser.js's newGlobal and DocumentWrite work regardless of the test's behavior. r=arai
...
--HG--
extra : rebase_source : b7be7707412de58a8a6955783d68a275b3e440c8
2016-07-27 22:09:38 -07:00
Jeff Walden
98a4d37640
Bug 1280362 - Define gczeal/quit in shell.js, out of browser.js, plus a few other minor changes. r=arai
...
--HG--
extra : rebase_source : afec2dbf502c7a3ac4efa0a9ec22316050eb16ef
2016-06-29 10:30:57 +01:00
Jeff Walden
d457f414b2
Bug 1289934 - Implement more-correct error handling if ucal_getType fails. (It can't with current ICU, at least our in-tree copy. But best be safe for the future.) Also don't assume ucal_getType's return value on success outlives the corresponding UCalendar*. (Again, no problem with current ICU, still worth fixing.) r=sfink
...
--HG--
extra : rebase_source : f90da21347bd66367cce88d3fc93f333c3405752
2016-07-27 17:14:01 -07:00
Jeff Walden
083f68611a
Bug 1289934 - Simplify ScopedICUObject to store deleter function as a template parameter, not as a runtime variable. r=sfink
...
--HG--
extra : rebase_source : b76a1cc4403b9953e0c17f3db05f5e1a1fec25cf
2016-07-27 17:13:52 -07:00
Sebastian Hengst
4a00647818
Backed out changeset b61757c08a5f (bug 1290589) for asserting mIsSome in testParallelCompile.js. r=backout
2016-08-08 23:24:51 +02:00
Nick Fitzgerald
f3b06ab599
Bug 1290589 - Make JSRuntime's exclusiveAccessOwner a js::Thread::Id instead of a PRThread*; r=terrence
2016-08-08 13:26:10 -07:00
Nick Fitzgerald
4edf614ff4
Bug 1285074 - Fix pthreads error reporting for posix js::Mutex; r=terrence
...
The old code assumed that various pthreads calls would set errno, and therefore
we could use perror() to print information about them. That assumption was
incorrect: pthreads calls return the error number directly and do not set errno
at all. The solution: asign the return value to errno and then call perror();
2016-08-08 10:37:54 -07:00
Nicolas B. Pierron
2a0ba0e7c7
Bug 1289184 part 1 - Add an AutoFallibleScope for jit::MergeTypes lifoAlloc allocations. r=jandem
2016-08-08 13:57:42 +00:00
Nicolas B. Pierron
1055b15a7f
Bug 1289184 part 0 - Replace TLS lookup for the compiler LifoAlloc by a TempAllocator argument. r=jandem
2016-08-08 13:57:42 +00:00
Jon Coppeard
cf0ee2623d
Bug 1290108 - Make SharedScriptData refcounted so we can free them without doing a full GC r=terrence
2016-08-08 10:13:47 +01:00
Jon Coppeard
38ebe42aaa
Bug 1288715 - Refactor SharedScriptData to prepare for making it refcounted r=till
2016-08-08 10:13:47 +01:00
Hannes Verschore
ec75a3744d
Bug 1290453 - Baseline Wasm Compiler: Part 1: Get the low level functions using Register64 working on x86, r=lth
2016-08-07 14:52:00 +02:00
Tom Schuster
822d12a14e
Bug 1168260 - Test: Promise methods should not be enumerable. r=till
2016-08-06 16:15:54 +02:00
Tom Schuster
87a47612e7
Bug 1237762 - Test: Promise resolved with itself rejects.r=till
2016-08-06 16:15:54 +02:00
Benjamin Bouvier
e3ea0a886f
Bug 1283126 - wasm: Take alignment hints into account when compiling load/store (r=sunfish)
2016-08-06 01:02:09 -05:00
Terrence Cole
d0f58b8f51
Bug 1289581 - Follow-up to fix non-unified bustage; r=meow
2016-08-05 14:44:32 -07:00
Terrence Cole
55debba037
Bug 1289581 - Assert that no object slot gets set with a black to gray edge; r=jonco
...
--HG--
extra : rebase_source : b174d297fd63e8133a318934ac87bcd7e05243d7
2016-07-27 11:39:43 -07:00
Luke Wagner
9ba6432be7
Bug 1284155 - Baldr: allow cross-element Table elements (r=bbouvier)
...
MozReview-Commit-ID: 3xalhzMAeJp
2016-08-05 15:39:57 -05:00
Luke Wagner
555b22b818
Bug 1288944 - Baldr: change to and from callee's TLS at indirect callsite (r=bbouvier)
...
MozReview-Commit-ID: Tdi4D9tVxV
2016-08-05 15:39:57 -05:00
Luke Wagner
2d35f7cc8d
Bug 1288944 - Baldr: fuse the WasmTableObject InstanceVector into the Table's array (r=bbouvier)
...
MozReview-Commit-ID: BdP4hd2WX2S
2016-08-05 15:39:56 -05:00
Luke Wagner
6c3c3d31ea
Bug 1288944 - Baldr: factor out indirect/import call code into MacroAssembler (r=bbouvier)
...
MozReview-Commit-ID: 45BErNBV8ai
2016-08-05 15:39:56 -05:00
Luke Wagner
74c0757489
Bug 1288944 - Baldr: factor out MWasmCall::Callee and TableDesc (r=bbouvier)
...
MozReview-Commit-ID: 39hlX5PBW9M
2016-08-05 15:39:56 -05:00
Luke Wagner
4240fe4e0a
Bug 1288944 - Baldr: remove unnecessary temp register reservation in import calls (r=jolesen)
...
MozReview-Commit-ID: 82NVyx8kIVY
2016-08-05 15:39:56 -05:00
Luke Wagner
89f174a8c9
Bug 1288944 - Baldr: change how wasm::Instance is traced (r=terrence)
...
MozReview-Commit-ID: 2re3vhJ7MIG
2016-08-05 15:39:56 -05:00
Luke Wagner
b953aecfc9
Bug 1284155 - Baldr: tidy table instantiation logic (r=bbouvier)
...
MozReview-Commit-ID: Dsqqm9ws4Lc
2016-08-05 15:39:56 -05:00
Luke Wagner
7a456f1fe3
Bug 1284155 - Baldr: tidy instantiation logic (r=bbouvier)
...
MozReview-Commit-ID: I2QHpa5au4
2016-08-05 15:39:56 -05:00
Luke Wagner
00930043b9
Bug 1291757 - Baldr: fold MAsmJSLoadFuncPtr into MWasmCall (r=sunfish)
...
MozReview-Commit-ID: 4Zq6wXb7Uk7
2016-08-05 15:39:56 -05:00
Terrence Cole
0e4a5ec501
Bug 1283634 - Assert that no gray objects get passed into JSAPI; r=jonco,r=bz
...
--HG--
extra : rebase_source : dc96a8d1b055531e3d6129b886597ea00f84fa43
2016-07-21 12:18:51 -07:00
Nick Fitzgerald
c87cef6692
Bug 1291064 - Make js::HelperThread use js::ThisThread::SetName instead of PR_SetCurrentThreadName; r=terrence
2016-08-05 09:25:18 -07:00
Nicolas B. Pierron
cb7fcbf7af
Bug 1287411 - Ensure we have enough ballast space in jit::PropertyReadOnPrototypeNeedsTypeBarrier. r=jandem
2016-08-05 15:09:26 +00:00
Carsten "Tomcat" Book
a826042a1d
Merge mozilla-central to mozilla-inbound
2016-08-05 12:03:44 +02:00
Carsten "Tomcat" Book
cf611bec79
merge mozilla-inboudn to mozilla-central a=merge
2016-08-05 12:01:14 +02:00
Ms2ger
d6bc8f10b9
Bug 1292088 - Remove ENABLE_METHODJIT_SPEW / JS_METHODJIT_SPEW; r=glandium
...
Neither is used anywhere else in the repository.
2016-08-05 11:44:15 +02:00
Jon Coppeard
57fa63483d
Bug 1259347 - Fix nursery telemetry to report committed size rather than max size r=terrence
2016-08-05 10:16:42 +01:00
Heiher
94b1da6b55
Bug 1292040 - Baldr: MIPS: Fix load HeapReg and GlobalReg from TlsData. r=luke
...
---
js/src/asmjs/WasmStubs.cpp | 12 ++++++++----
js/src/jit/mips64/MacroAssembler-mips64.h | 2 +-
2 files changed, 9 insertions(+), 5 deletions(-)
2016-08-05 09:04:02 +08:00
Mike Hommey
9712b25c12
Bug 1292080
- Don't set NSINSTALL_BIN from old-configure. r=gps
...
The only use of this variable is to override NSINSTALL, and its value is
the same as NSINSTALL_PY.
While here, remove the outdated NSINSTALL_NATIVECMD that was used for
pymake.
--HG--
extra : rebase_source : b871fbb409836a17cb8d71cd1e5ddc9d5ad3f49f
2016-08-04 17:55:54 +09:00
Mike Hommey
1cd034b955
Bug 1292066 - Move GNU make detection to python configure. r=chmanchester
...
Nothing is using MAKE in old-configure, and it was not AC_SUBST'ed, so
we don't need to set it when it's not set in the environment already.
--HG--
extra : rebase_source : 9a525517808db87add72989ab9f43a135c0cc776
2016-08-04 17:27:05 +09:00
Mike Hommey
6df9c96b3e
Bug 1292059 - Remove now useless compiler checks in compiler-opts.m4. r=chmanchester
...
Since bug 1259382, CC and CXX are always set, so we can stop
falling back to cl on Windows, and clang on OSX in compiler-opts.m4.
Also, we were actively rejecting GCC on OSX because it was based on
GCC 4.2 and known to be broken, but that test predates our requirement
for more recent versions of GCC, which would fail configure anyways.
So just remove that GCC test. Building with a modern GCC from macports
or wherever might actually work anyways.
Finally, remove target bit-width mismatch with the compiler as it's
handled in python configure since bug 1288313.
--HG--
extra : rebase_source : 9968028cc4e9c197b72136037a7298be10cc139a
2016-08-04 17:11:52 +09:00
Andrew McCreight
d2be3b7515
Bug 1292289, part 1 - Stop unnecessarily using xpcprivate in XPCWrapper.h. r=mrbkap
...
This file is included in caps/, but it only uses generic JS things,
aside from a macro.
AccessCheck.cpp was bootlegging xpcprivate.h.
MozReview-Commit-ID: C6fGOFxsTvg
--HG--
extra : rebase_source : bd5e7bf9010acf83ccab8ce6cce77a557ad76196
2016-08-04 11:14:35 -07:00
Luke Wagner
3adfcd58c9
Bug 1284155 - Baldr: make direct calls for wasm->wasm imports (r=bbouvier)
...
MozReview-Commit-ID: 4p3SZiuoAq0
2016-08-04 12:50:41 -05:00
Luke Wagner
0a6927911a
Bug 1288944 - Baldr: mark all calls as preserving the TLS reg (r=jolesen)
...
MozReview-Commit-ID: 3WcKCPGRaFv
--HG--
extra : rebase_source : 96e8382d137c1a65570d97e0ba4401c6c1dfb45c
2016-08-04 11:44:35 -05:00
Luke Wagner
c874b985e3
Bug 1288944 - Baldr: preserve TLS and pinned regs at call_import (r=jolesen)
...
MozReview-Commit-ID: HnxKRxAXmlg
--HG--
extra : rebase_source : 9157c19b2c6ea64a2f9931daac263f86d05d9e07
2016-08-04 11:43:48 -05:00
Luke Wagner
dabbd6a76c
Bug 1288944 - Baldr: rename CallArgs to CallCompileState and FuncImportExit to FuncImportTls (r=bbouvier)
...
MozReview-Commit-ID: KeAIle47zpV
--HG--
extra : rebase_source : f2fb55e83e4527bef9714f2af10eb8c9210958b4
2016-08-04 11:43:33 -05:00
Luke Wagner
6127abeb31
Bug 1288944 - Baldr: optimize JIT exit (r=bbouvier)
...
MozReview-Commit-ID: Dm8TUpWB55H
--HG--
extra : rebase_source : 4288fa4939c426a469b20258893bc8e50e4bbe21
2016-08-04 11:28:20 -05:00
Luke Wagner
b9fee3a322
Bug 1292190 - Baldr: fix include dependencies (r=bbouvier)
...
MozReview-Commit-ID: BAte5sedqaS
--HG--
extra : rebase_source : 182416a9af4551fd2caca589f2e154be1ec288fc
2016-08-04 11:27:24 -05:00
Luke Wagner
bde9632738
Bug 1291757 - Baldr: fold loading of import into call op (r=sunfish)
...
MozReview-Commit-ID: FsJ1YRXQRpF
--HG--
extra : rebase_source : 6ffcd3a48275cfd8258e763c0f973ad959186821
2016-08-03 18:37:26 -05:00
Luke Wagner
aaacb6c169
Bug 1291757 - Baldr: rename AsmJSCall to WasmCall (r=jolesen)
...
MozReview-Commit-ID: AVh5ypBH89Q
--HG--
extra : rebase_source : 2028cd59b323c17e7f865832e5f24c8aa31c4d39
2016-08-03 18:37:21 -05:00
Luke Wagner
301649a627
Bug 1291757 - Baldr: note that i64 calls also preserve WasmTlsReg (r=jolesen)
...
MozReview-Commit-ID: 1r6rZkCzDCt
--HG--
extra : rebase_source : 4940f1f9a4878c89446d4ac9070daf68f59269ba
2016-08-03 18:37:15 -05:00
Sander Mathijs van Veen
7ae289f36a
Bug 1279992 - Inline constructor of typed arrays with non-compile-time known size r=jandem,Waldo
2016-08-04 07:42:00 +02:00
Eric Faust
b5d42cb013
Bug 1199296 - Don't allow method definitions to be legacy generators. (r=shu, r=evilpie, r=jaws)
2016-07-11 14:45:00 -07:00
Carsten "Tomcat" Book
389a3e0817
merge mozilla-inbound to mozilla-central a=merge
...
--HG--
rename : mobile/android/base/java/org/mozilla/gecko/GeckoAppShell.java => mobile/android/geckoview/src/main/java/org/mozilla/gecko/GeckoAppShell.java
rename : mobile/android/base/java/org/mozilla/gecko/gfx/GeckoLayerClient.java => mobile/android/geckoview/src/main/java/org/mozilla/gecko/gfx/GeckoLayerClient.java
rename : mobile/android/base/java/org/mozilla/gecko/gfx/LayerRenderer.java => mobile/android/geckoview/src/main/java/org/mozilla/gecko/gfx/LayerRenderer.java
rename : mobile/android/base/java/org/mozilla/gecko/gfx/PanningPerfAPI.java => mobile/android/geckoview/src/main/java/org/mozilla/gecko/gfx/PanningPerfAPI.java
2016-08-04 15:55:50 +02:00
Tooru Fujisawa
6a2df0c986
Bug 1285465 - Do not throw when callStack is empty. r=jwalden
2016-08-04 14:52:43 +09:00
Morgan Phillips
f4a7b6af4c
bug 1230490 - Allow 16 bit character codes 2/2; r=evilpie
...
--HG--
extra : amend_source : 22584adc7bb7af089bd15aca109177955679559c
2016-08-02 16:33:58 -07:00
Morgan Phillips
6482267db5
bug 1230490 - Allow 16 bit character codes 1/2; r=evilpie
2016-08-03 12:11:38 -07:00
Boris Zbarsky
19c582af6e
Bug 1278583 part 2. Change the value passed to JS::OrdinaryHasInstance to be a HandleValue, not MutableHandleValue. r=jandem
2016-08-03 18:32:06 -07:00
Boris Zbarsky
e7c46c6242
Bug 1278583 part 1. Expose a JS::OrdinaryHasInstance. r=jandem
2016-08-03 18:32:06 -07:00
Luke Wagner
0ef9be8b0e
Bug 1291887 - Odin: don't forget to check for dead code in builtin call (r=jolesen)
...
MozReview-Commit-ID: G31jUIOF0Zp
--HG--
extra : rebase_source : 3a7625db10198798477aa4b8acbe9ecc72a2a48e
2016-08-03 18:19:17 -05:00
Eric Faust
9aa2b4c179
Bug 1290752 - Re-disallow method calls in self-hosted code. (r=till)
2016-08-03 15:24:08 -07:00
Alexandre Lissy
0af5b943b6
Bug 1284674 - Remove NUWA r=cyu
...
MozReview-Commit-ID: GyMRNzOBKw6
--HG--
extra : rebase_source : 293af1cd55f2035ce6a99f4ebf144059c32a2b8f
2016-08-02 14:54:00 +02:00
Tom Schuster
0a0e3b7174
Bug 1251364 - Use more snprintf_literal in the JS engine. r=terrence
2016-08-03 14:37:31 +02:00
Nicolas B. Pierron
b4fb936f80
Bug 1289926 - Ensure enough ballast space while allocating each constant under inlineConstantStringSplitString. r=h4writer
2016-08-03 12:27:16 +00:00
Benjamin Bouvier
2dae1411b6
Bug 1248555: Baseline fixes for handling custom NaN payloads; r=lth
...
MozReview-Commit-ID: FOXuJgKDS17
--HG--
extra : amend_source : 218cdaa13dc663f1a19736d69c34c2fb5f39fa06
2016-07-27 17:50:47 +02:00
Benjamin Bouvier
33c5779ed7
Bug 1248555: Changes to the ARM simulator; r=sunfish
...
MozReview-Commit-ID: HrQrszFCBWC
--HG--
extra : amend_source : ff3aa913e2ffcd7c5b425b0d0fd94dc2638230ba
2016-08-02 14:09:23 +02:00
Benjamin Bouvier
18e49ff665
Backed out changeset 3e7e914abf3d for landing with the wrong bug number;
...
MozReview-Commit-ID: 6kJyZWaluKF
2016-08-03 12:17:57 +02:00
Benjamin Bouvier
7fe7d589eb
Backed out changeset 08cbf5bdf4f4 for landing with the wrong bug number;
...
MozReview-Commit-ID: 1xN0v0mphe
2016-08-03 12:17:40 +02:00
Benjamin Bouvier
83323511b7
Bug 1284855: Baseline fixes for handling custom NaN payloads; r=lth
...
MozReview-Commit-ID: FOXuJgKDS17
--HG--
extra : rebase_source : 626a2aa6543ec3748fc1cf6cec72018183d9dcaf
extra : histedit_source : 9dbd840f907adc4a91e59cc191119af7f5855f38
2016-07-27 17:50:47 +02:00
Benjamin Bouvier
56f730c7b9
Bug 1248555: Baldr: implement custom NaN payload semantics; r=sunfish
...
MozReview-Commit-ID: Fp41hQ9yYf6
--HG--
extra : rebase_source : 1c0508e81c6be0696024ad1fcf7f33fef7504254
extra : histedit_source : 1fd5118b430a5303e0559031c2d92e659b849eb3
2016-05-31 16:13:12 +02:00