Make pow2ceil() and pow2floor() inline
authorPeter Maydell <peter.maydell@linaro.org>
Fri, 24 Jul 2015 12:33:12 +0000 (13:33 +0100)
committerPeter Maydell <peter.maydell@linaro.org>
Mon, 7 Sep 2015 13:19:01 +0000 (14:19 +0100)
commit8f1ed5f5081416d5d1cc9569aa826114c5b21213
tree5572cb1ed9a1142cdbc77fe1fdb43de20b0e677b
parent10944a19209bb520054569e0f156f50338901264
Make pow2ceil() and pow2floor() inline

Since the pow2floor() function is now used in a hot code path,
make it inline; for consistency, provide pow2ceil() as an inline
function too.

Because these functions use ctz64() we have to put the inline
versions into host-utils.h, so they have access to ctz64(),
and move the inline is_power_of_2() along with them.

We then need to include host-utils.h from qemu-common.h so that
the files which use these functions via qemu-common.h still have
access to them.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-id: 1437741192-20955-7-git-send-email-peter.maydell@linaro.org
include/qemu-common.h
include/qemu/host-utils.h
util/cutils.c