Liveness Analysis | Compiler Design - Computer Science Engineering (CSE) PDF Download

Data-flow Analysis

Idea

Data-flow analysis derives information about the dynamic behavior of a program by only examining the static code
Examples:- 

  • How many registers do we need for the program on the right?
  • Easy bound: the number of variables used (3)
  • Better answer is found by considering the dynamic requirements of the program
    Liveness Analysis | Compiler Design - Computer Science Engineering (CSE)

Liveness Analysis

➤ Definition:- A variable is live at a particular point in the program if its value at that point will be used in the future (dead, otherwise).
∴ To compute liveness at a given point, we need to look into the future

➤ Motivation: Register Allocation

  • A program contains an unbounded number of variables 
  • Must execute on a machine with a bounded number of registers 
  • Two variables can use the same register if they are never in use at the same time (i.e, never simultaneously live).
    ∴ Register allocation uses liveness information

Liveness by Example

➤ What is the live range of b?

  • Variable b is read in statement 4, so b is live on the (3 → 4) edge 
  • Since statement 3 does not assign into b, b is also live on the (2→3) edge 
  • Statement 2 assigns b, so any value of b on the (1→2) and (5→ 2) edges are not needed, so b is dead along these edges b’s live range is (2→3→4)
    Liveness Analysis | Compiler Design - Computer Science Engineering (CSE)

Liveness by Example (cont)

  • Live range of a – a is live from (1→2) and again from (4→5→2) – a is dead from (2→3→4)
  • Live range of b – b is live from (2→3→4)
  • Live range of c – c is live from (entry→1→2→3→4→5→2, 5→6)

Liveness Analysis | Compiler Design - Computer Science Engineering (CSE)Variables a and b are never simultaneously live, so they can share a register

Control Flow Graphs (CFGs)

➤ Definition:- A CFG is a graph whose nodes represent program statements and whose directed edges represent control flow
Liveness Analysis | Compiler Design - Computer Science Engineering (CSE)

Examples
1 a := 0
2 L1: b := a + 1
3 c := c + b
4 a := b * 2
5 if a < 9 goto L1
6 return c

Terminology

➤ Flow Graph Terms

  • A CFG node has out-edges that lead to successor nodes and in-edges that come from predecessor nodes 
  • pred[n] is the set of all predecessors of node n succ[n] is the set of all successors of node n

Examples

  • Out-edges of node 5: (5→6) and (5→2)
  • succ[5] = {2,6}
  • pred[5] = {4}
  • pred[2] = {1,5}
    Liveness Analysis | Compiler Design - Computer Science Engineering (CSE)

Uses and Defs

➤ Def (or definition)

  • An assignment of a value to a variable Liveness Analysis | Compiler Design - Computer Science Engineering (CSE)
  • def[v] = set of CFG nodes that define variable v
  • def[n] = set of variables that are defined at node n

Use

  • A read of a variable’s value Liveness Analysis | Compiler Design - Computer Science Engineering (CSE)
  • use[v] = set of CFG nodes that use variable v
  • use[n] = set of variables that are used at node n

Liveness Analysis | Compiler Design - Computer Science Engineering (CSE)

More precise definition of liveness

  • A variable v is live on a CFG edge if
    (1) ∃ a directed path from that edge to a use of v (node in use[v]), and
    (2) that path does not go through any def of v (no nodes in def[v])

The Flow of Liveness

Data-flow
Liveness of variables is a property that flows through the edges of the CFG

Direction of Flow

  • Liveness flows backwards through the CFG, because the behavior at future nodes determines liveness at a given node
  • Consider a
  • Consider b
  • Later, we’ll see other properties that flow forward
    Liveness Analysis | Compiler Design - Computer Science Engineering (CSE)

Liveness at Nodes

➤ We have liveness on edges- How do we talk about liveness at nodes?

➤ Two More Definitions- A variable is live-out at a node if it is live on any of that node’s outedges

