xref: /aosp_15_r20/external/llvm/test/Transforms/LICM/volatile-alias.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1*9880d681SAndroid Build Coastguard Worker; RUN: opt -basicaa -sroa -loop-rotate -licm -S < %s | FileCheck %s
2*9880d681SAndroid Build Coastguard Worker; RUN: opt -basicaa -sroa -loop-rotate %s | opt -aa-pipeline=basic-aa -passes='require<aa>,require<targetir>,require<scalar-evolution>,loop(licm)' -S | FileCheck %s
3*9880d681SAndroid Build Coastguard Worker; The objects *p and *q are aliased to each other, but even though *q is
4*9880d681SAndroid Build Coastguard Worker; volatile, *p can be considered invariant in the loop. Check if it is moved
5*9880d681SAndroid Build Coastguard Worker; out of the loop.
6*9880d681SAndroid Build Coastguard Worker; CHECK: load i32, i32* %p
7*9880d681SAndroid Build Coastguard Worker; CHECK: for.body:
8*9880d681SAndroid Build Coastguard Worker; CHECK: load volatile i32, i32* %q
9*9880d681SAndroid Build Coastguard Worker
10*9880d681SAndroid Build Coastguard Workertarget 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"
11*9880d681SAndroid Build Coastguard Worker
12*9880d681SAndroid Build Coastguard Worker; Function Attrs: nounwind uwtable
13*9880d681SAndroid Build Coastguard Workerdefine i32 @foo(i32* dereferenceable(4) nonnull %p, i32* %q, i32 %n) #0 {
14*9880d681SAndroid Build Coastguard Workerentry:
15*9880d681SAndroid Build Coastguard Worker  %p.addr = alloca i32*, align 8
16*9880d681SAndroid Build Coastguard Worker  %q.addr = alloca i32*, align 8
17*9880d681SAndroid Build Coastguard Worker  %n.addr = alloca i32, align 4
18*9880d681SAndroid Build Coastguard Worker  %i = alloca i32, align 4
19*9880d681SAndroid Build Coastguard Worker  %s = alloca i32, align 4
20*9880d681SAndroid Build Coastguard Worker  store i32* %p, i32** %p.addr, align 8
21*9880d681SAndroid Build Coastguard Worker  store i32* %q, i32** %q.addr, align 8
22*9880d681SAndroid Build Coastguard Worker  store i32 %n, i32* %n.addr, align 4
23*9880d681SAndroid Build Coastguard Worker  store i32 0, i32* %s, align 4
24*9880d681SAndroid Build Coastguard Worker  store i32 0, i32* %i, align 4
25*9880d681SAndroid Build Coastguard Worker  br label %for.cond
26*9880d681SAndroid Build Coastguard Worker
27*9880d681SAndroid Build Coastguard Workerfor.cond:                                         ; preds = %for.inc, %entry
28*9880d681SAndroid Build Coastguard Worker  %0 = load i32, i32* %i, align 4
29*9880d681SAndroid Build Coastguard Worker  %1 = load i32, i32* %n.addr, align 4
30*9880d681SAndroid Build Coastguard Worker  %cmp = icmp slt i32 %0, %1
31*9880d681SAndroid Build Coastguard Worker  br i1 %cmp, label %for.body, label %for.end
32*9880d681SAndroid Build Coastguard Worker
33*9880d681SAndroid Build Coastguard Workerfor.body:                                         ; preds = %for.cond
34*9880d681SAndroid Build Coastguard Worker  %2 = load i32*, i32** %p.addr, align 8
35*9880d681SAndroid Build Coastguard Worker  %3 = load i32, i32* %2, align 4
36*9880d681SAndroid Build Coastguard Worker  %4 = load i32*, i32** %q.addr, align 8
37*9880d681SAndroid Build Coastguard Worker  %5 = load volatile i32, i32* %4, align 4
38*9880d681SAndroid Build Coastguard Worker  %add = add nsw i32 %3, %5
39*9880d681SAndroid Build Coastguard Worker  %6 = load i32, i32* %s, align 4
40*9880d681SAndroid Build Coastguard Worker  %add1 = add nsw i32 %6, %add
41*9880d681SAndroid Build Coastguard Worker  store i32 %add1, i32* %s, align 4
42*9880d681SAndroid Build Coastguard Worker  br label %for.inc
43*9880d681SAndroid Build Coastguard Worker
44*9880d681SAndroid Build Coastguard Workerfor.inc:                                          ; preds = %for.body
45*9880d681SAndroid Build Coastguard Worker  %7 = load i32, i32* %i, align 4
46*9880d681SAndroid Build Coastguard Worker  %inc = add nsw i32 %7, 1
47*9880d681SAndroid Build Coastguard Worker  store i32 %inc, i32* %i, align 4
48*9880d681SAndroid Build Coastguard Worker  br label %for.cond
49*9880d681SAndroid Build Coastguard Worker
50*9880d681SAndroid Build Coastguard Workerfor.end:                                          ; preds = %for.cond
51*9880d681SAndroid Build Coastguard Worker  %8 = load i32, i32* %s, align 4
52*9880d681SAndroid Build Coastguard Worker  ret i32 %8
53*9880d681SAndroid Build Coastguard Worker}
54*9880d681SAndroid Build Coastguard Worker
55*9880d681SAndroid Build Coastguard Workerattributes #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" }
56