• David Crawshaw's avatar
    cmd/go, cmd/ld, runtime, os/user: TLS emulation for android · 12b990ba
    David Crawshaw authored
    Based on cl/69170045 by Elias Naur.
    
    There are currently several schemes for acquiring a TLS
    slot to save the g register. None of them appear to work
    for android. The closest are linux and darwin.
    
    Linux uses a linker TLS relocation. This is not supported
    by the android linker.
    
    Darwin uses a fixed offset, and calls pthread_key_create
    until it gets the slot it wants. As the runtime loads
    late in the android process lifecycle, after an
    arbitrary number of other libraries, we cannot rely on
    any particular slot being available.
    
    So we call pthread_key_create, take the first slot we are
    given, and put it in runtime.tlsg, which we turn into a
    regular variable in cmd/ld.
    
    Makes android/arm cgo binaries work.
    
    LGTM=minux
    R=elias.naur, minux, dave, josharian
    CC=golang-codereviews
    https://golang.org/cl/106380043
    12b990ba
Name
Last commit
Last update
..
archive Loading commit data...
bufio Loading commit data...
builtin Loading commit data...
bytes 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...
io 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...