pub struct BasicBlock<'a> { /* private fields */ }
Implementations§
Source§impl<'a> BasicBlock<'a>
impl<'a> BasicBlock<'a>
pub fn start_address(&self) -> Address
pub fn end_address(&self) -> Address
pub fn contains_address(&self, addr: Address) -> bool
pub fn len(&self) -> usize
pub fn is_empty(&self) -> bool
pub fn is_normal(&self) -> bool
pub fn is_indjump(&self) -> bool
pub fn is_ret(&self) -> bool
pub fn is_cndret(&self) -> bool
pub fn is_noret(&self) -> bool
pub fn is_enoret(&self) -> bool
pub fn is_extern(&self) -> bool
pub fn is_error(&self) -> bool
pub fn succs<'b>(&'b self) -> impl ExactSizeIterator<Item = BasicBlockId> + 'b
pub fn succs_with<'b>( &'b self, cfg: &'a FunctionCFG<'_>, ) -> impl ExactSizeIterator<Item = BasicBlock<'a>> + 'b
pub fn preds<'b>(&'b self) -> impl ExactSizeIterator<Item = BasicBlockId> + 'b
pub fn preds_with<'b>( &'b self, cfg: &'a FunctionCFG<'_>, ) -> impl ExactSizeIterator<Item = BasicBlock<'a>> + 'b
Auto Trait Implementations§
impl<'a> Freeze for BasicBlock<'a>
impl<'a> !RefUnwindSafe for BasicBlock<'a>
impl<'a> !Send for BasicBlock<'a>
impl<'a> !Sync for BasicBlock<'a>
impl<'a> Unpin for BasicBlock<'a>
impl<'a> !UnwindSafe for BasicBlock<'a>
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
Mutably borrows from an owned value. Read more