diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/partial-fold32.ll')
| -rw-r--r-- | llvm/test/CodeGen/X86/partial-fold32.ll | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/X86/partial-fold32.ll b/llvm/test/CodeGen/X86/partial-fold32.ll new file mode 100644 index 00000000000..ba3f73ba90f --- /dev/null +++ b/llvm/test/CodeGen/X86/partial-fold32.ll @@ -0,0 +1,26 @@ +; RUN: llc -mtriple=i686-unknown-linux-gnu -enable-misched=false < %s | FileCheck %s + +define fastcc i8 @fold32to8(i32 %add, i8 %spill) { +; CHECK-LABEL: fold32to8: +; CHECK: movl %ecx, (%esp) # 4-byte Spill +; CHECK: movl (%esp), %eax # 4-byte Reload +; CHECK: subb %al, %dl +entry: + tail call void asm sideeffect "", "~{eax},~{ebx},~{ecx},~{edi},~{esi},~{ebp},~{dirflag},~{fpsr},~{flags}"() + %trunc = trunc i32 %add to i8 + %sub = sub i8 %spill, %trunc + ret i8 %sub +} + +; Do not fold a 1-byte store into a 4-byte spill slot +define fastcc i8 @nofold(i32 %add, i8 %spill) { +; CHECK-LABEL: nofold: +; CHECK: movl %edx, (%esp) # 4-byte Spill +; CHECK: movl (%esp), %eax # 4-byte Reload +; CHECK: subb %cl, %al +entry: + tail call void asm sideeffect "", "~{eax},~{ebx},~{edx},~{edi},~{esi},~{ebp},~{dirflag},~{fpsr},~{flags}"() + %trunc = trunc i32 %add to i8 + %sub = sub i8 %spill, %trunc + ret i8 %sub +} |

