2012-06-21 17:51:26 +08:00
|
|
|
set(LLVM_LINK_COMPONENTS
|
|
|
|
Analysis
|
2013-07-27 09:24:00 +08:00
|
|
|
AsmParser
|
2013-12-10 19:13:32 +08:00
|
|
|
Core
|
|
|
|
Support
|
2019-11-30 03:11:24 +08:00
|
|
|
TransformUtils
|
2012-06-21 17:51:26 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
add_llvm_unittest(AnalysisTests
|
2015-04-14 07:05:45 +08:00
|
|
|
AliasAnalysisTest.cpp
|
2017-06-25 20:55:11 +08:00
|
|
|
AliasSetTrackerTest.cpp
|
2018-10-10 14:39:40 +08:00
|
|
|
BasicAliasAnalysisTest.cpp
|
2016-03-24 02:18:26 +08:00
|
|
|
BlockFrequencyInfoTest.cpp
|
2016-12-17 09:02:08 +08:00
|
|
|
BranchProbabilityInfoTest.cpp
|
2017-06-02 21:10:31 +08:00
|
|
|
CallGraphTest.cpp
|
2019-01-04 04:16:33 +08:00
|
|
|
CaptureTrackingTest.cpp
|
2013-07-27 09:26:30 +08:00
|
|
|
CFGTest.cpp
|
2016-02-23 18:02:02 +08:00
|
|
|
CGSCCPassManagerTest.cpp
|
2018-10-18 17:38:44 +08:00
|
|
|
DivergenceAnalysisTest.cpp
|
2019-02-06 10:52:52 +08:00
|
|
|
DomTreeUpdaterTest.cpp
|
2017-06-07 04:51:15 +08:00
|
|
|
GlobalsModRefTest.cpp
|
Save the induction binary operator in IVDescriptors for non FP induction variables.
Summary:
Currently InductionBinOps are only saved for FP induction variables, the PR extends it with non FP induction variable, so user of IVDescriptors can query the InductionBinOps for integer induction variables.
The changes in hasUnsafeAlgebra() and getUnsafeAlgebraInst() are required for the existing LIT test cases to pass. As described in the comment of the two functions, one of the requirement to return true is it is a FP induction variable. The checks was not needed because InductionBinOp was not set on non FP cases before.
https://reviews.llvm.org/D60565 depends on the patch.
Committed on behalf of @Whitney (Whitney Tsang).
Reviewers: jdoerfert, kbarton, fhahn, hfinkel, dmgreen, Meinersbur
Reviewed By: jdoerfert
Subscribers: mgorny, hiraditya, jsji, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D61329
llvm-svn: 360671
2019-05-14 21:26:36 +08:00
|
|
|
IVDescriptorsTest.cpp
|
2014-04-23 16:08:49 +08:00
|
|
|
LazyCallGraphTest.cpp
|
2019-12-11 06:41:30 +08:00
|
|
|
LoadsTest.cpp
|
2017-01-16 05:17:52 +08:00
|
|
|
LoopInfoTest.cpp
|
[LoopNest]: Analysis to discover properties of a loop nest.
Summary: This patch adds an analysis pass to collect loop nests and
summarize properties of the nest (e.g the nest depth, whether the nest
is perfect, what's the innermost loop, etc...).
The motivation for this patch was discussed at the latest meeting of the
LLVM loop group (https://ibm.box.com/v/llvm-loop-nest-analysis) where we
discussed
the unimodular loop transformation framework ( “A Loop Transformation
Theory and an Algorithm to Maximize Parallelism”, Michael E. Wolf and
Monica S. Lam, IEEE TPDS, October 1991). The unimodular framework
provides a convenient way to unify legality checking and code generation
for several loop nest transformations (e.g. loop reversal, loop
interchange, loop skewing) and their compositions. Given that the
unimodular framework is applicable to perfect loop nests this is one
property of interest we expose in this analysis. Several other utility
functions are also provided. In the future other properties of interest
can be added in a centralized place.
Authored By: etiotto
Reviewer: Meinersbur, bmahjour, kbarton, Whitney, dmgreen, fhahn,
reames, hfinkel, jdoerfert, ppc-slack
Reviewed By: Meinersbur
Subscribers: bryanpkc, ppc-slack, mgorny, hiraditya, llvm-commits
Tag: LLVM
Differential Revision: https://reviews.llvm.org/D68789
2020-03-04 01:38:19 +08:00
|
|
|
LoopNestTest.cpp
|
2016-12-23 09:18:09 +08:00
|
|
|
MemoryBuiltinsTest.cpp
|
2018-09-03 20:43:26 +08:00
|
|
|
MemorySSATest.cpp
|
|
|
|
OrderedInstructionsTest.cpp
|
2018-06-28 22:13:06 +08:00
|
|
|
PhiValuesTest.cpp
|
2017-01-13 09:34:00 +08:00
|
|
|
ProfileSummaryInfoTest.cpp
|
2012-06-21 17:51:26 +08:00
|
|
|
ScalarEvolutionTest.cpp
|
2019-09-20 01:47:32 +08:00
|
|
|
VectorFunctionABITest.cpp
|
2017-10-17 01:44:17 +08:00
|
|
|
SparsePropagation.cpp
|
2017-01-17 11:10:02 +08:00
|
|
|
TargetLibraryInfoTest.cpp
|
2017-06-02 21:10:31 +08:00
|
|
|
TBAATest.cpp
|
2018-09-03 20:43:26 +08:00
|
|
|
UnrollAnalyzerTest.cpp
|
2019-02-06 10:52:52 +08:00
|
|
|
ValueLatticeTest.cpp
|
2017-01-17 11:09:55 +08:00
|
|
|
ValueTrackingTest.cpp
|
2019-06-11 02:19:05 +08:00
|
|
|
VectorUtilsTest.cpp
|
2012-06-21 17:51:26 +08:00
|
|
|
)
|