This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 14c7029b1a1 PR tree-optimization/81346 * fold-const.h (fold_div_compa [...] new 557d70411d6 Add generic v2 vector mode support for nvptx new fcac805ed9f Add v2si support for nvptx new ffaae5bde5d Add v2di support for nvptx new 205b32be9f1 PR tree-optimization/81346 * match.pd: Optimize (X - 1U) [...] new c98f0ea62c3 PR libquadmath/65757 * quadmath-imp.h (math_opt_barrier, [...]
The 5 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 | 39 ++++ gcc/config/nvptx/nvptx-modes.def | 3 + gcc/config/nvptx/nvptx-protos.h | 1 + gcc/config/nvptx/nvptx.c | 115 +++++++++- gcc/config/nvptx/nvptx.h | 6 +- gcc/config/nvptx/nvptx.md | 29 +++ gcc/match.pd | 13 ++ gcc/testsuite/ChangeLog | 21 ++ gcc/testsuite/gcc.dg/tree-ssa/pr81346-5.c | 17 ++ gcc/testsuite/gcc.target/nvptx/decl-init.c | 2 +- gcc/testsuite/gcc.target/nvptx/slp-2-run.c | 23 ++ gcc/testsuite/gcc.target/nvptx/slp-2.c | 25 +++ gcc/testsuite/gcc.target/nvptx/slp-run.c | 23 ++ gcc/testsuite/gcc.target/nvptx/slp.c | 25 +++ gcc/testsuite/gcc.target/nvptx/v2di.c | 12 ++ gcc/testsuite/gcc.target/nvptx/v2si-cvt.c | 39 ++++ gcc/testsuite/gcc.target/nvptx/v2si-run.c | 83 ++++++++ gcc/testsuite/gcc.target/nvptx/v2si.c | 12 ++ gcc/testsuite/gcc.target/nvptx/vec.inc | 18 ++ libgomp/ChangeLog | 4 + libgomp/testsuite/libgomp.oacc-c/vec.c | 48 +++++ libquadmath/ChangeLog | 50 +++++ libquadmath/math/acosq.c | 2 +- libquadmath/math/asinhq.c | 1 + libquadmath/math/asinq.c | 6 +- libquadmath/math/atanhq.c | 6 +- libquadmath/math/atanq.c | 5 +- libquadmath/math/ceilq.c | 33 ++- libquadmath/math/coshq.c | 4 +- libquadmath/math/erfq.c | 33 ++- libquadmath/math/expm1q.c | 33 ++- libquadmath/math/expq.c | 14 +- libquadmath/math/finiteq.c | 2 +- libquadmath/math/floorq.c | 35 ++- libquadmath/math/fmaq.c | 55 ++--- libquadmath/math/frexpq.c | 2 +- libquadmath/math/hypotq.c | 15 +- libquadmath/math/j0q.c | 87 ++++---- libquadmath/math/j1q.c | 103 +++++---- libquadmath/math/llrintq.c | 43 +++- libquadmath/math/llroundq.c | 29 ++- libquadmath/math/log10q.c | 5 +- libquadmath/math/log1pq.c | 14 +- libquadmath/math/log2q.c | 5 +- libquadmath/math/logq.c | 7 +- libquadmath/math/lrintq.c | 84 ++++++-- libquadmath/math/lroundq.c | 58 +++-- libquadmath/math/nearbyintq.c | 4 +- libquadmath/math/nextafterq.c | 11 +- libquadmath/math/powq.c | 32 +-- libquadmath/math/rem_pio2q.c | 330 ++++++++++++++--------------- libquadmath/math/remquoq.c | 11 +- libquadmath/math/rintq.c | 2 +- libquadmath/math/roundq.c | 40 ++-- libquadmath/math/scalblnq.c | 2 +- libquadmath/math/scalbnq.c | 2 +- libquadmath/math/sincos_table.c | 4 +- libquadmath/math/sincosq.c | 5 +- libquadmath/math/sincosq_kernel.c | 17 +- libquadmath/math/sinhq.c | 7 +- libquadmath/math/sinq_kernel.c | 5 +- libquadmath/math/tanhq.c | 5 +- libquadmath/math/tanq.c | 13 +- libquadmath/math/truncq.c | 4 +- libquadmath/quadmath-imp.h | 41 ++++ 65 files changed, 1339 insertions(+), 485 deletions(-) create mode 100644 gcc/config/nvptx/nvptx-modes.def create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/pr81346-5.c create mode 100644 gcc/testsuite/gcc.target/nvptx/slp-2-run.c create mode 100644 gcc/testsuite/gcc.target/nvptx/slp-2.c create mode 100644 gcc/testsuite/gcc.target/nvptx/slp-run.c create mode 100644 gcc/testsuite/gcc.target/nvptx/slp.c create mode 100644 gcc/testsuite/gcc.target/nvptx/v2di.c create mode 100644 gcc/testsuite/gcc.target/nvptx/v2si-cvt.c create mode 100644 gcc/testsuite/gcc.target/nvptx/v2si-run.c create mode 100644 gcc/testsuite/gcc.target/nvptx/v2si.c create mode 100644 gcc/testsuite/gcc.target/nvptx/vec.inc create mode 100644 libgomp/testsuite/libgomp.oacc-c/vec.c