Skip to content

Commit 2b32cb9

Browse files
committedMay 2, 2017
retool MIR passes completely
The new setup is as follows. There is a pipeline of MIR passes that each run **per def-id** to optimize a particular function. You are intended to request MIR at whatever stage you need it. At the moment, there is only one stage you can request: - `optimized_mir(def_id)` This yields the final product. Internally, it pulls the MIR for the given def-id through a series of steps. Right now, these are still using an "interned ref-cell" but they are intended to "steal" from one another: - `mir_build` -- performs the initial construction for local MIR - `mir_pass_set` -- performs a suite of optimizations and transformations - `mir_pass` -- an individual optimization within a suite So, to construct the optimized MIR, we invoke: mir_pass_set((MIR_OPTIMIZED, def_id)) which will build up the final MIR.
1 parent f23a7bc commit 2b32cb9

File tree

13 files changed

+345
-185
lines changed

13 files changed

+345
-185
lines changed
 

‎src/librustc/mir/transform.rs

+65-75
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
// except according to those terms.
1010

1111
use hir;
12-
use hir::def_id::{DefId, LOCAL_CRATE};
12+
use hir::def_id::DefId;
1313
use hir::map::DefPathData;
1414
use mir::{Mir, Promoted};
1515
use ty::TyCtxt;
16+
use std::cell::{Ref, RefCell};
1617
use std::rc::Rc;
1718
use syntax::ast::NodeId;
18-
use util::common::time;
1919

2020
use std::borrow::Cow;
2121

@@ -90,12 +90,37 @@ pub fn default_name<T: ?Sized>() -> Cow<'static, str> {
9090
}
9191
}
9292

93+
/// Gives you access to various bits of state during your MIR pass.
94+
pub trait MirCtxt<'a, 'tcx: 'a> {
95+
fn tcx(&self) -> TyCtxt<'a, 'tcx, 'tcx>;
96+
fn def_id(&self) -> DefId;
97+
fn pass_set(&self) -> MirPassSet;
98+
fn pass_num(&self) -> MirPassIndex;
99+
fn source(&self) -> MirSource;
100+
fn read_previous_mir(&self) -> Ref<'tcx, Mir<'tcx>>;
101+
fn steal_previous_mir(&self) -> &'tcx RefCell<Mir<'tcx>>;
102+
}
103+
104+
#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
105+
pub struct MirPassSet(pub usize);
106+
107+
#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
108+
pub struct MirPassIndex(pub usize);
109+
110+
/// A pass hook is invoked both before and after each pass executes.
111+
/// This is primarily used to dump MIR for debugging.
112+
///
113+
/// You can tell whether this is before or after by inspecting the
114+
/// `mir` parameter -- before the pass executes, it will be `None` (in
115+
/// which case you can inspect the MIR from previous pass by executing
116+
/// `mir_cx.read_previous_mir()`); after the pass executes, it will be
117+
/// `Some()` with the result of the pass (in which case the output
118+
/// from the previous pass is most likely stolen, so you would not
119+
/// want to try and access it).
93120
pub trait PassHook {
94-
fn on_mir_pass<'a, 'tcx>(&self,
95-
tcx: TyCtxt<'a, 'tcx, 'tcx>,
96-
pass_name: &str,
97-
pass_num: usize,
98-
is_after: bool);
121+
fn on_mir_pass<'a, 'tcx: 'a>(&self,
122+
mir_cx: &MirCtxt<'a, 'tcx>,
123+
mir: Option<&Mir<'tcx>>);
99124
}
100125

101126
/// A streamlined trait that you can implement to create a pass; the
@@ -107,21 +132,7 @@ pub trait DefIdPass {
107132
default_name::<Self>()
108133
}
109134

