[PATCH] D46445: [SCEVAffinator] Fix handling of pwaff complexity limit.

Eli Friedman via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri May 4 11:55:30 PDT 2018


efriedma created this revision.
efriedma added reviewers: grosser, Meinersbur.
Herald added subscribers: llvm-commits, srhines.

nullptr is not a valid affine expression, and none of the callers check for null, so we eventually hit an isl error and crash.

Instead, invalidate the scop and return a constant zero.


Repository:
  rPLO Polly

https://reviews.llvm.org/D46445

Files:
  lib/Support/SCEVAffinator.cpp
  test/ScopInfo/pwaff-complexity-bailout.ll


Index: test/ScopInfo/pwaff-complexity-bailout.ll
===================================================================
--- /dev/null
+++ test/ScopInfo/pwaff-complexity-bailout.ll
@@ -0,0 +1,37 @@
+; RUN: opt %loadPolly -analyze -polly-scops -polly-process-unprofitable -pass-remarks-analysis=.* < %s 2>&1 | FileCheck %s
+
+; Make sure we hit the complexity bailout, and don't crash.
+; CHECK: Low complexity assumption:       {  : false }
+
+target datalayout = "e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64"
+target triple = "thumbv8--linux-android"
+
+define hidden void @f(i32 %arg1, i32 %arg2, i32 %cond, i32 %tmp, i32 %tmp196) {
+entry:
+  %div = sdiv i32 %tmp, 8
+  %div10 = sdiv i32 %arg1, 8
+  %div11 = sdiv i32 %tmp196, 2
+  %add = add nsw i32 %div10, %div11
+  %sub19 = add nsw i32 %div, -1
+  %cmp20 = icmp slt i32 %add, %sub19
+  %add.sub19 = select i1 %cmp20, i32 %add, i32 %sub19
+  %div469 = sdiv i32 %arg2, 8
+  %cmp.i68 = icmp slt i32 %div469, %cond
+  %cond.i = select i1 %cmp.i68, i32 %cond, i32 %div469
+  %sub.i69 = add i32 0, %div469
+  %cmp9.i = icmp sgt i32 %sub.i69, %add.sub19
+  %sub15.max_x.i = select i1 %cmp9.i, i32 %add.sub19, i32 %sub.i69
+  %sub30.i = sub nsw i32 %sub15.max_x.i, %cond.i
+  %add31.i = add nsw i32 %sub30.i, 1
+  br label %for.body.us.i
+
+for.body.us.i:
+  br label %for.body47.us.i
+
+for.body47.us.i:
+  %cmp45.us.i = icmp ult i32 0, %add31.i
+  br i1 %cmp45.us.i, label %for.body47.us.i, label %for.cond44.for.cond.cleanup46_crit_edge.us.i
+
+for.cond44.for.cond.cleanup46_crit_edge.us.i:
+  br label %for.body.us.i
+}
Index: lib/Support/SCEVAffinator.cpp
===================================================================
--- lib/Support/SCEVAffinator.cpp
+++ lib/Support/SCEVAffinator.cpp
@@ -367,8 +367,12 @@
 
   for (int i = 1, e = Expr->getNumOperands(); i < e; ++i) {
     Sum = combine(Sum, visit(Expr->getOperand(i)), isl_pw_aff_add);
-    if (isTooComplex(Sum))
-      return std::make_pair(nullptr, nullptr);
+    if (isTooComplex(Sum)) {
+      const DebugLoc &Loc =
+          BB ? BB->getTerminator()->getDebugLoc() : DebugLoc();
+      S->invalidate(COMPLEXITY, Loc);
+      return visit(SE.getZero(Expr->getType()));
+    }
   }
 
   return Sum;
@@ -379,8 +383,12 @@
 
   for (int i = 1, e = Expr->getNumOperands(); i < e; ++i) {
     Prod = combine(Prod, visit(Expr->getOperand(i)), isl_pw_aff_mul);
-    if (isTooComplex(Prod))
-      return std::make_pair(nullptr, nullptr);
+    if (isTooComplex(Prod)) {
+      const DebugLoc &Loc =
+          BB ? BB->getTerminator()->getDebugLoc() : DebugLoc();
+      S->invalidate(COMPLEXITY, Loc);
+      return visit(SE.getZero(Expr->getType()));
+    }
   }
 
   return Prod;
@@ -430,8 +438,12 @@
 
   for (int i = 1, e = Expr->getNumOperands(); i < e; ++i) {
     Max = combine(Max, visit(Expr->getOperand(i)), isl_pw_aff_max);
-    if (isTooComplex(Max))
-      return std::make_pair(nullptr, nullptr);
+    if (isTooComplex(Max)) {
+      const DebugLoc &Loc =
+          BB ? BB->getTerminator()->getDebugLoc() : DebugLoc();
+      S->invalidate(COMPLEXITY, Loc);
+      return visit(SE.getZero(Expr->getType()));
+    }
   }
 
   return Max;


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D46445.145245.patch
Type: text/x-patch
Size: 3164 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180504/96ca9cdc/attachment.bin>


More information about the llvm-commits mailing list