Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Code-Review | +1 |
std::memset(nibble_table->begin(), 0, nibble_table->length());
Let's DCHECK the nibble_table size is as expected.
const int bit = i * kBitsPerByte + j;
nit: consider `bit_index` to clarify.
int lo_nibble = bit & 0x0f;
A short comment please that mentions the relation between the bit index and ascii char code.
"SkipUntilChar(cp_offset=%d, advance_by=%d, char1=0x%04x%s, "
OrChar
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
std::memset(nibble_table->begin(), 0, nibble_table->length());
Let's DCHECK the nibble_table size is as expected.
Done
nit: consider `bit_index` to clarify.
Done
A short comment please that mentions the relation between the bit index and ascii char code.
Done
"SkipUntilChar(cp_offset=%d, advance_by=%d, char1=0x%04x%s, "
Patrick ThierOrChar
Done
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
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-code-generator.cc
Insertions: 7, Deletions: 4.
The diff is too large to show. Please review the diff.
```
```
The name of the file: src/regexp/regexp-macro-assembler-tracer.cc
Insertions: 1, Deletions: 1.
The diff is too large to show. Please review the diff.
```
[regexp] Assemble from BC: Implement bytecodes generated by peephole opt
- Add default implementations for all bytecodes generated by peephole
optimization.
- Implement bytecodes generated by peephole optimization in
RegExpCodeGenerator
- Fallback in RegExpCodeGenerator is now marked UNREACHABLE. The whole
fallback mechanism will be removed in a follow-up.
- Remove --no-regexp-peephole-optimization from assemble-from-bytecode
test variants.
Drive-by: Ensure INIT macros in RegExpCodeGenerator are terminated by
semicolon.
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |