You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Ivan Volosyuk (JIRA)" <ji...@apache.org> on 2006/10/02 19:38:19 UTC

[jira] Created: (HARMONY-1661) [DRLVM][GC] gc_alloc() next to high bit of size is not reset on allocating finalizible objects

[DRLVM][GC] gc_alloc() next to high bit of size is not reset on allocating finalizible objects
----------------------------------------------------------------------------------------------

                 Key: HARMONY-1661
                 URL: http://issues.apache.org/jira/browse/HARMONY-1661
             Project: Harmony
          Issue Type: Bug
          Components: DRLVM
         Environment: All
            Reporter: Ivan Volosyuk


gc_alloc() allocation path for finalizible object incorrect again.
Fix for HARMONY-1588 added the flow. 'in_size' may have next to high bit set for object size. This indicates that the object has special features (is finalizible) and cannot be processed by fast path.
Changing in_size to size in slow path fixes the problem.
Bug is reproducible by java.lang.Runtime kernel test in interpreter mode. After the fix test passes for me.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Assigned: (HARMONY-1661) [DRLVM][GC] gc_alloc() next to high bit of size is not reset on allocating finalizible objects

Posted by "Geir Magnusson Jr (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-1661?page=all ]

Geir Magnusson Jr reassigned HARMONY-1661:
------------------------------------------

    Assignee: Geir Magnusson Jr

> [DRLVM][GC] gc_alloc() next to high bit of size is not reset on allocating finalizible objects
> ----------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-1661
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1661
>             Project: Harmony
>          Issue Type: Bug
>          Components: DRLVM
>         Environment: All
>            Reporter: Ivan Volosyuk
>         Assigned To: Geir Magnusson Jr
>         Attachments: gc_alloc.diff
>
>
> gc_alloc() allocation path for finalizible object incorrect again.
> Fix for HARMONY-1588 added the flow. 'in_size' may have next to high bit set for object size. This indicates that the object has special features (is finalizible) and cannot be processed by fast path.
> Changing in_size to size in slow path fixes the problem.
> Bug is reproducible by java.lang.Runtime kernel test in interpreter mode. After the fix test passes for me.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (HARMONY-1661) [DRLVM][GC] gc_alloc() next to high bit of size is not reset on allocating finalizible objects

Posted by "Ivan Volosyuk (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-1661?page=all ]

Ivan Volosyuk updated HARMONY-1661:
-----------------------------------

    Attachment: gc_alloc.diff

Here is one-liner fix.

> [DRLVM][GC] gc_alloc() next to high bit of size is not reset on allocating finalizible objects
> ----------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-1661
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1661
>             Project: Harmony
>          Issue Type: Bug
>          Components: DRLVM
>         Environment: All
>            Reporter: Ivan Volosyuk
>         Attachments: gc_alloc.diff
>
>
> gc_alloc() allocation path for finalizible object incorrect again.
> Fix for HARMONY-1588 added the flow. 'in_size' may have next to high bit set for object size. This indicates that the object has special features (is finalizible) and cannot be processed by fast path.
> Changing in_size to size in slow path fixes the problem.
> Bug is reproducible by java.lang.Runtime kernel test in interpreter mode. After the fix test passes for me.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Resolved: (HARMONY-1661) [DRLVM][GC] gc_alloc() next to high bit of size is not reset on allocating finalizible objects

Posted by "Geir Magnusson Jr (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-1661?page=all ]

Geir Magnusson Jr resolved HARMONY-1661.
----------------------------------------

    Resolution: Fixed

r452293

Fixed in patch to HARMONY-1372

> [DRLVM][GC] gc_alloc() next to high bit of size is not reset on allocating finalizible objects
> ----------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-1661
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1661
>             Project: Harmony
>          Issue Type: Bug
>          Components: DRLVM
>         Environment: All
>            Reporter: Ivan Volosyuk
>         Assigned To: Geir Magnusson Jr
>         Attachments: gc_alloc.diff
>
>
> gc_alloc() allocation path for finalizible object incorrect again.
> Fix for HARMONY-1588 added the flow. 'in_size' may have next to high bit set for object size. This indicates that the object has special features (is finalizible) and cannot be processed by fast path.
> Changing in_size to size in slow path fixes the problem.
> Bug is reproducible by java.lang.Runtime kernel test in interpreter mode. After the fix test passes for me.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Closed: (HARMONY-1661) [DRLVM][GC] gc_alloc() next to high bit of size is not reset on allocating finalizible objects

Posted by "Geir Magnusson Jr (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-1661?page=all ]

Geir Magnusson Jr closed HARMONY-1661.
--------------------------------------


> [DRLVM][GC] gc_alloc() next to high bit of size is not reset on allocating finalizible objects
> ----------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-1661
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1661
>             Project: Harmony
>          Issue Type: Bug
>          Components: DRLVM
>         Environment: All
>            Reporter: Ivan Volosyuk
>         Assigned To: Geir Magnusson Jr
>         Attachments: gc_alloc.diff
>
>
> gc_alloc() allocation path for finalizible object incorrect again.
> Fix for HARMONY-1588 added the flow. 'in_size' may have next to high bit set for object size. This indicates that the object has special features (is finalizible) and cannot be processed by fast path.
> Changing in_size to size in slow path fixes the problem.
> Bug is reproducible by java.lang.Runtime kernel test in interpreter mode. After the fix test passes for me.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira