Implemented compilation finished events

This commit is contained in:
2024-06-30 11:41:59 +02:00
parent 3fe2cd1da2
commit 247b82b529
8 changed files with 72 additions and 50 deletions

View File

@ -11,12 +11,15 @@ import (
// compiler is the data structure we embed in each function to preserve compilation state.
type compiler struct {
assembler asm.Assembler
count counter
cpu cpu.CPU
debug []debug
err error
variables map[string]*Variable
assembler asm.Assembler
count counter
cpu cpu.CPU
debug []debug
err error
variables map[string]*Variable
functions map[string]*Function
sideEffects int
finished chan struct{}
}
// counter stores how often a certain statement appeared so we can generate a unique label from it.