A variable is live-in at a node if it is live on any
Liveness Analysis | Compiler Design - Computer Science Engineering (CSE)

Computing Liveness

➤ Rules for computing liveness

(1) Generate liveness: If a variable is in use[n], it is live-in at node n Liveness Analysis | Compiler Design - Computer Science Engineering (CSE)

(2) Push liveness across edges: If a variable is live-in at a node n then it is live-out at all nodes in pred[n] Liveness Analysis | Compiler Design - Computer Science Engineering (CSE)

(3) Push liveness across nodes: If a variable is live-out at node n and not in def[n] then the variable is also live-in at n Liveness Analysis | Compiler Design - Computer Science Engineering (CSE)

➤ Data-flow equations
Liveness Analysis | Compiler Design - Computer Science Engineering (CSE)

Solving the Data-flow Equations

➤ Algorithm
Liveness Analysis | Compiler Design - Computer Science Engineering (CSE)
This is iterative data-flow analysis (for liveness analysis)

➤ Example
Liveness Analysis | Compiler Design - Computer Science Engineering (CSE)

➤ Example (cont)

Data-flow Equations for Liveness
Liveness Analysis | Compiler Design - Computer Science Engineering (CSE)

➤ Improving Performance

  • Consider the (3→4) edge in the graph: out[4] is used to compute in[4] in[4] is used to compute out[3] . . .
  • So we should compute the sets in the order: out[4], in[4], out[3], in[3], . . .
    Liveness Analysis | Compiler Design - Computer Science Engineering (CSE)The order of computation should follow the direction of flow

Iterating Through the Flow Graph Backwards

Liveness Analysis | Compiler Design - Computer Science Engineering (CSE)

Solving the Data-flow Equations (reprise)

➤ Algorithm
Liveness Analysis | Compiler Design - Computer Science Engineering (CSE)

Time Complexity

➤ Consider a program of size N

  • Has N nodes in the flow graph and at most N variables 
  • Each live-in or live-out set has at most N elements 
  • Each set-union operation takes O(N) time 
  • The for loop body
  • constant # of set operations per node
  • O(N) nodes ⇒ O(N2) time for the loop
  • Each iteration of the repeat loop can only make the set larger
  • Each set can contain at most N variables ⇒ 2N2 iterations

Worst case: O(N4)

Typical case: 2 to 3 iterations with good ordering & sparse sets ⇒ O(N) to O(N2)

More Performance Considerations

Basic blocks
Decrease the size of the CFG by merging nodes that have a single predecessor and a single successor into basic blocks

One variable at a time
Instead of computing data-flow information for all variables at once using sets, compute a (simplified) analysis for each variable separately

Representation of sets

  • For dense sets, use a bit vector representation
  • For sparse sets, use a sorted list (e.g., linked list)

Liveness Analysis | Compiler Design - Computer Science Engineering (CSE)

Conservative Approximation

Liveness Analysis | Compiler Design - Computer Science Engineering (CSE)Liveness Analysis | Compiler Design - Computer Science Engineering (CSE)

➤ Solution X 
Our solution as computed on previous slides

Conservative Approximation (cont)

Liveness Analysis | Compiler Design - Computer Science Engineering (CSE)
Liveness Analysis | Compiler Design - Computer Science Engineering (CSE)

➤ Solution Y

  • Carries variable d uselessly around the loop
  • Does Y solve the equations?
  • Is d live?
  • Does Y lead to a correct program?

Imprecise conservative solutions ⇒ sub-optimal but correct programs

Conservative Approximation (cont)

Liveness Analysis | Compiler Design - Computer Science Engineering (CSE)
Liveness Analysis | Compiler Design - Computer Science Engineering (CSE)

➤ Solution Z

  • Does not identify c as live in all cases
  • Does Z solve the equations?
  • Does Z lead to a correct program?

Non-conservative solutions ⇒ incorrect programs

The Need for Approximations

➤ Static vs. Dynamic Liveness

  • In the following graph, b*b is always non-negative, so c >= b is always true and a’s value will never be used after node 2

