summaryrefslogtreecommitdiff
path: root/js/src/jit
Commit message (Collapse)AuthorAge
* Bug 1271968 - IonMonkey: MIPS: Refactor addMixedJump.Jiaxun Yang2020-05-14
| | | | Tag: #1542
* Bug 1271968 - wasm: MIPS: Port mixed jump for wasm.Jiaxun Yang2020-05-14
| | | | Tag: #1542
* Bug 1271968 - IonMonkey: MIPS: Refactor PatchWrite_NearCall.Jiaxun Yang2020-05-14
| | | | Tag: #1542
* Bug 1271968 - IonMonkey: MIPS: Handle conditional branch in out of line code ↵Jiaxun Yang2020-05-14
| | | | | | of mixed jump. Tag: #1542
* Bug 1271968 - IonMonkey: MIPS: Merge MacroAssembler::branchWithCode.Jiaxun Yang2020-05-14
| | | | Tag: #1542
* Bug 1271968 - IonMonkey: MIPS: Merge MacroAssembler::ma_jal.Jiaxun Yang2020-05-14
| | | | Tag: #1542
* Bug 1271968 - IonMonkey: MIPS: Merge Assembler::bind.Jiaxun Yang2020-05-14
| | | | Tag: #1542
* Bug 1271968 - IonMonkey: MIPS: Replace long jumps by mixed jumps.Jiaxun Yang2020-05-14
| | | | Tag: #1542
* Bug 1271968 - IonMonkey: MIPS: Make jit code in same 256 MB-aligned regionJiaxun Yang2020-05-14
| | | | Tag: #1542
* [IonMonkey] MIPS: Import small optimizations from load & storeJiaxun Yang2020-05-14
|
* Issue #1542 - IonMonkey: MIPS32: Fix build error on O32 platform.Jiaxun Yang2020-05-14
|
* Bug 1323646 - IonMonkey: MIPS64: Fix range checking in ma_addTestOverflowJiaxun Yang2020-05-14
| | | | Tag: #1542
* Bug 1323642 - IonMonkey: MIPS64: Fix load unsigned 48-bit immediateJiaxun Yang2020-05-14
| | | | | | | | | | | | | | | Issue: In ma_li(Register, ImmWord): Load unsigned 48-bit immediate: 0x0000_8000_0000_0000 Wrong instructions stream: lui reg, 0x8000 dsll reg, reg, 16 # reg = 0xffff_8000_0000_0000 Fixed instructions stream: lui reg, 0x8000 dinsu reg, zero, 32, 32 dsll reg, reg, 16 Tag: #1542
* Bug 1323136 - wasm: MIPS: Do bounds check in 32-bitJiaxun Yang2020-05-14
| | | | Tag: #1542
* Bug 1344597 - Baldr: MIPS: Fix trap type of unsigned divide by zeroJiaxun Yang2020-05-14
| | | | Tag: #1542
* [js] Record load in MCreateThis alias set.Moonchild2020-05-05
|
* [js] Handle functions with rest parameters in isObservableArgumentSlot.Jan de Mooij2020-04-08
|
* [js] Remove pointless MakeMRegExpHoistable optimization.wolfbeast2020-03-18
| | | | It's a lot of code with no measurable effect.
* Revert "Issue #190 - Part 1: Remove XP_IOS conditional code"Matt A. Tobin2020-02-28
| | | | This reverts commit 6a3d5769d01ec1a8dd56ea79aec2df91b801ce02.
* Issue #190 - Part 1: Remove XP_IOS conditional codeMatt A. Tobin2020-02-28
|
* Revert #1091 Remove unboxed object code phase 1 + extras.wolfbeast2020-02-23
| | | | | | This should be the last code backout for this. merging this branch should get us back to the way we were (+ additional code changes for later changes) as fasr as the unused unboxed code is concerned.
* Revert #1137 - Remove unboxed arrayswolfbeast2020-02-23
| | | | | - accounting for removal of watch()/unwatch() - updated for intermediate code changes.
* Revert #1142 - Remove unboxed objectswolfbeast2020-02-22
| | | | - accounting for removal of watch()/unwatch()
* Revert 1320408 part 15: Make addDataProperty staticwolfbeast2020-02-22
|
* Simplify some alias sets in IonMonkey.wolfbeast2020-01-11
|
* Bug 1331092 - Part 8: Support JSOP_TOASYNCITER in JIT.Gaming4JC2019-12-17
| | | | Tag #1287
* Bug 1331092 - Part 6: Support JSOP_TOASYNCGEN in JIT.Gaming4JC2019-12-17
| | | | Tag #1287
* Bug 1344753 - Update for-of stack depth in ↵Gaming4JC2019-12-17
| | | | | | ControlFlowGenerator::processWhileOrForInLoop. Tag #1287
* Bug 1343481 - Part 3: Add JSOP_AWAIT and rename {yieldIndex,yieldOffset} to ↵Gaming4JC2019-12-17
| | | | | | {yieldAndAwaitIndex,yieldAndAwaitOffset}. Tag #1287
* Bug 1343481 - Part 1: Remove {JSFunction,JSScript,LazyScript}.isGenerator() ↵Gaming4JC2019-12-17
| | | | | | method. Tag #1287
* Merge branch 'master' into js-moduleswolfbeast2019-11-10
|\ | | | | | | | | # Conflicts: # modules/libpref/init/all.js
| * Issue #1257 - Part 2: Remove watch/unwatch and JS watchpoint class.wolfbeast2019-10-27
| |
| * Fix type barrier in IonBuilder::jsop_getimport.wolfbeast2019-10-24
| |
| * Replace calls to undefined functions isMarkable() and toMarkablePointer()Dmitry Grigoryev2019-10-10
| |
| * Use the correct group for JIT constraints.wolfbeast2019-09-05
| | | | | | | | | | | | | | This fixes a rare crash/CTD in JS. This adds information about the constraints to a new RAII class so we can finish all constraints at the end. Based on changes in BZ 1568397
| * Remove unused checking function for unboxed types.wolfbeast2019-07-22
| | | | | | | | Tag #1030
| * Merge pull request #1192 from g4jc/parser_tuneupMoonchild2019-07-20
| |\ | | | | | | Issues #816 / #802 - SpiderMonkey Tuneup
| | * 1344334 - Make DoTypeUpdateFallback infallible.Gaming4JC2019-07-18
| | |
| | * 1344477 - Part 2: Optimize Array.prototype.splice with JSOP_NORVCALL.Gaming4JC2019-07-18
| | |
| | * 1344477 - Part 1: Add JSOP_CALL_IGNORES_RV for function call that ignores ↵Gaming4JC2019-07-18
| | | | | | | | | | | | return value.
| | * 1320408 - Part 15: Change NativeObject::addDataProperty to static method.Gaming4JC2019-07-18
| | |
| | * 1320408 - Part 14: Change some GlobalObject methods to static method.Gaming4JC2019-07-18
| | |
| | * 1320408 - Part 12: Change JSScript::sourceData to static method.Gaming4JC2019-07-18
| | |
| | * 1320408 - Part 4: Change JSObject::getGroup to static method.Gaming4JC2019-07-18
| | |
| | * 1320408 - Part 2: Change JSFunction::getOrCreateScript to static method.Gaming4JC2019-07-18
| | |
| * | Define JumpImmediateRange on ARM64.Lars T Hansen2019-07-20
| |/ | | | | | | | | | | | | | | There are comments in the code suggesting that we've made plans at some point to handle very far jumps via patching + indirect jumps, but all of those comments are TODO/FIXME. Absent such a strategy, the furthest jump is 2^27-1 bytes, and we need to define JumpImmediateRange to reflect that.
| * Issue #1142 - Cleanup unused debug code for unboxed objectsGaming4JC2019-06-28
| | | | | | | | Also fixes an assertion during compile if debug is enabled since unboxed objects have been removed.
| * Issue #1142 - Remove uneeded assertion (#1145)g4jc2019-06-28
| | | | | | Since unboxed objects were removed, isUnboxed is undefined. This causes a build failure when debuging is enabled. This patch fixes the issue by removing the uneeeded assertion.
| * Clean up MObjectStatewolfbeast2019-06-26
| |
| * Remove now-unused parameter (prev. used for unboxed objects).wolfbeast2019-06-26
| |