Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: v8/v8
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 13.7.152.14
Choose a base ref
...
head repository: v8/v8
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 13.7.152.19
Choose a head ref
  • 10 commits
  • 18 files changed
  • 6 contributors

Commits on Jun 10, 2025

  1. Merged: [liftoff] Ensure zero-extension of returned i32 values

    The signature hash allows for i64/i32 collisions. To compensate for that
    we already did zero-extend all parameters in the Liftoff prologue.
    This does the same for returned values, which have the same problem.
    
    [email protected]
    
    Bug: 421403261
    (cherry picked from commit df38747)
    
    Change-Id: Idd8573fddc9c9e1f57455b4e5ec6bfe3424e11b2
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6632487
    Commit-Queue: Jakob Kummerow <[email protected]>
    Auto-Submit: Clemens Backes <[email protected]>
    Reviewed-by: Jakob Kummerow <[email protected]>
    Cr-Commit-Position: refs/branch-heads/13.7@{#28}
    Cr-Branched-From: dd5370d-refs/heads/13.7.152@{#1}
    Cr-Branched-From: fa9b753-refs/heads/main@{#99927}
    backes authored and V8 LUCI CQ committed Jun 10, 2025
    Configuration menu
    Copy the full SHA
    3efc4f0 View commit details
    Browse the repository at this point in the history
  2. Version 13.7.152.15

    Version incremented at https://cr-buildbucket.appspot.com/build/8712458304609471569
    
    Change-Id: Ia69e0569012429a1bf0cbb91b9f78da5b4856f0b
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6632152
    Bot-Commit: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com>
    Cr-Commit-Position: refs/branch-heads/13.7@{#29}
    Cr-Branched-From: dd5370d-refs/heads/13.7.152@{#1}
    Cr-Branched-From: fa9b753-refs/heads/main@{#99927}
    V8 Autoroll committed Jun 10, 2025
    Configuration menu
    Copy the full SHA
    7aec879 View commit details
    Browse the repository at this point in the history
  3. Merged: [regexp] Use uint32_t over int in EscapeRegExpSource

    While escaping the regexp source, a regular signed int might overflow,
    while an uint32_t can always hold the maximum length for the escaped
    source.
    
    Bug: 420697404
    (cherry picked from commit 62ee324)
    
    Change-Id: I45810a1d148b23d4a29f03078acf35d8c66cedd5
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6632486
    Reviewed-by: Jakob Linke <[email protected]>
    Commit-Queue: Patrick Thier <[email protected]>
    Auto-Submit: Patrick Thier <[email protected]>
    Cr-Commit-Position: refs/branch-heads/13.7@{#30}
    Cr-Branched-From: dd5370d-refs/heads/13.7.152@{#1}
    Cr-Branched-From: fa9b753-refs/heads/main@{#99927}
    pthier authored and V8 LUCI CQ committed Jun 10, 2025
    Configuration menu
    Copy the full SHA
    59579e0 View commit details
    Browse the repository at this point in the history
  4. Version 13.7.152.16

    Version incremented at https://cr-buildbucket.appspot.com/build/8712446979803825713
    
    Change-Id: Ib930d836116c80322be4faa30146a173897cd841
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6632870
    Bot-Commit: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com>
    Cr-Commit-Position: refs/branch-heads/13.7@{#31}
    Cr-Branched-From: dd5370d-refs/heads/13.7.152@{#1}
    Cr-Branched-From: fa9b753-refs/heads/main@{#99927}
    V8 Autoroll committed Jun 10, 2025
    Configuration menu
    Copy the full SHA
    6c8d989 View commit details
    Browse the repository at this point in the history

Commits on Jun 12, 2025

  1. Merged: [wasm][jspi] Reintroduce an SBXCHECK

    Reintroduce an SBXCHECK to ensure that we always suspend/return to the
    immediate parent stack. Returning should already be safe because the
    StackMemory chain lives outside of the sandbox, but suspending is still
    unsafe because it uses the in-sandbox WasmSuspenderObject chain which
    can be corrupted.
    
    This is a short-term fix. A more robust solution will be to move the
    WasmSuspenderObjects outside of the sandbox, like we did with the
    WasmContinuationObjects (https://crrev.com/c/6426203).
    
    [email protected]
    
    (cherry picked from commit 25e22b6)
    
    Change-Id: I2d500f7a7f4cbbfbff6f1383f4f94a338d4fb688
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6633546
    Reviewed-by: Jakob Kummerow <[email protected]>
    Commit-Queue: Thibaud Michaud <[email protected]>
    Cr-Commit-Position: refs/branch-heads/13.7@{#32}
    Cr-Branched-From: dd5370d-refs/heads/13.7.152@{#1}
    Cr-Branched-From: fa9b753-refs/heads/main@{#99927}
    thibaudmichaud authored and V8 LUCI CQ committed Jun 12, 2025
    Configuration menu
    Copy the full SHA
    fb9a5cc View commit details
    Browse the repository at this point in the history
  2. Version 13.7.152.17

    Version incremented at https://cr-buildbucket.appspot.com/build/8712261823587022081
    
    Change-Id: Ice999bacb620e28d10c43a6429a6430986866918
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6640434
    Bot-Commit: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com>
    Cr-Commit-Position: refs/branch-heads/13.7@{#33}
    Cr-Branched-From: dd5370d-refs/heads/13.7.152@{#1}
    Cr-Branched-From: fa9b753-refs/heads/main@{#99927}
    V8 Autoroll committed Jun 12, 2025
    Configuration menu
    Copy the full SHA
    075234c View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2025

  1. [M137]Merged: [intl] Change fatal to exception due to lack of resources

    Other Intl object address the same issue in
    https://issues.chromium.org/issues/42200234
    
    Fixed: 412149700
    (cherry picked from commit 1d82eec)
    
    Change-Id: I5af32a68c05d37925c0d4538822559c1493863e7
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6652493
    Owners-Override: Srinivas Sista <[email protected]>
    Commit-Queue: Frank Tang <[email protected]>
    Reviewed-by: Francis McCabe <[email protected]>
    Cr-Commit-Position: refs/branch-heads/13.7@{#34}
    Cr-Branched-From: dd5370d-refs/heads/13.7.152@{#1}
    Cr-Branched-From: fa9b753-refs/heads/main@{#99927}
    FrankYFTang authored and V8 LUCI CQ committed Jun 17, 2025
    Configuration menu
    Copy the full SHA
    484172f View commit details
    Browse the repository at this point in the history
  2. Version 13.7.152.18

    Version incremented at https://cr-buildbucket.appspot.com/build/8711775995515337505
    
    Change-Id: Ie790c8599ae5b2b88c84e62e6ed0b55e08199c8d
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6652451
    Bot-Commit: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com>
    Cr-Commit-Position: refs/branch-heads/13.7@{#35}
    Cr-Branched-From: dd5370d-refs/heads/13.7.152@{#1}
    Cr-Branched-From: fa9b753-refs/heads/main@{#99927}
    V8 Autoroll committed Jun 17, 2025
    Configuration menu
    Copy the full SHA
    5ca85d2 View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2025

  1. [M137][interpreter] don't elide hole checks across optional chain

    (cherry picked from commit 22e9d96)
    
    Bug: 427663123
    Change-Id: Iefdb15828d807bf9452b88e918a4b46cc2d422fa
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6678591
    Commit-Queue: Stephen Röttger <[email protected]>
    Reviewed-by: Toon Verwaest <[email protected]>
    Cr-Original-Commit-Position: refs/heads/main@{#101050}
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6677675
    Reviewed-by: Stephen Röttger <[email protected]>
    Reviewed-by: Deepti Gandluri <[email protected]>
    Commit-Queue: Deepti Gandluri <[email protected]>
    Cr-Commit-Position: refs/branch-heads/13.7@{#36}
    Cr-Branched-From: dd5370d-refs/heads/13.7.152@{#1}
    Cr-Branched-From: fa9b753-refs/heads/main@{#99927}
    sroettger authored and V8 LUCI CQ committed Jun 26, 2025
    Configuration menu
    Copy the full SHA
    4278d6d View commit details
    Browse the repository at this point in the history
  2. Version 13.7.152.19

    Version incremented at https://cr-buildbucket.appspot.com/build/8710972326413960529
    
    Change-Id: I5b7454b334d0533d8f2b3faeff5e5db77928a97a
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6681028
    Bot-Commit: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com>
    Cr-Commit-Position: refs/branch-heads/13.7@{#37}
    Cr-Branched-From: dd5370d-refs/heads/13.7.152@{#1}
    Cr-Branched-From: fa9b753-refs/heads/main@{#99927}
    V8 Autoroll committed Jun 26, 2025
    Configuration menu
    Copy the full SHA
    cfefa07 View commit details
    Browse the repository at this point in the history
Loading