struct-assign-tbaa.ll 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. ; RUN: opt -instcombine -S < %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-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
  3. declare void @llvm.memcpy.p0i8.p0i8.i64(i8* nocapture, i8* nocapture, i64, i32, i1) nounwind
  4. ; Verify that instcombine preserves TBAA tags when converting a memcpy into
  5. ; a scalar load and store.
  6. %struct.test1 = type { float }
  7. ; CHECK: @test
  8. ; CHECK: %[[LOAD:.*]] = load i32, i32* %{{.*}}, align 4, !tbaa !0
  9. ; CHECK: store i32 %[[LOAD:.*]], i32* %{{.*}}, align 4, !tbaa !0
  10. ; CHECK: ret
  11. define void @test1(%struct.test1* nocapture %a, %struct.test1* nocapture %b) {
  12. entry:
  13. %0 = bitcast %struct.test1* %a to i8*
  14. %1 = bitcast %struct.test1* %b to i8*
  15. tail call void @llvm.memcpy.p0i8.p0i8.i64(i8* %0, i8* %1, i64 4, i32 4, i1 false), !tbaa.struct !3
  16. ret void
  17. }
  18. %struct.test2 = type { i32 (i8*, i32*, double*)** }
  19. define i32 (i8*, i32*, double*)*** @test2() {
  20. ; CHECK-LABEL: @test2(
  21. ; CHECK-NOT: memcpy
  22. ; CHECK: ret
  23. %tmp = alloca %struct.test2, align 8
  24. %tmp1 = bitcast %struct.test2* %tmp to i8*
  25. call void @llvm.memcpy.p0i8.p0i8.i64(i8* %tmp1, i8* undef, i64 8, i32 8, i1 false), !tbaa.struct !4
  26. %tmp2 = getelementptr %struct.test2, %struct.test2* %tmp, i32 0, i32 0
  27. %tmp3 = load i32 (i8*, i32*, double*)**, i32 (i8*, i32*, double*)*** %tmp2
  28. ret i32 (i8*, i32*, double*)*** %tmp2
  29. }
  30. ; CHECK: !0 = !{!1, !1, i64 0}
  31. ; CHECK: !1 = !{!"float", !2}
  32. !0 = !{!"Simple C/C++ TBAA"}
  33. !1 = !{!"omnipotent char", !0}
  34. !2 = !{!5, !5, i64 0}
  35. !3 = !{i64 0, i64 4, !2}
  36. !4 = !{i64 0, i64 8, null}
  37. !5 = !{!"float", !0}