Stub out a new lazy value info pass, which will eventually
authorChris Lattner <sabre@nondot.org>
Wed, 11 Nov 2009 00:22:30 +0000 (00:22 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 11 Nov 2009 00:22:30 +0000 (00:22 +0000)
vend value constraint information to the optimizer.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86767 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/LazyValueInfo.h [new file with mode: 0644]
include/llvm/Analysis/Passes.h
include/llvm/LinkAllPasses.h
lib/Analysis/CMakeLists.txt
lib/Analysis/LazyValueInfo.cpp [new file with mode: 0644]
test/Transforms/JumpThreading/basic.ll

diff --git a/include/llvm/Analysis/LazyValueInfo.h b/include/llvm/Analysis/LazyValueInfo.h
new file mode 100644 (file)
index 0000000..29f8180
--- /dev/null
@@ -0,0 +1,43 @@
+//===- LazyValueInfo.h - Value constraint analysis --------------*- C++ -*-===//
+//
+//                     The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// This file defines the interface for lazy computation of value constraint
+// information.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLVM_ANALYSIS_LIVEVALUES_H
+#define LLVM_ANALYSIS_LIVEVALUES_H
+
+#include "llvm/Pass.h"
+
+namespace llvm {
+
+/// LazyValueInfo - This pass computes, caches, and vends lazy value constraint
+/// information.
+class LazyValueInfo : public FunctionPass {
+public:
+  static char ID;
+  LazyValueInfo();
+
+  virtual void getAnalysisUsage(AnalysisUsage &AU) const {
+    AU.setPreservesAll();
+  }
+  virtual void releaseMemory();
+  
+  virtual bool runOnFunction(Function &F) {
+    // Fully lazy.
+    return false;
+  }
+};
+
+}  // end namespace llvm
+
+#endif
+
index 66ab3ea5caf1f362676e4c5a60443b6348797efb..b22232122561f13f7727603503307934c9b8c37d 100644 (file)
@@ -139,6 +139,12 @@ namespace llvm {
   // createLiveValuesPass - This creates an instance of the LiveValues pass.
   //
   FunctionPass *createLiveValuesPass();
+  
+  //===--------------------------------------------------------------------===//
+  //
+  /// createLazyValueInfoPass - This creates an instance of the LazyValueInfo
+  /// pass.
+  FunctionPass *createLazyValueInfoPass();
 
   //===--------------------------------------------------------------------===//
   //
index bcb98c16ad0b612c7d095f745cb78c95a09b9f41..c88e9540c9d875a3826f4f714c9f1efbbdcf021d 100644 (file)
@@ -82,6 +82,7 @@ namespace {
       (void) llvm::createInternalizePass(false);
       (void) llvm::createLCSSAPass();
       (void) llvm::createLICMPass();
+      (void) llvm::createLazyValueInfoPass();
       (void) llvm::createLiveValuesPass();
       (void) llvm::createLoopDependenceAnalysisPass();
       (void) llvm::createLoopExtractorPass();
index 3f8356caf0abc8adb6ac3a2f5e40c449f5363766..0a83c3db89d3fcf50288cbc83f9df06b1724b944 100644 (file)
@@ -18,6 +18,7 @@ add_llvm_library(LLVMAnalysis
   InstructionSimplify.cpp
   Interval.cpp
   IntervalPartition.cpp
+  LazyValueInfo.cpp
   LibCallAliasAnalysis.cpp
   LibCallSemantics.cpp
   LiveValues.cpp
diff --git a/lib/Analysis/LazyValueInfo.cpp b/lib/Analysis/LazyValueInfo.cpp
new file mode 100644 (file)
index 0000000..cfedc20
--- /dev/null
@@ -0,0 +1,31 @@
+//===- LazyValueInfo.cpp - Value constraint analysis ----------------------===//
+//
+//                     The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// This file defines the interface for lazy computation of value constraint
+// information.
+//
+//===----------------------------------------------------------------------===//
+
+#include "llvm/Analysis/LazyValueInfo.h"
+using namespace llvm;
+
+char LazyValueInfo::ID = 0;
+static RegisterPass<LazyValueInfo>
+X("lazy-value-info", "Lazy Value Information Analysis", false, true);
+
+namespace llvm {
+  FunctionPass *createLazyValueInfoPass() { return new LazyValueInfo(); }
+}
+
+LazyValueInfo::LazyValueInfo() : FunctionPass(&ID) {
+}
+
+void LazyValueInfo::releaseMemory() {
+  
+}
index c161a772f2c6b310e49c0b22996780e3e5998527..a2a97127546822fd9248a4228df6071d775865d5 100644 (file)
@@ -284,3 +284,29 @@ F2:
 }
 
 
+
+
+;;; Duplicate condition to avoid xor of cond.
+define i32 @test10(i1 %cond, i1 %cond2) {
+Entry:
+; CHECK: @test10
+       %v1 = call i32 @f1()
+       br i1 %cond, label %Merge, label %F1
+
+F1:
+       br label %Merge
+
+Merge:
+       %B = phi i1 [true, %Entry], [%cond2, %F1]
+        %M = icmp eq i32 %v1, 192
+        %N = xor i1 %B, %M
+       br i1 %N, label %T2, label %F2
+
+T2:
+       ret i32 123
+
+F2:
+       ret i32 %v1
+}
+
+