Upward Code Motion

Upward Code Motion is another technique used to improve performance in Global Code Scheduling. In this, the code segment is moved outside of the block or loop to a position above the block.

Goals of Upward Code Motion:

  • Reduces computational overheads
  • Eliminates repeated calculations
  • Improves performance

Steps involved in Upward Code Motion:

  • Identification of loop invariant code
  • Moving the invariant code upward
  • Updating variable dependencies accordingly

C++




//before upward code motion
void sum(int a, int b) {
    int ans= 0;
    for (int i=0;i<4;i++) {
        ans+=a+b;
    }
    cout<<ans;
}
  
//after upward code motion
void sum(int a, int b) {
    int z=a+b;   //a+b is assigned to a variable z to avoid 
                 //repeated computaion of a+b inside the for loop
    int ans= 0;
    for (int i=0;i<4;i++) {
        ans+=z;
    }
    cout<<ans;
}


Global Code Scheduling in Compiler Design

In the fifth phase of compiler design, code optimization is performed. There are various code optimization techniques. But the order of execution of code in a computer program also matters in code optimization. Global Code Scheduling in compiler design is the process that is performed to rearrange the order of execution of code which improves performance. It comprises the analysis of different code segments and finding out the dependency among them.

The goals of Global Code Scheduling are:

  • Optimize the execution order
  • Improving the performance
  • Reducing the idle time
  • Maximize the utilization of resources

There are various techniques to perform Global Code Scheduling:

  • Primitive Code Motion
  • Upward Code Motion
  • Downward Code Motion

Similar Reads

Primitive Code Motion

Primitive Code Motion is one of the techniques used to improve performance in Global Code Scheduling. As the name suggests, Code motion is performed in this. Code segments are moved outside of the basic blocks or loops which helps in reducing memory accesses, thus improving the performance....

Upward Code Motion

...

Downward Code Motion

...

Updating Data Dependencies

Upward Code Motion is another technique used to improve performance in Global Code Scheduling. In this, the code segment is moved outside of the block or loop to a position above the block....

Global Scheduling Algorithms

...

Advanced Code Motion Techniques:

This is another technique used to improve performance in Global Code Scheduling. Downward Code Motion is almost same as Upward Code Motion except the fact that in this method code segments is moved from outside the loop to inside the loop. It should be applied in a way so that it do not add new dependencies in the code....

Interaction with Dynamic Schedulers

...