110-
fn run_pass<'a, 'tcx>(&self,
111-
tcx: TyCtxt<'a, 'tcx, 'tcx>,
112-
def_id: DefId);
113-
}
114-
115-
impl<T: DefIdPass> Pass for T {
116-
fn name<'a>(&'a self) -> Cow<'a, str> {
117-
DefIdPass::name(self)
118-
}
119-
120-
fn run_pass<'a, 'tcx>(&self, tcx: TyCtxt<'a, 'tcx, 'tcx>) {
121-
for &def_id in tcx.mir_keys(LOCAL_CRATE).iter() {
122-
DefIdPass::run_pass(self, tcx, def_id);
123-
}
124-
}
135+
fn run_pass<'a, 'tcx: 'a>(&self, mir_cx: &MirCtxt<'a, 'tcx>) -> &'tcx RefCell<Mir<'tcx>>;
125136
}
126137

127138
/// A streamlined trait that you can implement to create a pass; the
@@ -138,42 +149,32 @@ pub trait MirPass: DepGraphSafe {
138149
mir: &mut Mir<'tcx>);
139150
}
140151

141-
fn for_each_assoc_mir<'a, 'tcx, OP>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
142-
def_id: DefId,
143-
mut op: OP)
144-
where OP: FnMut(MirSource, &mut Mir<'tcx>)
145-
{
146-
let id = tcx.hir.as_local_node_id(def_id).expect("mir source requires local def-id");
147-
let source = MirSource::from_node(tcx, id);
148-
let mir = &mut tcx.mir(def_id).borrow_mut();
149-
op(source, mir);
150-
151-
for (promoted_index, promoted_mir) in mir.promoted.iter_enumerated_mut() {
152-
let promoted_source = MirSource::Promoted(id, promoted_index);
153-
op(promoted_source, promoted_mir);
154-
}
155-
}
156-
157152
impl<T: MirPass> DefIdPass for T {
158153
fn name<'a>(&'a self) -> Cow<'a, str> {
159154
MirPass::name(self)
160155
}
161156

162-
fn run_pass<'a, 'tcx>(&self, tcx: TyCtxt<'a, 'tcx, 'tcx>, def_id: DefId) {
163-
for_each_assoc_mir(tcx, def_id, |src, mir| MirPass::run_pass(self, tcx, src, mir));
157+
fn run_pass<'a, 'tcx: 'a>(&self, mir_cx: &MirCtxt<'a, 'tcx>) -> &'tcx RefCell<Mir<'tcx>> {
158+
let tcx = mir_cx.tcx();
159+
let source = mir_cx.source();
160+
let mir = mir_cx.steal_previous_mir();
161+
MirPass::run_pass(self, tcx, source, &mut mir.borrow_mut());
162+
163+
let item_id = source.item_id();
164+
for (promoted_index, promoted_mir) in mir.borrow_mut().promoted.iter_enumerated_mut() {
165+
let promoted_source = MirSource::Promoted(item_id, promoted_index);
166+
MirPass::run_pass(self, tcx, promoted_source, promoted_mir);
167+
}
168+
169+
mir
164170
}
165171
}
166172

167173
/// A manager for MIR passes.
168174
#[derive(Clone)]
169175
pub struct Passes {
170176
pass_hooks: Vec<Rc<PassHook>>,
171-
sets: Vec<PassSet>,
172-
}
173-
174-
#[derive(Clone)]
175-
struct PassSet {
176-
passes: Vec<Rc<DefIdPass>>,
177+
sets: Vec<Vec<Rc<DefIdPass>>>,
177178
}
178179

