๐Ÿ“In SSA, instruction are equivalent to values

In SSA, naming instructions is equivalent to naming expressions/values. A value has the same identity as the assignment that produced it.

When statements need to refer to other values, it may point directly to statements that produce those values. For example, in %a = add i32 %b, %c: instruction a may point directly to instructions b and c.

Backlinks