mirrored from https://chromium.googlesource.com/v8/v8.git
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Rv li 2 #43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Rv li 2 #43
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…n-test-macro-assembler-cc' into 'riscv-porting-dev' Resolve "Add test cases for `ReverseByte32` and `ReverseByte64` in `test-macro-assembler.cc`" Closes riscv-collab#57 See merge request swlab/swe/v8!59
Resolve "ERROR: mfhc1 generated" Closes riscv-collab#42 See merge request swlab/swe/v8!60
In many places, uses of `v0` were previously set to ue `t0`, but we need to use `a0`, as that is where the return value is placed.
The simulator can now insert and handle `ecall` instructions to trigger external calls.
This was caused by the MIPS64 using `s0` as a temp, but in RISC-V, `s0` is `fp`, so there were various places where the frame pointer was accidentally over-written.
…reachable' into 'riscv-porting-dev' Remove remaining MIPS instructions that are marked as `UNREACHABLE()` Closes riscv-collab#68 See merge request swlab/swe/v8!61
Since `a0` already has the return value, we don't need a move to use it as the first parameter.
External funcs Closes riscv-collab#62 See merge request swlab/swe/v8!62
FSGN instructions are essentially bit-manipulation, so it does not need Canonicalization for the inputs/result
Since kScatchReg is used in code-gen, liftoff-assembler, and reg-exp-assembler that in turn invokes macro-assembler APIs, direct use of kscratchReg inside macro-assembler may cause conflict. In this bug, liftoff-assembler used kScratchReg then invokes JumpIfEqual which again write to kScratchReg while it is still live.
Previous implementation uses `Move_s` even when inputs are doubles
…' into 'riscv-porting-dev' Resolve "Verification failure: RunWasmLiftoff_Float32Neg fails" Closes riscv-collab#72 See merge request swlab/swe/v8!65
This fixes two places where the `auipc` instruction is used to calculate a PC offset. Fixes riscv-collab#59
…porting-dev' Fix incorrect address calculations from PC offsets Closes riscv-collab#59 See merge request swlab/swe/v8!66
ceejatec
pushed a commit
to couchbasedeps/v8-mirror
that referenced
this pull request
Sep 24, 2020
TBR=v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com Change-Id: Ia9d25742c9a04ee89fed1ea327ffa991b434503d Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2310082 Reviewed-by: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/branch-heads/8.4@{v8#43} Cr-Branched-From: 88ed2e3-refs/heads/8.4.371@{#1} Cr-Branched-From: 35f88bf-refs/heads/master@{#67773}
Kwizatz
pushed a commit
to AeonGames/v8
that referenced
this pull request
Jul 25, 2021
Revision: 379331b BUG=chromium:782461,chromium:901819 NOTRY=true NOPRESUBMIT=true NOTREECHECKS=true R=leszeks@chromium.org Change-Id: Iafb255efa5d9e4bc2f20c69c873296949496104c Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2871457 Reviewed-by: Leszek Swirski <leszeks@chromium.org> Cr-Commit-Position: refs/branch-heads/9.1@{v8#43} Cr-Branched-From: 0e4ac64-refs/heads/9.1.269@{#1} Cr-Branched-From: f565e72-refs/heads/master@{#73847}
cb-robot
pushed a commit
to couchbasedeps/v8-mirror
that referenced
this pull request
Aug 24, 2022
This is a reland of b99fe75. The test is now skipped on non-SIMD hardware. Original change's description: > [liftoff][arm64] Zero-extend offsets also for SIMD > > This extends https://crrev.com/c/2917612 also for SIMD, which > (sometimes) uses the special {GetMemOpWithImmOffsetZero} method. > As part of this CL, that method is renamed to {GetEffectiveAddress} > which IMO is a better name. Also, it just returns a register to make the > semantic of that function obvious in the signature. > > Drive-by: When sign extending to 32 bit, only write to the W portion of > the register. This is a bit cleaner, and I first thought that > this would be the bug. > > R=jkummerow@chromium.org > CC=thibaudm@chromium.org > > Bug: chromium:1231950, v8:12018 > Change-Id: Ifaefe1f18e3a00534a30c99e3c37ed09d9508f6e > Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3049073 > Reviewed-by: Zhi An Ng <zhin@chromium.org> > Commit-Queue: Clemens Backes <clemensb@chromium.org> > Cr-Commit-Position: refs/heads/master@{#75898} TBR=thibaudm@chromium.org (cherry picked from commit 5e90a61) Bug: chromium:1231950 Change-Id: I33916616bb736cd254ebf121463257a0584bf513 No-Try: true No-Tree-Checks: true No-Presubmit: true Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3059694 Reviewed-by: Clemens Backes <clemensb@chromium.org> Commit-Queue: Clemens Backes <clemensb@chromium.org> Cr-Commit-Position: refs/branch-heads/9.2@{v8#43} Cr-Branched-From: 5123834-refs/heads/9.2.230@{#1} Cr-Branched-From: 587a04f-refs/heads/master@{#74656}
cb-robot
pushed a commit
to couchbasedeps/v8-mirror
that referenced
this pull request
Aug 24, 2022
Merged: [const-tracking] Mark const field as mutable when reconfiguring Revision: 7535b91 Merged: [const-tracking] Fix incorrect DCHECK in MapUpdater Revision: f95db89 BUG=chromium:1161847,chromium:1185463,v8:9233 NOTRY=true NOPRESUBMIT=true NOTREECHECKS=true R=ishell@chromium.org Change-Id: I7f46a701646e1dd67a049b2aa4ac32d05b6885f3 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2748079 Commit-Queue: Georg Neis <neis@chromium.org> Reviewed-by: Igor Sheludko <ishell@chromium.org> Cr-Commit-Position: refs/branch-heads/8.9@{v8#43} Cr-Branched-From: 16b9bbb-refs/heads/8.9.255@{#1} Cr-Branched-From: d16a2a6-refs/heads/master@{#72039}
cb-robot
pushed a commit
to couchbasedeps/v8-mirror
that referenced
this pull request
Aug 24, 2022
TBR=v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com Change-Id: I98913244dd48d517924315037d44407b5f93fc0f Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3204824 Reviewed-by: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/branch-heads/9.4@{v8#43} Cr-Branched-From: 3b51863-refs/heads/9.4.146@{#1} Cr-Branched-From: 2890419-refs/heads/master@{#76233}
cb-robot
pushed a commit
to couchbasedeps/v8-mirror
that referenced
this pull request
Aug 24, 2022
TBR=v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com Change-Id: I86c26fca5c29c36e4837c6efc14a47ba549bbcfa Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3233917 Reviewed-by: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/branch-heads/9.5@{v8#43} Cr-Branched-From: 4a03d61-refs/heads/9.5.172@{#1} Cr-Branched-From: 9a60704-refs/heads/main@{#76741}
cb-robot
pushed a commit
to couchbasedeps/v8-mirror
that referenced
this pull request
Aug 24, 2022
TBR=v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com Change-Id: I317f70305a4bf6efc5a462458f73ddb7a3835813 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2506495 Reviewed-by: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/branch-heads/8.6@{v8#43} Cr-Branched-From: a64aed2-refs/heads/8.6.395@{#1} Cr-Branched-From: a626bc0-refs/heads/master@{#69472}
cb-robot
pushed a commit
to couchbasedeps/v8-mirror
that referenced
this pull request
Aug 24, 2022
Merged: [const-tracking] Mark const field as mutable when reconfiguring Revision: 7535b91 Merged: [const-tracking] Fix incorrect DCHECK in MapUpdater Revision: f95db89 BUG=chromium:1161847,chromium:1185463,v8:9233 NOTRY=true NOPRESUBMIT=true NOTREECHECKS=true R=ishell@chromium.org (cherry picked from commit 5651802) Change-Id: I7f46a701646e1dd67a049b2aa4ac32d05b6885f3 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2748079 Commit-Queue: Georg Neis <neis@chromium.org> Reviewed-by: Igor Sheludko <ishell@chromium.org> Cr-Original-Commit-Position: refs/branch-heads/8.9@{v8#43} Cr-Original-Branched-From: 16b9bbb-refs/heads/8.9.255@{#1} Cr-Original-Branched-From: d16a2a6-refs/heads/master@{#72039} Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2794428 Reviewed-by: Victor-Gabriel Savu <vsavu@google.com> Commit-Queue: Artem Sumaneev <asumaneev@google.com> Cr-Commit-Position: refs/branch-heads/8.6@{v8#73} Cr-Branched-From: a64aed2-refs/heads/8.6.395@{#1} Cr-Branched-From: a626bc0-refs/heads/master@{#69472}
cb-robot
pushed a commit
to couchbasedeps/v8-mirror
that referenced
this pull request
Aug 24, 2022
Change-Id: I1e76b68704a71e9d386085fd9872cb60a1321ef9 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3338321 Bot-Commit: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/branch-heads/9.6@{v8#43} Cr-Branched-From: 0b7bda0-refs/heads/9.6.180@{#1} Cr-Branched-From: 41a5a24-refs/heads/main@{#77244}
cb-robot
pushed a commit
to couchbasedeps/v8-mirror
that referenced
this pull request
Aug 24, 2022
Revision: 798fbcb BUG=chromium:1198705 NOTRY=true NOPRESUBMIT=true NOTREECHECKS=true TBR=nicohartmann@chromium.org Change-Id: Ifc210e7932f43088e858f6bdac6d9bcdec6e63f5 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2844654 Reviewed-by: Georg Neis <neis@chromium.org> Commit-Queue: Georg Neis <neis@chromium.org> Cr-Commit-Position: refs/branch-heads/9.0@{v8#43} Cr-Branched-From: bd0108b-refs/heads/9.0.257@{#1} Cr-Branched-From: 349bcc6-refs/heads/master@{#73001}
cb-robot
pushed a commit
to couchbasedeps/v8-mirror
that referenced
this pull request
Aug 24, 2022
Change-Id: I5c466d94ba2d6df1f8b72fff8adf610eb3e9aa80 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3405614 Bot-Commit: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/branch-heads/9.7@{v8#43} Cr-Branched-From: 49162da-refs/heads/9.7.106@{#1} Cr-Branched-From: a7e9b8f-refs/heads/main@{#77674}
cb-robot
pushed a commit
to couchbasedeps/v8-mirror
that referenced
this pull request
Aug 24, 2022
The value of a node was accessed without prior HasValue check. With WebAssembly this node is not guaranteed to be a value. Bug: chromium:1147206 R=mslekova@chromium.org NOTRY=true NOPRESUBMIT=true NOTREECHECKS=true (cherry picked from commit 633f67c) Change-Id: I62170183f3940a04b0550dfbb78cb49d2f5d7f72 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2504250 Reviewed-by: Maya Lekova <mslekova@chromium.org> Commit-Queue: Andreas Haas <ahaas@chromium.org> Cr-Original-Commit-Position: refs/heads/master@{#70833} Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2527090 Cr-Commit-Position: refs/branch-heads/8.7@{v8#43} Cr-Branched-From: 0d81cd7-refs/heads/8.7.220@{#1} Cr-Branched-From: 942c2ef-refs/heads/master@{#70196}
patrik-lengweiler
pushed a commit
to hexagon-geo-surv/v8
that referenced
this pull request
May 31, 2023
Due to mismatch in strictness we otherwise invalidly mark scopes as calling sloppy eval. (cherry picked from commit 27fa951) Bug: chromium:1394403 No-Try: true No-Presubmit: true No-Tree-Checks: true Change-Id: Iece45df87f171616a2917c2aba5540636880a7c6 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4066044 Commit-Queue: Toon Verwaest <verwaest@chromium.org> Cr-Original-Commit-Position: refs/heads/main@{#84575} Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4068122 Commit-Queue: Roger Felipe Zanoni da Silva <rzanoni@google.com> Reviewed-by: Artem Sumaneev <asumaneev@google.com> Reviewed-by: Toon Verwaest <verwaest@chromium.org> Cr-Commit-Position: refs/branch-heads/10.2@{v8#43} Cr-Branched-From: 374091f-refs/heads/10.2.154@{#1} Cr-Branched-From: f0c353f-refs/heads/main@{#79976}
patrik-lengweiler
pushed a commit
to hexagon-geo-surv/v8
that referenced
this pull request
May 31, 2023
Bug: chromium:1439691 (cherry picked from commit 2c8a019) Change-Id: Ia418ae04bf4352e3618700c55ecd37447023e6eb Reviewed-on: https://chromium-review.googlesourc D7AE e.com/c/v8/v8/+/4503810 Reviewed-by: Jakob Linke <jgruber@chromium.org> Commit-Queue: Shu-yu Guo <syg@chromium.org> Cr-Commit-Position: refs/branch-heads/11.2@{v8#43} Cr-Branched-From: 755511a-refs/heads/11.2.214@{#1} Cr-Branched-From: e6b1cce-refs/heads/main@{#86014}
patrik-lengweiler
pushed a commit
to hexagon-geo-surv/v8
that referenced
this pull request
May 31, 2023
chromium removed the config in https://crrev.com/c/3755181. (cherry picked from commit 2eaf21e) Bug: b:255447284 Change-Id: I54a50e7035de8f7db96ab81ded74d9c63bcbecdd Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3977074 Reviewed-by: Michael Achenbach <machenbach@chromium.org> Auto-Submit: Takuto Ikuta <tikuta@chromium.org> Commit-Queue: Takuto Ikuta <tikuta@chromium.org> Commit-Queue: Michael Achenbach <machenbach@chromium.org> Cr-Original-Commit-Position: refs/heads/main@{#83897} Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3981118 Cr-Commit-Position: refs/branch-heads/10.6@{v8#43} Cr-Branched-From: 41bc743-refs/heads/10.6.194@{#1} Cr-Branched-From: d5f29b9-refs/heads/main@{#82548}
patrik-lengweiler
pushed a commit
to hexagon-geo-surv/v8
that referenced
this pull request
May 31, 2023
Change-Id: I9959ca7f1aba9e51f5f3179a079a120882bdc160 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4086503 Bot-Commit: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/branch-heads/10.8@{v8#43} Cr-Branched-From: f1bc03f-refs/heads/10.8.168@{#1} Cr-Branched-From: 237de89-refs/heads/main@{#83672}
patrik-lengweiler
pushed a commit
to hexagon-geo-surv/v8
that referenced
this pull request
May 31, 2023
Revision: 3ec02e3 BUG=chromium:1359294,v8:12578 NOTRY=true NOPRESUBMIT=true NOTREECHECKS=true R=mlippautz@chromium.org Change-Id: I04093833a1bfef4269eb578fa5a002872015199e Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3882977 Reviewed-by: Michael Lippautz <mlippautz@chromium.org> Cr-Commit-Position: refs/branch-heads/10.4@{v8#43} Cr-Branched-From: b1413ed-refs/heads/10.4.132@{#1} Cr-Branched-From: 9d0a093-refs/heads/main@{#80972}
patrik-lengweiler
pushed a commit
to hexagon-geo-surv/v8
that referenced
this pull request
May 31, 2023
Change-Id: I87bf47e7b1c92aed20ac975261322a722386e0c0 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4009245 Bot-Commit: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/branch-heads/10.7@{v8#43} Cr-Branched-From: 4d2145c-refs/heads/10.7.193@{#1} Cr-Branched-From: 9521696-refs/heads/main@{#83201}
patrik-lengweiler
pushed a commit
to hexagon-geo-surv/v8
that referenced
this pull request
Jun 10, 2023
Merged: [runtime] Create unoptimized data even if compilation is aborted Revision: 0e07abe Merged: [class] Export SharedFunctionInfo::CreateAndSetUncompiledData Revision: 1b55293 BUG=chromium:1441254 NOTRY=true NOPRESUBMIT=true NOTREECHECKS=true R=verwaest@chromium.org Change-Id: I39c4ab864776a9138d07c3c1dccd3a2be4acfe7c Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4604769 Reviewed-by: Toon Verwaest <verwaest@chromium.org> Cr-Commit-Position: refs/branch-heads/11.4@{v8#43} Cr-Branched-From: 8a8a1e7-refs/heads/11.4.183@{#1} Cr-Branched-From: 5483d8e-refs/heads/main@{#87241}
reposynch bot
pushed a commit
to hexagon-geo-surv/v8
that referenced
this pull request
Aug 6, 2023
Fixed: v8:14197 Bug: v8:7700 (cherry picked from commit 3462172) Change-Id: Iaeb009e55fc6c9b5b038aaaa87235558b27f9e14 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4727936 Commit-Queue: Jakob Kummerow <jkummerow@chromium.org> Auto-Submit: Leszek Swirski <leszeks@chromium.org> Reviewed-by: Jakob Kummerow <jkummerow@chromium.org> Cr-Commit-Position: refs/branch-heads/11.5@{v8#43} Cr-Branched-From: 0c4044b-refs/heads/11.5.150@{#1} Cr-Branched-From: b71d303-refs/heads/main@{#87781}
reposynch bot
pushed a commit
to hexagon-geo-surv/v8
that referenced
this pull request
Jan 14, 2024
Bug: v8:7700 Fixed: chromium:1515930 (cherry picked from commit 78dd4b3) Change-Id: I64561e7ee71405e6eceeb2132b953ff0806e3a7b Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5185347 Auto-Submit: Leszek Swirski <leszeks@chromium.org> Reviewed-by: Victor Gomes <victorgomes@chromium.org> Commit-Queue: Victor Gomes <victorgomes@chromium.org> Cr-Commit-Position: refs/branch-heads/12.1@{v8#43} Cr-Branched-From: b74ef6f-refs/heads/12.1.285@{#1} Cr-Branched-From: 32857fb-refs/heads/main@{#91313}
hubot
pushed a commit
that referenced
this pull request
Mar 8, 2024
Change-Id: I73cf80443287175da8cae3d43cf340d30fc59b9f Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5356195 Bot-Commit: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/branch-heads/12.2@{#43} Cr-Branched-From: 6eb5a96-refs/heads/12.2.281@{#1} Cr-Branched-From: 44cf56d-refs/heads/main@{#91934}
hubot
pushed a commit
that referenced
this pull request
Apr 9, 2024
Change-Id: Icda88a094b2290211b67e3e1bfcf50178416a5ff Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5440217 Bot-Commit: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/branch-heads/12.0@{#43} Cr-Branched-From: ed7b4ca-refs/heads/12.0.267@{#1} Cr-Branched-From: 210e75b-refs/heads/main@{#90651}
hubot
pushed a commit
that referenced
this pull request
Jun 26, 2024
Change-Id: I75a8b6df45ae15a7a31361e9f0d5502503dc4b53 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5658957 Bot-Commit: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/branch-heads/12.6@{#43} Cr-Branched-From: 3c9fa12-refs/heads/12.6.228@{#2} Cr-Branched-From: 981bb15-refs/heads/main@{#93835}
hubot
pushed a commit
that referenced
this pull request
Aug 23, 2024
Change-Id: I11c0c6d8e9b412a5f674ed8b2c057314c172414a Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5804198 Bot-Commit: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/branch-heads/12.8@{#43} Cr-Branched-From: 70cbb39-refs/heads/12.8.374@{#1} Cr-Branched-From: 451b63e-refs/heads/main@{#95151}
hubot
pushed a commit
that referenced
this pull request
Sep 23, 20
E5EE
24
This reverts commit a44a16f. (cherry picked from commit 6cdc1db) Bug: 367758074 Change-Id: Iac12a082d2eb17c723f2328d607bbc61d995e3ed Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5883296 Auto-Submit: Adam Klein <adamk@chromium.org> Bot-Commit: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com> Commit-Queue: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com> Cr-Commit-Position: refs/branch-heads/12.9@{#43} Cr-Branched-From: 64a21d7-refs/heads/12.9.202@{#1} Cr-Branched-From: da4200b-refs/heads/main@{#95679}
hubot
pushed a commit
that referenced
this pull request
Dec 16, 2024
The Object.assign fastcase should not override the hash of the to object. Bug: 383647255 (cherry picked from commit 357d0dd) Change-Id: I2bbf10614d7997a396800cef33144875309010d9 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6097572 Reviewed-by: Camillo Bruni <cbruni@chromium.org> Commit-Queue: Igor Sheludko <ishell@chromium.org> Cr-Commit-Position: refs/branch-heads/13.0@{#43} Cr-Branched-From: 4be854b-refs/heads/13.0.245@{#1} Cr-Branched-From: 1f5183f-refs/heads/main@{#96103}
hubot
pushed a commit
that referenced
this pull request
Dec 16, 2024
Version incremented at https://cr-buildbucket.appspot.com/build/8728365434245330865 Change-Id: I55e33f5c9878913f0c083735bc8f0940812b6756 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6097759 Bot-Commit: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/branch-heads/13.2@{#43} Cr-Branched-From: 24068c5-refs/heads/13.2.152@{#1} Cr-Branched-From: 6054ba9-refs/heads/main@{#97085}
hubot
pushed a commit
that referenced
this pull request
Jan 6, 2025
Version incremented at https://cr-buildbucket.appspot.com/build/8726487245867387921 Change-Id: Idd704437aae0e5a4631a246600d3373dc787232d Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6148828 Bot-Commit: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/branch-heads/13.1@{#43} Cr-Branched-From: 7998da6-refs/heads/13.1.201@{#1} Cr-Branched-From: 5e9af2a-refs/heads/main@{#96554}
hubot
pushed a commit
that referenced
this pull request
Feb 14, 2025
Version incremented at https://cr-buildbucket.appspot.com/build/8722948490140372497 Change-Id: I8fb9a3d068f94f66a5e9040b8d1f77f6d7a8f213 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6269957 Bot-Commit: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/branch-heads/13.3@{#43} Cr-Branched-From: 41dacff-refs/heads/13.3.415@{#1} Cr-Branched-From: 3348638-refs/heads/main@{#97937}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Replaced RV_li function that was copyrighted by LLVM. Wrote two algorithms for the case of temporary register available and not available.