This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 56778b6 2016-01-18 Jeff Law law@redhat.com new 5668660 Merge of HSA
The 1 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 | 132 + gcc/Makefile.in | 7 + gcc/builtin-types.def | 9 +- gcc/common.opt | 8 + gcc/config.in | 6 + gcc/configure | 19 +- gcc/configure.ac | 14 +- gcc/doc/install.texi | 22 + gcc/doc/invoke.texi | 12 +- gcc/fortran/ChangeLog | 6 + gcc/fortran/types.def | 7 +- gcc/gimple-low.c | 1 + gcc/gimple-pretty-print.c | 7 + gcc/gimple-walk.c | 1 + gcc/gimple.c | 14 + gcc/gimple.def | 4 + gcc/gimple.h | 65 +- gcc/hsa-brig-format.h | 1234 +++++ gcc/hsa-brig.c | 2560 +++++++++ gcc/hsa-dump.c | 1189 +++++ gcc/hsa-gen.c | 6151 ++++++++++++++++++++++ gcc/hsa-regalloc.c | 719 +++ gcc/hsa.c | 947 ++++ gcc/hsa.h | 1402 +++++ gcc/ipa-hsa.c | 331 ++ gcc/lto-section-in.c | 3 +- gcc/lto-streamer.h | 1 + gcc/lto-wrapper.c | 11 +- gcc/lto/ChangeLog | 7 + gcc/lto/lto-partition.c | 19 + gcc/omp-builtins.def | 7 +- gcc/omp-low.c | 1594 +++++- gcc/opts.c | 31 +- gcc/params.def | 5 + gcc/passes.def | 2 + gcc/timevar.def | 1 + gcc/toplev.c | 3 + gcc/tree-core.h | 9 +- gcc/tree-pass.h | 2 + gcc/tree-pretty-print.c | 12 + gcc/tree.c | 5 +- gcc/tree.h | 8 + include/ChangeLog | 13 + include/gomp-constants.h | 28 + libgomp/ChangeLog | 61 + libgomp/Makefile.in | 49 +- libgomp/config.h.in | 6 + libgomp/configure | 166 +- libgomp/libgomp-plugin.h | 3 +- libgomp/libgomp.h | 12 +- libgomp/libgomp_g.h | 3 +- libgomp/oacc-host.c | 3 +- libgomp/plugin/Makefrag.am | 13 + libgomp/plugin/configfrag.ac | 102 + libgomp/plugin/plugin-hsa.c | 1493 ++++++ libgomp/target.c | 225 +- libgomp/task.c | 4 +- libgomp/testsuite/Makefile.in | 6 + liboffloadmic/ChangeLog | 5 + liboffloadmic/plugin/libgomp-plugin-intelmic.cpp | 4 +- 60 files changed, 18517 insertions(+), 266 deletions(-) create mode 100644 gcc/hsa-brig-format.h create mode 100644 gcc/hsa-brig.c create mode 100644 gcc/hsa-dump.c create mode 100644 gcc/hsa-gen.c create mode 100644 gcc/hsa-regalloc.c create mode 100644 gcc/hsa.c create mode 100644 gcc/hsa.h create mode 100644 gcc/ipa-hsa.c create mode 100644 libgomp/plugin/plugin-hsa.c