Implemented calls using memory addresses

This commit is contained in:
2025-03-03 00:53:41 +01:00
parent ea233d789d
commit 08660ad845
8 changed files with 114 additions and 10 deletions

View File

@ -75,10 +75,7 @@ func (f *Function) CompileCall(root *expression.Expression) ([]types.Type, error
f.Register(asm.CALL, value.Register)
case *eval.Memory:
tmp := f.NewRegister()
f.MemoryRegister(asm.LOAD, value.Memory, tmp)
f.Register(asm.CALL, tmp)
f.FreeRegister(tmp)
f.Memory(asm.CALL, value.Memory)
}
return nil, nil