summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Bug 1424978 - IonMonkey: MIPS64: Fix tagValue functionJiaxun Yang2020-05-14
| | | | Tag: #1542
* Bug 1424978 - IonMonkey: MIPS64: Fix boxValue functionJiaxun Yang2020-05-14
| | | | Tag: #1542
* Bug 1390802 - IonMonkey: MIPS64: Fix storeValue functionJiaxun Yang2020-05-14
| | | | Tag: #1542
* Bug 1424978 - IonMonkey: MIPS: Fix ma_store_unalignedJiaxun Yang2020-05-14
| | | | Tag: #1542
* Bug 1424978 - IonMonkey: MIPS: Fix ma_addTestCarryJiaxun Yang2020-05-14
| | | | Tag: #1542
* Bug 1390459 - mulby3 function implement error on mips platformJiaxun Yang2020-05-14
| | | | Tag: #1542
* 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
* Bug 1394286 - mips64: fix error correction about stackpointer within ↵Jiaxun Yang2020-05-14
| | | | | | function _NS_InvokeByIndex Tag: #1542
* Issue #1542 - nsprpub: _PR_SI_ARCHITECTURE add missing mips64Jiaxun Yang2020-05-14
|
* Issue #1542 - IonMonkey: MIPS: Define JS_CODEGEN_MIPSXX by HAVE_64BIT_BUILD.Jiaxun Yang2020-05-14
| | | | MIPSXX is required for 64bit build.
* Issue #1543 - Align <img> with no src to the updated spec.Moonchild2020-05-11
|
* Merge pull request #1537 from win7-7/column-backgrounds-pr-2Moonchild2020-05-10
|\ | | | | Better way to create display items for column backgrounds
| * Issue #1355 - Fix the nit, remove nsPoint offset in nsFrame.cpp and change ↵win7-72020-05-10
| | | | | | | | PresShellState member order
| * Issue #1355 - Better way to create display items for column backgroundswin7-72020-05-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Part 1: Remove current table item, as it's never set. Part 2: Get rid of generic table painting code, and handle each class separately. Part 4: Hoist outline skipping into col(group) frame code. Part 5: Skip box-shadow for table column and column groups. Part 6: Store column and column group backgrounds separately, and then append them before the rest of the table contents. Part 7: Pass rects in display list coordinates to AppendBackgroundItemsToTop. Part 8: Create column and column group background display items as part of the cell's BuildDisplayList. Part 9: Used cached values instead of calling nsDisplayListBuilder::ToReferenceFrame when possible, since it can be expensive when the requested frame isn't the builder's current frame. Part 10: Make sure we build display items for table parts where only the normal position is visible, since we may need to create background items for ancestors at that position. Part 11: Create an AutoBuildingDisplayList when we create background items for table columns and column groups, so that we initialize the invalidation state correctly.
| * Issue #1355 - SetNeedToCalcHasBCBorders to true when initialize nsTableFramewin7-72020-05-08
| | | | | | | | In the printing preview, we create continuous table frame if table is too long to containing in a page. But the default value of NeedToCalcHasBCBorders is false which means we don't calculate HasBCBorders for continuous table frame. Thus, the border collapse is not shown when printing preview.
| * Issue #1355 - Avoid unnecessary work in ↵win7-72020-05-08
| | | | | | | | | | | | | | | | | | | | nsIFrame::BuildDisplayListForStackingContext() and nsIFrame::BuildDisplayListForChild() and Cleanup DescendIntoChild Bug 1441796 - Part 1: Optimize the (pseudo)-stacking context conditions Bug 1441796 - Part 3: Reuse the results in nsIFrame::BuildDisplayListForStackingContext() for ChildrenHavePerspective(), IsTransformed(), and Combines3DTransformWithAncestors() Bug 1512244 - Part 1: Cleanup DescendIntoChild
| * Issue #1355 - Preemptively fix build bustage for 1409114win7-72020-05-08
| |
| * Issue #1355 - Store the dirty rect on the display list builder rather than ↵win7-72020-05-08
| | | | | | | | | | | | passing it as a parameter to BuildDisplayList Also fix build bustage for De-unified layout/xul in nsRootBoxFrame.cpp
* | Merge pull request #1541 from athenian200/mp3-parser-fixMoonchild2020-05-10
|\ \ | | | | | | Stop MP3 demuxer from choking on very small files.
| * | Issue #1540 - Stop MP3 demuxer from choking on very small files.athenian2002020-05-10
| | |
* | | Issue #1589 - Ensure computed length and data is always availablewolfbeast2020-05-10
|/ /
* | Merge pull request #1535 from g4jc/VFS_telemetry_nukeMoonchild2020-05-09
|\ \ | | | | | | Remove TelemertyVFS
| * | Issue #21 - Remove TelemertyVFSGaming4JC2020-05-06
| | | | | | | | | | | | This reverts m-c Bug 668378 and completely removes Telemetry SQLite IO. As a bonus this fixes a potential crash in newer SQLite versions without the need for updating this useless telemetry shim.
* | | Issue #1536 - Part 3: Parse content to decide whether it's an init segment.Moonchild2020-05-07
| | |
* | | Issue #1536 - Part 2: Parse content to decide whether it's a media segment.wolfbeast2020-05-07
| | |
* | | Issue #1536 - Part 1: Add timecode checking for the WebM parserwolfbeast2020-05-07
| | |
* | | Hyperbola IceDove should use the toolkit SearchServiceMatt A. Tobin2020-05-06
| | |
* | | [XPFE] Properly anchor XUL windows when tearing downMoonchild2020-05-06
| | |
* | | [WebRTC] Port some upstream sctp fixesMoonchild2020-05-06
|/ / | | | | | | | | - add SCTP auth token boundary check. - turn off SCTP auth and address reconfiguration.
* | [dom] Reorder some calls to improve memory safetyMoonchild2020-05-06
| |
* | [devtools] Port various upstream fixesMoonchild2020-05-06
| |
* | [js] Record load in MCreateThis alias set.Moonchild2020-05-05
| |
* | Prevent the existance of dangling pointers upon failure of FindDataStart.Bas Schouten2020-05-05
| |
* | Issue #1451 - Split out ICU data file on WindowsMoonchild2020-05-05
|/ | | | This reduces the xul.dll size by 11 MB
* Merge pull request #1532 from adeshkp/patch-15New Tobin Paradigm2020-05-05
|\ | | | | Fix warning about inline nsINode::GetFlattenedTreeParentNodeForStyle being undefined
| * Issue #457 - Fix warning about inline ↵adeshkp2020-05-05
| | | | | | | | nsINode::GetFlattenedTreeParentNodeForStyle being undefined