Improved Windows ABI support
This commit is contained in:
@ -32,7 +32,15 @@ func (f *Function) CallExtern(fn *Function, parameters []*expression.Expression)
|
||||
return nil, err
|
||||
}
|
||||
|
||||
f.Register(asm.PUSH, x86.RBP)
|
||||
f.RegisterRegister(asm.MOVE, x86.RBP, x86.RSP)
|
||||
f.RegisterNumber(asm.AND, x86.RSP, -16)
|
||||
f.Number(asm.PUSH, 0)
|
||||
f.Number(asm.PUSH, 0)
|
||||
f.RegisterNumber(asm.SUB, x86.RSP, 32)
|
||||
f.DLLCall(fmt.Sprintf("%s.%s", fn.Package, fn.Name))
|
||||
f.RegisterRegister(asm.MOVE, x86.RSP, x86.RBP)
|
||||
f.Register(asm.POP, x86.RBP)
|
||||
|
||||
for _, register := range registers {
|
||||
f.FreeRegister(register)
|
||||
|
Reference in New Issue
Block a user