r259957 - in /trunk: gcc/ChangeLog gcc/brig-bui...
visit0r@gcc.gnu.org
visit0r@gcc.gnu.org
Fri May 4 19:43:00 GMT 2018
Author: visit0r
Date: Fri May 4 19:43:57 2018
New Revision: 259957
URL: https://gcc.gnu.org/viewcvs?rev=259957&root=gcc&view=rev
Log:
[BRIGFE] phsa-specific optimizations
Add flag -fassume-phsa that is on by default. If -fno-assume-phsa
is given, these optimizations are disabled.
With this flag, gccbrig can generate GENERIC that assumes we are
targeting a phsa-runtime based implementation, which allows us
to expose the work-item context accesses to retrieve WI IDs etc.
which helps optimizers.
First optimization that takes advantage of this is to get rid of
the setworkitemid calls whenever we have non-inlined calls that
use IDs internally.
Other optimizations added in this commit:
- expand absoluteid to similar level of simplicity as workitemid.
At the moment absoluteid is the best indexing ID to end up with
WG vectorization.
- propagate ID variables closer to their uses. This is mainly
to avoid known useless casts, which confuse at least scalar
evolution analysis.
- use signed long long for storing IDs. Unsigned integers have
defined wraparound semantics, which confuse at least scalar
evolution analysis, leading to unvectorizable WI loops.
- also refactor some BRIG function generation helpers to brig_function.
- no point in having the wi-loop as a for-loop. It's really
a do...while and SCEV can analyze it just fine still.
- add consts to ptrs etc. in BRIG builtin defs.
Improves optimization opportunities.
- add qualifiers to generated function parameters.
Const and restrict on the hidden local/private pointers,
the arg buffer and the context pointer help some optimizations.
Modified:
trunk/gcc/ChangeLog
trunk/gcc/brig-builtins.def
trunk/gcc/brig/ChangeLog
trunk/gcc/brig/brigfrontend/brig-basic-inst-handler.cc
trunk/gcc/brig/brigfrontend/brig-branch-inst-handler.cc
trunk/gcc/brig/brigfrontend/brig-cmp-inst-handler.cc
trunk/gcc/brig/brigfrontend/brig-code-entry-handler.cc
trunk/gcc/brig/brigfrontend/brig-code-entry-handler.h
trunk/gcc/brig/brigfrontend/brig-control-handler.cc
trunk/gcc/brig/brigfrontend/brig-cvt-inst-handler.cc
trunk/gcc/brig/brigfrontend/brig-function-handler.cc
trunk/gcc/brig/brigfrontend/brig-function.cc
trunk/gcc/brig/brigfrontend/brig-function.h
trunk/gcc/brig/brigfrontend/brig-label-handler.cc
trunk/gcc/brig/brigfrontend/brig-lane-inst-handler.cc
trunk/gcc/brig/brigfrontend/brig-mem-inst-handler.cc
trunk/gcc/brig/brigfrontend/phsa.h
trunk/gcc/brig/lang.opt
trunk/gcc/builtin-types.def
trunk/gcc/testsuite/ChangeLog
trunk/gcc/testsuite/brig.dg/test/gimple/smoke_test.hsail
trunk/libhsail-rt/ChangeLog
trunk/libhsail-rt/include/internal/phsa-rt.h
trunk/libhsail-rt/include/internal/workitems.h
trunk/libhsail-rt/rt/workitems.c
More information about the Gcc-cvs
mailing list