You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Alexey Varlamov (JIRA)" <ji...@apache.org> on 2007/10/26 06:10:50 UTC

[jira] Resolved: (HARMONY-4991) [drlvm][jit][opt] Fix compressed references support for heaps up to 4Gb

     [ https://issues.apache.org/jira/browse/HARMONY-4991?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alexey Varlamov resolved HARMONY-4991.
--------------------------------------

    Resolution: Fixed

Well, the final patch is not quite correct and will be re-done as a part of HARMONY-5022, so I applied "improved" version at revision: 588504. 
I don't think we can afford a common regression test for this issue - please verify and close.

> [drlvm][jit][opt] Fix compressed references support for heaps up to 4Gb
> -----------------------------------------------------------------------
>
>                 Key: HARMONY-4991
>                 URL: https://issues.apache.org/jira/browse/HARMONY-4991
>             Project: Harmony
>          Issue Type: Bug
>          Components: DRLVM
>         Environment: Linux x86-64 & Windows x86-64
>            Reporter: Pavel Afremov
>            Assignee: Alexey Varlamov
>            Priority: Critical
>         Attachments: H4991.diff, H4991final.diff, H4991improved.diff, HeapTest.java
>
>
> I tried to run DRL VM in OPT mode with patch from HARMONY-4982 . The result is sigsegv in jited code. 
> at java.lang.AbstractStringBuilder.append0() 
>     (Ln 168, ...\classlib\modules\luni\src\main\java\java\lang\AbstractStringBuilder.java " if (newSize > value.length) {") 
> at HeapTest.func() 
>     (Ln 15, .\HeapTest.java " System.out.println("iteration " + i);") 
> at HeapTest.main() 
>     (Ln 6, .\HeapTest.java " test.func();") 
> The source of it is incorrect signed extension of 32 bit value to 64 bit register (see attached assembly code 0000000005967D4A ). 
> 0000000005967D47 mov eax,dword ptr [rbx+8] 
> 0000000005967D4A movsxd rax,eax 
> 0000000005967D4D mov rsi,7FFF0000h 
> 0000000005967D57 mov r12,rax 
> 0000000005967D5A add r12,rsi 
> 0000000005967D5D mov qword ptr [rsp],r12 
> 0000000005967D61 mov rax,7FFF0000h 
> 0000000005967D6B cmp r12,rax 
> 0000000005967D6E je 0000000005967E05 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.