[LLVMbugs] [Bug 17681] New: [Vectorizer] Recognize memory stride access
bugzilla-daemon at llvm.org
bugzilla-daemon at llvm.org
Thu Oct 24 04:28:21 PDT 2013
http://llvm.org/bugs/show_bug.cgi?id=17681
Bug ID: 17681
Summary: [Vectorizer] Recognize memory stride access
Product: libraries
Version: trunk
Hardware: PC
OS: Linux
Status: NEW
Severity: normal
Priority: P
Component: Loop Optimizer
Assignee: unassignedbugs at nondot.org
Reporter: renato.golin at linaro.org
CC: llvmbugs at cs.uiuc.edu
Classification: Unclassified
After implementing interleaved and non-interleaved non-unit stride access on
the vectorizer, make sure that cases where a pointer is used to access the
induction is mapped into a semantics we do understand.
Basically, making this:
for (i..N/3) {
a++ = b++ + K;
a++ = b++ + K;
a++ = b++ + K;
}
Look like this:
for (i..N/3) {
a[3*i] = b[3*i] + K;
a[3*i+1] = b[3*i+1] + K;
a[3*i+2] = b[3*i+2] + K;
}
--
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/20131024/17153964/attachment.html>
More information about the llvm-bugs
mailing list