rust/compiler/rustc_const_eval/src/interpret
Nicholas Nethercote bcf0ec0191 Replace mk_foo calls with infer_foo where possible.
There are several `mk_foo`/`intern_foo` pairs, where the former takes an
iterator and the latter takes a slice. (This naming convention is bad,
but that's a fix for another PR.)

This commit changes several `mk_foo` occurrences into `intern_foo`,
avoiding the need for some `.iter()`/`.into_iter()` calls. Affected
cases:
- mk_type_list
- mk_tup
- mk_substs
- mk_const_list
2023-02-17 22:24:31 +11:00
..
intrinsics Replace mk_foo calls with infer_foo where possible. 2023-02-17 22:24:31 +11:00
cast.rs Use target instead of machine for mir interpreter integer handling. 2023-02-15 08:56:18 +00:00
discriminant.rs interpret: move discriminant reading and writing to separate file 2023-02-06 17:10:26 +01:00
eval_context.rs Use target instead of machine for mir interpreter integer handling. 2023-02-15 08:56:18 +00:00
intern.rs Download rustc component for rustfmt toolchain as well 2023-01-31 10:29:33 -05:00
intrinsics.rs Auto merge of #108096 - matthiaskrgr:rollup-ncexzf6, r=matthiaskrgr 2023-02-16 00:12:54 +00:00
machine.rs interpret: rename Pointer::from_addr → from_addr_invalid 2023-02-14 14:55:50 +01:00
memory.rs changes from review 2023-02-16 17:05:59 -07:00
mod.rs interpret: move discriminant reading and writing to separate file 2023-02-06 17:10:26 +01:00
operand.rs Use target instead of machine for mir interpreter integer handling. 2023-02-15 08:56:18 +00:00
operator.rs avoid .into() conversion to identical types 2022-12-18 16:20:32 +01:00
place.rs Use target instead of machine for mir interpreter integer handling. 2023-02-15 08:56:18 +00:00
projection.rs Use target instead of machine for mir interpreter integer handling. 2023-02-15 08:56:18 +00:00
step.rs Use target instead of machine for mir interpreter integer handling. 2023-02-15 08:56:18 +00:00
terminator.rs Remove double spaces after dots in comments 2023-01-17 08:09:33 +00:00
traits.rs add is_sized method on Abi and Layout, and use it 2022-11-13 12:23:53 +01:00
util.rs Make visiting traits generic over the Interner 2023-02-13 10:24:49 +00:00
validity.rs Use target instead of machine for mir interpreter integer handling. 2023-02-15 08:56:18 +00:00
visitor.rs Self review suggestions 2023-01-17 07:48:20 +00:00