You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Egor Pasko (JIRA)" <ji...@apache.org> on 2008/02/07 10:31:08 UTC

[jira] Closed: (HARMONY-5090) [drlvm][jit][opt]operator strength reduction

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

Egor Pasko closed HARMONY-5090.
-------------------------------


> [drlvm][jit][opt]operator strength reduction
> --------------------------------------------
>
>                 Key: HARMONY-5090
>                 URL: https://issues.apache.org/jira/browse/HARMONY-5090
>             Project: Harmony
>          Issue Type: New Feature
>          Components: DRLVM
>         Environment: Hope it works everywhere
>            Reporter: Maksim Ananjev
>            Assignee: Egor Pasko
>            Priority: Minor
>         Attachments: HARMONY-5090.patch, HARMONY-5090.patch, HARMONY-5090.patch, HARMONY-5090.patch
>
>
> Operator Strength Reduction is an optimization that reformulates costly operations in terms of less expensive ones.
> The simplest possible example is the following:
> before:
> int sum = 0;
> for(int i=0; i<10;i++){
> int temp = i * 10;
> sum+=temp
> }
> after:
> int sum = 0;
> for(int j=0; j<100; j+=10){
> sum+=j
> } 

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