(step *Step, instr *ssa.Parameter)
| 6 | ) |
| 7 | |
| 8 | func (f *Function) executeParameter(step *Step, instr *ssa.Parameter) { |
| 9 | destination := step.Register |
| 10 | |
| 11 | if destination == -1 { |
| 12 | return |
| 13 | } |
| 14 | |
| 15 | source := f.CPU.Call.In[instr.Index] |
| 16 | |
| 17 | if destination == source { |
| 18 | return |
| 19 | } |
| 20 | |
| 21 | isSpilled := f.isSpilled(destination) |
| 22 |