Added asmc package
This commit is contained in:
32
src/asmc/Finalize.go
Normal file
32
src/asmc/Finalize.go
Normal 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
|
||||
}
|
Reference in New Issue
Block a user