Added scope package

This commit is contained in:
2024-07-20 23:20:23 +02:00
parent 263c0cfb8b
commit 43cdac5572
37 changed files with 416 additions and 371 deletions

View File

@ -47,7 +47,7 @@ func (f *Function) CompileCall(root *expression.Expression) error {
// Push
for _, register := range f.cpu.General {
if f.Scope().IsUsed(register) {
if f.CurrentScope().IsUsed(register) {
f.Register(asm.PUSH, register)
}
}
@ -64,14 +64,14 @@ func (f *Function) CompileCall(root *expression.Expression) error {
continue
}
f.Scope().Free(register)
f.CurrentScope().Free(register)
}
// Pop
for i := len(f.cpu.General) - 1; i >= 0; i-- {
register := f.cpu.General[i]
if f.Scope().IsUsed(register) {
if f.CurrentScope().IsUsed(register) {
f.Register(asm.POP, register)
}
}