Implemented dependency tracking

This commit is contained in:
2025-03-03 12:14:53 +01:00
parent 08660ad845
commit 751614e7c0
12 changed files with 75 additions and 69 deletions

View File

@ -43,16 +43,7 @@ func (f *Function) CompileCall(root *expression.Expression) ([]types.Type, error
switch value := value.(type) {
case *eval.Label:
fn, exists := f.All.Functions[value.Label]
if !exists {
if value.Label == "main.main" && f.UniqueName == "core.init" {
f.Label(asm.CALL, "main.main")
return nil, nil
}
return nil, errors.New(&errors.UnknownIdentifier{Name: value.Label}, f.File, root.Children[0].Token.Position)
}
fn := f.All.Functions[value.Label]
if len(parameters) != len(fn.Input) {
return nil, errors.New(&errors.ParameterCountMismatch{Function: fn.Name, Count: len(parameters), ExpectedCount: len(fn.Input)}, f.File, root.Children[0].Token.End())

View File

@ -22,6 +22,8 @@ func (f *Function) CompileDelete(root *expression.Expression) error {
f.SaveRegister(f.CPU.Input[1])
f.RegisterRegister(asm.MOVE, f.CPU.Input[0], variable.Value.Register)
f.RegisterNumber(asm.MOVE, f.CPU.Input[1], variable.Value.Typ.(*types.Pointer).To.Size())
f.CallSafe(f.All.Functions["mem.free"], f.CPU.Input[:2])
free := f.All.Functions["mem.free"]
f.CallSafe(free, f.CPU.Input[:2])
f.Dependencies = append(f.Dependencies, free)
return nil
}

View File

@ -45,6 +45,8 @@ func (f *Function) CompileNew(root *expression.Expression) (types.Type, error) {
f.SaveRegister(f.CPU.Input[0])
f.RegisterNumber(asm.MOVE, f.CPU.Input[0], typ.Size())
f.CallSafe(f.All.Functions["mem.alloc"], f.CPU.Input[:1])
alloc := f.All.Functions["mem.alloc"]
f.CallSafe(alloc, f.CPU.Input[:1])
f.Dependencies = append(f.Dependencies, alloc)
return &types.Pointer{To: typ}, nil
}

View File

@ -42,7 +42,8 @@ func (f *Function) EvaluateDot(expr *expression.Expression) (eval.Value, error)
return value, nil
}
constant, isConst := f.All.Constants[f.Package+"."+leftText+"."+rightText]
label := fmt.Sprintf("%s.%s", leftText, rightText)
constant, isConst := f.All.Constants[f.Package+"."+label]
if isConst {
number, err := ToNumber(constant.Token, constant.File)
@ -73,10 +74,18 @@ func (f *Function) EvaluateDot(expr *expression.Expression) (eval.Value, error)
}
}
value := &eval.Label{
Typ: types.AnyPointer,
Label: fmt.Sprintf("%s.%s", leftText, rightText),
function, exists := f.All.Functions[label]
if exists {
f.Dependencies = append(f.Dependencies, function)
value := &eval.Label{
Typ: types.AnyPointer,
Label: label,
}
return value, nil
}
return value, nil
return nil, errors.New(&errors.UnknownIdentifier{Name: label}, f.File, left.Token.Position)
}

View File

@ -41,6 +41,8 @@ func (f *Function) EvaluateToken(t token.Token) (eval.Value, error) {
}
if function != nil {
f.Dependencies = append(f.Dependencies, function)
value := &eval.Label{
Typ: types.AnyPointer,
Label: function.UniqueName,

View File

@ -11,17 +11,18 @@ import (
// Function represents the smallest unit of code.
type Function struct {
register.Machine
Package string
Name string
UniqueName string
All *Environment
File *fs.File
Body token.List
Input []*Parameter
Output []*Parameter
OutputTypes []types.Type
DLLs dll.List
Err error
deferred []func()
count count
Package string
Name string
UniqueName string
All *Environment
File *fs.File
Body token.List
Input []*Parameter
Output []*Parameter
OutputTypes []types.Type
Dependencies []*Function
DLLs dll.List
Err error
deferred []func()
count count
}