(step *Step, instr *ssa.Register)
| 6 | ) |
| 7 | |
| 8 | func (f *Function) executeRegister(step *Step, instr *ssa.Register) { |
| 9 | destination := step.Register |
| 10 | |
| 11 | if destination == -1 { |
| 12 | return |
| 13 | } |
| 14 | |
| 15 | if destination == instr.Register { |
| 16 | return |
| 17 | } |
| 18 | |
| 19 | isSpilled := f.isSpilled(destination) |
| 20 |