rust/src/test/mir-opt
2018-07-26 15:12:04 +03:00
..
nll patch up mir-opt tests 2018-07-26 15:12:04 +03:00
basic_assignment.rs Make &Slice a thin pointer 2018-05-27 17:28:35 +02:00
box_expr.rs rustc: use syntactic (instead of visibility) source info where appropriate. 2018-05-30 20:30:10 +03:00
combine_array_len.rs Update MIR opt tests 2018-06-27 22:06:21 +01:00
copy_propagation.rs Update MIR opt tests 2018-06-27 22:06:21 +01:00
copy_propagation_arg.rs Update MIR opt tests 2018-06-27 22:06:21 +01:00
deaggregator_test.rs tests: update to include move annotations in MIR. 2017-11-28 04:18:32 +02:00
deaggregator_test_enum.rs tests: update to include move annotations in MIR. 2017-11-28 04:18:32 +02:00
deaggregator_test_enum_2.rs tests: update to include move annotations in MIR. 2017-11-28 04:18:32 +02:00
deaggregator_test_multiple.rs rustc_mir: don't run the deaggregator on arrays for now. 2018-02-20 02:50:26 +02:00
end_region_1.rs rustc: use syntactic (instead of visibility) source info where appropriate. 2018-05-30 20:30:10 +03:00
end_region_2.rs rustc: use syntactic (instead of visibility) source info where appropriate. 2018-05-30 20:30:10 +03:00
end_region_3.rs rustc: use syntactic (instead of visibility) source info where appropriate. 2018-05-30 20:30:10 +03:00
end_region_4.rs rustc: use syntactic (instead of visibility) source info where appropriate. 2018-05-30 20:30:10 +03:00
end_region_5.rs Update MIR opt tests 2018-06-27 22:06:21 +01:00
end_region_6.rs Update MIR opt tests 2018-06-27 22:06:21 +01:00
end_region_7.rs Fix various nll unused mut errors 2018-07-03 20:12:09 +01:00
end_region_8.rs Fix various nll unused mut errors 2018-07-03 20:12:09 +01:00
end_region_9.rs rustc: use syntactic (instead of visibility) source info where appropriate. 2018-05-30 20:30:10 +03:00
end_region_cyclic.rs rustc: use syntactic (instead of visibility) source info where appropriate. 2018-05-30 20:30:10 +03:00
end_region_destruction_extents_1.rs Update mir-opt to promoted changes 2018-07-23 09:51:31 +02:00
inline-closure-borrows-arg.rs Update MIR opt tests 2018-06-27 22:06:21 +01:00
inline-closure.rs Update MIR opt tests 2018-06-27 22:06:21 +01:00
issue-38669.rs Produce instead of pointers 2018-03-08 08:08:14 +01:00
issue-41110.rs rustc: use syntactic (instead of visibility) source info where appropriate. 2018-05-30 20:30:10 +03:00
issue-41697.rs fix some typos 2017-11-21 15:33:45 +01:00
issue-41888.rs move "ADT master drop flag" logic to open_drop_for_adt_contents 2017-05-28 10:43:24 +03:00
issue-43457.rs change MIR dump filenames from nodeN to DefPath 2017-11-09 12:00:17 +03:00
issue-49232.rs Ensure StorageDead is created even if variable initialization fails 2018-07-12 10:13:41 -07:00
loop_test.rs Fix tests for MIR loop lowering 2018-02-07 20:00:54 -05:00
lower_128bit_debug_test.rs Update MIR opt tests 2018-06-27 22:06:21 +01:00
lower_128bit_test.rs bump minimum LLVM version to 5.0 2018-07-09 11:35:52 +02:00
match_false_edges.rs Update mir-opt to promoted changes 2018-07-23 09:51:31 +02:00
packed-struct-drop-aligned.rs rustc: use syntactic (instead of visibility) source info where appropriate. 2018-05-30 20:30:10 +03:00
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 tests: update to include move annotations in MIR. 2017-11-28 04:18:32 +02:00
storage_ranges.rs Ensure StorageDead is created even if variable initialization fails 2018-07-12 10:13:41 -07:00
uniform_array_move_out.rs Stabilize slice patterns without .. 2018-03-20 02:27:40 +03:00
validate_1.rs Update MIR opt tests 2018-06-27 22:06:21 +01:00
validate_2.rs fix tests in wasm 2017-12-03 14:50:47 +02:00
validate_3.rs rustc: use syntactic (instead of visibility) source info where appropriate. 2018-05-30 20:30:10 +03:00
validate_4.rs initialize the destination in unit statements 2017-12-03 02:21:13 +02:00
validate_5.rs Fix codegen tests 2018-06-23 18:00:47 +01: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).