Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Code-Review | +1 |
// In the new bytecode layout we only support packing of up to 2 bytes.
```suggestion
// We only support packing of up to 2 bytes.
```
Imo we shouldn't mention the old layout anymore in new comments.
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Commit-Queue | +2 |
// In the new bytecode layout we only support packing of up to 2 bytes.
```suggestion
// We only support packing of up to 2 bytes.
```Imo we shouldn't mention the old layout anymore in new comments.
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
1 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: src/regexp/regexp-bytecodes.h
Insertions: 1, Deletions: 1.
The diff is too large to show. Please review the diff.
```
[regexp] Support unaligned reads in bytecode
Previously RegExp bytecode didn't support unaligned reads, to be able
to run on all architectures. But RegExp bytecode is not shared across
architectures so we can support unaligned reads also for bytecode
if the architecture supports it.
Drive-by fixes:
- Add missing AndCheckNot4Chars lowering to RegExpCodeGenerator
- Limit first argument packing in bytecode to 2 byte
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |