]> granicus.if.org Git - llvm/commit
[globalisel][tablegen] Skip src child predicates
authorDiana Picus <diana.picus@linaro.org>
Fri, 3 Nov 2017 10:30:19 +0000 (10:30 +0000)
committerDiana Picus <diana.picus@linaro.org>
Fri, 3 Nov 2017 10:30:19 +0000 (10:30 +0000)
commita7372f15c92ca8a556487877cb9df960ad68f4e3
tree27da01ad42bca0c9ab1217d2822378e9bac55e6f
parent5281112161326303f9a4571f3c7492fc2f2be6e6
[globalisel][tablegen] Skip src child predicates

The GlobalISel TableGen backend didn't check for predicates on the
source children. This caused it to generate code for ARM patterns such
as SMLABB or similar, but without properly checking for the sext_16_node
part of the operands. This in turn meant that we would select SMLABB
instead of MLA for simple sequences such as s32 + s32 * s32, which is
wrong (we want a MLA on the full operands, not just their bottom 16
bits).

This patch forces TableGen to skip patterns with predicates on the src
children, so it doesn't generate code for SMLABB and other similar ARM
instructions at all anymore. AArch64 and X86 are not affected.

Differential Revision: https://reviews.llvm.org/D39554

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@317313 91177308-0d34-0410-b5e6-96231b3b80d8
test/CodeGen/ARM/GlobalISel/arm-instruction-select-combos.mir
utils/TableGen/GlobalISelEmitter.cpp