| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
| |
debugging. No functionality change and all tests pass after conversion.
This was done with the following sed invocation to catch label lines demarking function boundaries:
sed -i '' "s/^;\( *\)\([A-Z0-9_]*\):\( *\)test\([A-Za-z0-9_-]*\):\( *\)$/;\1\2-LABEL:\3test\4:\5/g" test/CodeGen/*/*.ll
which was written conservatively to avoid false positives rather than false negatives. I scanned through all the changes and everything looks correct.
llvm-svn: 186258
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This patch will generate the following for integer ABS:
movl %edi, %eax
negl %eax
cmovll %edi, %eax
INSTEAD OF
movl %edi, %ecx
sarl $31, %ecx
leal (%rdi,%rcx), %eax
xorl %ecx, %eax
There exists a target-independent DAG combine for integer ABS, which converts
integer ABS to sar+add+xor. For X86, we match this pattern back to neg+cmov.
This is implemented in PerformXorCombine.
rdar://10695237
llvm-svn: 158175
|
| |
|
|
|
|
| |
rdar://9002648.
llvm-svn: 126811
|
| |
|
|
| |
llvm-svn: 81290
|
| |
|
|
|
|
| |
this is now the default.
llvm-svn: 49667
|
| |
|
|
| |
llvm-svn: 49391
|
| |
|
|
|
|
|
| |
that need it (usually, grepping for some string
found in unwind info)
llvm-svn: 49364
|
| |
|
|
|
|
|
|
| |
EH info for these functions causes the tests to fail for
random reasons (e.g. looking for 'or' or counting lines
with asm-printer; labels count as lines.)
llvm-svn: 49003
|
| |
|
|
|
|
| |
Fix test syntax per new rules.
llvm-svn: 36133
|
|
|
llvm-svn: 35880
|