From 23d591efae68604a8620cbb1a7755eee0279290e Mon Sep 17 00:00:00 2001 From: Roman Lebedev Date: Sat, 13 Mar 2021 11:27:48 +0300 Subject: [PATCH] [NFC][LSR] Add test case that from https://reviews.llvm.org/D98147#2623549 With that patch, this test fails with an assertion ``` opt: /repositories/llvm-project/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp:5169: BasicBlock::iterator (anonymous namespace)::LSRInstance::AdjustInsertPositionForExpand(BasicBlock::iterator, const (anonymous namespace)::LSRFixup &, const (anonymous namespace)::LSRUse &, llvm::SCEVExpander &) const: Assertion `!isa(LowestIP) && !LowestIP->isEHPad() && !isa(LowestIP) && "Insertion point must be a normal instruction"' failed. ``` --- .../LoopStrengthReduce/X86/eh-insertion-point.ll | 44 ++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 llvm/test/Transforms/LoopStrengthReduce/X86/eh-insertion-point.ll diff --git a/llvm/test/Transforms/LoopStrengthReduce/X86/eh-insertion-point.ll b/llvm/test/Transforms/LoopStrengthReduce/X86/eh-insertion-point.ll new file mode 100644 index 0000000..1b7748c --- /dev/null +++ b/llvm/test/Transforms/LoopStrengthReduce/X86/eh-insertion-point.ll @@ -0,0 +1,44 @@ +; NOTE: Assertions have been autogenerated by utils/update_test_checks.py +; RUN: opt -S -loop-reduce < %s | FileCheck %s + +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-unknown-linux-gnu" + +declare void @maybe_throws() +declare void @use1(i1) + +define void @is_not_null(i8* %baseptr) local_unnamed_addr align 2 personality i8* undef { +; CHECK-LABEL: @is_not_null( +; CHECK-NEXT: preheader: +; CHECK-NEXT: br label [[HEADER:%.*]] +; CHECK: header: +; CHECK-NEXT: [[PTR:%.*]] = phi i8* [ [[INCPTR:%.*]], [[LATCH:%.*]] ], [ [[BASEPTR:%.*]], [[PREHEADER:%.*]] ] +; CHECK-NEXT: invoke void @maybe_throws() +; CHECK-NEXT: to label [[LATCH]] unwind label [[LPAD:%.*]] +; CHECK: lpad: +; CHECK-NEXT: [[TMP0:%.*]] = landingpad { i8*, i32 } +; CHECK-NEXT: catch i8* null +; CHECK-NEXT: [[PTR_IS_NOT_NULL:%.*]] = icmp ne i8* [[PTR]], null +; CHECK-NEXT: call void @use1(i1 [[PTR_IS_NOT_NULL]]) +; CHECK-NEXT: ret void +; CHECK: latch: +; CHECK-NEXT: [[INCPTR]] = getelementptr inbounds i8, i8* [[PTR]], i64 1 +; CHECK-NEXT: br label [[HEADER]] +; +preheader: + br label %header + +header: + %ptr = phi i8* [ %incptr, %latch ], [ %baseptr, %preheader ] + invoke void @maybe_throws() to label %latch unwind label %lpad + +lpad: + landingpad { i8*, i32 } catch i8* null + %ptr_is_not_null = icmp ne i8* %ptr, null + call void @use1(i1 %ptr_is_not_null) + ret void + +latch: + %incptr = getelementptr inbounds i8, i8* %ptr, i64 1 + br label %header +} -- 2.7.4