Added Mach-O file format
This commit is contained in:
@ -4,11 +4,13 @@ import (
|
||||
"bufio"
|
||||
"io"
|
||||
"os"
|
||||
"runtime"
|
||||
|
||||
"git.akyoto.dev/cli/q/src/arch/x64"
|
||||
"git.akyoto.dev/cli/q/src/asm"
|
||||
"git.akyoto.dev/cli/q/src/core"
|
||||
"git.akyoto.dev/cli/q/src/elf"
|
||||
"git.akyoto.dev/cli/q/src/macho"
|
||||
"git.akyoto.dev/cli/q/src/os/linux"
|
||||
)
|
||||
|
||||
@ -31,13 +33,22 @@ func (r *Result) finalize() ([]byte, []byte) {
|
||||
Data: make(map[string][]byte, r.DataCount),
|
||||
}
|
||||
|
||||
sysExit := 0
|
||||
|
||||
switch runtime.GOOS {
|
||||
case "linux":
|
||||
sysExit = linux.Exit
|
||||
case "darwin":
|
||||
sysExit = 1 | 0x2000000
|
||||
}
|
||||
|
||||
final.Call("main.main")
|
||||
final.RegisterNumber(asm.MOVE, x64.SyscallInputRegisters[0], linux.Exit)
|
||||
final.RegisterNumber(asm.MOVE, x64.SyscallInputRegisters[0], sysExit)
|
||||
final.RegisterNumber(asm.MOVE, x64.SyscallInputRegisters[1], 0)
|
||||
final.Syscall()
|
||||
|
||||
final.Label(asm.LABEL, "_crash")
|
||||
final.RegisterNumber(asm.MOVE, x64.SyscallInputRegisters[0], linux.Exit)
|
||||
final.RegisterNumber(asm.MOVE, x64.SyscallInputRegisters[0], sysExit)
|
||||
final.RegisterNumber(asm.MOVE, x64.SyscallInputRegisters[1], 1)
|
||||
final.Syscall()
|
||||
|
||||
@ -117,7 +128,17 @@ func (r *Result) WriteFile(path string) error {
|
||||
// write writes an executable file to the given writer.
|
||||
func write(writer io.Writer, code []byte, data []byte) error {
|
||||
buffer := bufio.NewWriter(writer)
|
||||
executable := elf.New(code, data)
|
||||
executable.Write(buffer)
|
||||
|
||||
switch runtime.GOOS {
|
||||
case "darwin":
|
||||
exe := macho.New(code, data)
|
||||
exe.Write(buffer)
|
||||
case "linux":
|
||||
exe := elf.New(code, data)
|
||||
exe.Write(buffer)
|
||||
default:
|
||||
panic("unsupported platform")
|
||||
}
|
||||
|
||||
return buffer.Flush()
|
||||
}
|
||||
|
Reference in New Issue
Block a user