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: 10.2.154.23
Choose a base ref
...
head repository: v8/v8
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 10.2.154.26
Choose a head ref
  • 6 commits
  • 5 files changed
  • 3 contributors

Commits on Jan 9, 2023

  1. [M102-LTS][wasm][turbofan] Load 32-bit values more efficiently

    When loading a 32-bit value from the stack, just load 32 bit and
    zero-extend them into the target register, instead of loading the full
    64 bits.
    
    As there are things to fix (see https://crbug.com/1356461), we only
    enable this optimization for Wasm for now.
    
    R=​jkummerow@chromium.org
    
    (cherry picked from commit a382099)
    
    Bug: chromium:1395604
    No-Try: true
    No-Presubmit: true
    No-Tree-Checks: true
    Change-Id: Ibdd2d80704973362906aec9b38faa762d3b43f3f
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4097424
    Cr-Original-Commit-Position: refs/heads/main@{#84796}
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4111948
    Reviewed-by: Maya Lekova <mslekova@chromium.org>
    Reviewed-by: Clemens Backes <clemensb@chromium.org>
    Commit-Queue: Roger Felipe Zanoni da Silva <rzanoni@google.com>
    Cr-Commit-Position: refs/branch-heads/10.2@{#45}
    Cr-Branched-From: 374091f-refs/heads/10.2.154@{#1}
    Cr-Branched-From: f0c353f-refs/heads/main@{#79976}
    backes authored and V8 LUCI CQ committed Jan 9, 2023
    Configuration menu
    Copy the full SHA
    4caaa22 View commit details
    Browse the repository at this point in the history
  2. Version 10.2.154.24

    Change-Id: Id3822483c7133dd3e018bf439e06c2287a2ea7eb
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4145887
    Bot-Commit: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com>
    Cr-Commit-Position: refs/branch-heads/10.2@{#46}
    Cr-Branched-From: 374091f-refs/heads/10.2.154@{#1}
    Cr-Branched-From: f0c353f-refs/heads/main@{#79976}
    V8 Autoroll committed Jan 9, 2023
    Configuration menu
    Copy the full SHA
    f639b0f View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2023

  1. [M102-LTS][parser] Reset the calls_eval flag after arrow head

    Otherwise it's propagated to the parent
    
    (cherry picked from commit e1e0890)
    
    Bug: chromium:1394973
    No-Try: true
    No-Presubmit: true
    No-Tree-Checks: true
    Change-Id: I178f9d5d863aec501525a783846d1df6d3031bb2
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4100687
    Commit-Queue: Toon Verwaest <verwaest@chromium.org>
    Auto-Submit: Toon Verwaest <verwaest@chromium.org>
    Commit-Queue: Igor Sheludko <ishell@chromium.org>
    Cr-Original-Commit-Position: refs/heads/main@{#84808}
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4143040
    Commit-Queue: Roger Felipe Zanoni da Silva <rzanoni@google.com>
    Reviewed-by: Shu-yu Guo <syg@chromium.org>
    Cr-Commit-Position: refs/branch-heads/10.2@{#47}
    Cr-Branched-From: 374091f-refs/heads/10.2.154@{#1}
    Cr-Branched-From: f0c353f-refs/heads/main@{#79976}
    verwaest authored and V8 LUCI CQ committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    f626db9 View commit details
    Browse the repository at this point in the history
  2. Version 10.2.154.25

    Change-Id: Iceffe4a6211469f18a347d3341c51b2d4243b4db
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4162303
    Bot-Commit: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com>
    Cr-Commit-Position: refs/branch-heads/10.2@{#48}
    Cr-Branched-From: 374091f-refs/heads/10.2.154@{#1}
    Cr-Branched-From: f0c353f-refs/heads/main@{#79976}
    V8 Autoroll committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    54c938e View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2023

  1. [M102-LTS][arm] Do not emit the constant pool before a branch

    After computing the branch offset but before emitting the actual branch,
    we should not emit a constant pool. Otherwise the previously computed
    offset would be off.
    
    Instead of handling this indirectly via the Assembler::branch_offset
    method, do this directly in the Assembler::b method (and friends), so it
    is not missed on other call sites.
    
    R=​jkummerow@chromium.org
    
    (cherry picked from commit 9be597d)
    
    Bug: chromium:1399424
    No-Try: true
    No-Presubmit: true
    No-Tree-Checks: true
    Change-Id: I0cbb219ced5b671001a296b1cc7c339f395abffe
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4102800
    Commit-Queue: Clemens Backes <clemensb@chromium.org>
    Cr-Original-Commit-Position: refs/heads/main@{#84828}
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4116984
    Reviewed-by: Clemens Backes <clemensb@chromium.org>
    Commit-Queue: Roger Felipe Zanoni da Silva <rzanoni@google.com>
    Cr-Commit-Position: refs/branch-heads/10.2@{#49}
    Cr-Branched-From: 374091f-refs/heads/10.2.154@{#1}
    Cr-Branched-From: f0c353f-refs/heads/main@{#79976}
    backes authored and V8 LUCI CQ committed Jan 23, 2023
    Configuration menu
    Copy the full SHA
    0438569 View commit details
    Browse the repository at this point in the history
  2. Version 10.2.154.26

    Change-Id: Idb65e8cd1f1dc5f1319f5a34cdba65d8046ab320
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4188344
    Bot-Commit: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com>
    Cr-Commit-Position: refs/branch-heads/10.2@{#50}
    Cr-Branched-From: 374091f-refs/heads/10.2.154@{#1}
    Cr-Branched-From: f0c353f-refs/heads/main@{#79976}
    V8 Autoroll committed Jan 23, 2023
    Configuration menu
    Copy the full SHA
    fc08b99 View commit details
    Browse the repository at this point in the history
Loading