<feed xmlns='http://www.w3.org/2005/Atom'>
<title>go/src/cmd/internal/objfile/plan9obj.go, branch makepkg</title>
<subtitle>Fork of Go programming language with my patches.</subtitle>
<id>http://git.kilabit.info/go/atom?h=makepkg</id>
<link rel='self' href='http://git.kilabit.info/go/atom?h=makepkg'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/'/>
<updated>2026-02-03T11:04:30Z</updated>
<entry>
<title>all: prealloc slice with possible minimum capabilities</title>
<updated>2026-02-03T11:04:30Z</updated>
<author>
<name>Shulhan</name>
<email>m.shulhan@gmail.com</email>
</author>
<published>2024-10-25T17:48:33Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=011e40da85bddf83fee0ded83cb9115b7a88b3d4'/>
<id>urn:sha1:011e40da85bddf83fee0ded83cb9115b7a88b3d4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>cmd/link: don't generate .gosymtab section</title>
<updated>2025-11-05T00:38:05Z</updated>
<author>
<name>Ian Lance Taylor</name>
<email>iant@golang.org</email>
</author>
<published>2025-11-02T21:54:22Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=7347b54727519eecf693e9c10c504dc28611cbbf'/>
<id>urn:sha1:7347b54727519eecf693e9c10c504dc28611cbbf</id>
<content type='text'>
Since Go 1.2 the section is always empty.

Also remove the code looking for .gosymtab in cmd/internal/objfile.

For #76038

Change-Id: Icd34c870ed0c6da8001e8d32305f79905ee2b066
Reviewed-on: https://go-review.googlesource.com/c/go/+/717200
LUCI-TryBot-Result: Go LUCI &lt;golang-scoped@luci-project-accounts.iam.gserviceaccount.com&gt;
Reviewed-by: Cherry Mui &lt;cherryyz@google.com&gt;
Auto-Submit: Ian Lance Taylor &lt;iant@golang.org&gt;
Commit-Queue: Ian Lance Taylor &lt;iant@golang.org&gt;
Reviewed-by: Michael Pratt &lt;mpratt@google.com&gt;
</content>
</entry>
<entry>
<title>cmd: replace many sort.Interface with slices.Sort and SortFunc</title>
<updated>2024-09-03T20:55:18Z</updated>
<author>
<name>Zxilly</name>
<email>zxilly@outlook.com</email>
</author>
<published>2024-09-03T17:46:10Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=d91a2e5b11cc1badd7c760a911218a64d91ac8b0'/>
<id>urn:sha1:d91a2e5b11cc1badd7c760a911218a64d91ac8b0</id>
<content type='text'>
with slices there's no need to implement sort.Interface

Change-Id: I59167e78881cb1df89a71e33d738d6aeca7adb71
GitHub-Last-Rev: 507ba84453f7305b6b2bf6317292111c00c93ffe
GitHub-Pull-Request: golang/go#68724
Reviewed-on: https://go-review.googlesource.com/c/go/+/602895
Reviewed-by: Ian Lance Taylor &lt;iant@golang.org&gt;
LUCI-TryBot-Result: Go LUCI &lt;golang-scoped@luci-project-accounts.iam.gserviceaccount.com&gt;
Reviewed-by: Robert Griesemer &lt;gri@google.com&gt;
Reviewed-by: Keith Randall &lt;khr@golang.org&gt;
Reviewed-by: Keith Randall &lt;khr@google.com&gt;
</content>
</entry>
<entry>
<title>cmd/nm: handle cgo archive</title>
<updated>2017-09-21T01:01:44Z</updated>
<author>
<name>Hiroshi Ioka</name>
<email>hirochachacha@gmail.com</email>
</author>
<published>2017-09-16T06:28:14Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=589ea93678850ad1e5c1192df5768177c3104937'/>
<id>urn:sha1:589ea93678850ad1e5c1192df5768177c3104937</id>
<content type='text'>
This CL also make cmd/nm accept PE object file.

Fixes #21706

Change-Id: I4a528b7d53da1082e61523ebeba02c4c514a43a7
Reviewed-on: https://go-review.googlesource.com/64890
Run-TryBot: Ian Lance Taylor &lt;iant@golang.org&gt;
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
Reviewed-by: Ian Lance Taylor &lt;iant@golang.org&gt;
</content>
</entry>
<entry>
<title>runtime/pprof, cmd/pprof: fix profiling for PIE</title>
<updated>2016-05-31T13:02:09Z</updated>
<author>
<name>Ian Lance Taylor</name>
<email>iant@golang.org</email>
</author>
<published>2016-05-27T23:03:44Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=4223294eab3dee0f6c03fd57fc24be3dc3e2d53a'/>
<id>urn:sha1:4223294eab3dee0f6c03fd57fc24be3dc3e2d53a</id>
<content type='text'>
In order to support pprof for position independent executables, pprof
needs to adjust the PC addresses stored in the profile by the address at
which the program is loaded. The legacy profiling support which we use
already supports recording the GNU/Linux /proc/self/maps data
immediately after the CPU samples, so do that. Also change the pprof
symbolizer to use the information, if available, when looking up
addresses in the Go pcline data.

