You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
We can repurpose the input string array's null buffer directly on the specialized regex implementation so that we won't be spending time on re-building it.
Describe the solution you'd like
When we know only one input is an array (on the specialized case), we should be able to re-use the existing null buffer. The generic case can also be done in a similar fashion but that would be a bit more hard since now we would need to re-combine 4 null buffers (which might be easy with the underlying bitmap representation, though I doubt it would worth the complexity since the specialized path already covers the generic case).
Describe alternatives you've considered
None.
Additional context
Originally from @Dandandan as part of #3518.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
We can repurpose the input string array's null buffer directly on the specialized regex implementation so that we won't be spending time on re-building it.
Describe the solution you'd like
When we know only one input is an array (on the specialized case), we should be able to re-use the existing null buffer. The generic case can also be done in a similar fashion but that would be a bit more hard since now we would need to re-combine 4 null buffers (which might be easy with the underlying bitmap representation, though I doubt it would worth the complexity since the specialized path already covers the generic case).
Describe alternatives you've considered
None.
Additional context
Originally from @Dandandan as part of #3518.
The text was updated successfully, but these errors were encountered: