Moved external calls to a separate function

This commit is contained in:
2025-02-12 11:25:20 +01:00
parent 3b66dae1d4
commit 49afa5d800
2 changed files with 24 additions and 13 deletions

23
src/core/CallExtern.go Normal file
View File

@ -0,0 +1,23 @@
package core
import (
"fmt"
"git.akyoto.dev/cli/q/src/expression"
"git.akyoto.dev/cli/q/src/types"
"git.akyoto.dev/cli/q/src/x86"
)
// CallExtern calls an external function.
func (f *Function) CallExtern(fn *Function, parameters []*expression.Expression) ([]types.Type, error) {
f.DLLs = f.DLLs.Append(fn.Package, fn.Name)
registers := x86.WindowsInputRegisters[:len(parameters)]
err := f.BeforeCall(fn, parameters, registers)
if err != nil {
return nil, err
}
f.DLLCall(fmt.Sprintf("%s.%s", fn.Package, fn.Name))
return fn.OutputTypes, nil
}