Implemented dynamic section alignment

This commit is contained in:
2025-03-09 00:23:23 +01:00
parent b67f3b0977
commit 947a8db937
9 changed files with 35 additions and 23 deletions

View File

@ -5,6 +5,8 @@ import "runtime"
var (
ConstantFold bool // Calculates the result of operations on constants at compile time.
Dry bool // Skips writing the executable to disk.
FileAlign int // FileAlign is the alignment of the sections in the file.
MemoryAlign int // MemoryAlign is the alignment of the sections in memory.
ShowAssembly bool // Shows assembly instructions at the end.
ShowStatistics bool // Shows statistics at the end.
Sections bool // Adds section headers to the executable.
@ -21,11 +23,11 @@ func Reset() {
switch runtime.GOARCH {
case "amd64":
TargetArch = X86
SetTargetArch(X86)
case "arm64":
TargetArch = ARM
SetTargetArch(ARM)
default:
TargetArch = UnknownArch
SetTargetArch(UnknownArch)
}
switch runtime.GOOS {
@ -46,3 +48,16 @@ func Reset() {
func Optimize(enable bool) {
ConstantFold = enable
}
// SetTargetArch changes the target architecture and updates the alignment.
func SetTargetArch(arch Arch) {
TargetArch = arch
if TargetArch == ARM {
FileAlign = 0x4000
MemoryAlign = 0x4000
} else {
FileAlign = 0x1000
MemoryAlign = 0x1000
}
}

View File

@ -6,10 +6,4 @@ const (
// The base address is the virtual address for our ELF file.
BaseAddress = 0x40 * MinAddress
// FileAlign is the alignment of the sections in the file.
FileAlign = 0x4000
// MemoryAlign is the alignment of the sections in memory and it must be a multiple of the page size.
MemoryAlign = 0x4000
)