powerpc: Remove uses of operand modifier (%s) in inline asm
authorGabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
Fri, 22 Jan 2016 20:05:05 +0000 (18:05 -0200)
committerTulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
Tue, 8 Mar 2016 18:30:28 +0000 (15:30 -0300)
commit183a34dc4a07cad723cd78e494d16a5ef0b6a63e
treeddbc585df379835c6347b72cf6c3ebf9d781fb16
parent911569d02dec023d949d96aa7b0e828c91c06f55
powerpc: Remove uses of operand modifier (%s) in inline asm

The operand modifier %s on powerpc is an undocumented internal implementation
detail of GCC.  Besides that, the GCC community wants to remove it.  This patch
rewrites the expressions that use this modifier with logically equivalent
expressions that don't require it.

Explanation for the substitution:

The %s modifier takes an immediate operand and prints 32 less such immediate.
Thus, in the previous code, the expression resulted in:

  32 - __builtin_ffs(e)

where e was guaranteed to have exactly a single bit set, by the following
expressions:

  (e & (e-1) == 0) : e has at most one bit set.
  (e != 0)         : e is not zero, thus it has at least one bit set.

Since we guarantee that there is exactly only one bit set, the following
statement is true:

  32 - __builtin_ffs(e) == __builtin_clz(e)

Thus, we can replace __builtin_ffs with __builtin_clz and remove the %s operand
modifier.
ChangeLog
sysdeps/powerpc/bits/fenvinline.h