Improved code generation

This commit is contained in:
2024-07-04 12:32:56 +02:00
parent 4d88260333
commit 3340a5824f
9 changed files with 70 additions and 23 deletions

View File

@ -25,18 +25,21 @@ func (f *Function) CompileCall(root *expression.Expression) error {
return err
}
// Push
for _, register := range f.cpu.General {
if !f.cpu.IsFree(register) {
f.assembler.Register(asm.PUSH, register)
}
}
// Call
if isSyscall {
f.assembler.Syscall()
} else {
f.assembler.Call(funcName)
}
// Pop
for i := len(f.cpu.General) - 1; i >= 0; i-- {
register := f.cpu.General[i]