The Neon VCVT (between floating-point and fixed-point, Advanced SIMD)
instructions can be used to match combinations of multiply/divide and VCVT
(between floating-point and integer, Advanced SIMD). Basically the VCVT
immediate operand that specifies the number of fraction bits corresponds to a
floating-point multiply or divide by the corresponding power of 2.
For example, VCVT (floating-point to fixed-point, Advanced SIMD) can replace a
combination of VMUL and VCVT (floating-point to integer) as follows:
Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
vmul.f32 d16, d17, d16
vcvt.s32.f32 d16, d16
becomes:
vcvt.s32.f32 d16, d16, #3
Similarly, VCVT (fixed-point to floating-point, Advanced SIMD) can replace a
combinations of VCVT (integer to floating-point) and VDIV as follows:
Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
vcvt.f32.s32 d16, d16
vdiv.f32 d16, d17, d16
becomes:
vcvt.f32.s32 d16, d16, #3
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133813 91177308-0d34-0410-b5e6-96231b3b80d8
2011-06-24 19:23:04 +00:00
|
|
|
; RUN: llc < %s -mtriple=armv7-apple-ios | FileCheck %s
|
|
|
|
|
|
|
|
@in = global float 0x400921FA00000000, align 4
|
|
|
|
@iin = global i32 -1023, align 4
|
|
|
|
@uin = global i32 1023, align 4
|
|
|
|
|
|
|
|
declare void @foo_int32x4_t(<4 x i32>)
|
|
|
|
|
|
|
|
; Test signed conversion.
|
|
|
|
; CHECK: t1
|
2012-04-07 20:04:00 +00:00
|
|
|
; CHECK-NOT: {{vdiv|vmul}}
|
The Neon VCVT (between floating-point and fixed-point, Advanced SIMD)
instructions can be used to match combinations of multiply/divide and VCVT
(between floating-point and integer, Advanced SIMD). Basically the VCVT
immediate operand that specifies the number of fraction bits corresponds to a
floating-point multiply or divide by the corresponding power of 2.
For example, VCVT (floating-point to fixed-point, Advanced SIMD) can replace a
combination of VMUL and VCVT (floating-point to integer) as follows:
Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
vmul.f32 d16, d17, d16
vcvt.s32.f32 d16, d16
becomes:
vcvt.s32.f32 d16, d16, #3
Similarly, VCVT (fixed-point to floating-point, Advanced SIMD) can replace a
combinations of VCVT (integer to floating-point) and VDIV as follows:
Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
vcvt.f32.s32 d16, d16
vdiv.f32 d16, d17, d16
becomes:
vcvt.f32.s32 d16, d16, #3
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133813 91177308-0d34-0410-b5e6-96231b3b80d8
2011-06-24 19:23:04 +00:00
|
|
|
define void @t1() nounwind {
|
|
|
|
entry:
|
2013-04-30 17:52:57 +00:00
|
|
|
%tmp = load i32* @iin, align 4
|
The Neon VCVT (between floating-point and fixed-point, Advanced SIMD)
instructions can be used to match combinations of multiply/divide and VCVT
(between floating-point and integer, Advanced SIMD). Basically the VCVT
immediate operand that specifies the number of fraction bits corresponds to a
floating-point multiply or divide by the corresponding power of 2.
For example, VCVT (floating-point to fixed-point, Advanced SIMD) can replace a
combination of VMUL and VCVT (floating-point to integer) as follows:
Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
vmul.f32 d16, d17, d16
vcvt.s32.f32 d16, d16
becomes:
vcvt.s32.f32 d16, d16, #3
Similarly, VCVT (fixed-point to floating-point, Advanced SIMD) can replace a
combinations of VCVT (integer to floating-point) and VDIV as follows:
Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
vcvt.f32.s32 d16, d16
vdiv.f32 d16, d17, d16
becomes:
vcvt.f32.s32 d16, d16, #3
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133813 91177308-0d34-0410-b5e6-96231b3b80d8
2011-06-24 19:23:04 +00:00
|
|
|
%vecinit.i = insertelement <2 x i32> undef, i32 %tmp, i32 0
|
|
|
|
%vecinit2.i = insertelement <2 x i32> %vecinit.i, i32 %tmp, i32 1
|
|
|
|
%vcvt.i = sitofp <2 x i32> %vecinit2.i to <2 x float>
|
|
|
|
%div.i = fdiv <2 x float> %vcvt.i, <float 8.000000e+00, float 8.000000e+00>
|
|
|
|
tail call void @foo_float32x2_t(<2 x float> %div.i) nounwind
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
declare void @foo_float32x2_t(<2 x float>)
|
|
|
|
|
|
|
|
; Test unsigned conversion.
|
|
|
|
; CHECK: t2
|
2012-04-07 20:04:00 +00:00
|
|
|
; CHECK-NOT: {{vdiv|vmul}}
|
The Neon VCVT (between floating-point and fixed-point, Advanced SIMD)
instructions can be used to match combinations of multiply/divide and VCVT
(between floating-point and integer, Advanced SIMD). Basically the VCVT
immediate operand that specifies the number of fraction bits corresponds to a
floating-point multiply or divide by the corresponding power of 2.
For example, VCVT (floating-point to fixed-point, Advanced SIMD) can replace a
combination of VMUL and VCVT (floating-point to integer) as follows:
Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
vmul.f32 d16, d17, d16
vcvt.s32.f32 d16, d16
becomes:
vcvt.s32.f32 d16, d16, #3
Similarly, VCVT (fixed-point to floating-point, Advanced SIMD) can replace a
combinations of VCVT (integer to floating-point) and VDIV as follows:
Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
vcvt.f32.s32 d16, d16
vdiv.f32 d16, d17, d16
becomes:
vcvt.f32.s32 d16, d16, #3
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133813 91177308-0d34-0410-b5e6-96231b3b80d8
2011-06-24 19:23:04 +00:00
|
|
|
define void @t2() nounwind {
|
|
|
|
entry:
|
2013-04-30 17:52:57 +00:00
|
|
|
%tmp = load i32* @uin, align 4
|
The Neon VCVT (between floating-point and fixed-point, Advanced SIMD)
instructions can be used to match combinations of multiply/divide and VCVT
(between floating-point and integer, Advanced SIMD). Basically the VCVT
immediate operand that specifies the number of fraction bits corresponds to a
floating-point multiply or divide by the corresponding power of 2.
For example, VCVT (floating-point to fixed-point, Advanced SIMD) can replace a
combination of VMUL and VCVT (floating-point to integer) as follows:
Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
vmul.f32 d16, d17, d16
vcvt.s32.f32 d16, d16
becomes:
vcvt.s32.f32 d16, d16, #3
Similarly, VCVT (fixed-point to floating-point, Advanced SIMD) can replace a
combinations of VCVT (integer to floating-point) and VDIV as follows:
Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
vcvt.f32.s32 d16, d16
vdiv.f32 d16, d17, d16
becomes:
vcvt.f32.s32 d16, d16, #3
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133813 91177308-0d34-0410-b5e6-96231b3b80d8
2011-06-24 19:23:04 +00:00
|
|
|
%vecinit.i = insertelement <2 x i32> undef, i32 %tmp, i32 0
|
|
|
|
%vecinit2.i = insertelement <2 x i32> %vecinit.i, i32 %tmp, i32 1
|
|
|
|
%vcvt.i = uitofp <2 x i32> %vecinit2.i to <2 x float>
|
|
|
|
%div.i = fdiv <2 x float> %vcvt.i, <float 8.000000e+00, float 8.000000e+00>
|
|
|
|
tail call void @foo_float32x2_t(<2 x float> %div.i) nounwind
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; Test which should not fold due to non-power of 2.
|
|
|
|
; CHECK: t3
|
2012-04-07 20:04:00 +00:00
|
|
|
; CHECK: {{vdiv|vmul}}
|
The Neon VCVT (between floating-point and fixed-point, Advanced SIMD)
instructions can be used to match combinations of multiply/divide and VCVT
(between floating-point and integer, Advanced SIMD). Basically the VCVT
immediate operand that specifies the number of fraction bits corresponds to a
floating-point multiply or divide by the corresponding power of 2.
For example, VCVT (floating-point to fixed-point, Advanced SIMD) can replace a
combination of VMUL and VCVT (floating-point to integer) as follows:
Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
vmul.f32 d16, d17, d16
vcvt.s32.f32 d16, d16
becomes:
vcvt.s32.f32 d16, d16, #3
Similarly, VCVT (fixed-point to floating-point, Advanced SIMD) can replace a
combinations of VCVT (integer to floating-point) and VDIV as follows:
Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
vcvt.f32.s32 d16, d16
vdiv.f32 d16, d17, d16
becomes:
vcvt.f32.s32 d16, d16, #3
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133813 91177308-0d34-0410-b5e6-96231b3b80d8
2011-06-24 19:23:04 +00:00
|
|
|
define void @t3() nounwind {
|
|
|
|
entry:
|
2013-04-30 17:52:57 +00:00
|
|
|
%tmp = load i32* @iin, align 4
|
The Neon VCVT (between floating-point and fixed-point, Advanced SIMD)
instructions can be used to match combinations of multiply/divide and VCVT
(between floating-point and integer, Advanced SIMD). Basically the VCVT
immediate operand that specifies the number of fraction bits corresponds to a
floating-point multiply or divide by the corresponding power of 2.
For example, VCVT (floating-point to fixed-point, Advanced SIMD) can replace a
combination of VMUL and VCVT (floating-point to integer) as follows:
Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
vmul.f32 d16, d17, d16
vcvt.s32.f32 d16, d16
becomes:
vcvt.s32.f32 d16, d16, #3
Similarly, VCVT (fixed-point to floating-point, Advanced SIMD) can replace a
combinations of VCVT (integer to floating-point) and VDIV as follows:
Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
vcvt.f32.s32 d16, d16
vdiv.f32 d16, d17, d16
becomes:
vcvt.f32.s32 d16, d16, #3
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133813 91177308-0d34-0410-b5e6-96231b3b80d8
2011-06-24 19:23:04 +00:00
|
|
|
%vecinit.i = insertelement <2 x i32> undef, i32 %tmp, i32 0
|
|
|
|
%vecinit2.i = insertelement <2 x i32> %vecinit.i, i32 %tmp, i32 1
|
|
|
|
%vcvt.i = sitofp <2 x i32> %vecinit2.i to <2 x float>
|
|
|
|
%div.i = fdiv <2 x float> %vcvt.i, <float 0x401B333340000000, float 0x401B333340000000>
|
|
|
|
tail call void @foo_float32x2_t(<2 x float> %div.i) nounwind
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; Test which should not fold due to power of 2 out of range.
|
|
|
|
; CHECK: t4
|
2012-04-07 20:04:00 +00:00
|
|
|
; CHECK: {{vdiv|vmul}}
|
The Neon VCVT (between floating-point and fixed-point, Advanced SIMD)
instructions can be used to match combinations of multiply/divide and VCVT
(between floating-point and integer, Advanced SIMD). Basically the VCVT
immediate operand that specifies the number of fraction bits corresponds to a
floating-point multiply or divide by the corresponding power of 2.
For example, VCVT (floating-point to fixed-point, Advanced SIMD) can replace a
combination of VMUL and VCVT (floating-point to integer) as follows:
Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
vmul.f32 d16, d17, d16
vcvt.s32.f32 d16, d16
becomes:
vcvt.s32.f32 d16, d16, #3
Similarly, VCVT (fixed-point to floating-point, Advanced SIMD) can replace a
combinations of VCVT (integer to floating-point) and VDIV as follows:
Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
vcvt.f32.s32 d16, d16
vdiv.f32 d16, d17, d16
becomes:
vcvt.f32.s32 d16, d16, #3
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133813 91177308-0d34-0410-b5e6-96231b3b80d8
2011-06-24 19:23:04 +00:00
|
|
|
define void @t4() nounwind {
|
|
|
|
entry:
|
2013-04-30 17:52:57 +00:00
|
|
|
%tmp = load i32* @iin, align 4
|
The Neon VCVT (between floating-point and fixed-point, Advanced SIMD)
instructions can be used to match combinations of multiply/divide and VCVT
(between floating-point and integer, Advanced SIMD). Basically the VCVT
immediate operand that specifies the number of fraction bits corresponds to a
floating-point multiply or divide by the corresponding power of 2.
For example, VCVT (floating-point to fixed-point, Advanced SIMD) can replace a
combination of VMUL and VCVT (floating-point to integer) as follows:
Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
vmul.f32 d16, d17, d16
vcvt.s32.f32 d16, d16
becomes:
vcvt.s32.f32 d16, d16, #3
Similarly, VCVT (fixed-point to floating-point, Advanced SIMD) can replace a
combinations of VCVT (integer to floating-point) and VDIV as follows:
Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
vcvt.f32.s32 d16, d16
vdiv.f32 d16, d17, d16
becomes:
vcvt.f32.s32 d16, d16, #3
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133813 91177308-0d34-0410-b5e6-96231b3b80d8
2011-06-24 19:23:04 +00:00
|
|
|
%vecinit.i = insertelement <2 x i32> undef, i32 %tmp, i32 0
|
|
|
|
%vecinit2.i = insertelement <2 x i32> %vecinit.i, i32 %tmp, i32 1
|
|
|
|
%vcvt.i = sitofp <2 x i32> %vecinit2.i to <2 x float>
|
|
|
|
%div.i = fdiv <2 x float> %vcvt.i, <float 0x4200000000000000, float 0x4200000000000000>
|
|
|
|
tail call void @foo_float32x2_t(<2 x float> %div.i) nounwind
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; Test case where const is max power of 2 (i.e., 2^32).
|
|
|
|
; CHECK: t5
|
2012-04-07 20:04:00 +00:00
|
|
|
; CHECK-NOT: {{vdiv|vmul}}
|
The Neon VCVT (between floating-point and fixed-point, Advanced SIMD)
instructions can be used to match combinations of multiply/divide and VCVT
(between floating-point and integer, Advanced SIMD). Basically the VCVT
immediate operand that specifies the number of fraction bits corresponds to a
floating-point multiply or divide by the corresponding power of 2.
For example, VCVT (floating-point to fixed-point, Advanced SIMD) can replace a
combination of VMUL and VCVT (floating-point to integer) as follows:
Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
vmul.f32 d16, d17, d16
vcvt.s32.f32 d16, d16
becomes:
vcvt.s32.f32 d16, d16, #3
Similarly, VCVT (fixed-point to floating-point, Advanced SIMD) can replace a
combinations of VCVT (integer to floating-point) and VDIV as follows:
Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
vcvt.f32.s32 d16, d16
vdiv.f32 d16, d17, d16
becomes:
vcvt.f32.s32 d16, d16, #3
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133813 91177308-0d34-0410-b5e6-96231b3b80d8
2011-06-24 19:23:04 +00:00
|
|
|
define void @t5() nounwind {
|
|
|
|
entry:
|
2013-04-30 17:52:57 +00:00
|
|
|
%tmp = load i32* @iin, align 4
|
The Neon VCVT (between floating-point and fixed-point, Advanced SIMD)
instructions can be used to match combinations of multiply/divide and VCVT
(between floating-point and integer, Advanced SIMD). Basically the VCVT
immediate operand that specifies the number of fraction bits corresponds to a
floating-point multiply or divide by the corresponding power of 2.
For example, VCVT (floating-point to fixed-point, Advanced SIMD) can replace a
combination of VMUL and VCVT (floating-point to integer) as follows:
Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
vmul.f32 d16, d17, d16
vcvt.s32.f32 d16, d16
becomes:
vcvt.s32.f32 d16, d16, #3
Similarly, VCVT (fixed-point to floating-point, Advanced SIMD) can replace a
combinations of VCVT (integer to floating-point) and VDIV as follows:
Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
vcvt.f32.s32 d16, d16
vdiv.f32 d16, d17, d16
becomes:
vcvt.f32.s32 d16, d16, #3
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133813 91177308-0d34-0410-b5e6-96231b3b80d8
2011-06-24 19:23:04 +00:00
|
|
|
%vecinit.i = insertelement <2 x i32> undef, i32 %tmp, i32 0
|
|
|
|
%vecinit2.i = insertelement <2 x i32> %vecinit.i, i32 %tmp, i32 1
|
|
|
|
%vcvt.i = sitofp <2 x i32> %vecinit2.i to <2 x float>
|
|
|
|
%div.i = fdiv <2 x float> %vcvt.i, <float 0x41F0000000000000, float 0x41F0000000000000>
|
|
|
|
tail call void @foo_float32x2_t(<2 x float> %div.i) nounwind
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; Test quadword.
|
|
|
|
; CHECK: t6
|
2012-04-07 20:04:00 +00:00
|
|
|
; CHECK-NOT: {{vdiv|vmul}}
|
The Neon VCVT (between floating-point and fixed-point, Advanced SIMD)
instructions can be used to match combinations of multiply/divide and VCVT
(between floating-point and integer, Advanced SIMD). Basically the VCVT
immediate operand that specifies the number of fraction bits corresponds to a
floating-point multiply or divide by the corresponding power of 2.
For example, VCVT (floating-point to fixed-point, Advanced SIMD) can replace a
combination of VMUL and VCVT (floating-point to integer) as follows:
Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
vmul.f32 d16, d17, d16
vcvt.s32.f32 d16, d16
becomes:
vcvt.s32.f32 d16, d16, #3
Similarly, VCVT (fixed-point to floating-point, Advanced SIMD) can replace a
combinations of VCVT (integer to floating-point) and VDIV as follows:
Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
vcvt.f32.s32 d16, d16
vdiv.f32 d16, d17, d16
becomes:
vcvt.f32.s32 d16, d16, #3
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133813 91177308-0d34-0410-b5e6-96231b3b80d8
2011-06-24 19:23:04 +00:00
|
|
|
define void @t6() nounwind {
|
|
|
|
entry:
|
2013-04-30 17:52:57 +00:00
|
|
|
%tmp = load i32* @iin, align 4
|
The Neon VCVT (between floating-point and fixed-point, Advanced SIMD)
instructions can be used to match combinations of multiply/divide and VCVT
(between floating-point and integer, Advanced SIMD). Basically the VCVT
immediate operand that specifies the number of fraction bits corresponds to a
floating-point multiply or divide by the corresponding power of 2.
For example, VCVT (floating-point to fixed-point, Advanced SIMD) can replace a
combination of VMUL and VCVT (floating-point to integer) as follows:
Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
vmul.f32 d16, d17, d16
vcvt.s32.f32 d16, d16
becomes:
vcvt.s32.f32 d16, d16, #3
Similarly, VCVT (fixed-point to floating-point, Advanced SIMD) can replace a
combinations of VCVT (integer to floating-point) and VDIV as follows:
Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
vcvt.f32.s32 d16, d16
vdiv.f32 d16, d17, d16
becomes:
vcvt.f32.s32 d16, d16, #3
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133813 91177308-0d34-0410-b5e6-96231b3b80d8
2011-06-24 19:23:04 +00:00
|
|
|
%vecinit.i = insertelement <4 x i32> undef, i32 %tmp, i32 0
|
|
|
|
%vecinit2.i = insertelement <4 x i32> %vecinit.i, i32 %tmp, i32 1
|
|
|
|
%vecinit4.i = insertelement <4 x i32> %vecinit2.i, i32 %tmp, i32 2
|
|
|
|
%vecinit6.i = insertelement <4 x i32> %vecinit4.i, i32 %tmp, i32 3
|
|
|
|
%vcvt.i = sitofp <4 x i32> %vecinit6.i to <4 x float>
|
|
|
|
%div.i = fdiv <4 x float> %vcvt.i, <float 8.000000e+00, float 8.000000e+00, float 8.000000e+00, float 8.000000e+00>
|
|
|
|
tail call void @foo_float32x4_t(<4 x float> %div.i) nounwind
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
declare void @foo_float32x4_t(<4 x float>)
|
2013-06-28 15:29:25 +00:00
|
|
|
|
|
|
|
define <4 x float> @fix_unsigned_i16_to_float(<4 x i16> %in) {
|
2013-07-14 06:24:09 +00:00
|
|
|
; CHECK-LABEL: fix_unsigned_i16_to_float:
|
2013-06-28 15:29:25 +00:00
|
|
|
; CHECK: vmovl.u16 [[TMP:q[0-9]+]], {{d[0-9]+}}
|
|
|
|
; CHECK: vcvt.f32.u32 {{q[0-9]+}}, [[TMP]], #1
|
|
|
|
|
|
|
|
%conv = uitofp <4 x i16> %in to <4 x float>
|
|
|
|
%shift = fdiv <4 x float> %conv, <float 2.0, float 2.0, float 2.0, float 2.0>
|
|
|
|
ret <4 x float> %shift
|
|
|
|
}
|
|
|
|
|
|
|
|
define <4 x float> @fix_signed_i16_to_float(<4 x i16> %in) {
|
2013-07-14 06:24:09 +00:00
|
|
|
; CHECK-LABEL: fix_signed_i16_to_float:
|
2013-06-28 15:29:25 +00:00
|
|
|
; CHECK: vmovl.s16 [[TMP:q[0-9]+]], {{d[0-9]+}}
|
|
|
|
; CHECK: vcvt.f32.s32 {{q[0-9]+}}, [[TMP]], #1
|
|
|
|
|
|
|
|
%conv = sitofp <4 x i16> %in to <4 x float>
|
|
|
|
%shift = fdiv <4 x float> %conv, <float 2.0, float 2.0, float 2.0, float 2.0>
|
|
|
|
ret <4 x float> %shift
|
|
|
|
}
|
|
|
|
|
|
|
|
define <2 x float> @fix_i64_to_float(<2 x i64> %in) {
|
2013-07-14 06:24:09 +00:00
|
|
|
; CHECK-LABEL: fix_i64_to_float:
|
2013-06-28 15:29:25 +00:00
|
|
|
; CHECK: bl
|
|
|
|
; CHECK: bl
|
|
|
|
|
|
|
|
%conv = uitofp <2 x i64> %in to <2 x float>
|
|
|
|
%shift = fdiv <2 x float> %conv, <float 2.0, float 2.0>
|
|
|
|
ret <2 x float> %shift
|
|
|
|
}
|
|
|
|
|
|
|
|
define <2 x double> @fix_i64_to_double(<2 x i64> %in) {
|
2013-07-14 06:24:09 +00:00
|
|
|
; CHECK-LABEL: fix_i64_to_double:
|
2013-06-28 15:29:25 +00:00
|
|
|
; CHECK: bl
|
|
|
|
; CHECK: bl
|
|
|
|
|
|
|
|
%conv = uitofp <2 x i64> %in to <2 x double>
|
|
|
|
%shift = fdiv <2 x double> %conv, <double 2.0, double 2.0>
|
|
|
|
ret <2 x double> %shift
|
|
|
|
}
|
|
|
|
|