-
- Downloads
compiler: improve name mangling for packpaths
The current implementation of Gogo::pkgpath_for_symbol was written in a way that allowed two distinct package paths to map to the same symbol, which could cause collisions at link- time or compile-time. Switch to a better mangling scheme to insure that we get a unique packagepath symbol for each package. In the new scheme instead of having separate mangling schemes for identifiers and package paths, the main identifier mangler ("go_encode_id") now handles mangling of both packagepath characters and identifier characters. The new mangling scheme is more intrusive: "foo/bar.Baz" is mangled as "foo..z2fbar.Baz" instead of "foo_bar.Baz". To mitigate this, this patch also adds a demangling capability so that function names returned from runtime.CallersFrames are converted back to their original unmangled form. Changing the pkgpath_for_symbol scheme requires updating a number of //go:linkname directives and C "__asm__" directives to match the new scheme, as well as updating the 'gotest' driver (which makes assumptions about the correct mapping from pkgpath symbol to package name). Fixes golang/go#27534. Reviewed-on: https://go-review.googlesource.com/c/135455 From-SVN: r265510
Showing
- gcc/go/gofrontend/MERGE 1 addition, 1 deletiongcc/go/gofrontend/MERGE
- gcc/go/gofrontend/go-encode-id.cc 82 additions, 11 deletionsgcc/go/gofrontend/go-encode-id.cc
- gcc/go/gofrontend/go-encode-id.h 5 additions, 0 deletionsgcc/go/gofrontend/go-encode-id.h
- gcc/go/gofrontend/gogo.cc 28 additions, 17 deletionsgcc/go/gofrontend/gogo.cc
- gcc/go/gofrontend/gogo.h 4 additions, 20 deletionsgcc/go/gofrontend/gogo.h
- gcc/go/gofrontend/lex.h 4 additions, 3 deletionsgcc/go/gofrontend/lex.h
- gcc/go/gofrontend/names.cc 29 additions, 24 deletionsgcc/go/gofrontend/names.cc
- libgo/go/cmd/cgo/main.go 2 additions, 0 deletionslibgo/go/cmd/cgo/main.go
- libgo/go/cmd/cgo/out.go 105 additions, 6 deletionslibgo/go/cmd/cgo/out.go
- libgo/go/internal/bytealg/bytealg.c 6 additions, 6 deletionslibgo/go/internal/bytealg/bytealg.c
- libgo/go/internal/cpu/cpu_gccgo.c 2 additions, 2 deletionslibgo/go/internal/cpu/cpu_gccgo.c
- libgo/go/runtime/atomic_pointer.go 6 additions, 6 deletionslibgo/go/runtime/atomic_pointer.go
- libgo/go/runtime/cpuprof.go 2 additions, 2 deletionslibgo/go/runtime/cpuprof.go
- libgo/go/runtime/debug/stack_test.go 2 additions, 2 deletionslibgo/go/runtime/debug/stack_test.go
- libgo/go/runtime/heapdump.go 1 addition, 1 deletionlibgo/go/runtime/heapdump.go
- libgo/go/runtime/internal/atomic/atomic.c 23 additions, 23 deletionslibgo/go/runtime/internal/atomic/atomic.c
- libgo/go/runtime/mgc.go 1 addition, 1 deletionlibgo/go/runtime/mgc.go
- libgo/go/runtime/mheap.go 1 addition, 1 deletionlibgo/go/runtime/mheap.go
- libgo/go/runtime/mstats.go 1 addition, 1 deletionlibgo/go/runtime/mstats.go
- libgo/go/runtime/net_plan9.go 2 additions, 2 deletionslibgo/go/runtime/net_plan9.go
Loading
Please register or sign in to comment