volatile-alias.ll 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. ; RUN: opt -basicaa -sroa -loop-rotate -licm -S < %s | FileCheck %s
  2. ; The objects *p and *q are aliased to each other, but even though *q is
  3. ; volatile, *p can be considered invariant in the loop. Check if it is moved
  4. ; out of the loop.
  5. ; CHECK: load i32, i32* %p
  6. ; CHECK: for.body:
  7. ; CHECK: load volatile i32, i32* %q
  8. 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"
  9. ; Function Attrs: nounwind uwtable
  10. define i32 @foo(i32* %p, i32* %q, i32 %n) #0 {
  11. entry:
  12. %p.addr = alloca i32*, align 8
  13. %q.addr = alloca i32*, align 8
  14. %n.addr = alloca i32, align 4
  15. %i = alloca i32, align 4
  16. %s = alloca i32, align 4
  17. store i32* %p, i32** %p.addr, align 8
  18. store i32* %q, i32** %q.addr, align 8
  19. store i32 %n, i32* %n.addr, align 4
  20. store i32 0, i32* %s, align 4
  21. store i32 0, i32* %i, align 4
  22. br label %for.cond
  23. for.cond: ; preds = %for.inc, %entry
  24. %0 = load i32, i32* %i, align 4
  25. %1 = load i32, i32* %n.addr, align 4
  26. %cmp = icmp slt i32 %0, %1
  27. br i1 %cmp, label %for.body, label %for.end
  28. for.body: ; preds = %for.cond
  29. %2 = load i32*, i32** %p.addr, align 8
  30. %3 = load i32, i32* %2, align 4
  31. %4 = load i32*, i32** %q.addr, align 8
  32. %5 = load volatile i32, i32* %4, align 4
  33. %add = add nsw i32 %3, %5
  34. %6 = load i32, i32* %s, align 4
  35. %add1 = add nsw i32 %6, %add
  36. store i32 %add1, i32* %s, align 4
  37. br label %for.inc
  38. for.inc: ; preds = %for.body
  39. %7 = load i32, i32* %i, align 4
  40. %inc = add nsw i32 %7, 1
  41. store i32 %inc, i32* %i, align 4
  42. br label %for.cond
  43. for.end: ; preds = %for.cond
  44. %8 = load i32, i32* %s, align 4
  45. ret i32 %8
  46. }
  47. attributes #0 = { nounwind uwtable "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }