You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Mikhail Fursov (JIRA)" <ji...@apache.org> on 2007/01/29 14:53:49 UTC

[jira] Created: (HARMONY-3076) [drlvm][jit] Loop unrolling optimization implementation in Jitirno.OPT

[drlvm][jit] Loop unrolling optimization implementation in Jitirno.OPT
----------------------------------------------------------------------

                 Key: HARMONY-3076
                 URL: https://issues.apache.org/jira/browse/HARMONY-3076
             Project: Harmony
          Issue Type: New Feature
          Components: DRLVM
            Reporter: Mikhail Fursov
         Attachments: unroll_1.zip

Here is an implementation of loop unrolling optimization.
The patch enables it in all modes with Jitrino.OPT we have.

There are some TODOs, described in loop_unroll.cpp files, read it if you are interested to write minitests to see performance improvements.

My minitests shows that we have ~50% improvement on classic BubbleSort application and ~15% for Arrays.sort when dynamic edge profile is used.

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


[jira] Closed: (HARMONY-3076) [drlvm][jit] Loop unrolling optimization implementation in Jitirno.OPT

Posted by "Mikhail Fursov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-3076?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mikhail Fursov closed HARMONY-3076.
-----------------------------------

    Resolution: Fixed

Committed as r 557942

> [drlvm][jit] Loop unrolling optimization implementation in Jitirno.OPT
> ----------------------------------------------------------------------
>
>                 Key: HARMONY-3076
>                 URL: https://issues.apache.org/jira/browse/HARMONY-3076
>             Project: Harmony
>          Issue Type: New Feature
>          Components: DRLVM
>            Reporter: Mikhail Fursov
>            Assignee: Mikhail Fursov
>         Attachments: unroll.diff, unroll2.diff, unroll_1.zip
>
>
> Here is an implementation of loop unrolling optimization.
> The patch enables it in all modes with Jitrino.OPT we have.
> There are some TODOs, described in loop_unroll.cpp files, read it if you are interested to write minitests to see performance improvements.
> My minitests shows that we have ~50% improvement on classic BubbleSort application and ~15% for Arrays.sort when dynamic edge profile is used.

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


[jira] Updated: (HARMONY-3076) [drlvm][jit] Loop unrolling optimization implementation in Jitirno.OPT

Posted by "Mikhail Fursov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-3076?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mikhail Fursov updated HARMONY-3076:
------------------------------------

    Attachment: unroll_1.zip

> [drlvm][jit] Loop unrolling optimization implementation in Jitirno.OPT
> ----------------------------------------------------------------------
>
>                 Key: HARMONY-3076
>                 URL: https://issues.apache.org/jira/browse/HARMONY-3076
>             Project: Harmony
>          Issue Type: New Feature
>          Components: DRLVM
>            Reporter: Mikhail Fursov
>         Attachments: unroll_1.zip
>
>
> Here is an implementation of loop unrolling optimization.
> The patch enables it in all modes with Jitrino.OPT we have.
> There are some TODOs, described in loop_unroll.cpp files, read it if you are interested to write minitests to see performance improvements.
> My minitests shows that we have ~50% improvement on classic BubbleSort application and ~15% for Arrays.sort when dynamic edge profile is used.

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


[jira] Assigned: (HARMONY-3076) [drlvm][jit] Loop unrolling optimization implementation in Jitirno.OPT

Posted by "Alexey Varlamov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-3076?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alexey Varlamov reassigned HARMONY-3076:
----------------------------------------

    Assignee: Alexey Varlamov

> [drlvm][jit] Loop unrolling optimization implementation in Jitirno.OPT
> ----------------------------------------------------------------------
>
>                 Key: HARMONY-3076
>                 URL: https://issues.apache.org/jira/browse/HARMONY-3076
>             Project: Harmony
>          Issue Type: New Feature
>          Components: DRLVM
>            Reporter: Mikhail Fursov
>         Assigned To: Alexey Varlamov
>         Attachments: unroll_1.zip
>
>
> Here is an implementation of loop unrolling optimization.
> The patch enables it in all modes with Jitrino.OPT we have.
> There are some TODOs, described in loop_unroll.cpp files, read it if you are interested to write minitests to see performance improvements.
> My minitests shows that we have ~50% improvement on classic BubbleSort application and ~15% for Arrays.sort when dynamic edge profile is used.

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


[jira] Updated: (HARMONY-3076) [drlvm][jit] Loop unrolling optimization implementation in Jitirno.OPT

Posted by "Mikhail Fursov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-3076?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mikhail Fursov updated HARMONY-3076:
------------------------------------

    Attachment: unroll.diff

unroll.diff: updated version of loop unrolling optimization

> [drlvm][jit] Loop unrolling optimization implementation in Jitirno.OPT
> ----------------------------------------------------------------------
>
>                 Key: HARMONY-3076
>                 URL: https://issues.apache.org/jira/browse/HARMONY-3076
>             Project: Harmony
>          Issue Type: New Feature
>          Components: DRLVM
>            Reporter: Mikhail Fursov
>            Assignee: Alexey Varlamov
>         Attachments: unroll.diff, unroll_1.zip
>
>
> Here is an implementation of loop unrolling optimization.
> The patch enables it in all modes with Jitrino.OPT we have.
> There are some TODOs, described in loop_unroll.cpp files, read it if you are interested to write minitests to see performance improvements.
> My minitests shows that we have ~50% improvement on classic BubbleSort application and ~15% for Arrays.sort when dynamic edge profile is used.

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


[jira] Updated: (HARMONY-3076) [drlvm][jit] Loop unrolling optimization implementation in Jitirno.OPT

Posted by "Mikhail Fursov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-3076?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mikhail Fursov updated HARMONY-3076:
------------------------------------

    Attachment: unroll2.diff

unroll2.diff: fixed issue found when running Dacapo's fop benchmark

> [drlvm][jit] Loop unrolling optimization implementation in Jitirno.OPT
> ----------------------------------------------------------------------
>
>                 Key: HARMONY-3076
>                 URL: https://issues.apache.org/jira/browse/HARMONY-3076
>             Project: Harmony
>          Issue Type: New Feature
>          Components: DRLVM
>            Reporter: Mikhail Fursov
>            Assignee: Mikhail Fursov
>         Attachments: unroll.diff, unroll2.diff, unroll_1.zip
>
>
> Here is an implementation of loop unrolling optimization.
> The patch enables it in all modes with Jitrino.OPT we have.
> There are some TODOs, described in loop_unroll.cpp files, read it if you are interested to write minitests to see performance improvements.
> My minitests shows that we have ~50% improvement on classic BubbleSort application and ~15% for Arrays.sort when dynamic edge profile is used.

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


[jira] Assigned: (HARMONY-3076) [drlvm][jit] Loop unrolling optimization implementation in Jitirno.OPT

Posted by "Mikhail Fursov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-3076?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mikhail Fursov reassigned HARMONY-3076:
---------------------------------------

    Assignee: Mikhail Fursov  (was: Alexey Varlamov)

> [drlvm][jit] Loop unrolling optimization implementation in Jitirno.OPT
> ----------------------------------------------------------------------
>
>                 Key: HARMONY-3076
>                 URL: https://issues.apache.org/jira/browse/HARMONY-3076
>             Project: Harmony
>          Issue Type: New Feature
>          Components: DRLVM
>            Reporter: Mikhail Fursov
>            Assignee: Mikhail Fursov
>         Attachments: unroll.diff, unroll2.diff, unroll_1.zip
>
>
> Here is an implementation of loop unrolling optimization.
> The patch enables it in all modes with Jitrino.OPT we have.
> There are some TODOs, described in loop_unroll.cpp files, read it if you are interested to write minitests to see performance improvements.
> My minitests shows that we have ~50% improvement on classic BubbleSort application and ~15% for Arrays.sort when dynamic edge profile is used.

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