mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
cmd/link: apply DWARF relocations while doing compression
We are preparing for applying relocations to the output buffer. However, for DWARF compression, relocations need to be applied before compression, but we don't have an output buffer at that time. We also cannot delay DWARF compression to when we mmap the output file, because we need the size of the DWARF sections to compute the file size. Instead of applying all the relocations together, we apply relocations in DWARF sections one symbol at a time, right before it is writing out for compression. As the symbol content may be in read-only memory (in the future), we use a temporary buffer for applying the relocations, and immediately write it out. If compression is not used, relocations are still applied all together. This is in preparation for mmap'ing input files read-only. Change-Id: Iae6d2dd71313897d5054bcc458d3bb78075b30c3 Reviewed-on: https://go-review.googlesource.com/c/go/+/171397 Run-TryBot: Cherry Zhang <cherryyz@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Austin Clements <austin@google.com>
This commit is contained in:
parent
15a31bd9c8
commit
248444d5eb
4 changed files with 21 additions and 4 deletions
|
|
@ -239,8 +239,8 @@ func Main(arch *sys.Arch, theArch Arch) {
|
|||
ctxt.symtab()
|
||||
ctxt.dodata()
|
||||
order := ctxt.address()
|
||||
ctxt.reloc()
|
||||
dwarfcompress(ctxt)
|
||||
ctxt.reloc()
|
||||
filesize := ctxt.layout(order)
|
||||
|
||||
// Write out the output file.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue