Added asmc package

This commit is contained in:
2025-02-06 23:26:10 +01:00
parent cae3092df7
commit 78aee7999b
14 changed files with 464 additions and 386 deletions

32
src/asmc/Finalize.go Normal file
View File

@ -0,0 +1,32 @@
package asmc
import (
"git.akyoto.dev/cli/q/src/asm"
"git.akyoto.dev/cli/q/src/config"
"git.akyoto.dev/cli/q/src/dll"
)
// Finalize generates the final machine code.
func Finalize(a asm.Assembler, dlls dll.List) ([]byte, []byte) {
data, dataLabels := a.Data.Finalize()
if config.TargetOS == config.Windows && len(data) == 0 {
data = []byte{0}
}
c := compiler{
code: make([]byte, 0, len(a.Instructions)*8),
codeLabels: map[string]Address{},
codeStart: codeOffset(),
data: data,
dataLabels: dataLabels,
dlls: dlls,
}
for _, x := range a.Instructions {
c.compile(x)
}
c.resolvePointers()
return c.code, c.data
}