Request for reviews (M): 6829194: JSR 292 needs to support compressed oops
Vladimir Kozlov
vladimir.kozlov at oracle.com
Mon Oct 11 09:52:27 PDT 2010
! if (UseCompressedOops) fac_ptr->nonstatic_double_count += 1;
should be
! if (wordSize == longSize) fac_ptr->nonstatic_double_count += 1;
Since it is raw it should not depend on coop.
Vladimir
On 10/11/10 2:59 AM, Christian Thalinger wrote:
> On 10/08/2010 12:34 AM, John Rose wrote:
>> On Oct 7, 2010, at 3:22 PM, Vladimir Kozlov wrote:
>>
>>> "word" is not concrete size in computers :) In x86 it could be 2 bytes (16 bits).
>>
>> Oops. I meant the size in bytes is wordSize, HeapWordSize, sizeof(intptr_t), sizeof(void*). But the term "WORD" in that code means int32_t. It looks like you spotted a pre-existing bug for LP64. I suggest:
>>
>> + FieldAllocationType new_atype = (wordSize==longSize) ? NONSTATIC_DOUBLE : NONSTATIC_WORD;
>> + assert(wordSize == longSize || wordSize == jintSize, "ILP32 or LP64");
>>
>> Also the guard on "fac_ptr->nonstatic_double_count += 1" needs to be similar.
>>
>> Christian, the assembler changes look good, and (although I haven't read every line yet) the changes from ld_ptr to load_heap_oop, etc., look good.
>
> I added the change above and will push this version:
>
> http://cr.openjdk.java.net/~twisti/6829194/webrev.02/
>
> -- Christian
More information about the hotspot-compiler-dev
mailing list