↧
Answer by Jørn Schou-Rode for How is a lattice used by a compiler
Lattices are a very useful structure to represent state while doing static analysis on the program being compiled - eg. for removing dead code detected by liveness analysis, available/very busy...
View ArticleHow is a lattice used by a compiler
In my graduate class on compiler construction we've been introduced to the concept of a lattice. Three lectures have been devoted to lattices and so far it seems like an interesting tangent, but the...
View Article