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)
Mon, Oct 13, 1:51 AM
Unknown Object (File)
Sep 14 2025, 1:49 AM
Unknown Object (File)
Aug 26 2025, 9:36 PM
Unknown Object (File)
Aug 2 2025, 12:02 PM
Unknown Object (File)
Jul 12 2025, 9:56 AM
Unknown Object (File)
Jul 7 2025, 12:04 PM
Unknown Object (File)
Jul 6 2025, 12:02 AM
Unknown Object (File)
Jul 5 2025, 12:18 PM
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.