1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt -S -passes=gvn -enable-load-pre < %s | FileCheck %s
4 ; Make sure the load in bb3.backedge is removed and moved into bb1 after the
5 ; call. This makes the non-call case faster.
7 ; This test is derived from this C++ code (GCC PR 37810):
11 ; A& operator++(void) { ++n; if (n == m) g(); return *this; }
12 ; A() : n(0), m(0) { }
13 ; friend bool operator!=(A const& a1, A const& a2) { return a1.n != a2.n; }
15 ; void testfunction(A& iter) { A const end; while (iter != end) ++iter; }
17 target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128"
18 target triple = "i386-apple-darwin7"
19 %struct.A = type { i32, i32 }
21 define void @_Z12testfunctionR1A(ptr %iter) {
22 ; CHECK-LABEL: @_Z12testfunctionR1A(
24 ; CHECK-NEXT: [[TMP0:%.*]] = load i32, ptr [[ITER:%.*]], align 4
25 ; CHECK-NEXT: [[TMP1:%.*]] = icmp eq i32 [[TMP0]], 0
26 ; CHECK-NEXT: br i1 [[TMP1]], label [[RETURN:%.*]], label [[BB_NPH:%.*]]
28 ; CHECK-NEXT: [[TMP2:%.*]] = getelementptr [[STRUCT_A:%.*]], ptr [[ITER]], i32 0, i32 1
29 ; CHECK-NEXT: br label [[BB:%.*]]
31 ; CHECK-NEXT: [[DOTRLE:%.*]] = phi i32 [ [[TMP0]], [[BB_NPH]] ], [ [[TMP6:%.*]], [[BB3_BACKEDGE:%.*]] ]
32 ; CHECK-NEXT: [[TMP3:%.*]] = add i32 [[DOTRLE]], 1
33 ; CHECK-NEXT: store i32 [[TMP3]], ptr [[ITER]], align 4
34 ; CHECK-NEXT: [[TMP4:%.*]] = load i32, ptr [[TMP2]], align 4
35 ; CHECK-NEXT: [[TMP5:%.*]] = icmp eq i32 [[TMP3]], [[TMP4]]
36 ; CHECK-NEXT: br i1 [[TMP5]], label [[BB1:%.*]], label [[BB3_BACKEDGE]]
38 ; CHECK-NEXT: tail call void @_Z1gv()
39 ; CHECK-NEXT: [[DOTPRE:%.*]] = load i32, ptr [[ITER]], align 4
40 ; CHECK-NEXT: br label [[BB3_BACKEDGE]]
41 ; CHECK: bb3.backedge:
42 ; CHECK-NEXT: [[TMP6]] = phi i32 [ [[DOTPRE]], [[BB1]] ], [ [[TMP3]], [[BB]] ]
43 ; CHECK-NEXT: [[TMP7:%.*]] = icmp eq i32 [[TMP6]], 0
44 ; CHECK-NEXT: br i1 [[TMP7]], label [[RETURN]], label [[BB]]
46 ; CHECK-NEXT: ret void
49 %0 = getelementptr %struct.A, ptr %iter, i32 0, i32 0 ; <ptr> [#uses=3]
50 %1 = load i32, ptr %0, align 4 ; <i32> [#uses=2]
51 %2 = icmp eq i32 %1, 0 ; <i1> [#uses=1]
52 br i1 %2, label %return, label %bb.nph
54 bb.nph: ; preds = %entry
55 %3 = getelementptr %struct.A, ptr %iter, i32 0, i32 1 ; <ptr> [#uses=1]
58 bb: ; preds = %bb3.backedge, %bb.nph
59 %.rle = phi i32 [ %1, %bb.nph ], [ %7, %bb3.backedge ] ; <i32> [#uses=1]
60 %4 = add i32 %.rle, 1 ; <i32> [#uses=2]
61 store i32 %4, ptr %0, align 4
62 %5 = load i32, ptr %3, align 4 ; <i32> [#uses=1]
63 %6 = icmp eq i32 %4, %5 ; <i1> [#uses=1]
64 br i1 %6, label %bb1, label %bb3.backedge
67 tail call void @_Z1gv()
68 br label %bb3.backedge
70 bb3.backedge: ; preds = %bb, %bb1
71 %7 = load i32, ptr %0, align 4 ; <i32> [#uses=2]
72 %8 = icmp eq i32 %7, 0 ; <i1> [#uses=1]
73 br i1 %8, label %return, label %bb
75 return: ; preds = %bb3.backedge, %entry