Moved register state to scopes

This commit is contained in:
2024-07-16 15:30:28 +02:00
parent d1ccd60139
commit d6d018c5c5
22 changed files with 230 additions and 129 deletions

View File

@ -23,8 +23,8 @@ func (f *Function) Execute(operation token.Token, register cpu.Register, value *
return f.ExecuteRegisterRegister(operation, register, f.cpu.Output[0])
}
tmp := f.cpu.MustFindFree(f.cpu.General)
defer f.cpu.Free(tmp)
tmp := f.Scope().MustFindFree(f.cpu.General)
defer f.Scope().Free(tmp)
err := f.ExpressionToRegister(value, tmp)