MCPcopy Create free account
hub / github.com/Amanieu/regalloc3 / OutputIter

Class OutputIter

src/output.rs:332–336  ·  view source on GitHub ↗

Iterator over the [`OutputInst`] of a block after register allocation.

Source from the content-addressed store, hash-verified

330
331/// Iterator over the [`OutputInst`] of a block after register allocation.
332pub struct OutputIter<'a> {
333 insts: InstRange,
334 edits: &'a [(Inst, Option<Edit>)],
335 regalloc: &'a RegisterAllocator,
336}
337
338impl<'a> Iterator for OutputIter<'a> {
339 type Item = OutputInst<'a>;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected