| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The file is used by assembly code to define symbols like NOSPLIT.
Having it hidden inside the cmd directory makes it hard to access
outside the standard repository.
Solution: As with a couple of other files used by cgo, copy the
file into the pkg directory and add a -I argument to the assembler
to access it. Thus one can write just
#include "textflag.h"
in .s files.
The names in runtime are not updated because in the boot sequence the
file has not been copied yet when runtime is built. All other .s files
in the repository are updated.
Changes to doc/asm.html, src/cmd/dist/build.c, and src/cmd/go/build.go
are hand-made. The rest are just the renaming done by a global
substitution. (Yay sam).
LGTM=rsc
R=rsc
CC=golang-codereviews
https://codereview.appspot.com/128050043
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The >>1 shift needs to happen before converting to int32, otherwise
large values will decode with an incorrect sign bit.
The <<31 shift can happen before or after, but before is consistent
with liblink and the go12symtab doc.
Bug demo at http://play.golang.org/p/jLrhPUakIu
LGTM=rsc
R=golang-codereviews, minux, rsc
CC=golang-codereviews
https://codereview.appspot.com/119630043
Committer: Russ Cox <rsc@golang.org>
|
|
|
|
|
|
|
|
|
| |
LGTM=iant
R=golang-codereviews, iant
CC=golang-codereviews
https://codereview.appspot.com/96850043
Committer: Ian Lance Taylor <iant@golang.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The new code is adapted from the Go 1.2 nosplit code,
but it does not have the bug reported in issue 7623:
g% go run nosplit.go
g% go1.2 run nosplit.go
BUG
rejected incorrectly:
main 0 call f; f 120
linker output:
# _/tmp/go-test-nosplit021064539
main.main: nosplit stack overflow
120 guaranteed after split check in main.main
112 on entry to main.f
-8 after main.f uses 120
g%
Fixes issue 6931.
Fixes issue 7623.
LGTM=iant
R=golang-codereviews, iant, ality
CC=golang-codereviews, r
https://codereview.appspot.com/88190043
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Without the leaf bit, the linker cannot record
the correct frame size in the symbol table, and
then stack traces get mangled. (Only for ARM.)
Fixes issue 7338.
Fixes issue 7347.
LGTM=iant
R=iant
CC=golang-codereviews
https://codereview.appspot.com/88550043
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The relocation and automatic variable types were using
arch-specific numbers. Introduce portable enumerations
instead.
To the best of my knowledge, these are the only arch-specific
bits left in the new object file format.
Remove now, before Go 1.3, because file formats are forever.
LGTM=iant
R=iant
CC=golang-codereviews
https://codereview.appspot.com/87670044
|
|
|
|
|
|
|
|
|
|
| |
There are changes we know we want to make, but not before Go 1.3
Add a version number so that we can make them more easily later.
LGTM=iant
R=iant
CC=golang-codereviews
https://codereview.appspot.com/87670043
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The code was returning the original value rather than the cloned value
resulting in the tests not being repeatable.
Fixes issue 7111.
LGTM=bradfitz
R=golang-codereviews, bradfitz
CC=golang-codereviews
https://codereview.appspot.com/65720045
Committer: Brad Fitzpatrick <bradfitz@golang.org>
|
|
|
|
|
|
|
| |
LGTM=dsymonds
R=dsymonds
CC=golang-codereviews
https://codereview.appspot.com/64100045
|
|
|
|
|
|
|
|
|
| |
Sorry, "hg status" hides .6 files by default.
We should probably fix that.
TBR=iant
CC=golang-codereviews
https://codereview.appspot.com/55290043
|
|
|
|
|
|
| |
R=iant
CC=golang-codereviews
https://codereview.appspot.com/53820043
|
|
|
|
|
|
|
|
|
|
| |
The golden file for link.hello.darwin.amd64
was a little ahead of the checked-in code.
R=iant
TBR=iant
CC=golang-codereviews
https://codereview.appspot.com/51870043
|
|
|
|
|
|
| |
R=iant
CC=golang-codereviews
https://codereview.appspot.com/51470043
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Related changes included in this CL:
- Add explicit start symbol to Prog.
- Add omitRuntime bool to Prog.
- Introduce p.Packages[""] to hold automatic symbols
- Add SymOrder to Prog to preserve symbol order.
- Add layout test (and fix bug that was putting everything in text section).
R=iant
CC=golang-codereviews
https://codereview.appspot.com/51260045
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The hex dumps will diff better, and I hope they will avoid
a repeat of http://bugs.debian.org/716853.
The CL will probably show the testdata diffs as "binary",
but in fact the binary versions are being replaced by
textual hex dumps (output of hexdump -C).
R=iant
CC=golang-codereviews
https://codereview.appspot.com/51000044
|
|
|
|
|
|
|
|
| |
See CL 48870044 for basic structure.
R=iant
CC=golang-codereviews
https://codereview.appspot.com/48910043
|
|
R=iant
CC=golang-codereviews
https://codereview.appspot.com/48870044
|