cmd/link: unaligned 32-bit fields in .reloc section blocks of go.exe. #68260
Labels
compiler/runtime
Issues related to the Go compiler and/or runtime.
NeedsFix
The path to resolution is known, but the work has not been done.
OS-Windows
Go version
go1.22.4
Output of
go env
in your module/workspace:*
What did you do?
look
.reloc
section in pe file:go.exe
and another executable files compiled bygo
program.What did you see happen?
.reloc
section in compiled file (go.exe).Each block represents the base relocations for a 4K page.
Some blocks in
.reloc
section ingo.exe
don't start on a 32-bit boundary.It's related to source code is
src\cmd\link\internal\ld\pe.go
:Corrected code must add empty entry at the end of block, if
len(b.entries)
is odd.What did you expect to see?
from
PE Format
description at microsoft site:Each block represents the base relocations for a 4K page. Each block must start on a 32-bit boundary.
Probably it's old rule, because old processors required aligned 32-bit access for 32-bit fields.
The text was updated successfully, but these errors were encountered: