mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-17 03:07:06 +00:00
26dbe7ec18
by SRoA. This is part of rdar://7892780, but needs another xform to expose this. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112232 91177308-0d34-0410-b5e6-96231b3b80d8
63 lines
2.0 KiB
LLVM
63 lines
2.0 KiB
LLVM
; RUN: opt < %s -instcombine -S | FileCheck %s
|
|
|
|
; Bitcasts between vectors and scalars are valid.
|
|
; PR4487
|
|
define i32 @test1(i64 %a) {
|
|
%t1 = bitcast i64 %a to <2 x i32>
|
|
%t2 = bitcast i64 %a to <2 x i32>
|
|
%t3 = xor <2 x i32> %t1, %t2
|
|
%t4 = extractelement <2 x i32> %t3, i32 0
|
|
ret i32 %t4
|
|
|
|
; CHECK: @test1
|
|
; CHECK: ret i32 0
|
|
}
|
|
|
|
; Optimize bitcasts that are extracting low element of vector. This happens
|
|
; because of SRoA.
|
|
; rdar://7892780
|
|
define float @test2(<2 x float> %A, <2 x i32> %B) {
|
|
%tmp28 = bitcast <2 x float> %A to i64 ; <i64> [#uses=2]
|
|
%tmp23 = trunc i64 %tmp28 to i32 ; <i32> [#uses=1]
|
|
%tmp24 = bitcast i32 %tmp23 to float ; <float> [#uses=1]
|
|
|
|
%tmp = bitcast <2 x i32> %B to i64
|
|
%tmp2 = trunc i64 %tmp to i32 ; <i32> [#uses=1]
|
|
%tmp4 = bitcast i32 %tmp2 to float ; <float> [#uses=1]
|
|
|
|
%add = fadd float %tmp24, %tmp4
|
|
ret float %add
|
|
|
|
; CHECK: @test2
|
|
; CHECK-NEXT: %tmp24 = extractelement <2 x float> %A, i32 0
|
|
; CHECK-NEXT: bitcast <2 x i32> %B to <2 x float>
|
|
; CHECK-NEXT: %tmp4 = extractelement <2 x float> {{.*}}, i32 0
|
|
; CHECK-NEXT: %add = fadd float %tmp24, %tmp4
|
|
; CHECK-NEXT: ret float %add
|
|
}
|
|
|
|
; Optimize bitcasts that are extracting other elements of a vector. This
|
|
; happens because of SRoA.
|
|
; rdar://7892780
|
|
define float @test3(<2 x float> %A, <2 x i64> %B) {
|
|
%tmp28 = bitcast <2 x float> %A to i64
|
|
%tmp29 = lshr i64 %tmp28, 32
|
|
%tmp23 = trunc i64 %tmp29 to i32
|
|
%tmp24 = bitcast i32 %tmp23 to float
|
|
|
|
%tmp = bitcast <2 x i64> %B to i128
|
|
%tmp1 = lshr i128 %tmp, 64
|
|
%tmp2 = trunc i128 %tmp1 to i32
|
|
%tmp4 = bitcast i32 %tmp2 to float
|
|
|
|
%add = fadd float %tmp24, %tmp4
|
|
ret float %add
|
|
|
|
; CHECK: @test3
|
|
; CHECK-NEXT: %tmp24 = extractelement <2 x float> %A, i32 1
|
|
; CHECK-NEXT: bitcast <2 x i64> %B to <4 x float>
|
|
; CHECK-NEXT: %tmp4 = extractelement <4 x float> {{.*}}, i32 2
|
|
; CHECK-NEXT: %add = fadd float %tmp24, %tmp4
|
|
; CHECK-NEXT: ret float %add
|
|
}
|