Skip to content

Commit 2e6ac7f

Browse files
committed
Auto merge of #114400 - matthiaskrgr:rollup-1hkd1ay, r=matthiaskrgr
Rollup of 3 pull requests Successful merges: - #114363 (avoid 'miri' when refering to the shared interpreter) - #114371 (Add myself to mailmap) - #114387 (Temporarily eholk from review rotation) r? `@ghost` `@rustbot` modify labels: rollup
2 parents fb31b3c + 767a91d commit 2e6ac7f

File tree

8 files changed

+14
-13
lines changed

8 files changed

+14
-13
lines changed

.mailmap

+1
Original file line numberDiff line numberDiff line change
@@ -494,6 +494,7 @@ Ryan Sullivant <rsulli55@gmail.com>
494494
Ryan Wiedemann <Ryan1729@gmail.com>
495495
S Pradeep Kumar <gohanpra@gmail.com>
496496
Sam Radhakrishnan <sk09idm@gmail.com>
497+
Samuel Tardieu <sam@rfc1149.net>
497498
Scott McMurray <scottmcm@users.noreply.github.com>
498499
Scott Olson <scott@solson.me> Scott Olson <scott@scott-olson.org>
499500
Sean Gillespie <sean.william.g@gmail.com> swgillespie <sean.william.g@gmail.com>

compiler/rustc_const_eval/src/interpret/intrinsics.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! Intrinsics and other functions that the miri engine executes without
1+
//! Intrinsics and other functions that the interpreter executes without
22
//! looking at their MIR. Intrinsics/functions supported here are shared by CTFE
33
//! and miri.
44

compiler/rustc_const_eval/src/interpret/memory.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ impl<'tcx, Other> FnVal<'tcx, Other> {
9191
// `Memory` has to depend on the `Machine` because some of its operations
9292
// (e.g., `get`) call a `Machine` hook.
9393
pub struct Memory<'mir, 'tcx, M: Machine<'mir, 'tcx>> {
94-
/// Allocations local to this instance of the miri engine. The kind
94+
/// Allocations local to this instance of the interpreter. The kind
9595
/// helps ensure that the same mechanism is used for allocation and
9696
/// deallocation. When an allocation is not found here, it is a
9797
/// global and looked up in the `tcx` for read access. Some machines may

compiler/rustc_middle/src/mir/interpret/error.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ impl<'tcx> InterpErrorInfo<'tcx> {
155155
}
156156

157157
fn print_backtrace(backtrace: &Backtrace) {
158-
eprintln!("\n\nAn error occurred in miri:\n{backtrace}");
158+
eprintln!("\n\nAn error occurred in the MIR interpreter:\n{backtrace}");
159159
}
160160

161161
impl From<ErrorGuaranteed> for InterpErrorInfo<'_> {

compiler/rustc_middle/src/mir/interpret/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -609,7 +609,7 @@ impl<'tcx> TyCtxt<'tcx> {
609609
/// Panics in case the `AllocId` is dangling. Since that is impossible for `AllocId`s in
610610
/// constants (as all constants must pass interning and validation that check for dangling
611611
/// ids), this function is frequently used throughout rustc, but should not be used within
612-
/// the miri engine.
612+
/// the interpreter.
613613
pub fn global_alloc(self, id: AllocId) -> GlobalAlloc<'tcx> {
614614
match self.try_get_global_alloc(id) {
615615
Some(alloc) => alloc,

compiler/rustc_monomorphize/src/collector.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ fn collect_items_rec<'tcx>(
384384

385385
if let Ok(alloc) = tcx.eval_static_initializer(def_id) {
386386
for &id in alloc.inner().provenance().ptrs().values() {
387-
collect_miri(tcx, id, &mut used_items);
387+
collect_alloc(tcx, id, &mut used_items);
388388
}
389389
}
390390

@@ -1331,8 +1331,8 @@ fn create_mono_items_for_default_impls<'tcx>(
13311331
}
13321332
}
13331333

1334-
/// Scans the miri alloc in order to find function calls, closures, and drop-glue.
1335-
fn collect_miri<'tcx>(tcx: TyCtxt<'tcx>, alloc_id: AllocId, output: &mut MonoItems<'tcx>) {
1334+
/// Scans the CTFE alloc in order to find function calls, closures, and drop-glue.
1335+
fn collect_alloc<'tcx>(tcx: TyCtxt<'tcx>, alloc_id: AllocId, output: &mut MonoItems<'tcx>) {
13361336
match tcx.global_alloc(alloc_id) {
13371337
GlobalAlloc::Static(def_id) => {
13381338
assert!(!tcx.is_thread_local_static(def_id));
@@ -1346,7 +1346,7 @@ fn collect_miri<'tcx>(tcx: TyCtxt<'tcx>, alloc_id: AllocId, output: &mut MonoIte
13461346
trace!("collecting {:?} with {:#?}", alloc_id, alloc);
13471347
for &inner in alloc.inner().provenance().ptrs().values() {
13481348
rustc_data_structures::stack::ensure_sufficient_stack(|| {
1349-
collect_miri(tcx, inner, output);
1349+
collect_alloc(tcx, inner, output);
13501350
});
13511351
}
13521352
}
@@ -1358,7 +1358,7 @@ fn collect_miri<'tcx>(tcx: TyCtxt<'tcx>, alloc_id: AllocId, output: &mut MonoIte
13581358
}
13591359
GlobalAlloc::VTable(ty, trait_ref) => {
13601360
let alloc_id = tcx.vtable_allocation((ty, trait_ref));
1361-
collect_miri(tcx, alloc_id, output)
1361+
collect_alloc(tcx, alloc_id, output)
13621362
}
13631363
}
13641364
}
@@ -1381,10 +1381,10 @@ fn collect_const_value<'tcx>(
13811381
output: &mut MonoItems<'tcx>,
13821382
) {
13831383
match value {
1384-
ConstValue::Scalar(Scalar::Ptr(ptr, _size)) => collect_miri(tcx, ptr.provenance, output),
1384+
ConstValue::Scalar(Scalar::Ptr(ptr, _size)) => collect_alloc(tcx, ptr.provenance, output),
13851385
ConstValue::Slice { data: alloc, start: _, end: _ } | ConstValue::ByRef { alloc, .. } => {
13861386
for &id in alloc.inner().provenance().ptrs().values() {
1387-
collect_miri(tcx, id, output);
1387+
collect_alloc(tcx, id, output);
13881388
}
13891389
}
13901390
_ => {}

compiler/rustc_symbol_mangling/src/v0.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -628,7 +628,8 @@ impl<'tcx> Printer<'tcx> for &mut SymbolMangler<'tcx> {
628628
valtree, ty
629629
)
630630
});
631-
let s = std::str::from_utf8(slice).expect("non utf8 str from miri");
631+
let s = std::str::from_utf8(slice)
632+
.expect("non utf8 str from MIR interpreter");
632633

633634
self.push("e");
634635

triagebot.toml

-1
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,6 @@ compiler-team = [
502502
]
503503
compiler-team-contributors = [
504504
"@compiler-errors",
505-
"@eholk",
506505
"@jackh726",
507506
"@TaKO8Ki",
508507
"@WaffleLapkin",

0 commit comments

Comments
 (0)