Struct rustc::mir::repr::BasicBlockData
[−]
[src]
pub struct BasicBlockData<'tcx> { pub statements: Vec<Statement<'tcx>>, pub terminator: Option<Terminator<'tcx>>, pub is_cleanup: bool, }
rustc_private
)Fields
statements: Vec<Statement<'tcx>>
rustc_private
)List of statements in this block.
terminator: Option<Terminator<'tcx>>
rustc_private
)Terminator for this block.
NB. This should generally ONLY be None
during construction.
Therefore, you should generally access it via the
terminator()
or terminator_mut()
methods. The only
exception is that certain passes, such as simplify_cfg
, swap
out the terminator temporarily with None
while they continue
to recurse over the set of basic blocks.
is_cleanup: bool
rustc_private
)If true, this block lies on an unwind path. This is used during trans where distinct kinds of basic blocks may be generated (particularly for MSVC cleanup). Unwind blocks must only branch to other unwind blocks.
Methods
impl<'tcx> BasicBlockData<'tcx>
[src]
fn new(terminator: Option<Terminator<'tcx>>) -> BasicBlockData<'tcx>
fn terminator(&self) -> &Terminator<'tcx>
rustc_private
)Accessor for terminator.
Terminator may not be None after construction of the basic block is complete. This accessor provides a convenience way to reach the terminator.
fn terminator_mut(&mut self) -> &mut Terminator<'tcx>
Trait Implementations
Derived Implementations
impl<'tcx> Decodable for BasicBlockData<'tcx>
[src]
fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<BasicBlockData<'tcx>, __D::Error>
impl<'tcx> Encodable for BasicBlockData<'tcx>
[src]
impl<'tcx> Debug for BasicBlockData<'tcx>
[src]
impl<'tcx> Clone for BasicBlockData<'tcx>
[src]
fn clone(&self) -> BasicBlockData<'tcx>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more