(step *Step, instr *ssa.Syscall)
| 6 | ) |
| 7 | |
| 8 | func (f *Function) executeSyscall(step *Step, instr *ssa.Syscall) { |
| 9 | f.moveValuesToRegisters(instr.Arguments, f.CPU.Syscall.In, step.Live) |
| 10 | f.Assembler.Append(&asm.Syscall{}) |
| 11 | f.moveCallResult(step, f.CPU.Syscall.Out[0]) |
| 12 | } |