xref: /freebsd/share/man/man9/bitset.9 (revision c7c3ef8949021696029fb73a513678578a9f8a46)
17ebf4122SConrad Meyer.\" Copyright (c) 2015 Conrad Meyer <cem@FreeBSD.org>
27ebf4122SConrad Meyer.\" All rights reserved.
37ebf4122SConrad Meyer.\"
47ebf4122SConrad Meyer.\" Redistribution and use in source and binary forms, with or without
57ebf4122SConrad Meyer.\" modification, are permitted provided that the following conditions
67ebf4122SConrad Meyer.\" are met:
77ebf4122SConrad Meyer.\" 1. Redistributions of source code must retain the above copyright
87ebf4122SConrad Meyer.\"    notice, this list of conditions and the following disclaimer.
97ebf4122SConrad Meyer.\" 2. Redistributions in binary form must reproduce the above copyright
107ebf4122SConrad Meyer.\"    notice, this list of conditions and the following disclaimer in the
117ebf4122SConrad Meyer.\"    documentation and/or other materials provided with the distribution.
127ebf4122SConrad Meyer.\"
137ebf4122SConrad Meyer.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS''
147ebf4122SConrad Meyer.\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
157ebf4122SConrad Meyer.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
167ebf4122SConrad Meyer.\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE
177ebf4122SConrad Meyer.\" LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
187ebf4122SConrad Meyer.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
197ebf4122SConrad Meyer.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
207ebf4122SConrad Meyer.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
217ebf4122SConrad Meyer.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
227ebf4122SConrad Meyer.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
237ebf4122SConrad Meyer.\" POSSIBILITY OF SUCH DAMAGE.
247ebf4122SConrad Meyer.\"
25dfd3bde5SMark Johnston.Dd September 20, 2021
267ebf4122SConrad Meyer.Dt BITSET 9
277ebf4122SConrad Meyer.Os
287ebf4122SConrad Meyer.Sh NAME
297ebf4122SConrad Meyer.Nm bitset(9)
307ebf4122SConrad Meyer\(em
317ebf4122SConrad Meyer.Nm BITSET_DEFINE ,
327ebf4122SConrad Meyer.Nm BITSET_T_INITIALIZER ,
337ebf4122SConrad Meyer.Nm BITSET_FSET ,
347ebf4122SConrad Meyer.Nm BIT_CLR ,
357ebf4122SConrad Meyer.Nm BIT_COPY ,
367ebf4122SConrad Meyer.Nm BIT_ISSET ,
377ebf4122SConrad Meyer.Nm BIT_SET ,
387ebf4122SConrad Meyer.Nm BIT_ZERO ,
397ebf4122SConrad Meyer.Nm BIT_FILL ,
407ebf4122SConrad Meyer.Nm BIT_SETOF ,
417ebf4122SConrad Meyer.Nm BIT_EMPTY ,
427ebf4122SConrad Meyer.Nm BIT_ISFULLSET ,
437ebf4122SConrad Meyer.Nm BIT_FFS ,
44f8782001SD Scott Phillips.Nm BIT_FFS_AT ,
451550c622SKonstantin Belousov.Nm BIT_FLS ,
46dfd3bde5SMark Johnston.Nm BIT_FOREACH_ISSET ,
47dfd3bde5SMark Johnston.Nm BIT_FOREACH_ISCLR ,
487ebf4122SConrad Meyer.Nm BIT_COUNT ,
497ebf4122SConrad Meyer.Nm BIT_SUBSET ,
507ebf4122SConrad Meyer.Nm BIT_OVERLAP ,
517ebf4122SConrad Meyer.Nm BIT_CMP ,
527ebf4122SConrad Meyer.Nm BIT_OR ,
53e058e1c4SKonstantin Belousov.Nm BIT_OR2 ,
54*cd4bd975SJake Freeland.Nm BIT_ORNOT ,
55*cd4bd975SJake Freeland.Nm BIT_ORNOT2 ,
567ebf4122SConrad Meyer.Nm BIT_AND ,
57e058e1c4SKonstantin Belousov.Nm BIT_AND2 ,
589825eadfSRyan Libby.Nm BIT_ANDNOT ,
599825eadfSRyan Libby.Nm BIT_ANDNOT2 ,
60e058e1c4SKonstantin Belousov.Nm BIT_XOR ,
61e058e1c4SKonstantin Belousov.Nm BIT_XOR2 ,
627ebf4122SConrad Meyer.Nm BIT_CLR_ATOMIC ,
637ebf4122SConrad Meyer.Nm BIT_SET_ATOMIC ,
647ebf4122SConrad Meyer.Nm BIT_SET_ATOMIC_ACQ ,
65ae4a8e52SRyan Libby.Nm BIT_TEST_SET_ATOMIC ,
66ae4a8e52SRyan Libby.Nm BIT_TEST_CLR_ATOMIC ,
677ebf4122SConrad Meyer.Nm BIT_AND_ATOMIC ,
687ebf4122SConrad Meyer.Nm BIT_OR_ATOMIC ,
697ebf4122SConrad Meyer.Nm BIT_COPY_STORE_REL
707ebf4122SConrad Meyer.Nd bitset manipulation macros
717ebf4122SConrad Meyer.Sh SYNOPSIS
727ebf4122SConrad Meyer.In sys/_bitset.h
737ebf4122SConrad Meyer.In sys/bitset.h
747ebf4122SConrad Meyer.\"
757ebf4122SConrad Meyer.Fn BITSET_DEFINE "STRUCTNAME" "const SETSIZE"
767ebf4122SConrad Meyer.Fn BITSET_T_INITIALIZER "ARRAY_CONTENTS"
777ebf4122SConrad Meyer.Fn BITSET_FSET "N_WORDS"
787ebf4122SConrad Meyer.\"
797ebf4122SConrad Meyer.Fn BIT_CLR "const SETSIZE" "size_t bit" "struct STRUCTNAME *bitset"
807ebf4122SConrad Meyer.Fn BIT_COPY "const SETSIZE" "struct STRUCTNAME *from" "struct STRUCTNAME *to"
817ebf4122SConrad Meyer.Ft bool
827ebf4122SConrad Meyer.Fn BIT_ISSET "const SETSIZE" "size_t bit" "struct STRUCTNAME *bitset"
837ebf4122SConrad Meyer.Fn BIT_SET "const SETSIZE" "size_t bit" "struct STRUCTNAME *bitset"
847ebf4122SConrad Meyer.Fn BIT_ZERO "const SETSIZE" "struct STRUCTNAME *bitset"
857ebf4122SConrad Meyer.Fn BIT_FILL "const SETSIZE" "struct STRUCTNAME *bitset"
867ebf4122SConrad Meyer.Fn BIT_SETOF "const SETSIZE" "size_t bit" "struct STRUCTNAME *bitset"
877ebf4122SConrad Meyer.Ft bool
887ebf4122SConrad Meyer.Fn BIT_EMPTY "const SETSIZE" "struct STRUCTNAME *bitset"
897ebf4122SConrad Meyer.Ft bool
907ebf4122SConrad Meyer.Fn BIT_ISFULLSET "const SETSIZE" "struct STRUCTNAME *bitset"
9126a3bf76SD Scott Phillips.Ft long
927ebf4122SConrad Meyer.Fn BIT_FFS "const SETSIZE" "struct STRUCTNAME *bitset"
9326a3bf76SD Scott Phillips.Ft long
9426a3bf76SD Scott Phillips.Fn BIT_FFS_AT "const SETSIZE" "struct STRUCTNAME *bitset" "long start"
9526a3bf76SD Scott Phillips.Ft long
961550c622SKonstantin Belousov.Fn BIT_FLS "const SETSIZE" "struct STRUCTNAME *bitset"
97dfd3bde5SMark Johnston.Fo BIT_FOREACH_ISSET
98dfd3bde5SMark Johnston.Fa "const SETSIZE"
99dfd3bde5SMark Johnston.Fa "size_t bit"
100dfd3bde5SMark Johnston.Fa "const struct STRUCTNAME *bitset"
101dfd3bde5SMark Johnston.Fc
102dfd3bde5SMark Johnston.Fo BIT_FOREACH_ISCLR
103dfd3bde5SMark Johnston.Fa "const SETSIZE"
104dfd3bde5SMark Johnston.Fa "size_t bit"
105dfd3bde5SMark Johnston.Fa "const struct STRUCTNAME *bitset"
106dfd3bde5SMark Johnston.Fc
10726a3bf76SD Scott Phillips.Ft long
1087ebf4122SConrad Meyer.Fn BIT_COUNT "const SETSIZE" "struct STRUCTNAME *bitset"
1097ebf4122SConrad Meyer.Ft bool
1107ebf4122SConrad Meyer.Fo BIT_SUBSET
1117ebf4122SConrad Meyer.Fa "const SETSIZE" "struct STRUCTNAME *haystack" "struct STRUCTNAME *needle"
1127ebf4122SConrad Meyer.Fc
1137ebf4122SConrad Meyer.Ft bool
1147ebf4122SConrad Meyer.Fo BIT_OVERLAP
1157ebf4122SConrad Meyer.Fa "const SETSIZE" "struct STRUCTNAME *bitset1" "struct STRUCTNAME *bitset2"
1167ebf4122SConrad Meyer.Fc
1177ebf4122SConrad Meyer.Ft bool
1187ebf4122SConrad Meyer.Fo BIT_CMP
1197ebf4122SConrad Meyer.Fa "const SETSIZE" "struct STRUCTNAME *bitset1" "struct STRUCTNAME *bitset2"
1207ebf4122SConrad Meyer.Fc
1217ebf4122SConrad Meyer.Fn BIT_OR "const SETSIZE" "struct STRUCTNAME *dst" "struct STRUCTNAME *src"
122e058e1c4SKonstantin Belousov.Fo BIT_OR2
123e058e1c4SKonstantin Belousov.Fa "const SETSIZE"
124e058e1c4SKonstantin Belousov.Fa "struct STRUCTNAME *dst"
125e058e1c4SKonstantin Belousov.Fa "struct STRUCTNAME *src1"
126e058e1c4SKonstantin Belousov.Fa "struct STRUCTNAME *src2"
127e058e1c4SKonstantin Belousov.Fc
128*cd4bd975SJake Freeland.Fn BIT_ORNOT "const SETSIZE" "struct STRUCTNAME *dst" "struct STRUCTNAME *src"
129*cd4bd975SJake Freeland.Fo BIT_ORNOT2
130*cd4bd975SJake Freeland.Fa "const SETSIZE"
131*cd4bd975SJake Freeland.Fa "struct STRUCTNAME *dst"
132*cd4bd975SJake Freeland.Fa "struct STRUCTNAME *src1"
133*cd4bd975SJake Freeland.Fa "struct STRUCTNAME *src2"
134*cd4bd975SJake Freeland.Fc
1357ebf4122SConrad Meyer.Fn BIT_AND "const SETSIZE" "struct STRUCTNAME *dst" "struct STRUCTNAME *src"
136e058e1c4SKonstantin Belousov.Fo BIT_AND2
137e058e1c4SKonstantin Belousov.Fa "const SETSIZE"
138e058e1c4SKonstantin Belousov.Fa "struct STRUCTNAME *dst"
139e058e1c4SKonstantin Belousov.Fa "struct STRUCTNAME *src1"
140e058e1c4SKonstantin Belousov.Fa "struct STRUCTNAME *src2"
141e058e1c4SKonstantin Belousov.Fc
1429825eadfSRyan Libby.Fn BIT_ANDNOT "const SETSIZE" "struct STRUCTNAME *dst" "struct STRUCTNAME *src"
1439825eadfSRyan Libby.Fo BIT_ANDNOT2
144e058e1c4SKonstantin Belousov.Fa "const SETSIZE"
145e058e1c4SKonstantin Belousov.Fa "struct STRUCTNAME *dst"
146e058e1c4SKonstantin Belousov.Fa "struct STRUCTNAME *src1"
147e058e1c4SKonstantin Belousov.Fa "struct STRUCTNAME *src2"
148e058e1c4SKonstantin Belousov.Fc
149e058e1c4SKonstantin Belousov.Fn BIT_XOR "const SETSIZE" "struct STRUCTNAME *dst" "struct STRUCTNAME *src"
150e058e1c4SKonstantin Belousov.Fo BIT_XOR2
151e058e1c4SKonstantin Belousov.Fa "const SETSIZE"
152e058e1c4SKonstantin Belousov.Fa "struct STRUCTNAME *dst"
153e058e1c4SKonstantin Belousov.Fa "struct STRUCTNAME *src1"
154e058e1c4SKonstantin Belousov.Fa "struct STRUCTNAME *src2"
155e058e1c4SKonstantin Belousov.Fc
1567ebf4122SConrad Meyer.\"
1577ebf4122SConrad Meyer.Fn BIT_CLR_ATOMIC "const SETSIZE" "size_t bit" "struct STRUCTNAME *bitset"
1587ebf4122SConrad Meyer.Fn BIT_SET_ATOMIC "const SETSIZE" "size_t bit" "struct STRUCTNAME *bitset"
1597ebf4122SConrad Meyer.Fn BIT_SET_ATOMIC_ACQ "const SETSIZE" "size_t bit" "struct STRUCTNAME *bitset"
160ae4a8e52SRyan Libby.Ft bool
161ae4a8e52SRyan Libby.Fn BIT_TEST_SET_ATOMIC "const SETSIZE" "size_t bit" "struct STRUCTNAME *bitset"
162ae4a8e52SRyan Libby.Ft bool
163ae4a8e52SRyan Libby.Fn BIT_TEST_CLR_ATOMIC "const SETSIZE" "size_t bit" "struct STRUCTNAME *bitset"
1647ebf4122SConrad Meyer.\"
1657ebf4122SConrad Meyer.Fo BIT_AND_ATOMIC
1667ebf4122SConrad Meyer.Fa "const SETSIZE" "struct STRUCTNAME *dst" "struct STRUCTNAME *src"
1677ebf4122SConrad Meyer.Fc
1687ebf4122SConrad Meyer.Fo BIT_OR_ATOMIC
1697ebf4122SConrad Meyer.Fa "const SETSIZE" "struct STRUCTNAME *dst" "struct STRUCTNAME *src"
1707ebf4122SConrad Meyer.Fc
1717ebf4122SConrad Meyer.Fo BIT_COPY_STORE_REL
1727ebf4122SConrad Meyer.Fa "const SETSIZE" "struct STRUCTNAME *from" "struct STRUCTNAME *to"
1737ebf4122SConrad Meyer.Fc
1745e04571cSStefan Eßer.Fd #define _WANT_FREEBSD_BITSET
1757ebf4122SConrad Meyer.Sh DESCRIPTION
1767ebf4122SConrad MeyerThe
1777ebf4122SConrad Meyer.Nm
1787ebf4122SConrad Meyerfamily of macros provide a flexible and efficient bitset implementation if the
1797ebf4122SConrad Meyermaximum size of the set is known at compilation.
1807ebf4122SConrad MeyerThroughout this manual page, the name
1817ebf4122SConrad Meyer.Fa SETSIZE
1827ebf4122SConrad Meyerrefers to the size of the bitset in bits.
1837ebf4122SConrad MeyerIndividual bits in bitsets are referenced with indices zero through
1847ebf4122SConrad Meyer.Fa SETSIZE - 1 .
1857ebf4122SConrad MeyerOne example use of
1867ebf4122SConrad Meyer.In sys/bitset.h
1877ebf4122SConrad Meyeris
1887ebf4122SConrad Meyer.In sys/cpuset.h .
1897ebf4122SConrad Meyer.Pp
1905e04571cSStefan EßerThese macros are meant to be used in the kernel and are visible if
1915e04571cSStefan Eßer.Dv _KERNEL is defined when
1925e04571cSStefan Eßer.In sys/_bitset.h
1935e04571cSStefan Eßeror
1945e04571cSStefan Eßer.In sys/bitset.h
1955e04571cSStefan Eßerare included in a program.
1965e04571cSStefan EßerUserland programs must define
1975e04571cSStefan Eßer.Dv _WANT_FREEBSD_BITSET
1985e04571cSStefan Eßerbefore including these files to make the macros visible.
1995e04571cSStefan Eßer.Pp
2007ebf4122SConrad MeyerThe
2017ebf4122SConrad Meyer.Fn BITSET_DEFINE
2027ebf4122SConrad Meyermacro defines a bitset struct
2037ebf4122SConrad Meyer.Fa STRUCTNAME
2047ebf4122SConrad Meyerwith room to represent
2057ebf4122SConrad Meyer.Fa SETSIZE
2067ebf4122SConrad Meyerbits.
2077ebf4122SConrad Meyer.Pp
2087ebf4122SConrad MeyerThe
2097ebf4122SConrad Meyer.Fn BITSET_T_INITIALIZER
2107ebf4122SConrad Meyermacro allows one to initialize a bitset struct with a compile time literal
2117ebf4122SConrad Meyervalue.
2127ebf4122SConrad Meyer.Pp
2137ebf4122SConrad MeyerThe
2147ebf4122SConrad Meyer.Fn BITSET_FSET
2157ebf4122SConrad Meyermacro generates a compile time literal, usable by
2167ebf4122SConrad Meyer.Fn BITSET_T_INITIALIZER ,
2177ebf4122SConrad Meyerrepresenting a full bitset (all bits set).
2187ebf4122SConrad MeyerFor examples of
2197ebf4122SConrad Meyer.Fn BITSET_T_INITIALIZER
2207ebf4122SConrad Meyerand
2217ebf4122SConrad Meyer.Fn BITSET_FSET
2227ebf4122SConrad Meyerusage, see the
2237ebf4122SConrad Meyer.Sx BITSET_T_INITIALIZER EXAMPLE
2247ebf4122SConrad Meyersection.
2257ebf4122SConrad MeyerThe
2267ebf4122SConrad Meyer.Fa N_WORDS
2277ebf4122SConrad Meyerparameter to
2287ebf4122SConrad Meyer.Fn BITSET_FSET
2297ebf4122SConrad Meyershould be:
2307ebf4122SConrad Meyer.Bd -literal -offset indent
2317ebf4122SConrad Meyer__bitset_words(SETSIZE)
2327ebf4122SConrad Meyer.Ed
2337ebf4122SConrad Meyer.Pp
2347ebf4122SConrad MeyerThe
2357ebf4122SConrad Meyer.Fn BIT_CLR
2367ebf4122SConrad Meyermacro clears bit
2377ebf4122SConrad Meyer.Fa bit
2387ebf4122SConrad Meyerin the bitset pointed to by
2397ebf4122SConrad Meyer.Fa bitset .
2407ebf4122SConrad MeyerThe
2417ebf4122SConrad Meyer.Fn BIT_CLR_ATOMIC
2427ebf4122SConrad Meyermacro is identical, but the bit is cleared atomically.
243ae4a8e52SRyan LibbyThe
244ae4a8e52SRyan Libby.Fn BIT_TEST_CLR_ATOMIC
245ae4a8e52SRyan Libbymacro atomically clears the bit and returns whether it was set.
2467ebf4122SConrad Meyer.Pp
2477ebf4122SConrad MeyerThe
2487ebf4122SConrad Meyer.Fn BIT_COPY
2497ebf4122SConrad Meyermacro copies the contents of the bitset
2507ebf4122SConrad Meyer.Fa from
2517ebf4122SConrad Meyerto the bitset
2527ebf4122SConrad Meyer.Fa to .
2537ebf4122SConrad Meyer.Fn BIT_COPY_STORE_REL
2547ebf4122SConrad Meyeris similar, but copies component machine words from
2557ebf4122SConrad Meyer.Fa from
2567ebf4122SConrad Meyerand writes them to
2577ebf4122SConrad Meyer.Fa to
2587ebf4122SConrad Meyerwith atomic store with release semantics.
2597ebf4122SConrad Meyer(That is, if
2607ebf4122SConrad Meyer.Fa to
2617ebf4122SConrad Meyeris composed of multiple machine words,
2627ebf4122SConrad Meyer.Fn BIT_COPY_STORE_REL
2637ebf4122SConrad Meyerperforms multiple individually atomic operations.)
2647ebf4122SConrad Meyer.Pp
2657ebf4122SConrad MeyerThe
266145c65fcSDoug Moore.Fn BIT_ISSET
267145c65fcSDoug Mooremacro returns
268145c65fcSDoug Moore.Dv true
269145c65fcSDoug Mooreif the bit
270145c65fcSDoug Moore.Fa bit
271145c65fcSDoug Moorein the bitset pointed to by
272145c65fcSDoug Moore.Fa bitset
273145c65fcSDoug Mooreis set.
274145c65fcSDoug Moore.Pp
275145c65fcSDoug MooreThe
2767ebf4122SConrad Meyer.Fn BIT_SET
2777ebf4122SConrad Meyermacro sets bit
2787ebf4122SConrad Meyer.Fa bit
2797ebf4122SConrad Meyerin the bitset pointed to by
2807ebf4122SConrad Meyer.Fa bitset .
2817ebf4122SConrad MeyerThe
2827ebf4122SConrad Meyer.Fn BIT_SET_ATOMIC
2837ebf4122SConrad Meyermacro is identical, but the bit is set atomically.
2847ebf4122SConrad MeyerThe
2857ebf4122SConrad Meyer.Fn BIT_SET_ATOMIC_ACQ
2867ebf4122SConrad Meyermacro sets the bit with acquire semantics.
287ae4a8e52SRyan LibbyThe
288ae4a8e52SRyan Libby.Fn BIT_TEST_SET_ATOMIC
289ae4a8e52SRyan Libbymacro atomically sets the bit and returns whether it was set.
2907ebf4122SConrad Meyer.Pp
2917ebf4122SConrad MeyerThe
2927ebf4122SConrad Meyer.Fn BIT_ZERO
2937ebf4122SConrad Meyermacro clears all bits in
2947ebf4122SConrad Meyer.Fa bitset .
2957ebf4122SConrad Meyer.Pp
2967ebf4122SConrad MeyerThe
2977ebf4122SConrad Meyer.Fn BIT_FILL
2987ebf4122SConrad Meyermacro sets all bits in
2997ebf4122SConrad Meyer.Fa bitset .
3007ebf4122SConrad Meyer.Pp
3017ebf4122SConrad MeyerThe
3027ebf4122SConrad Meyer.Fn BIT_SETOF
3037ebf4122SConrad Meyermacro clears all bits in
3047ebf4122SConrad Meyer.Fa bitset
3057ebf4122SConrad Meyerbefore setting only bit
3067ebf4122SConrad Meyer.Fa bit .
3077ebf4122SConrad Meyer.Pp
3087ebf4122SConrad MeyerThe
3097ebf4122SConrad Meyer.Fn BIT_EMPTY
3107ebf4122SConrad Meyermacro returns
3117ebf4122SConrad Meyer.Dv true
3127ebf4122SConrad Meyerif
3137ebf4122SConrad Meyer.Fa bitset
3147ebf4122SConrad Meyeris empty.
3157ebf4122SConrad Meyer.Pp
3167ebf4122SConrad MeyerThe
3177ebf4122SConrad Meyer.Fn BIT_ISFULLSET
3187ebf4122SConrad Meyermacro returns
3197ebf4122SConrad Meyer.Dv true
3207ebf4122SConrad Meyerif
3217ebf4122SConrad Meyer.Fa bitset
3227ebf4122SConrad Meyeris full (all bits set).
3237ebf4122SConrad Meyer.Pp
3247ebf4122SConrad MeyerThe
3257ebf4122SConrad Meyer.Fn BIT_FFS
3267ebf4122SConrad Meyermacro returns the 1-index of the first (lowest) set bit in
3277ebf4122SConrad Meyer.Fa bitset ,
3287ebf4122SConrad Meyeror zero if
3297ebf4122SConrad Meyer.Fa bitset
3307ebf4122SConrad Meyeris empty.
3317ebf4122SConrad MeyerLike with
3327ebf4122SConrad Meyer.Xr ffs 3 ,
3337ebf4122SConrad Meyerto use the non-zero result of
3347ebf4122SConrad Meyer.Fn BIT_FFS
3357ebf4122SConrad Meyeras a
3367ebf4122SConrad Meyer.Fa bit
3377ebf4122SConrad Meyerindex parameter to any other
3387ebf4122SConrad Meyer.Nm
3397ebf4122SConrad Meyermacro, you must subtract one from the result.
3407ebf4122SConrad Meyer.Pp
3417ebf4122SConrad MeyerThe
342f8782001SD Scott Phillips.Fn BIT_FFS_AT
343f8782001SD Scott Phillipsmacro returns the 1-index of the first (lowest) set bit in
344f8782001SD Scott Phillips.Fa bitset ,
345f8782001SD Scott Phillipswhich is greater than the given 1-indexed
346f8782001SD Scott Phillips.Fa start ,
347f8782001SD Scott Phillipsor zero if no bits in
348f8782001SD Scott Phillips.Fa bitset
349f8782001SD Scott Phillipsgreater than
350f8782001SD Scott Phillips.Fa start
351f8782001SD Scott Phillipsare set.
352f8782001SD Scott Phillips.Pp
353f8782001SD Scott PhillipsThe
3541550c622SKonstantin Belousov.Fn BIT_FLS
3551550c622SKonstantin Belousovmacro returns the 1-index of the last (highest) set bit in
3561550c622SKonstantin Belousov.Fa bitset ,
3571550c622SKonstantin Belousovor zero if
3581550c622SKonstantin Belousov.Fa bitset
3591550c622SKonstantin Belousovis empty.
3601550c622SKonstantin BelousovLike with
3611550c622SKonstantin Belousov.Xr fls 3 ,
3621550c622SKonstantin Belousovto use the non-zero result of
3631550c622SKonstantin Belousov.Fn BIT_FLS
3641550c622SKonstantin Belousovas a
3651550c622SKonstantin Belousov.Fa bit
3661550c622SKonstantin Belousovindex parameter to any other
3671550c622SKonstantin Belousov.Nm
3681550c622SKonstantin Belousovmacro, you must subtract one from the result.
3691550c622SKonstantin Belousov.Pp
3701550c622SKonstantin BelousovThe
371dfd3bde5SMark Johnston.Fn BIT_FOREACH_ISSET
372dfd3bde5SMark Johnstonmacro can be used to iterate over all set bits in
373dfd3bde5SMark Johnston.Fa bitset .
374dfd3bde5SMark JohnstonThe index variable
375dfd3bde5SMark Johnston.Fa bit
376dfd3bde5SMark Johnstonmust have been declared with type
377dfd3bde5SMark Johnston.Ft int ,
378dfd3bde5SMark Johnstonand upon each iteration
379dfd3bde5SMark Johnston.Fa bit
380dfd3bde5SMark Johnstonis set to the index of successive set bits.
381dfd3bde5SMark JohnstonThe value of
382dfd3bde5SMark Johnston.Fa bit
383dfd3bde5SMark Johnstonafter the loop terminates is undefined.
384dfd3bde5SMark JohnstonSimilarly,
385dfd3bde5SMark Johnston.Fn BIT_FOREACH_ISCLR
386dfd3bde5SMark Johnstoniterates over all clear bits in
387dfd3bde5SMark Johnston.Fa bitset .
38851425cb2SMark JohnstonIn the loop body, the currently indexed bit may be set or cleared.
38951425cb2SMark JohnstonHowever, setting or clearing bits other than the currently indexed
39051425cb2SMark Johnstonbit does not guarantee that they will or will not be returned in
39151425cb2SMark Johnstonsubsequent iterations of the same loop.
392dfd3bde5SMark Johnston.Pp
393dfd3bde5SMark JohnstonThe
3947ebf4122SConrad Meyer.Fn BIT_COUNT
3957ebf4122SConrad Meyermacro returns the total number of set bits in
3967ebf4122SConrad Meyer.Fa bitset .
3977ebf4122SConrad Meyer.Pp
3987ebf4122SConrad MeyerThe
3997ebf4122SConrad Meyer.Fn BIT_SUBSET
4007ebf4122SConrad Meyermacro returns
4017ebf4122SConrad Meyer.Dv true
4027ebf4122SConrad Meyerif
4037ebf4122SConrad Meyer.Fa needle
4047ebf4122SConrad Meyeris a subset of
4057ebf4122SConrad Meyer.Fa haystack .
4067ebf4122SConrad Meyer.Pp
4077ebf4122SConrad MeyerThe
4087ebf4122SConrad Meyer.Fn BIT_OVERLAP
4097ebf4122SConrad Meyermacro returns
4107ebf4122SConrad Meyer.Dv true
4117ebf4122SConrad Meyerif
4127ebf4122SConrad Meyer.Fa bitset1
4137ebf4122SConrad Meyerand
4147ebf4122SConrad Meyer.Fa bitset2
4157ebf4122SConrad Meyerhave any common bits.
4167ebf4122SConrad Meyer(That is, if
4177ebf4122SConrad Meyer.Fa bitset1
4187ebf4122SConrad MeyerAND
4197ebf4122SConrad Meyer.Fa bitset2
4207ebf4122SConrad Meyeris not the empty set.)
4217ebf4122SConrad Meyer.Pp
4227ebf4122SConrad MeyerThe
4237ebf4122SConrad Meyer.Fn BIT_CMP
4247ebf4122SConrad Meyermacro returns
4257ebf4122SConrad Meyer.Dv true
4267ebf4122SConrad Meyerif
4277ebf4122SConrad Meyer.Fa bitset1
4287ebf4122SConrad Meyeris NOT equal to
4297ebf4122SConrad Meyer.Fa bitset2 .
4307ebf4122SConrad Meyer.Pp
4317ebf4122SConrad MeyerThe
4327ebf4122SConrad Meyer.Fn BIT_OR
4337ebf4122SConrad Meyermacro sets bits present in
4347ebf4122SConrad Meyer.Fa src
4357ebf4122SConrad Meyerin
4367ebf4122SConrad Meyer.Fa dst .
4377ebf4122SConrad Meyer(It is the
4387ebf4122SConrad Meyer.Nm
4397ebf4122SConrad Meyerequivalent of the scalar:
4407ebf4122SConrad Meyer.Fa dst
4417ebf4122SConrad Meyer|=
4427ebf4122SConrad Meyer.Fa src . )
4437ebf4122SConrad Meyer.Fn BIT_OR_ATOMIC
4447ebf4122SConrad Meyeris similar, but sets bits in the component machine words in
4457ebf4122SConrad Meyer.Fa dst
4467ebf4122SConrad Meyeratomically.
4477ebf4122SConrad Meyer(That is, if
4487ebf4122SConrad Meyer.Fa dst
4497ebf4122SConrad Meyeris composed of multiple machine words,
4507ebf4122SConrad Meyer.Fn BIT_OR_ATOMIC
4517ebf4122SConrad Meyerperforms multiple individually atomic operations.)
4527ebf4122SConrad Meyer.Pp
4537ebf4122SConrad MeyerThe
454e058e1c4SKonstantin Belousov.Fn BIT_OR2
455e058e1c4SKonstantin Belousovmacro computes
456e058e1c4SKonstantin Belousov.Fa src1
457e058e1c4SKonstantin Belousovbitwise or
458e058e1c4SKonstantin Belousov.Fa src2
459e058e1c4SKonstantin Belousovand assigns the result to
460e058e1c4SKonstantin Belousov.Fa dst .
461e058e1c4SKonstantin Belousov(It is the
462e058e1c4SKonstantin Belousov.Nm
463e058e1c4SKonstantin Belousovequivalent of the scalar:
464e058e1c4SKonstantin Belousov.Fa dst
465e058e1c4SKonstantin Belousov=
466e058e1c4SKonstantin Belousov.Fa src1
467e058e1c4SKonstantin Belousov|
468e058e1c4SKonstantin Belousov.Fa src2 . )
469e058e1c4SKonstantin Belousov.Pp
470e058e1c4SKonstantin BelousovThe
471*cd4bd975SJake Freeland.Fn BIT_ORNOT
472*cd4bd975SJake Freelandmacro sets bits not in
473*cd4bd975SJake Freeland.Fa src
474*cd4bd975SJake Freelandin
475*cd4bd975SJake Freeland.Fa dst .
476*cd4bd975SJake Freeland(It is the
477*cd4bd975SJake Freeland.Nm
478*cd4bd975SJake Freelandequivalent of the scalar:
479*cd4bd975SJake Freeland.Fa dst
480*cd4bd975SJake Freeland|=
481*cd4bd975SJake Freeland.Fa ~ src . )
482*cd4bd975SJake Freeland.Pp
483*cd4bd975SJake FreelandThe
484*cd4bd975SJake Freeland.Fn BIT_ORNOT2
485*cd4bd975SJake Freelandmacro computes
486*cd4bd975SJake Freeland.Fa src1
487*cd4bd975SJake Freelandbitwise or not
488*cd4bd975SJake Freeland.Fa src2
489*cd4bd975SJake Freelandand assigns the result to
490*cd4bd975SJake Freeland.Fa dst .
491*cd4bd975SJake Freeland(It is the
492*cd4bd975SJake Freeland.Nm
493*cd4bd975SJake Freelandequivalent of the scalar:
494*cd4bd975SJake Freeland.Fa dst
495*cd4bd975SJake Freeland=
496*cd4bd975SJake Freeland.Fa src1
497*cd4bd975SJake Freeland| ~
498*cd4bd975SJake Freeland.Fa src2 . )
499*cd4bd975SJake Freeland.Pp
500*cd4bd975SJake FreelandThe
5017ebf4122SConrad Meyer.Fn BIT_AND
5027ebf4122SConrad Meyermacro clears bits absent from
5037ebf4122SConrad Meyer.Fa src
5047ebf4122SConrad Meyerfrom
5057ebf4122SConrad Meyer.Fa dst .
5067ebf4122SConrad Meyer(It is the
5077ebf4122SConrad Meyer.Nm
5087ebf4122SConrad Meyerequivalent of the scalar:
5097ebf4122SConrad Meyer.Fa dst
5107ebf4122SConrad Meyer&=
5117ebf4122SConrad Meyer.Fa src . )
5127ebf4122SConrad Meyer.Fn BIT_AND_ATOMIC
5137ebf4122SConrad Meyeris similar, with the same atomic semantics as
5147ebf4122SConrad Meyer.Fn BIT_OR_ATOMIC .
5157ebf4122SConrad Meyer.Pp
5167ebf4122SConrad MeyerThe
517e058e1c4SKonstantin Belousov.Fn BIT_AND2
518e058e1c4SKonstantin Belousovmacro computes
519e058e1c4SKonstantin Belousov.Fa src1
520e058e1c4SKonstantin Belousovbitwise and
521e058e1c4SKonstantin Belousov.Fa src2
522e058e1c4SKonstantin Belousovand assigns the result to
523e058e1c4SKonstantin Belousov.Fa dst .
524e058e1c4SKonstantin Belousov(It is the
525e058e1c4SKonstantin Belousov.Nm
526e058e1c4SKonstantin Belousovequivalent of the scalar:
527e058e1c4SKonstantin Belousov.Fa dst
528e058e1c4SKonstantin Belousov=
529e058e1c4SKonstantin Belousov.Fa src1
530e058e1c4SKonstantin Belousov&
531e058e1c4SKonstantin Belousov.Fa src2 . )
532e058e1c4SKonstantin Belousov.Pp
533e058e1c4SKonstantin BelousovThe
5349825eadfSRyan Libby.Fn BIT_ANDNOT
5357ebf4122SConrad Meyermacro clears bits set in
5367ebf4122SConrad Meyer.Fa src
5377ebf4122SConrad Meyerfrom
5387ebf4122SConrad Meyer.Fa dst .
5397ebf4122SConrad Meyer(It is the
5407ebf4122SConrad Meyer.Nm
5417ebf4122SConrad Meyerequivalent of the scalar:
5427ebf4122SConrad Meyer.Fa dst
5437ebf4122SConrad Meyer&=
5447ebf4122SConrad Meyer.Fa ~ src . )
545e058e1c4SKonstantin Belousov.Pp
546e058e1c4SKonstantin BelousovThe
5479825eadfSRyan Libby.Fn BIT_ANDNOT2
548e058e1c4SKonstantin Belousovmacro computes
549e058e1c4SKonstantin Belousov.Fa src1
550e058e1c4SKonstantin Belousovbitwise and not
551e058e1c4SKonstantin Belousov.Fa src2
552e058e1c4SKonstantin Belousovand assigns the result to
553e058e1c4SKonstantin Belousov.Fa dst .
554e058e1c4SKonstantin Belousov(It is the
555e058e1c4SKonstantin Belousov.Nm
556e058e1c4SKonstantin Belousovequivalent of the scalar:
557e058e1c4SKonstantin Belousov.Fa dst
558e058e1c4SKonstantin Belousov=
559e058e1c4SKonstantin Belousov.Fa src1
560e058e1c4SKonstantin Belousov& ~
561e058e1c4SKonstantin Belousov.Fa src2 . )
562e058e1c4SKonstantin Belousov.Pp
563e058e1c4SKonstantin BelousovThe
564e058e1c4SKonstantin Belousov.Fn BIT_XOR
565e058e1c4SKonstantin Belousovmacro toggles bits set in
566e058e1c4SKonstantin Belousov.Fa src
567e058e1c4SKonstantin Belousovin
568e058e1c4SKonstantin Belousov.Fa dst .
569e058e1c4SKonstantin Belousov(It is the
570e058e1c4SKonstantin Belousov.Nm
571e058e1c4SKonstantin Belousovequivalent of the scalar:
572e058e1c4SKonstantin Belousov.Fa dst
573e058e1c4SKonstantin Belousov^=
574e058e1c4SKonstantin Belousov.Fa src . )
575e058e1c4SKonstantin Belousov.Pp
576e058e1c4SKonstantin BelousovThe
577e058e1c4SKonstantin Belousov.Fn BIT_XOR2
578e058e1c4SKonstantin Belousovmacro computes
579e058e1c4SKonstantin Belousov.Fa src1
580e058e1c4SKonstantin Belousovbitwise exclusive or
581e058e1c4SKonstantin Belousov.Fa src2
582e058e1c4SKonstantin Belousovand assigns the result to
583e058e1c4SKonstantin Belousov.Fa dst .
584e058e1c4SKonstantin Belousov(It is the
585e058e1c4SKonstantin Belousov.Nm
586e058e1c4SKonstantin Belousovequivalent of the scalar:
587e058e1c4SKonstantin Belousov.Fa dst
588e058e1c4SKonstantin Belousov=
589e058e1c4SKonstantin Belousov.Fa src1
590e058e1c4SKonstantin Belousov^
591e058e1c4SKonstantin Belousov.Fa src2 . )
5927ebf4122SConrad Meyer.Sh BITSET_T_INITIALIZER EXAMPLE
5937ebf4122SConrad Meyer.Bd -literal
5947ebf4122SConrad MeyerBITSET_DEFINE(_myset, MYSETSIZE);
5957ebf4122SConrad Meyer
5967ebf4122SConrad Meyerstruct _myset myset;
5977ebf4122SConrad Meyer
5987ebf4122SConrad Meyer/* Initialize myset to filled (all bits set) */
5997ebf4122SConrad Meyermyset = BITSET_T_INITIALIZER(BITSET_FSET(__bitset_words(MYSETSIZE)));
6007ebf4122SConrad Meyer
6017ebf4122SConrad Meyer/* Initialize myset to only the lowest bit set */
6027ebf4122SConrad Meyermyset = BITSET_T_INITIALIZER(0x1);
6037ebf4122SConrad Meyer.Ed
6047ebf4122SConrad Meyer.Sh SEE ALSO
6055546be25SConrad Meyer.Xr bitstring 3 ,
6065546be25SConrad Meyer.Xr cpuset 9
6077ebf4122SConrad Meyer.Sh HISTORY
6087ebf4122SConrad MeyerThe
6097ebf4122SConrad Meyer.Nm
6107ebf4122SConrad Meyermacros first appeared in
6117ebf4122SConrad Meyer.Fx 10.0
6127ebf4122SConrad Meyerin January 2014.
6137ebf4122SConrad MeyerThey were MFCed to
6147ebf4122SConrad Meyer.Fx 9.3 ,
6157ebf4122SConrad Meyerreleased in July 2014.
6167ebf4122SConrad Meyer.Pp
6177ebf4122SConrad MeyerThis manual page first appeared in
6187ebf4122SConrad Meyer.Fx 11.0 .
6197ebf4122SConrad Meyer.Sh AUTHORS
6207ebf4122SConrad Meyer.An -nosplit
6217ebf4122SConrad MeyerThe
6227ebf4122SConrad Meyer.Nm
6235546be25SConrad Meyermacros were generalized and pulled out of
6247ebf4122SConrad Meyer.In sys/cpuset.h
6255546be25SConrad Meyeras
6267ebf4122SConrad Meyer.In sys/_bitset.h
6277ebf4122SConrad Meyerand
6287ebf4122SConrad Meyer.In sys/bitset.h
6297ebf4122SConrad Meyerby
6307ebf4122SConrad Meyer.An Attilio Rao Aq Mt attilio@FreeBSD.org .
6317ebf4122SConrad MeyerThis manual page was written by
6327ebf4122SConrad Meyer.An Conrad Meyer Aq Mt cem@FreeBSD.org .
6337ebf4122SConrad Meyer.Sh CAVEATS
6347ebf4122SConrad MeyerThe
6357ebf4122SConrad Meyer.Fa SETSIZE
6367ebf4122SConrad Meyerargument to all of these macros must match the value given to
6377ebf4122SConrad Meyer.Fn BITSET_DEFINE .
6387ebf4122SConrad Meyer.Pp
6397ebf4122SConrad MeyerUnlike every other reference to individual set members, which are zero-indexed,
640f8782001SD Scott Phillips.Fn BIT_FFS ,
641f8782001SD Scott Phillips.Fn BIT_FFS_AT
642e967aa26SKonstantin Belousovand
643e967aa26SKonstantin Belousov.Fn BIT_FLS
644e967aa26SKonstantin Belousovreturn a one-indexed result (or zero if the set is empty).
6455e04571cSStefan Eßer.Pp
6465e04571cSStefan EßerIn order to use the macros defined in
6475e04571cSStefan Eßer.In sys/bitset.h
6485e04571cSStefan Eßerand
6495e04571cSStefan Eßer.In sys/_bitset.h
6505e04571cSStefan Eßerin userland programs,
6515e04571cSStefan Eßer.Dv _WANT_FREEBSD_BITSET
6525e04571cSStefan Eßerhas to be defined before including the header files.
6535e04571cSStefan EßerThis requirements exists to prevent a name space pollution due to macros defined in
6545e04571cSStefan Eßer.Nm
6555e04571cSStefan Eßerin programs that include
6565e04571cSStefan Eßer.In sys/cpuset.h
6575e04571cSStefan Eßeror
6585e04571cSStefan Eßer.In sched.h .
659