Skip to content

Commit 6a573cb

Browse files
committed
Revert changes to internal method for now
- Move fix to a separate PR
1 parent 2564811 commit 6a573cb

File tree

3 files changed

+6
-31
lines changed

3 files changed

+6
-31
lines changed

compiler/rustc_smir/src/rustc_internal/mod.rs

+2-26
Original file line numberDiff line numberDiff line change
@@ -24,35 +24,11 @@ use std::ops::Index;
2424
mod internal;
2525
pub mod pretty;
2626

27-
/// Convert an internal Rust compiler item into its stable counterpart, if one exists.
28-
///
29-
/// # Warning
30-
///
31-
/// This function is unstable, and its behavior may change at any point.
32-
/// E.g.: Items that were previously supported, may no longer be supported, or its translation may
33-
/// change.
34-
///
35-
/// # Panics
36-
///
37-
/// This function will panic if StableMIR has not been properly initialized.
3827
pub fn stable<'tcx, S: Stable<'tcx>>(item: S) -> S::T {
3928
with_tables(|tables| item.stable(tables))
4029
}
4130

42-
/// Convert a stable item into its internal Rust compiler counterpart, if one exists.
43-
///
44-
/// # Warning
45-
///
46-
/// This function is unstable, and it's behavior may change at any point.
47-
/// Not every stable item can be converted to an internal one.
48-
/// Furthermore, items that were previously supported, may no longer be supported in newer versions.
49-
///
50-
/// # Panics
51-
///
52-
/// This function will panic if StableMIR has not been properly initialized.
53-
pub fn internal<'tcx, S: RustcInternal<'tcx>>(tcx: TyCtxt<'tcx>, item: S) -> S::T {
54-
// The tcx argument ensures that the item won't outlive the type context.
55-
let _ = tcx;
31+
pub fn internal<'tcx, S: RustcInternal<'tcx>>(item: S) -> S::T {
5632
with_tables(|tables| item.internal(tables))
5733
}
5834

@@ -293,7 +269,7 @@ macro_rules! optional {
293269
};
294270
}
295271

296-
/// Prefer using [run] and [run_with_tcx] instead.
272+
/// Prefer using [run!] and [run_with_tcx] instead.
297273
///
298274
/// This macro implements the instantiation of a StableMIR driver, and it will invoke
299275
/// the given callback after the compiler analyses.

compiler/rustc_smir/src/rustc_smir/context.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ use stable_mir::{Crate, CrateItem, CrateNum, DefId, Error, Filename, ItemKind, S
2929
use std::cell::RefCell;
3030
use std::iter;
3131

32-
use crate::rustc_internal::RustcInternal;
32+
use crate::rustc_internal::{internal, RustcInternal};
3333
use crate::rustc_smir::builder::BodyBuilder;
3434
use crate::rustc_smir::{alloc, new_item_kind, smir_crate, Stable, Tables};
3535

@@ -322,8 +322,7 @@ impl<'tcx> Context for TablesWrapper<'tcx> {
322322
}
323323

324324
fn const_literal(&self, cnst: &stable_mir::ty::Const) -> String {
325-
let mut tables = self.0.borrow_mut();
326-
cnst.internal(&mut *tables).to_string()
325+
internal(cnst).to_string()
327326
}
328327

329328
fn span_of_an_item(&self, def_id: stable_mir::DefId) -> Span {

tests/ui-fulldeps/stable-mir/smir_internal.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ use std::ops::ControlFlow;
2626

2727
const CRATE_NAME: &str = "input";
2828

29-
fn test_translation(tcx: TyCtxt) -> ControlFlow<()> {
29+
fn test_translation(_tcx: TyCtxt) -> ControlFlow<()> {
3030
let main_fn = stable_mir::entry_fn().unwrap();
3131
let body = main_fn.body();
3232
let orig_ty = body.locals()[0].ty;
33-
let rustc_ty = rustc_internal::internal(tcx, &orig_ty);
33+
let rustc_ty = rustc_internal::internal(&orig_ty);
3434
assert!(rustc_ty.is_unit());
3535
ControlFlow::Continue(())
3636
}

0 commit comments

Comments
 (0)