Implemented register calls
This commit is contained in:
@ -19,7 +19,7 @@ func (f *Function) CallSafe(fn *Function, registers []cpu.Register) {
|
||||
}
|
||||
}
|
||||
|
||||
f.Call(fn.UniqueName)
|
||||
f.Label(asm.CALL, fn.UniqueName)
|
||||
|
||||
for _, register := range slices.Backward(f.CPU.General) {
|
||||
if f.RegisterIsUsed(register) {
|
||||
|
@ -1,6 +1,7 @@
|
||||
package core
|
||||
|
||||
import (
|
||||
"git.urbach.dev/cli/q/src/asm"
|
||||
"git.urbach.dev/cli/q/src/errors"
|
||||
"git.urbach.dev/cli/q/src/expression"
|
||||
"git.urbach.dev/cli/q/src/types"
|
||||
@ -45,13 +46,20 @@ func (f *Function) CompileCall(root *expression.Expression) ([]types.Type, error
|
||||
}
|
||||
|
||||
if f.UniqueName == "core.init" && pkg == "main" && name == "main" {
|
||||
f.Call("main.main")
|
||||
f.Label(asm.CALL, "main.main")
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
fn, exists = f.All.Functions[pkg+"."+name]
|
||||
|
||||
if !exists {
|
||||
variable := f.VariableByName(name)
|
||||
|
||||
if variable != nil {
|
||||
f.Register(asm.CALL, variable.Value.Register)
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
return nil, errors.New(&errors.UnknownFunction{Name: name}, f.File, nameNode.Token.Position)
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user