aboutsummaryrefslogtreecommitdiff
path: root/llvm/tools/llvm-diff
diff options
context:
space:
mode:
authorDavid Sherwood <david.sherwood@arm.com>2021-07-30 08:41:31 +0100
committerDavid Sherwood <david.sherwood@arm.com>2021-08-05 15:17:27 +0100
commit95800da914938129083df2fa0165c1901909c273 (patch)
treefe17dc8baf6a586541889b0c112d9f2646453b5b /llvm/tools/llvm-diff
parent91e399519580930623e1eb7be43374f0ba8aba41 (diff)
downloadllvm-95800da914938129083df2fa0165c1901909c273.zip
llvm-95800da914938129083df2fa0165c1901909c273.tar.gz
llvm-95800da914938129083df2fa0165c1901909c273.tar.bz2
[LoopVectorize] Add support for replication of more intrinsics with scalable vectors
This patch adds more instructions to the Uniforms list, for example certain intrinsics that are uniform by definition or whose operands are loop invariant. This list includes: 1. The intrinsics 'experimental.noalias.scope.decl' and 'sideeffect', which are always uniform by definition. 2. If intrinsics 'lifetime.start', 'lifetime.end' and 'assume' have loop invariant input operands then these are also uniform too. Also, in VPRecipeBuilder::handleReplication we check if an instruction is uniform based purely on whether or not the instruction lives in the Uniforms list. However, there are certain cases where calls to some intrinsics can be effectively treated as uniform too. Therefore, we now also treat the following cases as uniform for scalable vectors: 1. If the 'assume' intrinsic's operand is not loop invariant, then we are free to treat this as uniform anyway since it's only a performance hint. We will get the benefit for the first lane. 2. When the input pointers for 'lifetime.start' and 'lifetime.end' are loop variant then for scalable vectors we assume these still ultimately come from the broadcast of an alloca. We do not support scalable vectorisation of loops containing alloca instructions, hence the alloca itself would be invariant. If the pointer does not come from an alloca then the intrinsic itself has no effect. I have updated the assume test for fixed width, since we now treat it as uniform: Transforms/LoopVectorize/assume.ll I've also added new scalable vectorisation tests for other intriniscs: Transforms/LoopVectorize/scalable-assume.ll Transforms/LoopVectorize/scalable-lifetime.ll Transforms/LoopVectorize/scalable-noalias-scope-decl.ll Differential Revision: https://reviews.llvm.org/D107284
Diffstat (limited to 'llvm/tools/llvm-diff')
0 files changed, 0 insertions, 0 deletions