diff options
author | Hal Finkel <hfinkel@anl.gov> | 2014-03-23 05:35:00 +0000 |
---|---|---|
committer | Hal Finkel <hfinkel@anl.gov> | 2014-03-23 05:35:00 +0000 |
commit | 4a912250fa3830c6cb0bd2ebc8a7e1992b14520b (patch) | |
tree | 82586bf8e1ecc53a42c556335d5591fa1a0d761b /llvm/test/CodeGen/PowerPC/i64-to-float.ll | |
parent | 459b5dc39e7e7d636a424606b2ac401bccf281e3 (diff) | |
download | bcm5719-llvm-4a912250fa3830c6cb0bd2ebc8a7e1992b14520b.tar.gz bcm5719-llvm-4a912250fa3830c6cb0bd2ebc8a7e1992b14520b.zip |
[PowerPC] Make use of VSX f64 <-> i64 conversion instructions
When VSX is available, these instructions should be used in preference to the
older variants that only have access to the scalar floating-point registers.
llvm-svn: 204559
Diffstat (limited to 'llvm/test/CodeGen/PowerPC/i64-to-float.ll')
-rw-r--r-- | llvm/test/CodeGen/PowerPC/i64-to-float.ll | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/PowerPC/i64-to-float.ll b/llvm/test/CodeGen/PowerPC/i64-to-float.ll index b81d109e7f4..025a875c190 100644 --- a/llvm/test/CodeGen/PowerPC/i64-to-float.ll +++ b/llvm/test/CodeGen/PowerPC/i64-to-float.ll @@ -1,4 +1,5 @@ ; RUN: llc < %s -mtriple=powerpc64-unknown-linux-gnu -mcpu=a2 | FileCheck %s +; RUN: llc < %s -mtriple=powerpc64-unknown-linux-gnu -mcpu=pwr7 -mattr=+vsx | FileCheck -check-prefix=CHECK-VSX %s target datalayout = "E-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f128:128:128-v128:128:128-n32:64" target triple = "powerpc64-unknown-linux-gnu" @@ -12,6 +13,12 @@ entry: ; CHECK: lfd [[REG:[0-9]+]], ; CHECK: fcfids 1, [[REG]] ; CHECK: blr + +; CHECK-VSX: @foo +; CHECK-VSX: std 3, +; CHECK-VSX: lxsdx [[REG:[0-9]+]], +; CHECK-VSX: fcfids 1, [[REG]] +; CHECK-VSX: blr } define double @goo(i64 %a) nounwind { @@ -24,6 +31,12 @@ entry: ; CHECK: lfd [[REG:[0-9]+]], ; CHECK: fcfid 1, [[REG]] ; CHECK: blr + +; CHECK-VSX: @goo +; CHECK-VSX: std 3, +; CHECK-VSX: lxsdx [[REG:[0-9]+]], +; CHECK-VSX: xscvsxddp 1, [[REG]] +; CHECK-VSX: blr } define float @foou(i64 %a) nounwind { @@ -36,6 +49,12 @@ entry: ; CHECK: lfd [[REG:[0-9]+]], ; CHECK: fcfidus 1, [[REG]] ; CHECK: blr + +; CHECK-VSX: @foou +; CHECK-VSX: std 3, +; CHECK-VSX: lxsdx [[REG:[0-9]+]], +; CHECK-VSX: fcfidus 1, [[REG]] +; CHECK-VSX: blr } define double @goou(i64 %a) nounwind { @@ -48,5 +67,11 @@ entry: ; CHECK: lfd [[REG:[0-9]+]], ; CHECK: fcfidu 1, [[REG]] ; CHECK: blr + +; CHECK-VSX: @goou +; CHECK-VSX: std 3, +; CHECK-VSX: lxsdx [[REG:[0-9]+]], +; CHECK-VSX: xscvuxddp 1, [[REG]] +; CHECK-VSX: blr } |