| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
I'm OK with this. The benefit of the previous approach was that we'd learn about all the instructions that can show up there, which might point out some that should have been handled but were forgotten. That said, the specific purpose of the function in question seems to make it safe enough to just return `false` for any possibly-forgotten opcode, so avoiding the `UNREACHABLE()` crash is a convincing intention.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +2 |
I'm OK with this. The benefit of the previous approach was that we'd learn about all the instructions that can show up there, which might point out some that should have been handled but were forgotten. That said, the specific purpose of the function in question seems to make it safe enough to just return `false` for any possibly-forgotten opcode, so avoiding the `UNREACHABLE()` crash is a convincing intention.
Yes, we've got to know some of the unsupported operations and they may still be handled later. I've added a trace to catch them up if we need to debug any revectorization failures.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
[wasm][revec] Add default path for all unsupported operations
There're still more operations (StructGet or ArrayGet) supporting
Simd128 output, even though they are not classified as SIMD operation.
Add a default path for all unsupported to avoid unreachable crash.
DISABLE_SPELLCHECKER
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |