|
Computer Programming Software Terms, Glossary and Dictionary
Copy Propagation
Copy propagation, a optimization technique in the program compiler, is the process of replacing the occurrences of targets of direct assignments with their values. A direct assignment is an instruction of the form x = y, which simply assigns the value of y to x. Copy propagation is a useful "clean up" optimization frequently used after other optimizations have already been run.
|