Implemented an ordered set for function dependencies
This commit is contained in:
@ -10,7 +10,7 @@ func (r *Result) eachFunction(caller *core.Function, traversed map[*core.Functio
|
|||||||
call(caller)
|
call(caller)
|
||||||
traversed[caller] = true
|
traversed[caller] = true
|
||||||
|
|
||||||
for _, function := range caller.Dependencies {
|
for function := range caller.Dependencies.All() {
|
||||||
if traversed[function] {
|
if traversed[function] {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
@ -26,6 +26,6 @@ func (f *Function) CompileDelete(root *expression.Expression) error {
|
|||||||
f.BeforeCall()
|
f.BeforeCall()
|
||||||
f.Label(asm.CALL, asm.Label{Name: "mem.free", Type: asm.FunctionLabel})
|
f.Label(asm.CALL, asm.Label{Name: "mem.free", Type: asm.FunctionLabel})
|
||||||
f.AfterCall(f.CPU.Input[:2])
|
f.AfterCall(f.CPU.Input[:2])
|
||||||
f.Dependencies = append(f.Dependencies, free)
|
f.Dependencies.Add(free)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
@ -49,6 +49,6 @@ func (f *Function) CompileNew(root *expression.Expression) (types.Type, error) {
|
|||||||
f.BeforeCall()
|
f.BeforeCall()
|
||||||
f.Label(asm.CALL, asm.Label{Name: "mem.alloc", Type: asm.FunctionLabel})
|
f.Label(asm.CALL, asm.Label{Name: "mem.alloc", Type: asm.FunctionLabel})
|
||||||
f.AfterCall(f.CPU.Input[:1])
|
f.AfterCall(f.CPU.Input[:1])
|
||||||
f.Dependencies = append(f.Dependencies, alloc)
|
f.Dependencies.Add(alloc)
|
||||||
return &types.Pointer{To: typ}, nil
|
return &types.Pointer{To: typ}, nil
|
||||||
}
|
}
|
||||||
|
@ -76,7 +76,7 @@ func (f *Function) EvaluateDot(expr *expression.Expression) (eval.Value, error)
|
|||||||
function, exists := f.All.Functions[label]
|
function, exists := f.All.Functions[label]
|
||||||
|
|
||||||
if exists {
|
if exists {
|
||||||
f.Dependencies = append(f.Dependencies, function)
|
f.Dependencies.Add(function)
|
||||||
|
|
||||||
value := &eval.Label{
|
value := &eval.Label{
|
||||||
Typ: types.AnyPointer,
|
Typ: types.AnyPointer,
|
||||||
|
@ -46,7 +46,7 @@ func (f *Function) EvaluateToken(t token.Token) (eval.Value, error) {
|
|||||||
function, exists := f.All.Functions[uniqueName]
|
function, exists := f.All.Functions[uniqueName]
|
||||||
|
|
||||||
if exists {
|
if exists {
|
||||||
f.Dependencies = append(f.Dependencies, function)
|
f.Dependencies.Add(function)
|
||||||
|
|
||||||
value := &eval.Label{
|
value := &eval.Label{
|
||||||
Typ: types.AnyPointer,
|
Typ: types.AnyPointer,
|
||||||
|
@ -4,6 +4,7 @@ import (
|
|||||||
"git.urbach.dev/cli/q/src/dll"
|
"git.urbach.dev/cli/q/src/dll"
|
||||||
"git.urbach.dev/cli/q/src/fs"
|
"git.urbach.dev/cli/q/src/fs"
|
||||||
"git.urbach.dev/cli/q/src/register"
|
"git.urbach.dev/cli/q/src/register"
|
||||||
|
"git.urbach.dev/cli/q/src/set"
|
||||||
"git.urbach.dev/cli/q/src/token"
|
"git.urbach.dev/cli/q/src/token"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -18,7 +19,7 @@ type Function struct {
|
|||||||
Body token.List
|
Body token.List
|
||||||
Input []*Parameter
|
Input []*Parameter
|
||||||
Output []*Parameter
|
Output []*Parameter
|
||||||
Dependencies []*Function
|
Dependencies set.Ordered[*Function]
|
||||||
DLLs dll.List
|
DLLs dll.List
|
||||||
Err error
|
Err error
|
||||||
deferred []func()
|
deferred []func()
|
||||||
|
@ -24,6 +24,7 @@
|
|||||||
- [riscv](riscv) - RISCV implementation (w.i.p.)
|
- [riscv](riscv) - RISCV implementation (w.i.p.)
|
||||||
- [scanner](scanner) - Scanner frontend used by `build`
|
- [scanner](scanner) - Scanner frontend used by `build`
|
||||||
- [scope](scope) - Defines a `Scope` used for code blocks
|
- [scope](scope) - Defines a `Scope` used for code blocks
|
||||||
|
- [set](set) - Generic set implementation
|
||||||
- [sizeof](sizeof) - Calculates the byte size of numbers
|
- [sizeof](sizeof) - Calculates the byte size of numbers
|
||||||
- [token](token) - Converts a file to tokens with the `Tokenize` function
|
- [token](token) - Converts a file to tokens with the `Tokenize` function
|
||||||
- [types](types) - Type system
|
- [types](types) - Type system
|
||||||
|
33
src/set/Ordered.go
Normal file
33
src/set/Ordered.go
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
package set
|
||||||
|
|
||||||
|
import (
|
||||||
|
"iter"
|
||||||
|
"slices"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Ordered is an ordered set.
|
||||||
|
type Ordered[T comparable] struct {
|
||||||
|
values []T
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add adds a value to the set if it doesn't exist yet.
|
||||||
|
// It returns `false` if it already exists, `true` if it was added.
|
||||||
|
func (set *Ordered[T]) Add(value T) bool {
|
||||||
|
if slices.Contains(set.values, value) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
set.values = append(set.values, value)
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
// All returns an iterator over all the values in the set.
|
||||||
|
func (set *Ordered[T]) All() iter.Seq[T] {
|
||||||
|
return func(yield func(T) bool) {
|
||||||
|
for _, value := range set.values {
|
||||||
|
if !yield(value) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user