[LLVMbugs] [Bug 24216] New: Incorrect VMX/Altivec Code Generation - Mis-using splat instructions
bugzilla-daemon at llvm.org
bugzilla-daemon at llvm.org
Wed Jul 22 10:36:41 PDT 2015
https://llvm.org/bugs/show_bug.cgi?id=24216
Bug ID: 24216
Summary: Incorrect VMX/Altivec Code Generation - Mis-using
splat instructions
Product: tools
Version: trunk
Hardware: PC
OS: Linux
Status: NEW
Severity: normal
Priority: P
Component: llc
Assignee: unassignedbugs at nondot.org
Reporter: tjkenney at us.ibm.com
CC: llvmbugs at cs.uiuc.edu
Classification: Unclassified
Created attachment 14629
--> https://llvm.org/bugs/attachment.cgi?id=14629&action=edit
tarball w/ .cl source, .ll source, .s output & Makefile
This bug causes the compiler to emit splat instructions which 'splat' the wrong
bytes from the source register. The issue is that the function
PPC::isSplatShuffleMask() in PPCISelLowering.cpp does not ensure that the
'splat' pattern found is requesting bytes that are aligned on an 'EltSize'
boundary. Therefore, the compiler emits splat instructions when it shouldn't;
the operation should be performed by a vperm or some other sequence of
instructions instead. Attached is an OpenCL-C function & the generated IR that
trigger this bug.
A simple fix would be to add this check in isSplatShuffleMask() with the
following line:
if (N->getMaskElt(0) % EltSize) return false;
This causes the VECTOR_SHUFFLE node to be lowered to a vperm inst instead. Is
there a better solution? Would a shift followed by a splat be preferred over a
vperm?
--
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20150722/90b754c4/attachment.html>
More information about the llvm-bugs
mailing list