• Russ Cox's avatar
    [dev.cc] cmd/gc: changes for removing runtime C code · fd2bc95d
    Russ Cox authored
    [This CL is part of the removal of C code from package runtime.
    See golang.org/s/dev.cc for an overview.]
    
    export.c, lex.c:
    Add -asmhdr flag to write assembly header file with struct
    field offsets and const values. cmd/dist used to construct this
    file by interpreting output from the C compiler.
    Generate it from the Go definitions instead.
    Also, generate the form we need directly, instead of relying
    on cmd/dist for reprocessing.
    
    lex.c, obj.c:
    If the C compiler accepted #pragma cgo_xxx, recognize
    a directive //go:cgo_xxx instead. The effect is the same as
    in the C compiler: accumulate text into a buffer and emit in the
    output file, where the linker will find and use it.
    
    lex.c, obj.c:
    Accept //go:linkname to control the external symbol name
    used for a particular top-level Go variable. This makes it
    possible to refer to C symbol names but also symbols from
    other packages. It has always been possible to do this from
    C and assembly. To drive home the point that this should not
    be done lightly, require import "unsafe" in any file containing
    //go:linkname.
    
    plive.c, reflect.c, subr.c:
    Hard-code that interfaces contain only pointers.
    This means code handling multiword values in the garbage
    collector and the stack copier can be deleted instead of being
    converted. This change is already present in the dev.garbage
    branch.
    
    LGTM=r
    R=r
    CC=austin, golang-codereviews, iant, khr
    https://golang.org/cl/169360043
    fd2bc95d
Name
Last commit
Last update
..
archive Loading commit data...
bufio Loading commit data...
builtin Loading commit data...
bytes Loading commit data...
cmd Loading commit data...
compress Loading commit data...
container Loading commit data...
crypto Loading commit data...
database/sql Loading commit data...
debug Loading commit data...
encoding Loading commit data...
errors Loading commit data...
expvar Loading commit data...
flag Loading commit data...
fmt Loading commit data...
go Loading commit data...
hash Loading commit data...
html Loading commit data...
image Loading commit data...
index/suffixarray Loading commit data...
internal/syscall Loading commit data...
io Loading commit data...
lib9 Loading commit data...
libbio Loading commit data...
liblink Loading commit data...
log Loading commit data...
math Loading commit data...
mime Loading commit data...
net Loading commit data...
os Loading commit data...
path Loading commit data...
reflect Loading commit data...
regexp Loading commit data...
runtime Loading commit data...
sort Loading commit data...
strconv Loading commit data...
strings Loading commit data...
sync Loading commit data...
syscall Loading commit data...
testing Loading commit data...
text Loading commit data...
time Loading commit data...
unicode Loading commit data...
unsafe Loading commit data...
Make.dist Loading commit data...
all.bash Loading commit data...
all.bat Loading commit data...
all.rc Loading commit data...
androidtest.bash Loading commit data...
clean.bash Loading commit data...
clean.bat Loading commit data...
clean.rc Loading commit data...
make.bash Loading commit data...
make.bat Loading commit data...
make.rc Loading commit data...
nacltest.bash Loading commit data...
race.bash Loading commit data...
race.bat Loading commit data...
run.bash Loading commit data...
run.bat Loading commit data...
run.rc Loading commit data...
sudo.bash Loading commit data...