Struct cranelift_codegen::cursor::FuncCursor
source · pub struct FuncCursor<'f> {
pub func: &'f mut Function,
/* private fields */
}
Expand description
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.
Implementations§
source§impl<'f> FuncCursor<'f>
impl<'f> FuncCursor<'f>
sourcepub fn use_srcloc(&mut self, inst: Inst)
pub fn use_srcloc(&mut self, inst: Inst)
Use the source location of inst
for future instructions.
sourcepub fn ins(&mut self) -> InsertBuilder<'_, &mut FuncCursor<'f>>
pub fn ins(&mut self) -> InsertBuilder<'_, &mut FuncCursor<'f>>
Create an instruction builder that inserts an instruction at the current position.
Trait Implementations§
source§impl<'f> Cursor for FuncCursor<'f>
impl<'f> Cursor for FuncCursor<'f>
source§fn position(&self) -> CursorPosition
fn position(&self) -> CursorPosition
Get the current cursor position.
source§fn set_position(&mut self, pos: CursorPosition)
fn set_position(&mut self, pos: CursorPosition)
Set the current position.
source§fn srcloc(&self) -> SourceLoc
fn srcloc(&self) -> SourceLoc
Get the source location that should be assigned to new instructions.
source§fn set_srcloc(&mut self, srcloc: SourceLoc)
fn set_srcloc(&mut self, srcloc: SourceLoc)
Set the source location that should be assigned to new instructions.
source§fn layout(&self) -> &Layout
fn layout(&self) -> &Layout
Borrow a reference to the function layout that this cursor is navigating.
source§fn layout_mut(&mut self) -> &mut Layout
fn layout_mut(&mut self) -> &mut Layout
Borrow a mutable reference to the function layout that this cursor is navigating.
source§fn with_srcloc(self, srcloc: SourceLoc) -> Selfwhere
Self: Sized,
fn with_srcloc(self, srcloc: SourceLoc) -> Selfwhere Self: Sized,
Exchange this cursor for one with a set source location. Read more
source§fn at_position(self, pos: CursorPosition) -> Selfwhere
Self: Sized,
fn at_position(self, pos: CursorPosition) -> Selfwhere Self: Sized,
Rebuild this cursor positioned at
pos
.source§fn at_inst(self, inst: Inst) -> Selfwhere
Self: Sized,
fn at_inst(self, inst: Inst) -> Selfwhere Self: Sized,
Rebuild this cursor positioned at
inst
. Read moresource§fn at_first_insertion_point(self, block: Block) -> Selfwhere
Self: Sized,
fn at_first_insertion_point(self, block: Block) -> Selfwhere Self: Sized,
Rebuild this cursor positioned at the first insertion point for
block
.
This differs from at_first_inst
in that it doesn’t assume that any
instructions have been inserted into block
yet. Read moresource§fn at_first_inst(self, block: Block) -> Selfwhere
Self: Sized,
fn at_first_inst(self, block: Block) -> Selfwhere Self: Sized,
Rebuild this cursor positioned at the first instruction in
block
. Read moresource§fn at_last_inst(self, block: Block) -> Selfwhere
Self: Sized,
fn at_last_inst(self, block: Block) -> Selfwhere Self: Sized,
Rebuild this cursor positioned at the last instruction in
block
. Read moresource§fn after_inst(self, inst: Inst) -> Selfwhere
Self: Sized,
fn after_inst(self, inst: Inst) -> Selfwhere Self: Sized,
Rebuild this cursor positioned after
inst
. Read moresource§fn at_top(self, block: Block) -> Selfwhere
Self: Sized,
fn at_top(self, block: Block) -> Selfwhere Self: Sized,
Rebuild this cursor positioned at the top of
block
. Read moresource§fn at_bottom(self, block: Block) -> Selfwhere
Self: Sized,
fn at_bottom(self, block: Block) -> Selfwhere Self: Sized,
Rebuild this cursor positioned at the bottom of
block
. Read moresource§fn current_block(&self) -> Option<Block>
fn current_block(&self) -> Option<Block>
Get the block corresponding to the current position.
source§fn current_inst(&self) -> Option<Inst>
fn current_inst(&self) -> Option<Inst>
Get the instruction corresponding to the current position, if any.
source§fn goto_after_inst(&mut self, inst: Inst)
fn goto_after_inst(&mut self, inst: Inst)
Go to the position after a specific instruction, which must be inserted
in the layout. New instructions will be inserted after
inst
.source§fn goto_inst(&mut self, inst: Inst)
fn goto_inst(&mut self, inst: Inst)
Go to a specific instruction which must be inserted in the layout.
New instructions will be inserted before
inst
.source§fn goto_first_insertion_point(&mut self, block: Block)
fn goto_first_insertion_point(&mut self, block: Block)
Go to the position for inserting instructions at the beginning of
block
,
which unlike goto_first_inst
doesn’t assume that any instructions have
been inserted into block
yet.source§fn goto_first_inst(&mut self, block: Block)
fn goto_first_inst(&mut self, block: Block)
Go to the first instruction in
block
.source§fn goto_last_inst(&mut self, block: Block)
fn goto_last_inst(&mut self, block: Block)
Go to the last instruction in
block
.source§fn goto_top(&mut self, block: Block)
fn goto_top(&mut self, block: Block)
Go to the top of
block
which must be inserted into the layout.
At this position, instructions cannot be inserted, but next_inst()
will move to the first
instruction in block
.source§fn goto_bottom(&mut self, block: Block)
fn goto_bottom(&mut self, block: Block)
Go to the bottom of
block
which must be inserted into the layout.
At this position, inserted instructions will be appended to block
.source§fn next_block(&mut self) -> Option<Block>
fn next_block(&mut self) -> Option<Block>
Go to the top of the next block in layout order and return it. Read more
source§fn prev_block(&mut self) -> Option<Block>
fn prev_block(&mut self) -> Option<Block>
Go to the bottom of the previous block in layout order and return it. Read more
source§fn next_inst(&mut self) -> Option<Inst>
fn next_inst(&mut self) -> Option<Inst>
Move to the next instruction in the same block and return it. Read more
source§fn prev_inst(&mut self) -> Option<Inst>
fn prev_inst(&mut self) -> Option<Inst>
Move to the previous instruction in the same block and return it. Read more
source§fn insert_inst(&mut self, inst: Inst)
fn insert_inst(&mut self, inst: Inst)
Insert an instruction at the current position. Read more
source§fn remove_inst(&mut self) -> Inst
fn remove_inst(&mut self) -> Inst
Remove the instruction under the cursor. Read more
source§fn remove_inst_and_step_back(&mut self) -> Inst
fn remove_inst_and_step_back(&mut self) -> Inst
Remove the instruction under the cursor. Read more
source§fn insert_block(&mut self, new_block: Block)
fn insert_block(&mut self, new_block: Block)
Insert a block at the current position and switch to it. Read more
source§impl<'c, 'f> InstInserterBase<'c> for &'c mut FuncCursor<'f>
impl<'c, 'f> InstInserterBase<'c> for &'c mut FuncCursor<'f>
source§fn data_flow_graph(&self) -> &DataFlowGraph
fn data_flow_graph(&self) -> &DataFlowGraph
Get an immutable reference to the data flow graph.
source§fn data_flow_graph_mut(&mut self) -> &mut DataFlowGraph
fn data_flow_graph_mut(&mut self) -> &mut DataFlowGraph
Get a mutable reference to the data flow graph.
source§fn insert_built_inst(self, inst: Inst) -> &'c mut DataFlowGraph
fn insert_built_inst(self, inst: Inst) -> &'c mut DataFlowGraph
Insert a new instruction which belongs to the DFG.
Auto Trait Implementations§
impl<'f> RefUnwindSafe for FuncCursor<'f>
impl<'f> Send for FuncCursor<'f>
impl<'f> Sync for FuncCursor<'f>
impl<'f> Unpin for FuncCursor<'f>
impl<'f> !UnwindSafe for FuncCursor<'f>
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