Description[turbofan] Further reduction of Word32And with Int32Add.
- (y * (K << L) + x) & (-1 << L) => (x & (-1 << L)) + y * (K << L)
- (x + y * (K << L)) & (-1 << L) => (x & (-1 << L)) + y * (K << L)
TEST=unittests
R=svenpanne@chromium.org
Committed: https://crrev.com/0925be14a28354bc2b85a82598f3de78f17a15eb
Cr-Commit-Position: refs/heads/master@{#25875}
Patch Set 1 #
Messages
Total messages: 5 (0 generated)
|