| 204 | } |
| 205 | |
| 206 | pub struct MoveResolver { |
| 207 | source_half_moves: HashMap<HalfMoveKey, Allocation, FxBuildHasher>, |
| 208 | dest_half_moves: Vec<(MovePosition, Value, Allocation)>, |
| 209 | tied_moves: Vec<TiedMove>, |
| 210 | tied_operands: Vec<TiedOperands>, |
| 211 | edits: Vec<(Inst, Option<Edit>)>, |
| 212 | blockparam_allocs: Vec<(Block, Value, Allocation)>, |
| 213 | parallel_move_resolver: ParallelMoves, |
| 214 | } |
| 215 | |
| 216 | impl MoveResolver { |
| 217 | pub fn new() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected