Description[turbofan] Combine additional Word32And with Int32Add and negative power of two.
- (y << L + x) & (-1 << L) => (x & (-1 << L)) + y << L
- (x + y << L) & (-1 << L) => (x & (-1 << L)) + y << L
TEST=unittests
R=jarin@chromium.org
Committed: https://chromium.googlesource.com/v8/v8/+/2983d84e5cae739fd1762013c4be43b383be68f1
Patch Set 1 #
Total comments: 2
Patch Set 2 : Address comment. #
Messages
Total messages: 5 (0 generated)
|