Re: [PATCH v2 10/11] Add new bbitmap class

2024-07-11 Thread Richard Biener
On Thu, Jul 11, 2024 at 2:18 PM Andrew Carlotti wrote: > > This class provides a constant-size bitmap that can be used as almost a > drop-in replacement for bitmaps stored in integer types. The > implementation is entirely within the header file and uses recursive > templated operations to suppor

Re: [PATCH v2 10/11] Add new bbitmap class

2024-07-11 Thread Richard Sandiford
Andrew Carlotti writes: > This class provides a constant-size bitmap that can be used as almost a > drop-in replacement for bitmaps stored in integer types. The > implementation is entirely within the header file and uses recursive > templated operations to support effective optimisation and usag

[PATCH v2 10/11] Add new bbitmap class

2024-07-11 Thread Andrew Carlotti
This class provides a constant-size bitmap that can be used as almost a drop-in replacement for bitmaps stored in integer types. The implementation is entirely within the header file and uses recursive templated operations to support effective optimisation and usage in constexpr expressions. This