This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from bb937e2 Add PR target/71395 marker to 71395 fix new ec46804 Introduce class rtx_reader new 0d5530d compiler, runtime: replace hashmap code with Go 1.7 hashmap
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gcc/ChangeLog | 74 ++ gcc/genconstants.c | 3 +- gcc/genenums.c | 3 +- gcc/genmddeps.c | 3 +- gcc/genpreds.c | 9 +- gcc/gensupport.c | 29 +- gcc/gensupport.h | 6 +- gcc/go/gofrontend/MERGE | 2 +- gcc/go/gofrontend/escape.cc | 4 - gcc/go/gofrontend/expressions.cc | 211 ++--- gcc/go/gofrontend/expressions.h | 52 +- gcc/go/gofrontend/gogo.cc | 5 +- gcc/go/gofrontend/parse.cc | 31 - gcc/go/gofrontend/runtime.cc | 33 - gcc/go/gofrontend/runtime.def | 47 +- gcc/go/gofrontend/runtime.h | 4 - gcc/go/gofrontend/statements.cc | 514 ++++++------ gcc/go/gofrontend/statements.h | 21 +- gcc/go/gofrontend/types.cc | 691 ++++++++++++---- gcc/go/gofrontend/types.h | 187 ++++- gcc/read-md.c | 227 +++--- gcc/read-md.h | 98 ++- gcc/read-rtl.c | 3 +- gcc/testsuite/ChangeLog | 5 + gcc/testsuite/go.go-torture/execute/map-1.go | 2 +- libgo/Makefile.am | 11 +- libgo/Makefile.in | 124 +-- libgo/go/reflect/type.go | 157 ++-- libgo/go/runtime/export_test.go | 2 +- libgo/go/runtime/hashmap.go | 1081 ++++++++++++++++++++++++++ libgo/go/runtime/hashmap_fast.go | 398 ++++++++++ libgo/go/runtime/map_test.go | 21 +- libgo/go/runtime/msan0.go | 1 - libgo/go/runtime/race0.go | 40 + libgo/go/runtime/stubs.go | 253 ++++++ libgo/go/runtime/type.go | 29 +- libgo/go/runtime/typekind.go | 44 ++ libgo/runtime/chan.goc | 6 - libgo/runtime/go-construct-map.c | 23 +- libgo/runtime/go-eface-compare.c | 2 + libgo/runtime/go-eface-val-compare.c | 2 + libgo/runtime/go-fieldtrack.c | 23 +- libgo/runtime/go-interface-compare.c | 2 + libgo/runtime/go-interface-eface-compare.c | 2 + libgo/runtime/go-interface-val-compare.c | 2 + libgo/runtime/go-map-delete.c | 61 -- libgo/runtime/go-map-index.c | 137 ---- libgo/runtime/go-map-len.c | 25 - libgo/runtime/go-map-range.c | 103 --- libgo/runtime/go-memclr.c | 16 + libgo/runtime/go-memequal.c | 16 + libgo/runtime/go-memmove.c | 16 + libgo/runtime/go-new-map.c | 142 ---- libgo/runtime/go-reflect-map.c | 156 ---- libgo/runtime/go-type-complex.c | 14 +- libgo/runtime/go-type-eface.c | 10 +- libgo/runtime/go-type-error.c | 34 - libgo/runtime/go-type-float.c | 10 +- libgo/runtime/go-type-identity.c | 8 +- libgo/runtime/go-type-interface.c | 10 +- libgo/runtime/go-type-string.c | 4 +- libgo/runtime/go-type.h | 48 +- libgo/runtime/malloc.goc | 9 +- libgo/runtime/malloc.h | 8 +- libgo/runtime/map.goc | 72 -- libgo/runtime/map.h | 87 --- libgo/runtime/mcentral.c | 10 +- libgo/runtime/mgc0.c | 31 +- libgo/runtime/mheap.c | 4 +- libgo/runtime/panic.c | 16 + libgo/runtime/proc.c | 14 +- libgo/runtime/runtime.h | 2 +- 72 files changed, 3544 insertions(+), 2006 deletions(-) create mode 100644 libgo/go/runtime/hashmap.go create mode 100644 libgo/go/runtime/hashmap_fast.go create mode 100644 libgo/go/runtime/race0.go create mode 100644 libgo/go/runtime/stubs.go create mode 100644 libgo/go/runtime/typekind.go delete mode 100644 libgo/runtime/go-map-delete.c delete mode 100644 libgo/runtime/go-map-index.c delete mode 100644 libgo/runtime/go-map-len.c delete mode 100644 libgo/runtime/go-map-range.c create mode 100644 libgo/runtime/go-memclr.c create mode 100644 libgo/runtime/go-memequal.c create mode 100644 libgo/runtime/go-memmove.c delete mode 100644 libgo/runtime/go-new-map.c delete mode 100644 libgo/runtime/go-reflect-map.c delete mode 100644 libgo/runtime/go-type-error.c delete mode 100644 libgo/runtime/map.goc delete mode 100644 libgo/runtime/map.h