Struct paralegal_spdg::rustc::mir::BasicBlock
source · pub struct BasicBlock {
private: u32,
}
Expand description
A node in the MIR control-flow graph.
There are no branches (e.g., if
s, function calls, etc.) within a basic block, which makes
it easier to do data-flow analyses and optimizations. Instead, branches are represented
as an edge in a graph between basic blocks.
Basic blocks consist of a series of statements, ending with a
terminator. Basic blocks can have multiple predecessors and successors,
however there is a MIR pass (CriticalCallEdges
) that removes critical edges, which
are edges that go from a multi-successor node to a multi-predecessor node. This pass is
needed because some analyses require that there are no critical edges in the CFG.
Note that this type is just an index into Body.basic_blocks
;
the actual data that a basic block holds is in BasicBlockData
.
Read more about basic blocks in the rustc-dev-guide.
Fields§
§private: u32
Auto Trait Implementations§
impl RefUnwindSafe for BasicBlock
impl Send for BasicBlock
impl Sync for BasicBlock
impl Unpin for BasicBlock
impl UnwindSafe for BasicBlock
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.