Separated compiler into its own package

This commit is contained in:
2024-07-18 10:08:38 +02:00
parent c19ad24428
commit 724794b4aa
14 changed files with 199 additions and 167 deletions

View File

@ -15,7 +15,7 @@ func (f *Function) CompileCall(root *expression.Expression) error {
isSyscall := funcName == "syscall"
if !isSyscall {
_, exists := f.functions[funcName]
_, exists := f.Functions[funcName]
if !exists {
return errors.New(&errors.UnknownFunction{Name: funcName}, f.File, root.Children[0].Token.Position)
@ -52,6 +52,10 @@ func (f *Function) CompileCall(root *expression.Expression) error {
}
for _, register := range registers {
if register == f.cpu.Output[0] && root.Parent != nil {
continue
}
f.Scope().Free(register)
}