Improved assembler performance

This commit is contained in:
2025-03-11 06:31:21 +01:00
parent d2ad8c8310
commit e7a06f5b26
37 changed files with 412 additions and 166 deletions

View File

@ -8,8 +8,9 @@ import (
)
func (c *compiler) call(x asm.Instruction) {
switch data := x.Data.(type) {
case *asm.Label:
switch x.Type {
case asm.TypeLabel:
data := c.assembler.Param.Label[x.Index]
c.code = x86.Call(c.code, 0x00_00_00_00)
size := 4
@ -32,10 +33,12 @@ func (c *compiler) call(x asm.Instruction) {
c.codePointers = append(c.codePointers, pointer)
case *asm.Register:
case asm.TypeRegister:
data := c.assembler.Param.Register[x.Index]
c.code = x86.CallRegister(c.code, data.Register)
case *asm.Memory:
case asm.TypeMemory:
data := c.assembler.Param.Memory[x.Index]
c.code = x86.CallAtMemory(c.code, data.Base, data.Offset)
}
}