ENCYCLOPEDIA 4U .com



Encyclopedia Home Page

Google
  Web Encyclopedia4u.com

 

SSA form

Static Single Assignment (SSA) is an Intermediate language form used by compilers to simplify some optimization algorithms. Developed by researchers at IBM in the 80's. Each variable is only defined once: a redefinition of a variable is considered to be a new variable (version). The use-def chains are reduced to a pointer to the single definition of the variable.

Examples of algorithms that are made easy using SSA form are:

dead code elimination,
  • constant propagation,
  • partial redundancy elimination.

  • See also: Compiler optimization




    Content on this web site is provided for informational purposes only. We accept no responsibility for any loss, injury or inconvenience sustained by any person resulting from information published on this site. We encourage you to verify any critical information with the relevant authorities.



    Copyright © 2005 Par Web Solutions All Rights reserved.
    | Privacy

    This article is licensed under the GNU Free Documentation License. It uses material from the Wikipedia article "SSA form".