diff options
author | Dan Gohman <gohman@apple.com> | 2008-07-30 18:09:17 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-07-30 18:09:17 +0000 |
commit | 86b06335aadb6b58c657b08c33cb78a07e86865b (patch) | |
tree | b81fe01e56a2585dd1724245a9d6a82d0db277f2 /llvm/test/CodeGen | |
parent | 6a77d42a4d0ed9ad0ff92b9434cd88dc968c087d (diff) | |
download | bcm5719-llvm-86b06335aadb6b58c657b08c33cb78a07e86865b.tar.gz bcm5719-llvm-86b06335aadb6b58c657b08c33cb78a07e86865b.zip |
Reapply r54147 with a constraint to only use the 8-bit
subreg form on x86-64, to avoid the problem with x86-32
having GPRs that don't have 8-bit subregs.
Also, change several 16-bit instructions to use
equivalent 32-bit instructions. These have a smaller
encoding and avoid partial-register updates.
llvm-svn: 54223
Diffstat (limited to 'llvm/test/CodeGen')
-rw-r--r-- | llvm/test/CodeGen/X86/zext-inreg-0.ll | 51 | ||||
-rw-r--r-- | llvm/test/CodeGen/X86/zext-inreg-1.ll | 13 | ||||
-rw-r--r-- | llvm/test/CodeGen/X86/zext-inreg-2.ll | 28 |
3 files changed, 92 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/X86/zext-inreg-0.ll b/llvm/test/CodeGen/X86/zext-inreg-0.ll new file mode 100644 index 00000000000..62c651c8350 --- /dev/null +++ b/llvm/test/CodeGen/X86/zext-inreg-0.ll @@ -0,0 +1,51 @@ +; RUN: llvm-as < %s | llc -march=x86 | not grep and +; RUN: llvm-as < %s | llc -march=x86-64 > %t +; RUN: not grep and %t +; RUN: not grep movzbq %t +; RUN: not grep movzwq %t +; RUN: not grep movzlq %t + +; These should use movzbl instead of 'and 255'. +; This related to not having a ZERO_EXTEND_REG opcode. + +define i32 @c(i32 %d) nounwind { + %e = add i32 %d, 1 + %retval = and i32 %e, 65535 + ret i32 %retval +} +define i64 @e(i64 %d) nounwind { + %e = add i64 %d, 1 + %retval = and i64 %e, 65535 + ret i64 %retval +} +define i64 @f(i64 %d) nounwind { + %e = add i64 %d, 1 + %retval = and i64 %e, 4294967295 + ret i64 %retval +} + +define i32 @g(i8 %d) nounwind { + %e = add i8 %d, 1 + %retval = zext i8 %e to i32 + ret i32 %retval +} +define i32 @h(i16 %d) nounwind { + %e = add i16 %d, 1 + %retval = zext i16 %e to i32 + ret i32 %retval +} +define i64 @i(i8 %d) nounwind { + %e = add i8 %d, 1 + %retval = zext i8 %e to i64 + ret i64 %retval +} +define i64 @j(i16 %d) nounwind { + %e = add i16 %d, 1 + %retval = zext i16 %e to i64 + ret i64 %retval +} +define i64 @k(i32 %d) nounwind { + %e = add i32 %d, 1 + %retval = zext i32 %e to i64 + ret i64 %retval +} diff --git a/llvm/test/CodeGen/X86/zext-inreg-1.ll b/llvm/test/CodeGen/X86/zext-inreg-1.ll new file mode 100644 index 00000000000..6a678b2e3b2 --- /dev/null +++ b/llvm/test/CodeGen/X86/zext-inreg-1.ll @@ -0,0 +1,13 @@ +; RUN: llvm-as < %s | llc -march=x86 | not grep and + +; These tests differ from the ones in zext-inreg-0.ll in that +; on x86-64 they do require and instructions. + +; These should use movzbl instead of 'and 255'. +; This related to not having ZERO_EXTEND_REG node. + +define i64 @h(i64 %d) nounwind { + %e = add i64 %d, 1 + %retval = and i64 %e, 281474976710655 + ret i64 %retval +} diff --git a/llvm/test/CodeGen/X86/zext-inreg-2.ll b/llvm/test/CodeGen/X86/zext-inreg-2.ll new file mode 100644 index 00000000000..1209dac7f6f --- /dev/null +++ b/llvm/test/CodeGen/X86/zext-inreg-2.ll @@ -0,0 +1,28 @@ +; RUN: llvm-as < %s | llc -march=x86-64 > %t +; RUN: not grep and %t +; RUN: not grep movzbq %t +; RUN: not grep movzwq %t +; RUN: not grep movzlq %t + +; These should use movzbl instead of 'and 255'. +; This related to not having a ZERO_EXTEND_REG opcode. + +; This test was split out of zext-inreg-0.ll because these +; cases don't yet work on x86-32 due to the 8-bit subreg +; issue. + +define i32 @a(i32 %d) nounwind { + %e = add i32 %d, 1 + %retval = and i32 %e, 255 + ret i32 %retval +} +define i32 @b(float %d) nounwind { + %tmp12 = fptoui float %d to i8 + %retval = zext i8 %tmp12 to i32 + ret i32 %retval +} +define i64 @d(i64 %d) nounwind { + %e = add i64 %d, 1 + %retval = and i64 %e, 255 + ret i64 %retval +} |