]> Cypherpunks repositories - gostls13.git/commit
[dev.link] cmd/internal/goobj: support parsing new object file
authorCherry Zhang <cherryyz@google.com>
Wed, 11 Sep 2019 19:57:39 +0000 (15:57 -0400)
committerCherry Zhang <cherryyz@google.com>
Thu, 3 Oct 2019 21:25:48 +0000 (21:25 +0000)
commitd79380026cd9f3a65e4896e77a7f3fbe1a954934
tree399d3f48eb87330d248c71316a90541e8635f1eb
parent2c484c0356c5e13a480b3842de0d345224a7bbf8
[dev.link] cmd/internal/goobj: support parsing new object file

Add support of parsing new object file format. We use the new
parser if the magic string matches the new one, otherwise use the
old one.

The parsed data are still filled into the current goobj API. In
the future we may consider to change the goobj API to a close
match of the object file data.

Now objdump and nm commands support new object file format.

For a reference to a symbol defined in another package, with the
new object file format we don't know its name. Write it as
pkg.<#nn> for now, where nn is its symbol index.

Change-Id: I06d05b2ca834ba36980da3c5d76aee16c3b0a483
Reviewed-on: https://go-review.googlesource.com/c/go/+/196031
Run-TryBot: Cherry Zhang <cherryyz@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Than McIntosh <thanm@google.com>
src/cmd/internal/goobj/read.go
src/cmd/internal/goobj/readnew.go [new file with mode: 0644]