You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Xiao-Feng Li (JIRA)" <ji...@apache.org> on 2006/11/24 06:33:02 UTC

[jira] Created: (HARMONY-2291) [DRLVM][GC] patch for parallel copying of GCv5

[DRLVM][GC] patch for parallel copying of GCv5
----------------------------------------------

                 Key: HARMONY-2291
                 URL: http://issues.apache.org/jira/browse/HARMONY-2291
             Project: Harmony
          Issue Type: Improvement
          Components: DRLVM
         Environment: Windows 2003 & Linux FC 4.0
            Reporter: Xiao-Feng Li


This patch enables the prallel copying process of minor collection. Multiple collector threads can be used to copy live objects to mature space in parallel.

-- 
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-2291) [DRLVM][GC] patch for parallel copying of GCv5

Posted by "Xiao-Feng Li (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-2291?page=all ]

Xiao-Feng Li updated HARMONY-2291:
----------------------------------

    Attachment: 00-GCv5-paralle-copy.patch

Please apply this patch in directory of  gc_gen/. 

This patch needs to add two files: 

trace_forward/fspace_collect_forward_par.cpp
trace_forward/fspace_collect_forward_seq.cpp

Thanks.
xiaofeng

> [DRLVM][GC] patch for parallel copying of GCv5
> ----------------------------------------------
>
>                 Key: HARMONY-2291
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2291
>             Project: Harmony
>          Issue Type: Improvement
>          Components: DRLVM
>         Environment: Windows 2003 & Linux FC 4.0
>            Reporter: Xiao-Feng Li
>         Attachments: 00-GCv5-paralle-copy.patch
>
>
> This patch enables the prallel copying process of minor collection. Multiple collector threads can be used to copy live objects to mature space in parallel.

-- 
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-2291) [DRLVM][GC] patch for parallel copying of GCv5

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

weldon washburn reassigned HARMONY-2291:
----------------------------------------

    Assignee: weldon washburn

> [DRLVM][GC] patch for parallel copying of GCv5
> ----------------------------------------------
>
>                 Key: HARMONY-2291
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2291
>             Project: Harmony
>          Issue Type: Improvement
>          Components: DRLVM
>         Environment: Windows 2003 & Linux FC 4.0
>            Reporter: Xiao-Feng Li
>         Assigned To: weldon washburn
>         Attachments: 00-GCv5-paralle-copy.patch
>
>
> This patch enables the prallel copying process of minor collection. Multiple collector threads can be used to copy live objects to mature space in parallel.

-- 
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-2291) [DRLVM][GC] patch for parallel copying of GCv5

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

weldon washburn closed HARMONY-2291.
------------------------------------

    Resolution: Fixed

Committed.  It passes build test on both windowsxp 32 and linux 32 w/ gcc 4.0.2

> [DRLVM][GC] patch for parallel copying of GCv5
> ----------------------------------------------
>
>                 Key: HARMONY-2291
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2291
>             Project: Harmony
>          Issue Type: Improvement
>          Components: DRLVM
>         Environment: Windows 2003 & Linux FC 4.0
>            Reporter: Xiao-Feng Li
>         Assigned To: weldon washburn
>         Attachments: 00-GCv5-paralle-copy.patch, 01-GCv5-parallel-copy.patch
>
>
> This patch enables the prallel copying process of minor collection. Multiple collector threads can be used to copy live objects to mature space in parallel.

-- 
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] Commented: (HARMONY-2291) [DRLVM][GC] patch for parallel copying of GCv5

Posted by "Gregory Shimansky (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/HARMONY-2291?page=comments#action_12454647 ] 
            
Gregory Shimansky commented on HARMONY-2291:
--------------------------------------------

The patch broke compilation on x86_64 because now gc_gen started to compile on all linuxes. I've patched the gc_gen.xml file to exclude em64t and ipf architectures.

> [DRLVM][GC] patch for parallel copying of GCv5
> ----------------------------------------------
>
>                 Key: HARMONY-2291
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2291
>             Project: Harmony
>          Issue Type: Improvement
>          Components: DRLVM
>         Environment: Windows 2003 & Linux FC 4.0
>            Reporter: Xiao-Feng Li
>         Assigned To: weldon washburn
>         Attachments: 00-GCv5-paralle-copy.patch, 01-GCv5-parallel-copy.patch
>
>
> This patch enables the prallel copying process of minor collection. Multiple collector threads can be used to copy live objects to mature space in parallel.

-- 
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-2291) [DRLVM][GC] patch for parallel copying of GCv5

Posted by "Xiao-Feng Li (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-2291?page=all ]

Xiao-Feng Li updated HARMONY-2291:
----------------------------------

    Attachment: 01-GCv5-parallel-copy.patch

Dear committer, please use the second patch 01-GCv5-parallel-copy.cpp. It's modified to be buildable in Linux.

Thanks.
xiaofeng



> [DRLVM][GC] patch for parallel copying of GCv5
> ----------------------------------------------
>
>                 Key: HARMONY-2291
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2291
>             Project: Harmony
>          Issue Type: Improvement
>          Components: DRLVM
>         Environment: Windows 2003 & Linux FC 4.0
>            Reporter: Xiao-Feng Li
>         Assigned To: weldon washburn
>         Attachments: 00-GCv5-paralle-copy.patch, 01-GCv5-parallel-copy.patch
>
>
> This patch enables the prallel copying process of minor collection. Multiple collector threads can be used to copy live objects to mature space in parallel.

-- 
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