Files
clang-p2996/llvm/test/Transforms/OpenMP/attributor_recursion_crash.ll
Johannes Doerfert ee94a4a3d0 [Attributor][FIX] Avoid endless recursion, simple case
There is potential for endless recursion if we try to determine the
underlying objects of a load, just to end up with the load as underlying
object. A proper solution will require us to pass a visited set around.
This will happen as we cleanup genericValueTraversal soon.
2022-03-23 15:55:32 -05:00

57 lines
2.0 KiB
LLVM

; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --function-signature --scrub-attributes
; RUN: opt -passes=openmp-opt -S < %s | FileCheck %s
; TODO: This should have a second test case with a chain load->phi->load->phi
; A |
; \-------------/
%"struct.TS" = type { i32, %"struct.TS"* }
define weak amdgpu_kernel void @k() {
; CHECK-LABEL: define {{[^@]+}}@k() {
; CHECK-NEXT: BB1:
; CHECK-NEXT: br label [[BB2:%.*]]
; CHECK: BB2:
; CHECK-NEXT: [[DOTPRE158_I:%.*]] = phi %struct.TS* [ null, [[BB1:%.*]] ], [ [[PRE2:%.*]], [[BB6:%.*]] ]
; CHECK-NEXT: br i1 false, label [[BB4:%.*]], label [[BB3:%.*]]
; CHECK: BB3:
; CHECK-NEXT: br label [[BB4]]
; CHECK: BB4:
; CHECK-NEXT: [[PRE1:%.*]] = phi %struct.TS* [ [[DOTPRE158_I]], [[BB3]] ], [ null, [[BB2]] ]
; CHECK-NEXT: br i1 false, label [[BB6]], label [[BB5:%.*]]
; CHECK: BB5:
; CHECK-NEXT: [[GEP:%.*]] = getelementptr inbounds [[STRUCT_TS:%.*]], %struct.TS* [[PRE1]], i64 0, i32 1
; CHECK-NEXT: [[Q3:%.*]] = load %struct.TS*, %struct.TS** [[GEP]], align 8
; CHECK-NEXT: br label [[BB6]]
; CHECK: BB6:
; CHECK-NEXT: [[PRE2]] = phi %struct.TS* [ null, [[BB4]] ], [ [[Q3]], [[BB5]] ]
; CHECK-NEXT: br label [[BB2]]
;
BB1:
br label %BB2
BB2:
%.pre158.i = phi %"struct.TS"* [ null, %BB1 ], [ %pre2, %BB6 ]
br i1 false, label %BB4, label %BB3
BB3:
br label %BB4
BB4:
%pre1 = phi %"struct.TS"* [ %.pre158.i, %BB3 ], [ null, %BB2 ]
br i1 false, label %BB6, label %BB5
BB5:
%gep = getelementptr inbounds %"struct.TS", %"struct.TS"* %pre1, i64 0, i32 1
%q3 = load %"struct.TS"*, %"struct.TS"** %gep, align 8
br label %BB6
BB6:
%pre2 = phi %"struct.TS"* [ null, %BB4 ], [ %q3, %BB5 ]
br label %BB2
}
!llvm.module.flags = !{!0, !1}
!0 = !{i32 7, !"openmp", i32 50}
!1 = !{i32 7, !"openmp-device", i32 50}