mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 01:33:56 -06:00
target-ppc: Use ctpop helper
Signed-off-by: Richard Henderson <rth@twiddle.net>
This commit is contained in:
parent
de26a584d2
commit
7977000220
3 changed files with 9 additions and 18 deletions
|
@ -272,6 +272,7 @@ target_ulong helper_srad(CPUPPCState *env, target_ulong value,
|
|||
#if defined(TARGET_PPC64)
|
||||
target_ulong helper_popcntb(target_ulong val)
|
||||
{
|
||||
/* Note that we don't fold past bytes */
|
||||
val = (val & 0x5555555555555555ULL) + ((val >> 1) &
|
||||
0x5555555555555555ULL);
|
||||
val = (val & 0x3333333333333333ULL) + ((val >> 2) &
|
||||
|
@ -283,6 +284,7 @@ target_ulong helper_popcntb(target_ulong val)
|
|||
|
||||
target_ulong helper_popcntw(target_ulong val)
|
||||
{
|
||||
/* Note that we don't fold past words. */
|
||||
val = (val & 0x5555555555555555ULL) + ((val >> 1) &
|
||||
0x5555555555555555ULL);
|
||||
val = (val & 0x3333333333333333ULL) + ((val >> 2) &
|
||||
|
@ -295,29 +297,15 @@ target_ulong helper_popcntw(target_ulong val)
|
|||
0x0000ffff0000ffffULL);
|
||||
return val;
|
||||
}
|
||||
|
||||
target_ulong helper_popcntd(target_ulong val)
|
||||
{
|
||||
return ctpop64(val);
|
||||
}
|
||||
#else
|
||||
target_ulong helper_popcntb(target_ulong val)
|
||||
{
|
||||
/* Note that we don't fold past bytes */
|
||||
val = (val & 0x55555555) + ((val >> 1) & 0x55555555);
|
||||
val = (val & 0x33333333) + ((val >> 2) & 0x33333333);
|
||||
val = (val & 0x0f0f0f0f) + ((val >> 4) & 0x0f0f0f0f);
|
||||
return val;
|
||||
}
|
||||
|
||||
target_ulong helper_popcntw(target_ulong val)
|
||||
{
|
||||
val = (val & 0x55555555) + ((val >> 1) & 0x55555555);
|
||||
val = (val & 0x33333333) + ((val >> 2) & 0x33333333);
|
||||
val = (val & 0x0f0f0f0f) + ((val >> 4) & 0x0f0f0f0f);
|
||||
val = (val & 0x00ff00ff) + ((val >> 8) & 0x00ff00ff);
|
||||
val = (val & 0x0000ffff) + ((val >> 16) & 0x0000ffff);
|
||||
return val;
|
||||
}
|
||||
#endif
|
||||
|
||||
/*****************************************************************************/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue