rust/src/test/mir-opt
2018-03-26 08:36:50 -05:00
..
nll Updated MIR with UserAssertTy in mir-opt tests. 2018-03-23 11:34:06 +00:00
basic_assignment.rs Updated MIR with UserAssertTy in mir-opt tests. 2018-03-23 11:34:06 +00:00
box_expr.rs
combine_array_len.rs
copy_propagation_arg.rs rustc_mir: optimize the deaggregator's expansion of statements. 2018-02-20 02:50:26 +02:00
copy_propagation.rs
deaggregator_test_enum_2.rs
deaggregator_test_enum.rs
deaggregator_test_multiple.rs rustc_mir: don't run the deaggregator on arrays for now. 2018-02-20 02:50:26 +02:00
deaggregator_test.rs
end_region_1.rs
end_region_2.rs Produce instead of pointers 2018-03-08 08:08:14 +01:00
end_region_3.rs Produce instead of pointers 2018-03-08 08:08:14 +01:00
end_region_4.rs
end_region_5.rs
end_region_6.rs
end_region_7.rs
end_region_8.rs WIP fix mir-opt-end-region-8 2018-03-21 09:24:32 -04:00
end_region_9.rs Produce instead of pointers 2018-03-08 08:08:14 +01:00
end_region_cyclic.rs Produce instead of pointers 2018-03-08 08:08:14 +01:00
end_region_destruction_extents_1.rs
inline-closure-borrows-arg.rs
inline-closure.rs
issue-38669.rs Produce instead of pointers 2018-03-08 08:08:14 +01:00
issue-41110.rs
issue-41697.rs
issue-41888.rs
issue-43457.rs
loop_test.rs Fix tests for MIR loop lowering 2018-02-07 20:00:54 -05:00
lower_128bit_debug_test.rs Stabilize i128_type 2018-03-26 08:36:50 -05:00
lower_128bit_test.rs Stabilize i128_type 2018-03-26 08:36:50 -05:00
match_false_edges.rs Rebase fallout 2018-03-08 08:34:17 +01:00
packed-struct-drop-aligned.rs
README.md fix more typos found by codespell. 2018-02-17 17:38:49 +01:00
return_an_array.rs Add trailing newlines to files which have no trailing newlines. 2017-12-30 15:50:52 +08:00
simplify_if.rs Produce instead of pointers 2018-03-08 08:08:14 +01:00
storage_live_dead_in_statics.rs
storage_ranges.rs
uniform_array_move_out.rs Stabilize slice patterns without .. 2018-03-20 02:27:40 +03:00
validate_1.rs
validate_2.rs
validate_3.rs
validate_4.rs
validate_5.rs Fix ref-to-ptr coercions not working with NLL in certain cases 2018-01-29 23:25:54 -05:00

This folder contains tests for MIR optimizations.

The test format is:

(arbitrary rust code)
// END RUST SOURCE
// START $file_name_of_some_mir_dump_0
//  $expected_line_0
// (lines or elision)
// $expected_line_N
// END $file_name_of_some_mir_dump_0
// (lines or elision)
// START $file_name_of_some_mir_dump_N
//  $expected_line_0
// (lines or elision)
// $expected_line_N
// END $file_name_of_some_mir_dump_N

All the test information is in comments so the test is runnable.

For each $file_name, compiletest expects [$expected_line_0, ..., $expected_line_N] to appear in the dumped MIR in order. Currently it allows other non-matched lines before and after, but not between $expected_lines, should you want to skip lines, you must include an elision comment, of the form (as a regex) //\s*...\s*. The lines will be skipped lazily, that is, if there are two identical lines in the output that match the line after the elision comment, the first one will be matched.

Examples:

The following blocks will not match the one after it.

bb0: {
    StorageLive(_1);
    _1 = const true;
    StorageDead(_1);
}
bb0: {
    StorageLive(_1);
    _1 = const true;
    goto -> bb1
}
bb1: {
    StorageDead(_1);
    return;
}

But this will match the one above,

bb0: {
    StorageLive(_1);
    _1 = const true;
    ...
    StorageDead(_1);
    ...
}

Lines match ignoring whitespace, and the prefix "//" is removed.

It also currently strips trailing comments -- partly because the full file path in "scope comments" is unpredictable and partly because tidy complains about the lines being too long.

compiletest handles dumping the MIR before and after every pass for you. The test writer only has to specify the file names of the dumped files (not the full path to the file) and what lines to expect. There is an option to rustc that tells it to dump the mir into some directly (rather then always dumping to the current directory).