[clang] [clang][dataflow] Remove `DataflowAnalysisContext::flowConditionIsTautology()`. (PR #69601)
via cfe-commits
cfe-commits at lists.llvm.org
Thu Oct 19 05:44:01 PDT 2023
https://github.com/martinboehme created https://github.com/llvm/llvm-project/pull/69601
It's only used in its own unit tests.
>From 133d04d8cc6ae6f4ad87bf17ea721d29c41433d5 Mon Sep 17 00:00:00 2001
From: Martin Braenne <mboehme at google.com>
Date: Thu, 19 Oct 2023 12:38:25 +0000
Subject: [PATCH] [clang][dataflow] Remove
`DataflowAnalysisContext::flowConditionIsTautology()`.
It's only used in its own unit tests.
---
.../FlowSensitive/DataflowAnalysisContext.h | 4 ---
.../FlowSensitive/DataflowAnalysisContext.cpp | 9 -------
.../DataflowAnalysisContextTest.cpp | 27 -------------------
3 files changed, 40 deletions(-)
diff --git a/clang/include/clang/Analysis/FlowSensitive/DataflowAnalysisContext.h b/clang/include/clang/Analysis/FlowSensitive/DataflowAnalysisContext.h
index c46109a02921e7f..a792c3f911b1dd0 100644
--- a/clang/include/clang/Analysis/FlowSensitive/DataflowAnalysisContext.h
+++ b/clang/include/clang/Analysis/FlowSensitive/DataflowAnalysisContext.h
@@ -133,10 +133,6 @@ class DataflowAnalysisContext {
/// identified by `Token` imply that `Val` is true.
bool flowConditionImplies(Atom Token, const Formula &);
- /// Returns true if and only if the constraints of the flow condition
- /// identified by `Token` are always true.
- bool flowConditionIsTautology(Atom Token);
-
/// Returns true if `Val1` is equivalent to `Val2`.
/// Note: This function doesn't take into account constraints on `Val1` and
/// `Val2` imposed by the flow condition.
diff --git a/clang/lib/Analysis/FlowSensitive/DataflowAnalysisContext.cpp b/clang/lib/Analysis/FlowSensitive/DataflowAnalysisContext.cpp
index fa9b40fc49b3ae7..894610ab27fb699 100644
--- a/clang/lib/Analysis/FlowSensitive/DataflowAnalysisContext.cpp
+++ b/clang/lib/Analysis/FlowSensitive/DataflowAnalysisContext.cpp
@@ -160,15 +160,6 @@ bool DataflowAnalysisContext::flowConditionImplies(Atom Token,
return isUnsatisfiable(std::move(Constraints));
}
-bool DataflowAnalysisContext::flowConditionIsTautology(Atom Token) {
- // Returns true if and only if we cannot prove that the flow condition can
- // ever be false.
- llvm::SetVector<const Formula *> Constraints;
- Constraints.insert(&arena().makeNot(arena().makeAtomRef(Token)));
- addTransitiveFlowConditionConstraints(Token, Constraints);
- return isUnsatisfiable(std::move(Constraints));
-}
-
bool DataflowAnalysisContext::equivalentFormulas(const Formula &Val1,
const Formula &Val2) {
llvm::SetVector<const Formula *> Constraints;
diff --git a/clang/unittests/Analysis/FlowSensitive/DataflowAnalysisContextTest.cpp b/clang/unittests/Analysis/FlowSensitive/DataflowAnalysisContextTest.cpp
index fb7642c131e3190..88eb11045b9e9f9 100644
--- a/clang/unittests/Analysis/FlowSensitive/DataflowAnalysisContextTest.cpp
+++ b/clang/unittests/Analysis/FlowSensitive/DataflowAnalysisContextTest.cpp
@@ -99,33 +99,6 @@ TEST_F(DataflowAnalysisContextTest, JoinFlowConditions) {
EXPECT_TRUE(Context.flowConditionImplies(FC3, C3));
}
-TEST_F(DataflowAnalysisContextTest, FlowConditionTautologies) {
- // Fresh flow condition with empty/no constraints is always true.
- Atom FC1 = A.makeFlowConditionToken();
- EXPECT_TRUE(Context.flowConditionIsTautology(FC1));
-
- // Literal `true` is always true.
- Atom FC2 = A.makeFlowConditionToken();
- Context.addFlowConditionConstraint(FC2, A.makeLiteral(true));
- EXPECT_TRUE(Context.flowConditionIsTautology(FC2));
-
- // Literal `false` is never true.
- Atom FC3 = A.makeFlowConditionToken();
- Context.addFlowConditionConstraint(FC3, A.makeLiteral(false));
- EXPECT_FALSE(Context.flowConditionIsTautology(FC3));
-
- // We can't prove that an arbitrary bool A is always true...
- auto &C1 = A.makeAtomRef(A.makeAtom());
- Atom FC4 = A.makeFlowConditionToken();
- Context.addFlowConditionConstraint(FC4, C1);
- EXPECT_FALSE(Context.flowConditionIsTautology(FC4));
-
- // ... but we can prove A || !A is true.
- Atom FC5 = A.makeFlowConditionToken();
- Context.addFlowConditionConstraint(FC5, A.makeOr(C1, A.makeNot(C1)));
- EXPECT_TRUE(Context.flowConditionIsTautology(FC5));
-}
-
TEST_F(DataflowAnalysisContextTest, EquivBoolVals) {
auto &X = A.makeAtomRef(A.makeAtom());
auto &Y = A.makeAtomRef(A.makeAtom());
More information about the cfe-commits
mailing list