1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

[globalisel][tablegen] Fix PR35375 by sign-extending the table value to match getConstantVRegVal()

Summary:
From the bug report:
> The problem is that it fails when trying to compare -65536 (or 4294901760) to 0xFFFF,0000. This is because the
> constant in the instruction is sign extended to 64 bits (0xFFFF,FFFF,FFFF,0000) and then compared to the non
> extended 64 bit version expected by TableGen.
> 
> In contrast, the DAGISelEmitter generates special code for AND immediates (OPC_CheckAndImm), which does not
> sign extend.

This patch doesn't introduce the special case for AND (and OR) immediates since the majority of it is related to handling known bits that have no effect on the result and GlobalISel doesn't detect known-bits at this time. Instead this patch just ensures that the immediate is extended consistently on both sides of the check.

Thanks to Diana Picus for the detailed bug report.

Reviewers: rovka

Reviewed By: rovka

Subscribers: kristof.beyls, javed.absar, llvm-commits

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

llvm-svn: 319252
This commit is contained in:
Daniel Sanders 2017-11-28 23:18:54 +00:00
parent 542dbb0bec
commit 88b4a0878a
2 changed files with 17 additions and 0 deletions

View File

@ -337,6 +337,11 @@ bool InstructionSelector::executeMatchTable(
<< InsnID << "]->getOperand(" << OpIdx
<< "), Value=" << Value << ")\n");
assert(State.MIs[InsnID] != nullptr && "Used insn before defined");
// isOperandImmEqual() will sign-extend to 64-bits, so should we.
LLT Ty = MRI.getType(State.MIs[InsnID]->getOperand(OpIdx).getReg());
Value = SignExtend64(Value, Ty.getSizeInBits());
if (!isOperandImmEqual(State.MIs[InsnID]->getOperand(OpIdx), Value,
MRI)) {
if (handleReject() == RejectAndGiveUp)

View File

@ -0,0 +1,12 @@
; RUN: llc -O0 -mtriple armv7-- -stop-before=expand-isel-pseudos < %s
; RUN: llc -O0 -mtriple armv7-- -stop-before=expand-isel-pseudos -global-isel < %s
; CHECK: PKHBT
define arm_aapcscc i32 @pkh(i32 %x, i32 %y) {
%andx = and i32 %x, 65535
%shl = shl i32 %y, 1
%andy = and i32 %shl, 4294901760 ; same as -65536
%or = or i32 %andx, %andy
ret i32 %or
}