Page MenuHomeFreeBSD

vm_phys: use ilog2(x) instead of fls(x)-1
ClosedPublic

Authored by dougm on May 24 2024, 7:33 AM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Apr 9, 4:13 AM
Unknown Object (File)
Mon, Apr 6, 12:32 PM
Unknown Object (File)
Mar 18 2026, 7:55 PM
Unknown Object (File)
Mar 12 2026, 5:52 AM
Unknown Object (File)
Mar 11 2026, 7:53 PM
Unknown Object (File)
Mar 9 2026, 11:57 AM
Unknown Object (File)
Feb 28 2026, 9:41 PM
Unknown Object (File)
Feb 28 2026, 2:03 AM
Subscribers

Details

Summary

One of these changes saves two instructions on an amd64 GENERIC-NODEBUG build. The rest are entirely cosmetic, because the compiler can deduce that x is nonzero, and avoid the needless test.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

dougm requested review of this revision.May 24 2024, 7:33 AM
dougm created this revision.
alc added a subscriber: markj.

Please coordinate this with @markj given his lazy init change.

This revision is now accepted and ready to land.Jun 4 2024, 5:01 PM
In D45331#1037497, @alc wrote:

Please coordinate this with @markj given his lazy init change.

Please go ahead. It'll be easy to rebase past this patch and I need to retest before pushing.

This revision was automatically updated to reflect the committed changes.