read_from_global.ll 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. ; RUN: opt < %s -tsan -S | FileCheck %s
  2. ; Check that tsan does not instrument reads from constant globals.
  3. 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"
  4. @const_global = external constant i32
  5. define i32 @read_from_const_global() nounwind uwtable sanitize_thread readnone {
  6. entry:
  7. %0 = load i32, i32* @const_global, align 4
  8. ret i32 %0
  9. }
  10. ; CHECK: define i32 @read_from_const_global
  11. ; CHECK-NOT: __tsan
  12. ; CHECK: ret i32
  13. @non_const_global = global i32 0, align 4
  14. define i32 @read_from_non_const_global() nounwind uwtable sanitize_thread readonly {
  15. entry:
  16. %0 = load i32, i32* @non_const_global, align 4
  17. ret i32 %0
  18. }
  19. ; CHECK: define i32 @read_from_non_const_global
  20. ; CHECK: __tsan_read
  21. ; CHECK: ret i32
  22. @const_global_array = external constant [10 x i32]
  23. define i32 @read_from_const_global_array(i32 %idx) nounwind uwtable sanitize_thread readnone {
  24. entry:
  25. %idxprom = sext i32 %idx to i64
  26. %arrayidx = getelementptr inbounds [10 x i32], [10 x i32]* @const_global_array, i64 0, i64 %idxprom
  27. %0 = load i32, i32* %arrayidx, align 4
  28. ret i32 %0
  29. }
  30. ; CHECK: define i32 @read_from_const_global_array
  31. ; CHECK-NOT: __tsan
  32. ; CHECK: ret i32
  33. %struct.Foo = type { i32 (...)** }
  34. define void @call_virtual_func(%struct.Foo* %f) uwtable sanitize_thread {
  35. entry:
  36. %0 = bitcast %struct.Foo* %f to void (%struct.Foo*)***
  37. %vtable = load void (%struct.Foo*)**, void (%struct.Foo*)*** %0, align 8, !tbaa !2
  38. %1 = load void (%struct.Foo*)*, void (%struct.Foo*)** %vtable, align 8
  39. call void %1(%struct.Foo* %f)
  40. ret void
  41. }
  42. ; CHECK: define void @call_virtual_func
  43. ; CHECK: __tsan_vptr_read
  44. ; CHECK: = load
  45. ; CHECK-NOT: __tsan_read
  46. ; CHECK: = load
  47. ; CHECK: ret void
  48. !0 = !{!"Simple C/C++ TBAA", null}
  49. !1 = !{!"vtable pointer", !0}
  50. !2 = !{!1, !1, i64 0}