[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / CodeGen / PowerPC / resolvefi-disp.ll
blobaaea3fd31e883b5b64344f02fa62941af934f7e6
1 ; RUN: llc -verify-machineinstrs -mtriple=powerpc64-unknown-linux-gnu -mcpu=pwr7 -print-after=localstackalloc <%s >%t 2>&1 && FileCheck <%t %s
3 ; Due to a bug in isFrameOffsetLegal we ended up with resolveFrameIndex creating
4 ; addresses with out-of-range displacements.  Verify that this no longer happens.
5 ; CHECK-NOT: LD {{3276[8-9]}}
6 ; CHECK-NOT: LD {{327[7-9][0-9]}}
7 ; CHECK-NOT: LD {{32[8-9][0-9][0-9]}}
8 ; CHECK-NOT: LD {{3[3-9][0-9][0-9][0-9]}}
9 ; CHECK-NOT: LD {{[4-9][0-9][0-9][0-9][0-9]}}
10 ; CHECK-NOT: LD {{[1-9][0-9][0-9][0-9][0-9][0-9]+}}
12 target datalayout = "e-m:e-i64:64-n32:64"
13 target triple = "powerpc64le-unknown-linux-gnu"
15 %struct.S2760 = type { <2 x float>, %struct.anon, i32, [28 x i8] }
16 %struct.anon = type { [11 x %struct.anon.0], i64, [6 x { i64, i64 }], [24 x i8] }
17 %struct.anon.0 = type { [30 x %union.U4DI], i8, [0 x i16], [30 x i8] }
18 %union.U4DI = type { <4 x i64> }
20 @s2760 = external global %struct.S2760
21 @fails = external global i32
23 define void @check2760(ptr noalias sret(%struct.S2760) %agg.result, ptr byval(%struct.S2760) align 16, ptr %arg1, ptr byval(%struct.S2760) align 16) {
24 entry:
25   %arg0 = alloca %struct.S2760, align 32
26   %arg2 = alloca %struct.S2760, align 32
27   %arg1.addr = alloca ptr, align 8
28   %ret = alloca %struct.S2760, align 32
29   %b1 = alloca %struct.S2760, align 32
30   %b2 = alloca %struct.S2760, align 32
31   call void @llvm.memcpy.p0.p0.i64(ptr align 16 %arg0, ptr align 16 %0, i64 11104, i1 false)
32   call void @llvm.memcpy.p0.p0.i64(ptr align 16 %arg2, ptr align 16 %1, i64 11104, i1 false)
33   store ptr %arg1, ptr %arg1.addr, align 8
34   call void @llvm.memset.p0.i64(ptr align 32 %ret, i8 0, i64 11104, i1 false)
35   call void @llvm.memset.p0.i64(ptr align 32 %b1, i8 0, i64 11104, i1 false)
36   call void @llvm.memset.p0.i64(ptr align 32 %b2, i8 0, i64 11104, i1 false)
37   %b = getelementptr inbounds %struct.S2760, ptr %arg0, i32 0, i32 1
38   %g = getelementptr inbounds %struct.anon, ptr %b, i32 0, i32 1
39   %2 = load i64, ptr %g, align 8
40   %3 = load i64, ptr getelementptr inbounds (%struct.S2760, ptr @s2760, i32 0, i32 1, i32 1), align 8
41   %cmp = icmp ne i64 %2, %3
42   br i1 %cmp, label %if.then, label %if.end
44 if.then:                                          ; preds = %entry
45   %4 = load i32, ptr @fails, align 4
46   %inc = add nsw i32 %4, 1
47   store i32 %inc, ptr @fails, align 4
48   br label %if.end
50 if.end:                                           ; preds = %if.then, %entry
51   %5 = load i64, ptr getelementptr inbounds (%struct.S2760, ptr @s2760, i32 0, i32 1, i32 1), align 8
52   %b3 = getelementptr inbounds %struct.S2760, ptr %ret, i32 0, i32 1
53   %g4 = getelementptr inbounds %struct.anon, ptr %b3, i32 0, i32 1
54   store i64 %5, ptr %g4, align 8
55   call void @llvm.memcpy.p0.p0.i64(ptr align 32 %agg.result, ptr align 32 %ret, i64 11104, i1 false)
56   ret void
59 declare void @llvm.memcpy.p0.p0.i64(ptr nocapture, ptr nocapture readonly, i64, i1)
61 declare void @llvm.memset.p0.i64(ptr nocapture, i8, i64, i1)