[−][src]Struct cranelift_codegen::cursor::FuncCursor
Function cursor.
A FuncCursor
holds a mutable reference to a whole ir::Function
while keeping a position
too. The function can be re-borrowed by accessing the public cur.func
member.
This cursor is for use before legalization. The inserted instructions are not given an encoding.
Fields
func: &'f mut Function
The referenced function.
Methods
impl<'f> FuncCursor<'f>
[src]
pub fn new(func: &'f mut Function) -> Self
[src]
Create a new FuncCursor
pointing nowhere.
pub fn use_srcloc(&mut self, inst: Inst)
[src]
Use the source location of inst
for future instructions.
pub fn ins(&mut self) -> InsertBuilder<&mut FuncCursor<'f>>
[src]
Create an instruction builder that inserts an instruction at the current position.
Trait Implementations
impl<'f> Cursor for FuncCursor<'f>
[src]
fn position(&self) -> CursorPosition
[src]
fn set_position(&mut self, pos: CursorPosition)
[src]
fn srcloc(&self) -> SourceLoc
[src]
fn set_srcloc(&mut self, srcloc: SourceLoc)
[src]
fn layout(&self) -> &Layout
[src]
fn layout_mut(&mut self) -> &mut Layout
[src]
fn with_srcloc(self, srcloc: SourceLoc) -> Self where
Self: Sized,
[src]
Self: Sized,
fn at_position(self, pos: CursorPosition) -> Self where
Self: Sized,
[src]
Self: Sized,
fn at_inst(self, inst: Inst) -> Self where
Self: Sized,
[src]
Self: Sized,
fn at_first_insertion_point(self, ebb: Ebb) -> Self where
Self: Sized,
[src]
Self: Sized,
fn at_first_inst(self, ebb: Ebb) -> Self where
Self: Sized,
[src]
Self: Sized,
fn at_last_inst(self, ebb: Ebb) -> Self where
Self: Sized,
[src]
Self: Sized,
fn after_inst(self, inst: Inst) -> Self where
Self: Sized,
[src]
Self: Sized,
fn at_top(self, ebb: Ebb) -> Self where
Self: Sized,
[src]
Self: Sized,
fn at_bottom(self, ebb: Ebb) -> Self where
Self: Sized,
[src]
Self: Sized,
fn current_ebb(&self) -> Option<Ebb>
[src]
fn current_inst(&self) -> Option<Inst>
[src]
fn goto_after_inst(&mut self, inst: Inst)
[src]
fn goto_inst(&mut self, inst: Inst)
[src]
fn goto_first_insertion_point(&mut self, ebb: Ebb)
[src]
fn goto_first_inst(&mut self, ebb: Ebb)
[src]
fn goto_last_inst(&mut self, ebb: Ebb)
[src]
fn goto_top(&mut self, ebb: Ebb)
[src]
fn goto_bottom(&mut self, ebb: Ebb)
[src]
fn next_ebb(&mut self) -> Option<Ebb>
[src]
fn prev_ebb(&mut self) -> Option<Ebb>
[src]
fn next_inst(&mut self) -> Option<Inst>
[src]
fn prev_inst(&mut self) -> Option<Inst>
[src]
fn insert_inst(&mut self, inst: Inst)
[src]
fn remove_inst(&mut self) -> Inst
[src]
fn remove_inst_and_step_back(&mut self) -> Inst
[src]
fn insert_ebb(&mut self, new_ebb: Ebb)
[src]
impl<'c, 'f> InstInserterBase<'c> for &'c mut FuncCursor<'f>
[src]
fn data_flow_graph(&self) -> &DataFlowGraph
[src]
fn data_flow_graph_mut(&mut self) -> &mut DataFlowGraph
[src]
fn insert_built_inst(self, inst: Inst, _: Type) -> &'c mut DataFlowGraph
[src]
Auto Trait Implementations
impl<'f> Send for FuncCursor<'f>
impl<'f> Sync for FuncCursor<'f>
impl<'f> Unpin for FuncCursor<'f>
impl<'f> RefUnwindSafe for FuncCursor<'f>
impl<'f> !UnwindSafe for FuncCursor<'f>
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,