| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
Use relative paths to OWNERS files R=machenbach@chromium.org Bug: chromium:992584 Change-Id: I301013731a502689f2edd5c90e5e7bf2136198c5 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1745337 Reviewed-by: Michael Achenbach <machenbach@chromium.org> Commit-Queue: Yang Guo <yangguo@chromium.org> Cr-Commit-Position: refs/heads/master@{#63159} | 6 年前 | |
[wasm] Split enabled and detected features This makes it a lot easier to find all the places to clean up when removing a feature flag. They just won't compile anymore, and we have to decide whether to add something to the detected set instead. This CL already forces us to remove a few DCHECKs and flag scopes for always-enabled features, which is a good thing. R=mliedtke@chromium.org Change-Id: If2f57df52da1f91c5d2955e05878c8bcec9bb286 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5631031 Commit-Queue: Clemens Backes <clemensb@chromium.org> Reviewed-by: Darius Mercadier <dmercadier@chromium.org> Reviewed-by: Matthias Liedtke <mliedtke@chromium.org> Cr-Commit-Position: refs/heads/main@{#94553} | 2 年前 | |
[fuzzer][arm64][wasm] Enable experimental SIMD optimizations in libfuzzers Change-Id: I18c11e43c8f424bfa2b01c91b5fb7b79e3a73939 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/7169185 Reviewed-by: Sam Parker-Haynes <sam.parker@arm.com> Commit-Queue: Matthias Liedtke <mliedtke@chromium.org> Cr-Commit-Position: refs/heads/main@{#103810} | 7 个月前 | |
[wasm][fuzzer] compare global and memory traces for differential fuzzing Compare and print the differences in the memory and global traces. The purpose is to assist in finding the specific instructions that caused the differences that were detected by the differential fuzzing. Bug: 436219201 Change-Id: If162278462d2a509864e7f2643f71a57a49b755b Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6943430 Reviewed-by: Jakob Kummerow <jkummerow@chromium.org> Reviewed-by: Matthias Liedtke <mliedtke@chromium.org> Commit-Queue: Nikolas Kaipel <nikolaskaipel@google.com> Cr-Commit-Position: refs/heads/main@{#102746} | 9 个月前 | |
[wasmfx] Implement decoding of Cont.bind Bug: 388533754 Change-Id: I09b4225ea36619c389ea69ab8eac525f83a484c1 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6440130 Reviewed-by: Thibaud Michaud <thibaudm@chromium.org> Reviewed-by: Michael Lippautz <mlippautz@chromium.org> Commit-Queue: Francis McCabe <fgm@chromium.org> Cr-Commit-Position: refs/heads/main@{#99764} | 1 年前 | |
[wasmfx] Implementing decoding for resume_throw_ref And move switch to its new opcode Bug: 388533754 Change-Id: If52ffebe975143bbdccead53c6e203b5953e7de6 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/7127770 Reviewed-by: Jakob Kummerow <jkummerow@chromium.org> Reviewed-by: Thibaud Michaud <thibaudm@chromium.org> Commit-Queue: Francis McCabe <fgm@chromium.org> Cr-Commit-Position: refs/heads/main@{#103710} | 7 个月前 | |
[wasm][test] Remove SetupIsolateForWasmModule This method installs JS objects for Wasm compilation and instantiation; this is not needed in most tests and in fuzzers. Thus remove this method, saving fuzzers some execution time. R=mliedtke@chromium.org Bug: 384781857 Change-Id: Ie1563991c834c5049e41eae32605e08240e53f09 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6771337 Reviewed-by: Matthias Liedtke <mliedtke@chromium.org> Commit-Queue: Clemens Backes <clemensb@chromium.org> Cr-Commit-Position: refs/heads/main@{#101570} | 11 个月前 | |
[wasm][test] Remove SetupIsolateForWasmModule This method installs JS objects for Wasm compilation and instantiation; this is not needed in most tests and in fuzzers. Thus remove this method, saving fuzzers some execution time. R=mliedtke@chromium.org Bug: 384781857 Change-Id: Ie1563991c834c5049e41eae32605e08240e53f09 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6771337 Reviewed-by: Matthias Liedtke <mliedtke@chromium.org> Commit-Queue: Clemens Backes <clemensb@chromium.org> Cr-Commit-Position: refs/heads/main@{#101570} | 11 个月前 | |
[wasm][cleanup] Stop using base::Vector::length() Replacing it with Vector::size() where that makes sense. Bug: 393395932 Change-Id: I419ecca01bb52997fc48bcf6b4dfd54440f7f597 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/7146164 Commit-Queue: Jakob Kummerow <jkummerow@chromium.org> Reviewed-by: Clemens Backes <clemensb@chromium.org> Auto-Submit: Jakob Kummerow <jkummerow@chromium.org> Cr-Commit-Position: refs/heads/main@{#103679} | 7 个月前 | |
Add SIMD cross-compiler determinism fuzztest Rename CrossCompilerDeterminismTest to Float32CrossCompilerDeterminismTest and make a heavily modified copy for SIMD, called SimdCrossCompilerDeterminismTest. Since SIMD values cannot be passed as parameters, we write them to memory first, or embed them as constants. For testing more register configurations in Liftoff, we also add some code to consume free registers in Liftoff. This uncovered the bug fixed in https://crrev.com/c/6949846. For now, this fuzztest tests this single instruction. More opcodes will be added later, with potentially more fixes. R=mliedtke@chromium.org Bug: 444386482 Change-Id: I55fbaa66660b339af33907d6ca106a9b5a45d5d5 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6948110 Reviewed-by: Matthias Liedtke <mliedtke@chromium.org> Commit-Queue: Clemens Backes <clemensb@chromium.org> Cr-Commit-Position: refs/heads/main@{#102557} | 9 个月前 |
| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
| 6 年前 | ||
| 2 年前 | ||
| 7 个月前 | ||
| 9 个月前 | ||
| 1 年前 | ||
| 7 个月前 | ||
| 11 个月前 | ||
| 11 个月前 | ||
| 7 个月前 | ||
| 9 个月前 |