mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-26 07:34:14 +00:00
Remove two popcount patterns which we are already able to recognize.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170158 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9ad73e93a5
commit
200e2370dc
@ -262,22 +262,7 @@ unsigned countbits_slow(unsigned v) {
|
|||||||
c += v & 1;
|
c += v & 1;
|
||||||
return c;
|
return c;
|
||||||
}
|
}
|
||||||
unsigned countbits_fast(unsigned v){
|
|
||||||
unsigned c;
|
|
||||||
for (c = 0; v; c++)
|
|
||||||
v &= v - 1; // clear the least significant bit set
|
|
||||||
return c;
|
|
||||||
}
|
|
||||||
|
|
||||||
BITBOARD = unsigned long long
|
|
||||||
int PopCnt(register BITBOARD a) {
|
|
||||||
register int c=0;
|
|
||||||
while(a) {
|
|
||||||
c++;
|
|
||||||
a &= a - 1;
|
|
||||||
}
|
|
||||||
return c;
|
|
||||||
}
|
|
||||||
unsigned int popcount(unsigned int input) {
|
unsigned int popcount(unsigned int input) {
|
||||||
unsigned int count = 0;
|
unsigned int count = 0;
|
||||||
for (unsigned int i = 0; i < 4 * 8; i++)
|
for (unsigned int i = 0; i < 4 * 8; i++)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user