about summary refs log tree commit diff
path: root/src/test/mir-opt/spanview-block.rs
AgeCommit message (Collapse)AuthorLines
2022-11-02Ban dashes in miropt test file namesJakob Degen-5/+0
2022-10-27Replace `mir_map.0` dump with `built` phase change dumpJakob Degen-1/+1
2020-08-31Add new `-Z dump-mir-spanview` optionRich Kadel-0/+5
Similar to `-Z dump-mir-graphviz`, this adds the option to write HTML+CSS files that allow users to analyze the spans associated with MIR elements (by individual statement, just terminator, or overall basic block). This PR was split out from PR #76004, and exposes an API for spanview HTML+CSS files that is also used to analyze code regions chosen for coverage instrumentation (in a follow-on PR). Rust compiler MCP rust-lang/compiler-team#278 Relevant issue: #34701 - Implement support for LLVMs code coverage instrumentation