2
0

bitcast-bigendian.ll 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. ; RUN: opt < %s -instcombine -S | FileCheck %s
  2. 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"
  3. target triple = "powerpc64-unknown-linux-gnu"
  4. ; These tests are extracted from bitcast.ll.
  5. ; Verify that they also work correctly on big-endian targets.
  6. define float @test2(<2 x float> %A, <2 x i32> %B) {
  7. %tmp28 = bitcast <2 x float> %A to i64 ; <i64> [#uses=2]
  8. %tmp23 = trunc i64 %tmp28 to i32 ; <i32> [#uses=1]
  9. %tmp24 = bitcast i32 %tmp23 to float ; <float> [#uses=1]
  10. %tmp = bitcast <2 x i32> %B to i64
  11. %tmp2 = trunc i64 %tmp to i32 ; <i32> [#uses=1]
  12. %tmp4 = bitcast i32 %tmp2 to float ; <float> [#uses=1]
  13. %add = fadd float %tmp24, %tmp4
  14. ret float %add
  15. ; CHECK-LABEL: @test2(
  16. ; CHECK-NEXT: %tmp24 = extractelement <2 x float> %A, i32 1
  17. ; CHECK-NEXT: bitcast <2 x i32> %B to <2 x float>
  18. ; CHECK-NEXT: %tmp4 = extractelement <2 x float> {{.*}}, i32 1
  19. ; CHECK-NEXT: %add = fadd float %tmp24, %tmp4
  20. ; CHECK-NEXT: ret float %add
  21. }
  22. define float @test3(<2 x float> %A, <2 x i64> %B) {
  23. %tmp28 = bitcast <2 x float> %A to i64
  24. %tmp29 = lshr i64 %tmp28, 32
  25. %tmp23 = trunc i64 %tmp29 to i32
  26. %tmp24 = bitcast i32 %tmp23 to float
  27. %tmp = bitcast <2 x i64> %B to i128
  28. %tmp1 = lshr i128 %tmp, 64
  29. %tmp2 = trunc i128 %tmp1 to i32
  30. %tmp4 = bitcast i32 %tmp2 to float
  31. %add = fadd float %tmp24, %tmp4
  32. ret float %add
  33. ; CHECK-LABEL: @test3(
  34. ; CHECK-NEXT: %tmp24 = extractelement <2 x float> %A, i32 0
  35. ; CHECK-NEXT: bitcast <2 x i64> %B to <4 x float>
  36. ; CHECK-NEXT: %tmp4 = extractelement <4 x float> {{.*}}, i32 1
  37. ; CHECK-NEXT: %add = fadd float %tmp24, %tmp4
  38. ; CHECK-NEXT: ret float %add
  39. }
  40. define <2 x i32> @test4(i32 %A, i32 %B){
  41. %tmp38 = zext i32 %A to i64
  42. %tmp32 = zext i32 %B to i64
  43. %tmp33 = shl i64 %tmp32, 32
  44. %ins35 = or i64 %tmp33, %tmp38
  45. %tmp43 = bitcast i64 %ins35 to <2 x i32>
  46. ret <2 x i32> %tmp43
  47. ; CHECK-LABEL: @test4(
  48. ; CHECK-NEXT: insertelement <2 x i32> undef, i32 %B, i32 0
  49. ; CHECK-NEXT: insertelement <2 x i32> {{.*}}, i32 %A, i32 1
  50. ; CHECK-NEXT: ret <2 x i32>
  51. }
  52. define <2 x float> @test5(float %A, float %B) {
  53. %tmp37 = bitcast float %A to i32
  54. %tmp38 = zext i32 %tmp37 to i64
  55. %tmp31 = bitcast float %B to i32
  56. %tmp32 = zext i32 %tmp31 to i64
  57. %tmp33 = shl i64 %tmp32, 32
  58. %ins35 = or i64 %tmp33, %tmp38
  59. %tmp43 = bitcast i64 %ins35 to <2 x float>
  60. ret <2 x float> %tmp43
  61. ; CHECK-LABEL: @test5(
  62. ; CHECK-NEXT: insertelement <2 x float> undef, float %B, i32 0
  63. ; CHECK-NEXT: insertelement <2 x float> {{.*}}, float %A, i32 1
  64. ; CHECK-NEXT: ret <2 x float>
  65. }
  66. define <2 x float> @test6(float %A){
  67. %tmp23 = bitcast float %A to i32 ; <i32> [#uses=1]
  68. %tmp24 = zext i32 %tmp23 to i64 ; <i64> [#uses=1]
  69. %tmp25 = shl i64 %tmp24, 32 ; <i64> [#uses=1]
  70. %mask20 = or i64 %tmp25, 1109917696 ; <i64> [#uses=1]
  71. %tmp35 = bitcast i64 %mask20 to <2 x float> ; <<2 x float>> [#uses=1]
  72. ret <2 x float> %tmp35
  73. ; CHECK-LABEL: @test6(
  74. ; CHECK-NEXT: insertelement <2 x float> undef, float %A, i32 0
  75. ; CHECK-NEXT: insertelement <2 x float> {{.*}}, float 4.200000e+01, i32 1
  76. ; CHECK: ret
  77. }