179180
/// The number of "pass sets" that we have:
@@ -184,52 +185,41 @@ struct PassSet {
184185
pub const MIR_PASS_SETS: usize = 3;
185186

186187
/// Run the passes we need to do constant qualification and evaluation.
187-
pub const MIR_CONST: usize = 0;
188+
pub const MIR_CONST: MirPassSet = MirPassSet(0);
188189

189190
/// Run the passes we need to consider the MIR validated and ready for borrowck etc.
190-
pub const MIR_VALIDATED: usize = 1;
191+
pub const MIR_VALIDATED: MirPassSet = MirPassSet(1);
191192

192193
/// Run the passes we need to consider the MIR *optimized*.
193-
pub const MIR_OPTIMIZED: usize = 2;
194+
pub const MIR_OPTIMIZED: MirPassSet = MirPassSet(2);
194195

195196
impl<'a, 'tcx> Passes {
196197
pub fn new() -> Passes {
197198
Passes {
198199
pass_hooks: Vec::new(),
199-
sets: (0..MIR_PASS_SETS).map(|_| PassSet { passes: Vec::new() }).collect(),
200-
}
201-
}
202-
203-
pub fn run_passes(&self, tcx: TyCtxt<'a, 'tcx, 'tcx>, set_index: usize) {
204-
let set = &self.sets[set_index];
205-
206-
let start_num: usize = self.sets[..set_index].iter().map(|s| s.passes.len()).sum();
207-
208-
// NB: passes are numbered from 1, since "construction" is zero.
209-
for (pass, pass_num) in set.passes.iter().zip(start_num + 1..) {
210-
for hook in &self.pass_hooks {
211-
hook.on_mir_pass(tcx, &pass.name(), pass_num, false);
212-
}
213-
214-
time(tcx.sess.time_passes(), &*pass.name(), || {
215-
for &def_id in tcx.mir_keys(LOCAL_CRATE).iter() {
216-
pass.run_pass(tcx, def_id);
217-
}
218-
});
219-
220-
for hook in &self.pass_hooks {
221-
hook.on_mir_pass(tcx, &pass.name(), pass_num, true);
222-
}
200+
sets: (0..MIR_PASS_SETS).map(|_| Vec::new()).collect(),
223201
}
224202
}
225203

226204
/// Pushes a built-in pass.
227-
pub fn push_pass<T: DefIdPass + 'static>(&mut self, set: usize, pass: T) {
228-
self.sets[set].passes.push(Rc::new(pass));
205+
pub fn push_pass<T: DefIdPass + 'static>(&mut self, set: MirPassSet, pass: T) {
206+
self.sets[set.0].push(Rc::new(pass));
229207
}
230208

231209
/// Pushes a pass hook.
232210
pub fn push_hook<T: PassHook + 'static>(&mut self, hook: T) {
233211
self.pass_hooks.push(Rc::new(hook));
234212
}
213+
214+
pub fn len_passes(&self, set: MirPassSet) -> usize {
215+
self.sets[set.0].len()
216+
}
217+
218+
pub fn pass(&self, set: MirPassSet, pass: MirPassIndex) -> &DefIdPass {
219+
&*self.sets[set.0][pass.0]
220+
}
221+
222+
pub fn hooks(&self) -> &[Rc<PassHook>] {
223+
&self.pass_hooks
224+
}
235225
}

‎src/librustc/ty/maps.rs

+59-9
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ use middle::const_val;
1616
use middle::privacy::AccessLevels;
1717
use middle::region::RegionMaps;
1818
use mir;
19+
use mir::transform::{MirPassSet, MirPassIndex};
1920
use session::CompileResult;
2021
use ty::{self, CrateInherentImpls, Ty, TyCtxt};
2122
use ty::item_path;
@@ -101,6 +102,24 @@ impl<'tcx> Key for (DefId, &'tcx Substs<'tcx>) {
101102
}
102103
}
103104

105+
impl Key for (MirPassSet, DefId) {
106+
fn map_crate(&self) -> CrateNum {
107+
self.1.map_crate()
108+
}
109+
fn default_span(&self, tcx: TyCtxt) -> Span {
110+
self.1.default_span(tcx)
111+
}
112+
}
113+
114+
impl Key for (MirPassSet, MirPassIndex, DefId) {
115+
fn map_crate(&self) -> CrateNum {
116+
self.2.map_crate()
117+
}
118+
fn default_span(&self, tcx: TyCtxt) -> Span {
119+
self.2.default_span(tcx)
120+
}
121+
}
122+
104123
trait Value<'tcx>: Sized {
105124
fn from_cycle_error<'a>(tcx: TyCtxt<'a, 'tcx, 'tcx>) -> Self;
106125
}
@@ -318,6 +337,18 @@ impl<'tcx> QueryDescription for queries::is_item_mir_available<'tcx> {
318337
}
319338
}
320339

