summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
| | * Issue #2282 - - Properly implement Performance Timeline Level 2 w3c spec.Brian Smith2023-08-02
| |/ | | | | | | | | | | | | | | | | | | | | | | https://bugzilla.mozilla.org/show_bug.cgi?id=1539006 Do not throw from PerformanceObserver.observe when none of the entryTypes are known. https://bugzilla.mozilla.org/show_bug.cgi?id=1403027 Implement PerformanceObserver::takeRecords(). https://bugzilla.mozilla.org/show_bug.cgi?id=1436692 "server" is not a valid PerformanceEntry type. https://bugzilla.mozilla.org/show_bug.cgi?id=1463065 Fix a null ptr crash in PerformanceObserver::Observe. https://bugzilla.mozilla.org/show_bug.cgi?id=1631346
| * Merge pull request 'Implement Big(U)Int64Array and fill in some missing ↵Moonchild2023-07-29
| |\ | | | | | | | | | | | | | | | BigInt pieces.' (#2280) from dbsoft/UXP:bigint64-2026 into master Reviewed-on: https://repo.palemoon.org/MoonchildProductions/UXP/pulls/2280
| | * Issue #1240 - Follow-up: Add missing JSVAL_TYPE_BIGINT cases in JitFrames.cpp.Brian Smith2023-07-28
| | | | | | | | | | | | As pointed out by roytam1 during testing with Discord.
| | * Issue #1240 - Follow-up: Fix incorrect values in Number() constructor.Brian Smith2023-07-28
| | | | | | | | | | | | | | | | | | https://bugzilla.mozilla.org/show_bug.cgi?id=1466893 Our code base was using the return value to create the Number object. However with the BigInt changes, it is no longer stored in rval, use args[0].
| | * Issue #2026 - Part 4 - Fill in missing dense elements case and fix a comment.Brian Smith2023-07-28
| | | | | | | | | | | | | | | | | | | | | https://bugzilla.mozilla.org/show_bug.cgi?id=1456569 Skipped this during the initial implementation, not sure when or if this code path is used, but I figure it should be there just in case. Also fix debug builgs by removing an no longer valid MOZ_ASSERT.
| | * Merge branch 'bigint-devtools-test' of ↵Brian Smith2023-07-28
| | |\ | | | | | | | | | | | | https://repo.palemoon.org/martok/UXP-contrib into bigint64-2026
| | | * Issue #2026 - Part 3c - Add BigInt Devtools support. (new frontend)Martok2023-07-29
| | | |
| | | * Issue #2026 - Part 3b - Add BigInt Devtools support. (legacy frontend)Martok2023-07-28
| | | |
| | * | Issue #2026 - Part 3a - Add support for BigInt in devtools. (Server side)Brian Smith2023-07-25
| | |/ | | | | | | | | | https://bugzilla.mozilla.org/show_bug.cgi?id=1527867
| | * Issue #2026 - Part 2b - Format BigInts representable as int64_t without ↵Brian Smith2023-07-25
| | | | | | | | | | | | | | | | | | first converting them to strings. https://bugzilla.mozilla.org/show_bug.cgi?id=1543677
| | * Issue #2026 - Part 2a - Support BigInt in NumberFormat and toLocaleString.Brian Smith2023-07-25
| | | | | | | | | | | | https://bugzilla.mozilla.org/show_bug.cgi?id=1543677
| | * Issue #2026 - Part 1 - Implement BigInt64 and BigUint64Array.Brian Smith2023-07-24
| | | | | | | | | | | | https://bugzilla.mozilla.org/show_bug.cgi?id=1456569
| * | Update UXP/Goanna version now BigInt has landed.Moonchild2023-07-25
| |/
| * Merge pull request 'Add BigInt primitive type.' (#2276) from ↵Moonchild2023-07-23
| |\ | | | | | | | | | | | | | | | dbsoft/UXP:bigint-merged into master Reviewed-on: https://repo.palemoon.org/MoonchildProductions/UXP/pulls/2276
| | * Issue #1240 - Part 11 - Fix several issue reported on review.Brian Smith2023-07-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Skip over block delimiters when parsing BigInt literals. Update BigInt hashing to account for the possibility of moving GC. https://bugzilla.mozilla.org/show_bug.cgi?id=1531018 Make HashableValue comparison of BigInts infallible. https://bugzilla.mozilla.org/show_bug.cgi?id=1530406 Fix BigInt constructor API CallArgs usage. https://bugzilla.mozilla.org/show_bug.cgi?id=1526279
| | * Issue #1240 - Part 10 - Implement minimal Ion support for BigInt.Brian Smith2023-07-21
| | | | | | | | | | | | | | | | | | https://bugzilla.mozilla.org/show_bug.cgi?id=1507484 Implement IC support for BigInt. https://bugzilla.mozilla.org/show_bug.cgi?id=1522431
| | * Issue #1240 - Part 9 - Fix incorrectly parsing decimal BigInt 0n.Brian Smith2023-07-21
| | | | | | | | | | | | The decimal parser strips leading 0s, so prevent tokenbuf being empty.
| | * Issue #1240 - Part 8 - Fix incorrect asserts with debug enabled.Brian Smith2023-07-21
| | | | | | | | | | | | | | | | | | Fix BigInt errors in remainder operations https://bugzilla.mozilla.org/show_bug.cgi?id=1524136 Also fix 2 debug asserts in fallthroughs due to missing BigInt cases.
| | * Issue #1240 - Part 7 - Handle BigInt values in XPCVariant code.Brian Smith2023-07-20
| | | | | | | | | | | | https://bugzilla.mozilla.org/show_bug.cgi?id=1603055
| | * Issue #1240 - Part 5g - Implement BigInt comparison operators.Brian Smith2023-07-19
| | | | | | | | | | | | | | | | | | | | | Implement BigInt support for equality operators. https://bugzilla.mozilla.org/show_bug.cgi?id=1486173 Part 3. Implement BigInt support for relational comparison operators. https://bugzilla.mozilla.org/show_bug.cgi?id=1492669
| | * Issue #1240 - Part 6c - Implement asIntN and asUintN methods for BigInt values.Brian Smith2023-07-19
| | | | | | | | | | | | https://bugzilla.mozilla.org/show_bug.cgi?id=1501104
| | * Issue #1240 - Part 6b - Use ToIndex when constructing TypedArray with length ↵Brian Smith2023-07-19
| | | | | | | | | | | | | | | | | | argument. https://bugzilla.mozilla.org/show_bug.cgi?id=1317383 Part 2.
| | * Issue #1240 - Part 6a - Implement BigInt.prototype.toLocaleString.Brian Smith2023-07-19
| | | | | | | | | | | | https://bugzilla.mozilla.org/show_bug.cgi?id=1366287 Part 5.
| | * Issue #1240 - Part 5f - Add DataView methods for BigInt access.Brian Smith2023-07-19
| | | | | | | | | | | | https://bugzilla.mozilla.org/show_bug.cgi?id=1528582
| | * Issue #1240 - Part 5e - BigInt bitwise operators.Brian Smith2023-07-19
| | | | | | | | | | | | https://bugzilla.mozilla.org/show_bug.cgi?id=1490387
| | * Issue #1240 - Part 5d - Use the radix when parsing BigInts.Brian Smith2023-07-19
| | | | | | | | | | | | | | | Fixes Hex, Octal and Binary BigInt literal parsing. Previously it was only parsing in decimal.
| | * Issue #1240 - Part 5c -Implement ToInt32OrBigInt operation.Brian Smith2023-07-19
| | | | | | | | | | | | https://bugzilla.mozilla.org/show_bug.cgi?id=1490387
| | * Issue #1240 - Part 5b - BigInt support for basic arithmetic operations.Brian Smith2023-07-19
| | | | | | | | | | | | https://bugzilla.mozilla.org/show_bug.cgi?id=1471134 Parts 3-5.
| | * Issue #1240 - Part 5a - BigInt to Number conversion.Brian Smith2023-07-19
| | | | | | | | | | | | https://bugzilla.mozilla.org/show_bug.cgi?id=1466893
| | * Merge branch 'master' into bigint-mergedBrian Smith2023-07-18
| | |\ | | |/ | |/|
| * | Merge pull request 'Fix intermittent crash on MacOS 14 Sonoma Beta 3.' ↵Moonchild2023-07-17
| |\ \ | | | | | | | | | | | | | | | | | | | | (#2274) from dbsoft/UXP:sonomafix into master Reviewed-on: https://repo.palemoon.org/MoonchildProductions/UXP/pulls/2274
| | * | No Issue - Fix intermitted crash on MacOS 14 Sonoma Beta 3.Brian Smith2023-07-17
| |/ / | | | | | | | | | | | | Not sure why this is happening but mIOSurface is nullptr. If we just skip binding, it will be created on the next call to BeginUpdate.
| | * Issue #1240 - Part 4 - Implement parser support for BigInt literals.Brian Smith2023-07-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | https://bugzilla.mozilla.org/show_bug.cgi?id=1505849 Partially based on https://bugzilla.mozilla.org/show_bug.cgi?id=1456568 Un-result-ified the BigInt XDR code, so we can enable it. https://bugzilla.mozilla.org/show_bug.cgi?id=1419094 Uninitialised memory read with BigInt right-shift https://bugzilla.mozilla.org/show_bug.cgi?id=1679003
| | * Issue #1240 - Part 3c - Fast-forward to the V8 version of BigIntType.Brian Smith2023-07-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | Disabling some sections temporarily since the dependencies are not there yet. Based on the following: https://bugzilla.mozilla.org/show_bug.cgi?id=1502797 https://bugzilla.mozilla.org/show_bug.cgi?id=1471134 https://bugzilla.mozilla.org/show_bug.cgi?id=1441098 Part 3 & 4 Add structured clone support for BigInt and Enable BigInt wrapping from DOM bindings. https://bugzilla.mozilla.org/show_bug.cgi?id=1522738
| | * Issue #1240 - Part 3b - Implement WrappingOperations.h for wraparound math ↵Brian Smith2023-07-13
| | | | | | | | | | | | | | | | | | | | | | | | operations & conversions. https://bugzilla.mozilla.org/show_bug.cgi?id=1441657 Implement mozilla::WrappingMultiply. Prerequisite for our V8 fast forward.
| | * Issue #1240 - Part 3a - Adjust mozilla::FloatingPoint<T>'s definition.Brian Smith2023-07-13
| | | | | | | | | | | | | | | | | | | | | | | | So only the barest details are specified for floating-point encodings, with every other number, bit mask, &c. mathematically derived. Also add a bunch of documentation comments. https://bugzilla.mozilla.org/show_bug.cgi?id=1508725 Prerequisite for our V8 fast forward.
| | * Issue #1240 - Part 2 - Define the BigIntObject class for BigInt wrapper objects.Brian Smith2023-07-13
| | | | | | | | | | | | | | | Based on https://bugzilla.mozilla.org/show_bug.cgi?id=1366287 Part 3. In our Part 3 we will fast forward to the V8 implementation skipping GMP.
| | * Issue #1240 - Part 1 - Define a new BigInt primitive type.Brian Smith2023-07-13
| | | | | | | | | | | | | | | Based on https://bugzilla.mozilla.org/show_bug.cgi?id=1366287 Part 1.0. However leaving out the --enable-bigint changes.
* | | Merge branch 'master' into releaseRB_20230715Moonchild2023-07-15
|\| |
| * | Merge pull request 'Fix cloning of self-hosted functions' (#2273) from ↵Moonchild2023-07-14
| |\ \ | | | | | | | | | | | | | | | | | | | | martok/UXP-contrib:mr/canon-names into master Reviewed-on: https://repo.palemoon.org/MoonchildProductions/UXP/pulls/2273
| | * | Issue #2271 - Use declared names of self-hosted functions for cloningMartok2023-07-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ensure that cloning a self-hosted function always has access to the declared name from the source and that it doesn't get lost on successive clones. This is done by storing the declared name in an extended slot on rename, and cloning it with the function. Based-on: m-c 1546232
| | * | Issue #2271 - Separate cloning of native and interpreted functionsMartok2023-07-13
| |/ / | | | | | | | | | | | | | | | | | | Separate code paths make it easier to follow and specialize than a single one-size-fits-all function. Based-on: m-c 1405766, 1411954
| * | Merge pull request 'Further enhance Maybe<> and use it in the Performance ↵Moonchild2023-07-13
| |\ \ | | |/ | |/| | | | | | | | | | API' (#2272) from dbsoft/UXP:maybe-2255-deux into master Reviewed-on: https://repo.palemoon.org/MoonchildProductions/UXP/pulls/2272
| | * Issue #2255 - Fix build bustage on Linux.Brian Smith2023-07-12
| | | | | | | | | | | | Need #include <utility> to ensure std::forward is available.
| | * Issue #2255 - Use Maybe<> in the Performance API.Brian Smith2023-07-12
| | |
| | * Issue #2255 - Add support for Maybe<T&>Brian Smith2023-07-12
| |/ | | | | | | | | | | https://bugzilla.mozilla.org/show_bug.cgi?id=1620568 Make Maybe<T>::emplace() work when T is const https://bugzilla.mozilla.org/show_bug.cgi?id=1335780
| * Merge pull request 'Enhance Mac Packaging via mozconfig options and fix ARM ↵Moonchild2023-07-11
| |\ | | | | | | | | | | | | | | | Mac debug builds.' (#2269) from dbsoft/UXP:macbundle-2268 into master Reviewed-on: https://repo.palemoon.org/MoonchildProductions/UXP/pulls/2269
| | * Issue #2268 - Fix Mac packaging by making the individual parts configurable.Brian Smith2023-07-07
| | | | | | | | | | | | | | | Add --with-macbundle-entitlement= to specify alternate entitlements or "none" Add --with-macbundle-type=hybrid to use the old DMG format.
| | * No Issue - Fix debug builds on ARM Mac.Brian Smith2023-07-07
| |/ | | | | | | | | mach_override used by the IO Poisoner used in debug mode is not support on ARM. https://bugzilla.mozilla.org/show_bug.cgi?id=1658385
* | Merge branch 'master' into releaseRC_20230707RB_20230711Moonchild2023-07-07
|\|