Nadav Rotem
cfd40da9b1
SLP Vectorier: Don't vectorize really short chains because they are already handled by the SelectionDAG store-vectorizer, which does a better job in deciding when to vectorize.
...
llvm-svn: 187267
2013-07-26 23:07:55 +00:00
Stephen Lin
c1c7a1309c
Update Transforms tests to use CHECK-LABEL for easier debugging. No functionality change.
...
This update was done with the following bash script:
find test/Transforms -name "*.ll" | \
while read NAME; do
echo "$NAME"
if ! grep -q "^; *RUN: *llc" $NAME; then
TEMP=`mktemp -t temp`
cp $NAME $TEMP
sed -n "s/^define [^@]*@\([A-Za-z0-9_]*\)(.*$/\1/p" < $NAME | \
while read FUNC; do
sed -i '' "s/;\(.*\)\([A-Za-z0-9_]*\):\( *\)@$FUNC\([( ]*\)\$/;\1\2-LABEL:\3@$FUNC(/g" $TEMP
done
mv $TEMP $NAME
fi
done
llvm-svn: 186268
2013-07-14 01:42:54 +00:00
Eric Christopher
13637e900e
Revert "Recommit r179497 after fixing uninitialized variable." until
...
I can fix the testcases here:
http://lab.llvm.org:8011/builders/clang-native-arm-cortex-a9/builds/6952
This reverts commit r179512 due to testcases specifying triples
that they didn't actually mean and causing failures on other platforms.
llvm-svn: 179513
2013-04-15 07:31:37 +00:00
Eric Christopher
fc2beaa136
Recommit r179497 after fixing uninitialized variable.
...
llvm-svn: 179512
2013-04-15 07:07:21 +00:00
Eric Christopher
1f140317e3
Revert "Remove some unused triple and data layout."
...
This reverts commit r179497 and the accompanying commit as it broke random platforms that aren't osx.
llvm-svn: 179499
2013-04-14 23:35:36 +00:00
Eric Christopher
4eebd14ad0
Remove some unused triple and data layout.
...
llvm-svn: 179498
2013-04-14 23:32:44 +00:00
Nadav Rotem
6ebddae118
Make the command line triple match the module triple.
...
llvm-svn: 179492
2013-04-14 20:13:05 +00:00
Nadav Rotem
029208ceeb
Remove unused function attributes.
...
llvm-svn: 179476
2013-04-14 05:47:04 +00:00
Nadav Rotem
54b413d157
SLPVectorizer: Add support for trees that don't start at binary operators, and add the cost of extracting values from the roots of the tree.
...
llvm-svn: 179475
2013-04-14 05:15:53 +00:00