summaryrefslogtreecommitdiff
path: root/src/debug
Commit message (Collapse)AuthorAgeFilesLines
* all: power64 is now ppc64Russ Cox2014-12-051-1/+1
| | | | | | | | | Fixes issue 8654. LGTM=austin R=austin CC=golang-codereviews https://codereview.appspot.com/180600043
* [dev.cc] all: merge default (e4ab8f908aac) into dev.ccRuss Cox2014-11-204-1/+233
|\ | | | | | | | | | | TBR=austin CC=golang-codereviews https://codereview.appspot.com/179040044
| * [dev.cc] all: merge dev.power64 (7667e41f3ced) into dev.ccRuss Cox2014-11-141-1/+1
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is to reduce the delta between dev.cc and dev.garbage to just garbage collector changes. These are the files that had merge conflicts and have been edited by hand: malloc.go mem_linux.go mgc.go os1_linux.go proc1.go panic1.go runtime1.go LGTM=austin R=austin CC=golang-codereviews https://codereview.appspot.com/174180043
| * \ [dev.power64] all: merge default into dev.power64Austin Clements2014-10-224-1/+233
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This brings dev.power64 up-to-date with the current tip of default. go_bootstrap is still panicking with a bad defer when initializing the runtime (even on amd64). LGTM=rsc R=rsc CC=golang-codereviews https://codereview.appspot.com/152570049
| | * | build: merge the great pkg/ rename into dev.power64Austin Clements2014-10-224-1/+233
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This also removes pkg/runtime/traceback_lr.c, which was ported to Go in an earlier commit and then moved to runtime/traceback.go. Reviewer: rsc@golang.org rsc: LGTM
* | | | debug/goobj: move to cmd/internal/goobjRuss Cox2014-11-162-694/+0
| |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | debug/goobj is not ready to be published but it is needed for the various binary-reading commands. Move to cmd/internal/goobj. (The Go 1.3 release branch deleted it, but that's not an option anymore due to the command dependencies. The API is still not vetted nor terribly well designed.) LGTM=adg, dsymonds R=adg, dsymonds CC=golang-codereviews https://codereview.appspot.com/174250043
* | | all: use golang.org/x/... import pathsAndrew Gerrand2014-11-101-1/+1
|/ / | | | | | | | | | | | | LGTM=rsc, r R=r, rsc CC=golang-codereview, golang-codereviews https://codereview.appspot.com/168050043
* | debug/pe: use appropriate type for sizeofOptionalHeader32Alex Brainman2014-10-211-3/+3
| | | | | | | | | | | | | | LGTM=rsc R=golang-codereviews, rsc CC=golang-codereviews https://codereview.appspot.com/157220043
* | debug/pe: remove use of unsafeRuss Cox2014-10-201-3/+7
| | | | | | | | | | | | | | | | | | Helps in environments with restricted support for unsafe. LGTM=bradfitz R=r, bradfitz CC=dsymonds, golang-codereviews https://codereview.appspot.com/156410044
* | debug/elf: add comments explaining applyRelocations for amd64/arm64Ian Lance Taylor2014-10-091-0/+8
| | | | | | | | | | | | | | LGTM=bradfitz R=golang-codereviews, bradfitz CC=golang-codereviews https://codereview.appspot.com/155190043
* | debug/dwarf: correct name for clang-generated complex typeRuss Cox2014-09-241-0/+11
|/ | | | | | | | | Fixes issue 8694. LGTM=iant R=iant CC=golang-codereviews https://codereview.appspot.com/143570043
* build: move package sources from src/pkg to srcRuss Cox2014-09-0857-0/+10854
Preparation was in CL 134570043. This CL contains only the effect of 'hg mv src/pkg/* src'. For more about the move, see golang.org/s/go14nopkg.