Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Latest commit

 

History

History
6 lines (3 loc) · 451 Bytes

File metadata and controls

6 lines (3 loc) · 451 Bytes

SSA

Slither possess a Static Single Assignment (SSA) form representation of SlithIR. SSA is a commonly used representation in compilation and static analysis in general. It requires that each variable is assigned at least one time. SSA is a key component for building an efficient data-dependency analysis.

The SSA printer allows to visualize this representation.