Collect a list of values `V` by their [value references](cranelift_codegen::ir::Value).
(&self, names: &[Value])
| 38 | |
| 39 | /// Collect a list of values `V` by their [value references](cranelift_codegen::ir::Value). |
| 40 | fn collect_values(&self, names: &[Value]) -> SmallVec<[DataValue; 1]> { |
| 41 | let frame = self.current_frame(); |
| 42 | names.into_iter().map(|n| frame.get(*n).clone()).collect() |
| 43 | } |
| 44 | |
| 45 | /// Computes the stack address for this stack slot, including an offset. |
| 46 | fn stack_address( |
no test coverage detected