Page MenuHomeFreeBSD

bitset: add BIT_FFS_AT() for finding the first bit set greater than a start bit
ClosedPublic

Authored by scottph on Aug 20 2020, 6:47 AM.
Tags
None
Referenced Files
F173197315: D26128.id76016.diff
Thu, Sep 24, 6:01 AM
F173189987: D26128.id76039.diff
Thu, Sep 24, 4:45 AM
F173188377: D26128.id76049.diff
Thu, Sep 24, 4:38 AM
F173175551: D26128.diff
Thu, Sep 24, 3:00 AM
Unknown Object (File)
Sun, Sep 20, 1:13 AM
Unknown Object (File)
Fri, Sep 11, 7:44 AM
Unknown Object (File)
Tue, Sep 8, 3:57 PM
Unknown Object (File)
Sun, Sep 6, 12:28 PM

Details

Summary

MFC after: 1 week
Sponsored by: Ampere Computing, Inc.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

juan.molina_club.fr added inline comments.
share/man/man9/bitset.9
27

Typo

share/man/man9/bitset.9
294

For me it looks like 'greater or equal'.

sys/sys/bitset.h
250

Why not implement this same as BIT_FFS, but start the loop not from __i = 0, but from __i = __bitset_word(s, start) ?

Then BIT_FFS() can be redefined as BIT_FFS_AT(s, p, 0). Of course, all this assuming my note about 'greater or equal' being true.

scottph added inline comments.
share/man/man9/bitset.9
294

It would be greater-or-equal if you consider start as a 1-based index, or greater if you consider it 1-based. I tried to document everything as 1-based as that's also the return value of BIT_FFS, but I can change it around however.

sys/sys/bitset.h
250

The old version was a sort-of transliteration of bitstring's bit_ffs_at, and then I had not redefined BIT_FFS() in terms of BIT_FFS_AT() because it seemed to be generating assembly for the mask even in the 0 start case. This version doesn't seem to have that problem so I've redefined BIT_FFS here.

Other than the small note, looks good.

sys/sys/bitset.h
234

Don' you need to write this as BIT_FFS_AT((_s), (p), 0) ?

This revision is now accepted and ready to land.Aug 20 2020, 9:32 PM
This revision now requires review to proceed.Aug 21 2020, 7:16 AM
scottph added inline comments.
sys/sys/bitset.h
234

I don't believe anything could go wrong without it, but I've added it for consistency with the surrounding code.

This revision is now accepted and ready to land.Aug 21 2020, 10:38 AM