SSA form

27 April 2016

Resources:

Most intermediate representations use some variant of Static Single Assignment (SSA) form. In this format, each variable (temporary) is assigned exactly once, at one location in the code. This simplifies compiler analysis and optimization by tracking values rather than storage locations.