| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
| |
This changes the tests that were targeting ARM EABI to explicitly specify the
environment rather than relying on the default. This breaks with the new
Windows on ARM support when running the tests on Windows where the default
environment is no longer EABI.
Take the opportunity to avoid a pointless redirect (helps when trying to debug
with providing a command line invocation which can be copy and pasted) and
removing a few greps in favour of FileCheck.
llvm-svn: 205541
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
function definitions for more informative error messages. No functionality change and all updated tests passed locally.
This update was done with the following bash script:
find test/CodeGen -name "*.ll" | \
while read NAME; do
echo "$NAME"
if ! grep -q "^; *RUN: *llc.*debug" $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
sed -i '' "s/;\(.*\)-LABEL-LABEL:/;\1-LABEL:/" $TEMP
sed -i '' "s/;\(.*\)-NEXT-LABEL:/;\1-NEXT:/" $TEMP
sed -i '' "s/;\(.*\)-NOT-LABEL:/;\1-NOT:/" $TEMP
sed -i '' "s/;\(.*\)-DAG-LABEL:/;\1-DAG:/" $TEMP
mv $TEMP $NAME
fi
done
llvm-svn: 186280
|
|
|
|
|
|
| |
VFP vmla / vmls (they cause stalls). Disabling them in isel is properly not a right solution, I'll look into a proper solution next.
llvm-svn: 118922
|
|
|
|
| |
llvm-svn: 117531
|
|
|
|
|
|
| |
to fail. Ugh.
llvm-svn: 117520
|
|
|
|
|
|
|
|
|
|
| |
- For now, loads of [r, r] addressing mode is the same as the
[r, r lsl/lsr/asr #] variants. ARMBaseInstrInfo::getOperandLatency() should
identify the former case and reduce the output latency by 1.
- Also identify [r, r << 2] case. This special form of shifter addressing mode
is "free".
llvm-svn: 117519
|
|
|
|
| |
llvm-svn: 116992
|
|
|
|
| |
llvm-svn: 116987
|
|
|
|
|
|
| |
VFP registers.
llvm-svn: 116983
|
|
|
|
|
|
| |
point instructions (and is not using soft float).
llvm-svn: 104307
|
|
|
|
|
|
| |
Re-commit. This time complete with testsuite updates.
llvm-svn: 99570
|
|
|
|
| |
llvm-svn: 89593
|
|
|
|
| |
llvm-svn: 86494
|
|
|
|
|
|
| |
-arm-use-neon-fp to override the default.
llvm-svn: 83218
|
|
|
|
| |
llvm-svn: 81293
|
|
|
|
| |
llvm-svn: 78430
|
|
to enable. Added patterns for some binary FP operations.
llvm-svn: 78081
|