340+
impl<'tcx> QueryDescription for queries::mir_pass_set<'tcx> {
341+
fn describe(_: TyCtxt, (pass_set, _): (MirPassSet, DefId)) -> String {
342+
format!("MIR passes #{}.*", pass_set.0)
343+
}
344+
}
345+
346+
impl<'tcx> QueryDescription for queries::mir_pass<'tcx> {
347+
fn describe(_: TyCtxt, (pass_set, pass_num, _): (MirPassSet, MirPassIndex, DefId)) -> String {
348+
format!("MIR pass #{}.{}", pass_set.0, pass_num.0)
349+
}
350+
}
351+
321352
macro_rules! define_maps {
322353
(<$tcx:tt>
323354
$($(#[$attr:meta])*
@@ -542,15 +573,6 @@ define_maps! { <'tcx>
542573
/// Methods in these implementations don't need to be exported.
543574
[] inherent_impls: InherentImpls(DefId) -> Rc<Vec<DefId>>,
544575

545-
/// Maps from the def-id of a function/method or const/static
546-
/// to its MIR. Mutation is done at an item granularity to
547-
/// allow MIR optimization passes to function and still
548-
/// access cross-crate MIR (e.g. inlining or const eval).
549-
///
550-
/// Note that cross-crate MIR appears to be always borrowed
551-
/// (in the `RefCell` sense) to prevent accidental mutation.
552-
[] mir: Mir(DefId) -> &'tcx RefCell<mir::Mir<'tcx>>,
553-
554576
/// Set of all the def-ids in this crate that have MIR associated with
555577
/// them. This includes all the body owners, but also things like struct
556578
/// constructors.
@@ -561,6 +583,26 @@ define_maps! { <'tcx>
561583
/// the value isn't known except to the pass itself.
562584
[] mir_const_qualif: Mir(DefId) -> u8,
563585

586+
/// Performs the initial MIR construction. You almost certainly do not
587+
/// want to use this query, because its output is intended to be stolen
588+
/// immediately by the MIR passes below. Consider `optimized_mir` instead.
589+
[] mir_build: Mir(DefId) -> &'tcx RefCell<mir::Mir<'tcx>>,
590+
591+
/// Fetch the MIR for a given def-id after the given set of passes has ben
592+
/// applied to it. This is mostly an "intermediate" query. Normally, you would
593+
/// prefer to use `optimized_mir(def_id)`, which will fetch the MIR after all
594+
/// optimizations and so forth.
595+
[] mir_pass_set: mir_pass_set((MirPassSet, DefId)) -> &'tcx RefCell<mir::Mir<'tcx>>,
596+
597+
/// Fetch the MIR for a given def-id after a given pass has been executed. This is
598+
/// **only** intended to be used by the `mir_pass_set` provider -- if you are using it
599+
/// manually, you're doing it wrong.
600+
[] mir_pass: mir_pass((MirPassSet, MirPassIndex, DefId)) -> &'tcx RefCell<mir::Mir<'tcx>>,
601+
602+
/// MIR after our optimization passes have run. This is MIR that is ready
603+
/// for trans. This is also the only query that can fetch non-local MIR, at present.
604+
[] optimized_mir: Mir(DefId) -> &'tcx RefCell<mir::Mir<'tcx>>,
605+
564606
/// Records the type of each closure. The def ID is the ID of the
565607
/// expression defining the closure.
566608
[] closure_kind: ItemSignature(DefId) -> ty::ClosureKind,
@@ -658,3 +700,11 @@ fn const_eval_dep_node((def_id, _): (DefId, &Substs)) -> DepNode<DefId> {
658700
fn mir_keys(_: CrateNum) -> DepNode<DefId> {
659701
DepNode::MirKeys
660702
}
703+
704+
fn mir_pass_set((_pass_set, def_id): (MirPassSet, DefId)) -> DepNode<DefId> {
705+
DepNode::Mir(def_id)
706+
}
707+
708+
fn mir_pass((_pass_set, _pass_num, def_id): (MirPassSet, MirPassIndex, DefId)) -> DepNode<DefId> {
709+
DepNode::Mir(def_id)
710+
}

‎src/librustc/ty/mod.rs

+12-4
Original file line numberDiff line numberDiff line change
@@ -2323,18 +2323,26 @@ impl<'a, 'gcx, 'tcx> TyCtxt<'a, 'gcx, 'tcx> {
23232323
}
23242324
}
23252325

2326-
/// Given the did of an item, returns its MIR, borrowed immutably.
2326+
/// Given the did of an item, returns its (optimized) MIR, borrowed immutably.
23272327
pub fn item_mir(self, did: DefId) -> Ref<'gcx, Mir<'gcx>> {
2328-
self.mir(did).borrow()
2328+
self.optimized_mir(did).borrow()
23292329
}
23302330

23312331
/// Return the possibly-auto-generated MIR of a (DefId, Subst) pair.
23322332
pub fn instance_mir(self, instance: ty::InstanceDef<'gcx>)
23332333
-> Ref<'gcx, Mir<'gcx>>
23342334
{
23352335
match instance {
2336-
ty::InstanceDef::Item(did) if true => self.item_mir(did),
2337-
_ => self.mir_shims(instance).borrow(),
2336+
ty::InstanceDef::Item(did) => {
2337+
self.item_mir(did)
2338+
}
2339+
ty::InstanceDef::Intrinsic(..) |
2340+
ty::InstanceDef::FnPtrShim(..) |
2341+
ty::InstanceDef::Virtual(..) |
2342+
ty::InstanceDef::ClosureOnceShim { .. } |
2343+
ty::InstanceDef::DropGlue(..) => {
2344+
self.mir_shims(instance).borrow()
2345+
}
23382346
}
23392347
}
23402348

‎src/librustc_driver/driver.rs

-19
Original file line numberDiff line numberDiff line change
@@ -1005,11 +1005,6 @@ pub fn phase_3_run_analysis_passes<'tcx, F, R>(sess: &'tcx Session,
10051005
mir_stats::print_mir_stats(tcx, "PRE CLEANUP MIR STATS");
10061006
}
10071007

1008-
time(time_passes, "MIR cleanup and validation", || {
1009-
tcx.mir_passes.run_passes(tcx, MIR_CONST);
1010-
tcx.mir_passes.run_passes(tcx, MIR_VALIDATED);
1011-
});
1012-
10131008
time(time_passes,
10141009
"borrow checking",
10151010
|| borrowck::check_crate(tcx));
@@ -1058,20 +1053,6 @@ pub fn phase_4_translate_to_llvm<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
10581053
"resolving dependency formats",
10591054
|| dependency_format::calculate(&tcx.sess));
10601055

1061-
if tcx.sess.opts.debugging_opts.mir_stats {
1062-
mir_stats::print_mir_stats(tcx, "PRE OPTIMISATION MIR STATS");
1063-
}
1064-
1065-
// Run the passes that transform the MIR into a more suitable form for translation to LLVM
1066-
// code.
1067-
time(time_passes, "MIR optimisations", || {
1068-
tcx.mir_passes.run_passes(tcx, MIR_OPTIMIZED);
1069-
});
1070-
1071-
if tcx.sess.opts.debugging_opts.mir_stats {
1072-
mir_stats::print_mir_stats(tcx, "POST OPTIMISATION MIR STATS");
1073-
}
1074-
10751056
let translation =
10761057
time(time_passes,
10771058
"translation",

‎src/librustc_metadata/cstore_impl.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ provide! { <'tcx> tcx, def_id, cdata
9595
bug!("coerce_unsized_info: `{:?}` is missing its info", def_id);
9696
})
9797
}
98-
mir => {
98+
optimized_mir => {
9999
let mir = cdata.maybe_get_item_mir(tcx, def_id.index).unwrap_or_else(|| {
100100
bug!("get_item_mir: missing MIR for `{:?}`", def_id)
101101
});

‎src/librustc_mir/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,5 @@ use rustc::ty::maps::Providers;
5959
pub fn provide(providers: &mut Providers) {
6060
mir_map::provide(providers);
6161
shim::provide(providers);
62-
transform::qualify_consts::provide(providers);
62+
transform::provide(providers);
6363
}

0 commit comments

Comments
 (0)
Please sign in to comment.