DescriptionInitial implementation of fast path operation for bitwise OR.
Support a binary operation (bitwise OR) so long as it's not nested in
the left subexpression. This ensures that the expression stack never
has height greater than two and so can be kept fully in registers.
The bounded expression stack height and the absence of any side
effects on the fast path allows us to still bailout out to the very
beginning of the function if any of our fast-path checks fail.
Committed: http://code.google.com/p/v8/source/detail?r=3822
Patch Set 1 #
Total comments: 4
Patch Set 2 : Fixed bug, added test. #
Messages
Total messages: 3 (0 generated)
|