Module ssa_const_propagation

Module ssa_const_propagation 

Source
Expand description

The SSA Const Propagation pass propagates constant values through the program. This pass runs after SSA formation, so each variable has a unique name.

The pass tracks variables that are assigned literal values and replaces uses of those variables with their constant values.

Re-exportsยง

pub use visitor::SsaConstPropagationVisitor;

Modulesยง

ast ๐Ÿ”’
program ๐Ÿ”’
visitor ๐Ÿ”’

Structsยง

SsaConstPropagation