diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2020-09-30 16:08:00 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-30 16:08:00 -0700 |
commit | 2f6939a2cecc37691a1e474ff15a7801f9509cfb (patch) | |
tree | d994f14cb68e95d675d0ac3943c8087c77129b3e /src/ir/bits.h | |
parent | b91603f65c45139ad49dfa257749d100117b763d (diff) | |
download | binaryen-2f6939a2cecc37691a1e474ff15a7801f9509cfb.tar.gz binaryen-2f6939a2cecc37691a1e474ff15a7801f9509cfb.tar.bz2 binaryen-2f6939a2cecc37691a1e474ff15a7801f9509cfb.zip |
Clean up support/bits.h (#3177)
Use overloads instead of templates where applicable and change function names
from PascalCase to camelCase. Also puts the functions in the Bits namespace to
avoid naming conflicts.
Diffstat (limited to 'src/ir/bits.h')
-rw-r--r-- | src/ir/bits.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ir/bits.h b/src/ir/bits.h index 40bd8e545..95481eeab 100644 --- a/src/ir/bits.h +++ b/src/ir/bits.h @@ -51,7 +51,7 @@ inline uint32_t getMaskedBits(uint32_t mask) { return 0; } // this is indeed a mask - return 32 - CountLeadingZeroes(mask); + return 32 - countLeadingZeroes(mask); } // gets the number of effective shifts a shift operation does. In @@ -180,7 +180,7 @@ Index getMaxBits(Expression* curr, if (maxBitsLeft == 32) { return 32; } - auto bitsRight = Index(CeilLog2(c->value.geti32())); + auto bitsRight = Index(ceilLog2(c->value.geti32())); return std::min(maxBitsLeft, bitsRight); } return 32; @@ -188,7 +188,7 @@ Index getMaxBits(Expression* curr, case RemUInt32: { if (auto* c = binary->right->dynCast<Const>()) { auto maxBitsLeft = getMaxBits(binary->left, localInfoProvider); - auto bitsRight = Index(CeilLog2(c->value.geti32())); + auto bitsRight = Index(ceilLog2(c->value.geti32())); return std::min(maxBitsLeft, bitsRight); } return 32; @@ -275,7 +275,7 @@ Index getMaxBits(Expression* curr, if (maxBitsLeft == 64) { return 64; } - auto bitsRight = Index(CeilLog2(c->value.geti64())); + auto bitsRight = Index(ceilLog2(c->value.geti64())); return std::min(maxBitsLeft, bitsRight); } return 64; @@ -283,7 +283,7 @@ Index getMaxBits(Expression* curr, case RemUInt64: { if (auto* c = binary->right->dynCast<Const>()) { auto maxBitsLeft = getMaxBits(binary->left, localInfoProvider); - auto bitsRight = Index(CeilLog2(c->value.geti64())); + auto bitsRight = Index(ceilLog2(c->value.geti64())); return std::min(maxBitsLeft, bitsRight); } return 64; |