提交 34dfbc3f 编写于 作者: D Dylan MacKenzie

Add module docs and restrict visibility

上级 59c74603
...@@ -164,7 +164,7 @@ pub struct Body<'tcx> { ...@@ -164,7 +164,7 @@ pub struct Body<'tcx> {
/// FIXME(oli-obk): rewrite the promoted during promotion to eliminate the cell components. /// FIXME(oli-obk): rewrite the promoted during promotion to eliminate the cell components.
pub ignore_interior_mut_in_const_validation: bool, pub ignore_interior_mut_in_const_validation: bool,
pub predecessor_cache: PredecessorCache, predecessor_cache: PredecessorCache,
} }
impl<'tcx> Body<'tcx> { impl<'tcx> Body<'tcx> {
......
//! Lazily compute the reverse control-flow graph for the MIR.
use rustc_data_structures::stable_hasher::{HashStable, StableHasher}; use rustc_data_structures::stable_hasher::{HashStable, StableHasher};
use rustc_data_structures::sync::{Lock, Lrc}; use rustc_data_structures::sync::{Lock, Lrc};
use rustc_index::vec::IndexVec; use rustc_index::vec::IndexVec;
...@@ -10,13 +12,13 @@ ...@@ -10,13 +12,13 @@
pub type Predecessors = IndexVec<BasicBlock, SmallVec<[BasicBlock; 4]>>; pub type Predecessors = IndexVec<BasicBlock, SmallVec<[BasicBlock; 4]>>;
#[derive(Clone, Debug)] #[derive(Clone, Debug)]
pub struct PredecessorCache { pub(super) struct PredecessorCache {
cache: Lock<Option<Lrc<Predecessors>>>, cache: Lock<Option<Lrc<Predecessors>>>,
} }
impl PredecessorCache { impl PredecessorCache {
#[inline] #[inline]
pub fn new() -> Self { pub(super) fn new() -> Self {
PredecessorCache { cache: Lock::new(None) } PredecessorCache { cache: Lock::new(None) }
} }
...@@ -27,7 +29,7 @@ pub fn new() -> Self { ...@@ -27,7 +29,7 @@ pub fn new() -> Self {
/// callers of `invalidate` have a unique reference to the MIR and thus to the predecessor /// callers of `invalidate` have a unique reference to the MIR and thus to the predecessor
/// cache. This means we don't actually need to take a lock when `invalidate` is called. /// cache. This means we don't actually need to take a lock when `invalidate` is called.
#[inline] #[inline]
pub fn invalidate(&mut self) { pub(super) fn invalidate(&mut self) {
*self.cache.get_mut() = None; *self.cache.get_mut() = None;
} }
...@@ -37,7 +39,7 @@ pub fn invalidate(&mut self) { ...@@ -37,7 +39,7 @@ pub fn invalidate(&mut self) {
/// `cache` is only held inside this function. As long as no other locks are taken while /// `cache` is only held inside this function. As long as no other locks are taken while
/// computing the predecessor graph, deadlock is impossible. /// computing the predecessor graph, deadlock is impossible.
#[inline] #[inline]
pub fn compute( pub(super) fn compute(
&self, &self,
basic_blocks: &IndexVec<BasicBlock, BasicBlockData<'_>>, basic_blocks: &IndexVec<BasicBlock, BasicBlockData<'_>>,
) -> Lrc<Predecessors> { ) -> Lrc<Predecessors> {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册