[all-commits] [llvm/llvm-project] 715795: [dataflow] use true/false literals in formulas, ra...
Sam McCall via All-commits
all-commits at lists.llvm.org
Wed Jul 5 05:07:06 PDT 2023
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: 71579569f4399d3cf6bc618dcd449b5388d749cc
https://github.com/llvm/llvm-project/commit/71579569f4399d3cf6bc618dcd449b5388d749cc
Author: Sam McCall <sam.mccall at gmail.com>
Date: 2023-07-05 (Wed, 05 Jul 2023)
Changed paths:
M clang/include/clang/Analysis/FlowSensitive/Arena.h
M clang/include/clang/Analysis/FlowSensitive/DataflowEnvironment.h
M clang/include/clang/Analysis/FlowSensitive/Formula.h
M clang/lib/Analysis/FlowSensitive/Arena.cpp
M clang/lib/Analysis/FlowSensitive/DataflowAnalysisContext.cpp
M clang/lib/Analysis/FlowSensitive/Formula.cpp
M clang/lib/Analysis/FlowSensitive/WatchedLiteralsSolver.cpp
M clang/unittests/Analysis/FlowSensitive/ArenaTest.cpp
M clang/unittests/Analysis/FlowSensitive/DebugSupportTest.cpp
M clang/unittests/Analysis/FlowSensitive/TestingSupport.h
M clang/unittests/Analysis/FlowSensitive/TransferTest.cpp
Log Message:
-----------
[dataflow] use true/false literals in formulas, rather than variables
And simplify formulas containing true/false
It's unclear to me how useful this is, it does make formulas more
conveniently self-contained now (we can usefully print them without
carrying around the "true/false" labels)
(while here, simplify !!X to X, too)
Differential Revision: https://reviews.llvm.org/D153485
More information about the All-commits
mailing list