[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / Inline / invariant-group-sroa.ll
blob086e8b6c04bf9724af99c69dbe15d87b55b0f03a
1 ; RUN: opt -passes='print<inline-cost>' -disable-output %s 2>&1 | FileCheck %s
3 ; SROA analysis should yield non-zero savings for allocas passed through invariant group intrinsics
4 ; CHECK: SROACostSavings: 10
6 declare i8* @llvm.launder.invariant.group.p0i8(i8*)
7 declare i8* @llvm.strip.invariant.group.p0i8(i8*)
9 declare void @b()
11 define i32 @f() {
12   %a = alloca i32
13   %r = call i32 @g(i32* %a)
14   ret i32 %r
17 define i32 @g(i32* %a) {
18   %a_i8 = bitcast i32* %a to i8*
19   %a_inv_i8 = call i8* @llvm.launder.invariant.group.p0i8(i8* %a_i8)
20   %a_inv = bitcast i8* %a_inv_i8 to i32*
21   %i1 = load i32, i32* %a_inv
22   %i2 = load i32, i32* %a_inv
23   %i3 = add i32 %i1, %i2
24   %t = call i8* @llvm.strip.invariant.group.p0i8(i8* %a_inv_i8)
25   ret i32 %i3