atomics.ll 1.4 KB

12345678910111213141516171819202122232425262728293031
  1. ; RUN: opt < %s -basicaa -slp-vectorizer -S |FileCheck %s
  2. target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
  3. @x = global [4 x i32] zeroinitializer, align 16
  4. @a = global [4 x i32] zeroinitializer, align 16
  5. ; The SLPVectorizer should not vectorize atomic stores and it should not
  6. ; schedule regular stores around atomic stores.
  7. ; CHECK-LABEL: test
  8. ; CHECK: store i32
  9. ; CHECK: store atomic i32
  10. ; CHECK: store i32
  11. ; CHECK: store atomic i32
  12. ; CHECK: store i32
  13. ; CHECK: store atomic i32
  14. ; CHECK: store i32
  15. ; CHECK: store atomic i32
  16. define void @test() {
  17. entry:
  18. store i32 0, i32* getelementptr inbounds ([4 x i32], [4 x i32]* @a, i64 0, i64 0), align 16
  19. store atomic i32 0, i32* getelementptr inbounds ([4 x i32], [4 x i32]* @x, i64 0, i64 0) release, align 16
  20. store i32 0, i32* getelementptr inbounds ([4 x i32], [4 x i32]* @a, i64 0, i64 1), align 4
  21. store atomic i32 1, i32* getelementptr inbounds ([4 x i32], [4 x i32]* @x, i64 0, i64 1) release, align 4
  22. store i32 0, i32* getelementptr inbounds ([4 x i32], [4 x i32]* @a, i64 0, i64 2), align 8
  23. store atomic i32 2, i32* getelementptr inbounds ([4 x i32], [4 x i32]* @x, i64 0, i64 2) release, align 8
  24. store i32 0, i32* getelementptr inbounds ([4 x i32], [4 x i32]* @a, i64 0, i64 3), align 4
  25. store atomic i32 3, i32* getelementptr inbounds ([4 x i32], [4 x i32]* @x, i64 0, i64 3) release, align 4
  26. ret void
  27. }