]> git.lizzy.rs Git - rust.git/commit
add control flow graph and algorithms. add dominator to mir
authorScott A Carr <s.carr1024@gmail.com>
Thu, 9 Jun 2016 22:49:07 +0000 (15:49 -0700)
committerScott A Carr <s.carr1024@gmail.com>
Thu, 23 Jun 2016 21:00:00 +0000 (14:00 -0700)
commit66d60c78b3c31629b13202f3d2281b2674c7ec3e
tree5b44deee85804c538b86ffb19418ec87e052243b
parentfe96928d7de991e527a7ed7b88bb30aa965c8a08
add control flow graph and algorithms. add dominator to mir
14 files changed:
src/librustc/mir/cache.rs
src/librustc/mir/repr.rs
src/librustc_data_structures/control_flow_graph/dominators/mod.rs [new file with mode: 0644]
src/librustc_data_structures/control_flow_graph/dominators/test.rs [new file with mode: 0644]
src/librustc_data_structures/control_flow_graph/iterate/mod.rs [new file with mode: 0644]
src/librustc_data_structures/control_flow_graph/iterate/test.rs [new file with mode: 0644]
src/librustc_data_structures/control_flow_graph/mod.rs [new file with mode: 0644]
src/librustc_data_structures/control_flow_graph/reachable/mod.rs [new file with mode: 0644]
src/librustc_data_structures/control_flow_graph/reachable/test.rs [new file with mode: 0644]
src/librustc_data_structures/control_flow_graph/reference.rs [new file with mode: 0644]
src/librustc_data_structures/control_flow_graph/test.rs [new file with mode: 0644]
src/librustc_data_structures/control_flow_graph/transpose.rs [new file with mode: 0644]
src/librustc_data_structures/indexed_vec.rs
src/librustc_data_structures/lib.rs