diff options
Diffstat (limited to 'contrib/llvm/lib/Analysis')
-rw-r--r-- | contrib/llvm/lib/Analysis/CMakeLists.txt | 53 | ||||
-rw-r--r-- | contrib/llvm/lib/Analysis/IPA/CMakeLists.txt | 6 | ||||
-rw-r--r-- | contrib/llvm/lib/Analysis/IPA/Makefile | 15 | ||||
-rw-r--r-- | contrib/llvm/lib/Analysis/Makefile | 16 | ||||
-rw-r--r-- | contrib/llvm/lib/Analysis/README.txt | 30 |
5 files changed, 0 insertions, 120 deletions
diff --git a/contrib/llvm/lib/Analysis/CMakeLists.txt b/contrib/llvm/lib/Analysis/CMakeLists.txt deleted file mode 100644 index 6a2ab68..0000000 --- a/contrib/llvm/lib/Analysis/CMakeLists.txt +++ /dev/null @@ -1,53 +0,0 @@ -add_llvm_library(LLVMAnalysis - AliasAnalysis.cpp - AliasAnalysisCounter.cpp - AliasAnalysisEvaluator.cpp - AliasDebugger.cpp - AliasSetTracker.cpp - Analysis.cpp - BasicAliasAnalysis.cpp - CFGPrinter.cpp - CaptureTracking.cpp - ConstantFolding.cpp - DbgInfoPrinter.cpp - DebugInfo.cpp - DomPrinter.cpp - IVUsers.cpp - InlineCost.cpp - InstCount.cpp - InstructionSimplify.cpp - Interval.cpp - IntervalPartition.cpp - LazyValueInfo.cpp - LibCallAliasAnalysis.cpp - LibCallSemantics.cpp - Lint.cpp - LiveValues.cpp - Loads.cpp - LoopDependenceAnalysis.cpp - LoopInfo.cpp - LoopPass.cpp - MemoryBuiltins.cpp - MemoryDependenceAnalysis.cpp - ModuleDebugInfoPrinter.cpp - PHITransAddr.cpp - PointerTracking.cpp - PostDominators.cpp - ProfileEstimatorPass.cpp - ProfileInfo.cpp - ProfileInfoLoader.cpp - ProfileInfoLoaderPass.cpp - ProfileVerifierPass.cpp - RegionInfo.cpp - RegionPrinter.cpp - ScalarEvolution.cpp - ScalarEvolutionAliasAnalysis.cpp - ScalarEvolutionExpander.cpp - ScalarEvolutionNormalization.cpp - SparsePropagation.cpp - Trace.cpp - TypeBasedAliasAnalysis.cpp - ValueTracking.cpp - ) - -target_link_libraries (LLVMAnalysis LLVMSupport) diff --git a/contrib/llvm/lib/Analysis/IPA/CMakeLists.txt b/contrib/llvm/lib/Analysis/IPA/CMakeLists.txt deleted file mode 100644 index 007ad22..0000000 --- a/contrib/llvm/lib/Analysis/IPA/CMakeLists.txt +++ /dev/null @@ -1,6 +0,0 @@ -add_llvm_library(LLVMipa - CallGraph.cpp - CallGraphSCCPass.cpp - FindUsedTypes.cpp - GlobalsModRef.cpp - ) diff --git a/contrib/llvm/lib/Analysis/IPA/Makefile b/contrib/llvm/lib/Analysis/IPA/Makefile deleted file mode 100644 index b850c9f..0000000 --- a/contrib/llvm/lib/Analysis/IPA/Makefile +++ /dev/null @@ -1,15 +0,0 @@ -##===- lib/Analysis/IPA/Makefile ---------------------------*- Makefile -*-===## -# -# The LLVM Compiler Infrastructure -# -# This file is distributed under the University of Illinois Open Source -# License. See LICENSE.TXT for details. -# -##===----------------------------------------------------------------------===## - -LEVEL = ../../.. -LIBRARYNAME = LLVMipa -BUILD_ARCHIVE = 1 - -include $(LEVEL)/Makefile.common - diff --git a/contrib/llvm/lib/Analysis/Makefile b/contrib/llvm/lib/Analysis/Makefile deleted file mode 100644 index 4af6d35..0000000 --- a/contrib/llvm/lib/Analysis/Makefile +++ /dev/null @@ -1,16 +0,0 @@ -##===- lib/Analysis/Makefile -------------------------------*- Makefile -*-===## -# -# The LLVM Compiler Infrastructure -# -# This file is distributed under the University of Illinois Open Source -# License. See LICENSE.TXT for details. -# -##===----------------------------------------------------------------------===## - -LEVEL = ../.. -LIBRARYNAME = LLVMAnalysis -DIRS = IPA -BUILD_ARCHIVE = 1 - -include $(LEVEL)/Makefile.common - diff --git a/contrib/llvm/lib/Analysis/README.txt b/contrib/llvm/lib/Analysis/README.txt deleted file mode 100644 index 0e96e4c..0000000 --- a/contrib/llvm/lib/Analysis/README.txt +++ /dev/null @@ -1,30 +0,0 @@ -Analysis Opportunities: - -//===---------------------------------------------------------------------===// - -In test/Transforms/LoopStrengthReduce/quadradic-exit-value.ll, the -ScalarEvolution expression for %r is this: - - {1,+,3,+,2}<loop> - -Outside the loop, this could be evaluated simply as (%n * %n), however -ScalarEvolution currently evaluates it as - - (-2 + (2 * (trunc i65 (((zext i64 (-2 + %n) to i65) * (zext i64 (-1 + %n) to i65)) /u 2) to i64)) + (3 * %n)) - -In addition to being much more complicated, it involves i65 arithmetic, -which is very inefficient when expanded into code. - -//===---------------------------------------------------------------------===// - -In formatValue in test/CodeGen/X86/lsr-delayed-fold.ll, - -ScalarEvolution is forming this expression: - -((trunc i64 (-1 * %arg5) to i32) + (trunc i64 %arg5 to i32) + (-1 * (trunc i64 undef to i32))) - -This could be folded to - -(-1 * (trunc i64 undef to i32)) - -//===---------------------------------------------------------------------===// |