Compiler Optimization
Motivation for SSA Form
// 1.
x = 10;
if(...) {
// 2.
x = 20;
y = x;
} else {
// 3.
y = x;
}
// 4.1. Constant Folding
2. Copy Propagation
Last updated