Fixes #15714.

Change-Id: I4bf679210ef7c51d85cf873c968ce82db8898e3e
Reviewed-on: https://go-review.googlesource.com/23525
Reviewed-by: Michael Hudson-Doyle &lt;michael.hudson@canonical.com&gt;
</content>
</entry>
<entry>
<title>cmd: remove unnecessary type conversions</title>
<updated>2016-04-15T02:32:10Z</updated>
<author>
<name>Matthew Dempsky</name>
<email>mdempsky@google.com</email>
</author>
<published>2016-04-15T02:04:45Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=1441f76938bf61a2c8c2ed1a65082ddde0319633'/>
<id>urn:sha1:1441f76938bf61a2c8c2ed1a65082ddde0319633</id>
<content type='text'>
CL generated mechanically with github.com/mdempsky/unconvert.

Change-Id: Ic590315cbc7026163a1b3f8ea306ba35f1a53256
Reviewed-on: https://go-review.googlesource.com/22103
Run-TryBot: Matthew Dempsky &lt;mdempsky@google.com&gt;
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
Reviewed-by: Michael Hudson-Doyle &lt;michael.hudson@canonical.com&gt;
</content>
</entry>
<entry>
<title>cmd/pprof: use DWARF info to lookup unknown PC addresses</title>
<updated>2016-03-31T04:05:06Z</updated>
<author>
<name>Ian Lance Taylor</name>
<email>iant@golang.org</email>
</author>
<published>2016-03-24T00:10:18Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=b4117995e3e01a669be737c36033c2393858d555'/>
<id>urn:sha1:b4117995e3e01a669be737c36033c2393858d555</id>
<content type='text'>
Test to follow in a separate CL that arranges for the runtime package to
store non-Go addresses in a CPU profile.

Change-Id: I33ce1d66b77340b1e62b54505fc9b1abcec108a9
Reviewed-on: https://go-review.googlesource.com/21055
Reviewed-by: Austin Clements &lt;austin@google.com&gt;
Run-TryBot: Ian Lance Taylor &lt;iant@golang.org&gt;
</content>
</entry>
<entry>
<title>all: make copyright headers consistent with one space after period</title>
<updated>2016-03-01T23:34:33Z</updated>
<author>
<name>Brad Fitzpatrick</name>
<email>bradfitz@golang.org</email>
</author>
<published>2016-03-01T22:57:46Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=519474451a44b861e54466998a893a173bd54c4b'/>
<id>urn:sha1:519474451a44b861e54466998a893a173bd54c4b</id>
<content type='text'>
This is a subset of https://golang.org/cl/20022 with only the copyright
header lines, so the next CL will be smaller and more reviewable.

Go policy has been single space after periods in comments for some time.

The copyright header template at:

    https://golang.org/doc/contribute.html#copyright

also uses a single space.

Make them all consistent.

Change-Id: Icc26c6b8495c3820da6b171ca96a74701b4a01b0
Reviewed-on: https://go-review.googlesource.com/20111
Run-TryBot: Brad Fitzpatrick &lt;bradfitz@golang.org&gt;
Reviewed-by: Ian Lance Taylor &lt;iant@golang.org&gt;
Reviewed-by: Matthew Dempsky &lt;mdempsky@google.com&gt;
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
</content>
</entry>
<entry>
<title>cmd/objdump: use cmd/internal/objfile</title>
<updated>2014-10-29T22:07:24Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2014-10-29T22:07:24Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=3eadbb02afa1494821de000ee280e00c3c398f1d'/>
<id>urn:sha1:3eadbb02afa1494821de000ee280e00c3c398f1d</id>
<content type='text'>
This removes a bunch of ugly duplicate code.
The end goal is to factor the disassembly code
into cmd/internal/objfile too, so that pprof can use it,
but one step at a time.

LGTM=r, iant
R=r, alex.brainman, iant
CC=golang-codereviews
https://golang.org/cl/149400043
</content>
</entry>
<entry>
<title>cmd/internal/objfile: fix dissassembly of Plan 9 object files</title>
<updated>2014-08-28T23:01:31Z</updated>
<author>
<name>Anthony Martin</name>
<email>ality@pbrane.org</email>
</author>
<published>2014-08-28T23:01:31Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=13c69f037986ba4a4cb1890822bfd15702a2971e'/>
<id>urn:sha1:13c69f037986ba4a4cb1890822bfd15702a2971e</id>
<content type='text'>
This is a reapplication of CL 93520045 (changeset 5012df7fac58)
since that was lost during the move to an internal package.

LGTM=iant
R=golang-codereviews, iant
CC=golang-codereviews
https://golang.org/cl/134020043
</content>
</entry>
</feed>
