[PATCH] D140926: [ConstraintElim] Add option to limit number of rows tracked in system.
Florian Hahn via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 4 05:59:44 PST 2023
This revision was automatically updated to reflect the committed changes.
Closed by commit rG23ce9383ca07: [ConstraintElim] Add option to limit number of rows tracked in system. (authored by fhahn).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D140926/new/
https://reviews.llvm.org/D140926
Files:
llvm/lib/Transforms/Scalar/ConstraintElimination.cpp
llvm/test/Transforms/ConstraintElimination/max-row-limit.ll
Index: llvm/test/Transforms/ConstraintElimination/max-row-limit.ll
===================================================================
--- /dev/null
+++ llvm/test/Transforms/ConstraintElimination/max-row-limit.ll
@@ -0,0 +1,57 @@
+; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
+; RUN: opt -passes=constraint-elimination -S %s | FileCheck --check-prefixes=COMMON,SIMP %s
+; RUN: opt -passes=constraint-elimination -constraint-elimination-max-rows=4 -S %s | FileCheck --check-prefixes=COMMON,SIMP %s
+; RUN: opt -passes=constraint-elimination -constraint-elimination-max-rows=3 -S %s | FileCheck --check-prefixes=COMMON,NOSIMP %s
+
+
+define i1 @test_max_row_limit(i32 %l0, i32 %l1, i32 %l2, i32 %l3, i32 %l4) {
+; COMMON-LABEL: @test_max_row_limit(
+; COMMON-NEXT: bb0:
+; COMMON-NEXT: [[C0:%.*]] = icmp uge i32 [[L0:%.*]], 100
+; COMMON-NEXT: br i1 [[C0]], label [[BB1:%.*]], label [[EXIT:%.*]]
+; COMMON: bb1:
+; COMMON-NEXT: [[C1:%.*]] = icmp uge i32 [[L1:%.*]], 100
+; COMMON-NEXT: br i1 [[C1]], label [[BB2:%.*]], label [[EXIT]]
+; COMMON: bb2:
+; COMMON-NEXT: [[C2:%.*]] = icmp uge i32 [[L2:%.*]], 100
+; COMMON-NEXT: br i1 [[C2]], label [[BB3:%.*]], label [[EXIT]]
+; COMMON: bb3:
+; COMMON-NEXT: [[C3:%.*]] = icmp uge i32 [[L3:%.*]], 100
+; COMMON-NEXT: br i1 [[C3]], label [[BB4:%.*]], label [[EXIT]]
+; COMMON: bb4:
+; COMMON-NEXT: [[C4:%.*]] = icmp uge i32 [[L4:%.*]], 100
+; COMMON-NEXT: br i1 [[C4]], label [[BB5:%.*]], label [[EXIT]]
+; COMMON: bb5:
+; COMMON-NEXT: [[C5:%.*]] = icmp uge i32 [[L4]], 100
+; SIMP-NEXT: ret i1 true
+; NOSIMP-NEXT: ret i1 [[C5]]
+; COMMON: exit:
+; COMMON-NEXT: ret i1 false
+;
+bb0:
+ %c0 = icmp uge i32 %l0, 100
+ br i1 %c0, label %bb1, label %exit
+
+bb1:
+ %c1 = icmp uge i32 %l1, 100
+ br i1 %c1, label %bb2, label %exit
+
+bb2:
+ %c2 = icmp uge i32 %l2, 100
+ br i1 %c2, label %bb3, label %exit
+
+bb3:
+ %c3 = icmp uge i32 %l3, 100
+ br i1 %c3, label %bb4, label %exit
+
+bb4:
+ %c4 = icmp uge i32 %l4, 100
+ br i1 %c4, label %bb5, label %exit
+
+bb5:
+ %c5 = icmp uge i32 %l4, 100
+ ret i1 %c5
+
+exit:
+ ret i1 false
+}
Index: llvm/lib/Transforms/Scalar/ConstraintElimination.cpp
===================================================================
--- llvm/lib/Transforms/Scalar/ConstraintElimination.cpp
+++ llvm/lib/Transforms/Scalar/ConstraintElimination.cpp
@@ -27,6 +27,7 @@
#include "llvm/IR/Instructions.h"
#include "llvm/IR/PatternMatch.h"
#include "llvm/Pass.h"
+#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/DebugCounter.h"
#include "llvm/Support/MathExtras.h"
@@ -43,6 +44,10 @@
DEBUG_COUNTER(EliminatedCounter, "conds-eliminated",
"Controls which conditions are eliminated");
+static cl::opt<unsigned>
+ MaxRows("constraint-elimination-max-rows", cl::init(500), cl::Hidden,
+ cl::desc("Maximum number of rows to keep in constraint system"));
+
static int64_t MaxConstraintValue = std::numeric_limits<int64_t>::max();
static int64_t MinSignedConstraintValue = std::numeric_limits<int64_t>::min();
@@ -1017,6 +1022,13 @@
Value *Cmp = CB.Inst;
match(Cmp, m_Intrinsic<Intrinsic::assume>(m_Value(Cmp)));
if (match(Cmp, m_ICmp(Pred, m_Value(A), m_Value(B)))) {
+ if (Info.getCS(CmpInst::isSigned(Pred)).size() > MaxRows) {
+ LLVM_DEBUG(
+ dbgs()
+ << "Skip adding constraint because system has too many rows.\n");
+ continue;
+ }
+
// Use the inverse predicate if required.
if (CB.Not)
Pred = CmpInst::getInversePredicate(Pred);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D140926.486251.patch
Type: text/x-patch
Size: 3683 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230104/329281c3/attachment.bin>
More information about the llvm-commits
mailing list