➤ Rule (2) for computing liveness

  • Since a is live-in at node 4, it is live out at nodes 3 and 2
  • This rule ignores actual control flow

Liveness Analysis | Compiler Design - Computer Science Engineering (CSE)

No compiler can statically know all a program’s dynamic properties!

Concepts

Liveness

  • Use in register allocation
  • Generating liveness
  • Flow and direction 
  • Data-flow equations and analysis 
  • Complexity 
  • Improving performance (basic blocks, single variable, bit sets)

➤ Control flow graphs

  • Predecessors and successors

➤ Defs and uses

➤ Conservative approximation

  • Static versus dynamic liveness

Next Time

➤ Reading

  • Muchnick Ch. 7-7.5

➤ Think about. . .

  • Other data-flow analyses

➤ Lecture

  • Control-flow analysis
  • Basic blocks and control-flow graphs
The document Liveness Analysis | Compiler Design - Computer Science Engineering (CSE) is a part of the Computer Science Engineering (CSE) Course Compiler Design.
All you need of Computer Science Engineering (CSE) at this link: Computer Science Engineering (CSE)
26 videos|66 docs|30 tests

Top Courses for Computer Science Engineering (CSE)

FAQs on Liveness Analysis - Compiler Design - Computer Science Engineering (CSE)

1. What is liveliness analysis in computer science engineering?
Ans. Liveliness analysis in computer science engineering is a technique used to determine the potential for concurrent processes or threads to progress in a program. It focuses on ensuring that all processes or threads have the opportunity to execute and prevent deadlocks or other synchronization issues.
2. Why is liveliness analysis important in computer science engineering?
Ans. Liveliness analysis is important in computer science engineering as it helps identify and resolve issues related to concurrency and synchronization in programs. It ensures that processes or threads do not get stuck in deadlocks or other blocking states, leading to smooth execution and efficient utilization of system resources.
3. What are the common challenges in liveliness analysis?
Ans. Common challenges in liveliness analysis include identifying potential deadlocks, livelocks, and other synchronization issues in complex programs. It requires analyzing the program's control flow, understanding the interaction between different processes or threads, and designing appropriate synchronization mechanisms to ensure liveliness.
4. How does liveliness analysis impact the performance of computer systems?
Ans. Liveliness analysis plays a crucial role in improving the performance of computer systems. By ensuring liveliness, it prevents processes or threads from getting stuck, leading to better responsiveness and increased system throughput. It also helps in resource utilization by efficiently scheduling and managing concurrent execution.
5. What are some techniques used in liveliness analysis?
Ans. Various techniques are used in liveliness analysis, including static analysis, dynamic analysis, model checking, and formal verification. Static analysis involves analyzing the program's source code or intermediate representation to detect potential issues. Dynamic analysis involves running the program and monitoring its execution to identify liveliness problems. Model checking and formal verification use mathematical models and logical reasoning to prove or disprove the absence of deadlocks and other synchronization issues.
26 videos|66 docs|30 tests
Download as PDF
Explore Courses for Computer Science Engineering (CSE) exam

Top Courses for Computer Science Engineering (CSE)

Signup for Free!
Signup to see your scores go up within 7 days! Learn & Practice with 1000+ FREE Notes, Videos & Tests.
10M+ students study on EduRev
Related Searches

ppt

,

Extra Questions

,

Important questions

,

Previous Year Questions with Solutions

,

video lectures

,

mock tests for examination

,

Liveness Analysis | Compiler Design - Computer Science Engineering (CSE)

,

Liveness Analysis | Compiler Design - Computer Science Engineering (CSE)

,

Liveness Analysis | Compiler Design - Computer Science Engineering (CSE)

,

Viva Questions

,

Exam

,

practice quizzes

,

shortcuts and tricks

,

pdf

,

MCQs

,

study material

,

Free

,

past year papers

,

Summary

,

Sample Paper

,

Objective type Questions

,

Semester Notes

;