RFR(S): Bugfix: Clear High Word in Integer.bitCount() Intrinsic on SparcV9

Dean Long dean.long at oracle.com
Thu Dec 13 10:44:23 PST 2012


convI2L_reg_zex doesn't use the mask, so would shrI_reg_imm5(dst, src, 0) or
shrI_reg_reg(dst, src, R_G0) work just as well?

dl

On 12/13/2012 9:09 AM, Reingruber, Richard wrote:
> Hi,
>
> I would like to submit a bugfix for C2's Integer.bitCount() intrinsic on sparcv9.
>
> On sparcv9, the C2 intrinsic for Integer.bitCount() is a POPC instruction. POPC operates on the whole register, including the high word, but for Integer.bitCount(), this is not correct, because the value of the high word is undefined. There could be bits set as a result of an int overflow or from a shift operation for example. Of course the bits in the high word have to be ignored for Integer.bitCount().
>
> I have prepared a small webrev with the suggested fix and a regression test:
>
>     http://www.sapjvm.com/rr/webrevs/bitCount_intrinsic_sparc_01/
>
> Could you please review the patch and create a bug id? Thanks!
>
> Cheers,
> Richard.
>
> BTW: my name is Richard Reingruber, and I'm working as an engineer in the JIT team at SAP in Germany. This is my first posting, so a minimal introduction is probably appropriate :)
>


More information about the hotspot-compiler-dev mailing list