[llvm-commits] CVS: llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp DataStructure.cpp DataStructureAA.cpp DataStructureOpt.cpp DataStructureStats.cpp GraphChecker.cpp Local.cpp Printer.cpp Steensgaard.cpp TopDownClosure.cpp

John Criswell criswell at cs.uiuc.edu
Mon Oct 20 14:44:09 PDT 2003


Changes in directory llvm/lib/Analysis/DataStructure:

BottomUpClosure.cpp updated: 1.66 -> 1.67
DataStructure.cpp updated: 1.122 -> 1.123
DataStructureAA.cpp updated: 1.10 -> 1.11
DataStructureOpt.cpp updated: 1.2 -> 1.3
DataStructureStats.cpp updated: 1.7 -> 1.8
GraphChecker.cpp updated: 1.7 -> 1.8
Local.cpp updated: 1.65 -> 1.66
Printer.cpp updated: 1.57 -> 1.58
Steensgaard.cpp updated: 1.31 -> 1.32
TopDownClosure.cpp updated: 1.56 -> 1.57

---
Log message:

Added LLVM project notice to the top of every C++ source file.
Header files will be on the way.



---
Diffs of the changes:  (+70 -0)

Index: llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp
diff -u llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp:1.66 llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp:1.67
--- llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp:1.66	Sat Sep 20 18:58:33 2003
+++ llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp	Mon Oct 20 14:43:06 2003
@@ -1,4 +1,11 @@
 //===- BottomUpClosure.cpp - Compute bottom-up interprocedural closure ----===//
+// 
+//                     The LLVM Compiler Infrastructure
+//
+// This file was developed by the LLVM research group and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+// 
+//===----------------------------------------------------------------------===//
 //
 // This file implements the BUDataStructures class, which represents the
 // Bottom-Up Interprocedural closure of the data structure graph over the


Index: llvm/lib/Analysis/DataStructure/DataStructure.cpp
diff -u llvm/lib/Analysis/DataStructure/DataStructure.cpp:1.122 llvm/lib/Analysis/DataStructure/DataStructure.cpp:1.123
--- llvm/lib/Analysis/DataStructure/DataStructure.cpp:1.122	Sat Sep 20 16:34:07 2003
+++ llvm/lib/Analysis/DataStructure/DataStructure.cpp	Mon Oct 20 14:43:06 2003
@@ -1,4 +1,11 @@
 //===- DataStructure.cpp - Implement the core data structure analysis -----===//
+// 
+//                     The LLVM Compiler Infrastructure
+//
+// This file was developed by the LLVM research group and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+// 
+//===----------------------------------------------------------------------===//
 //
 // This file implements the core data structure functionality.
 //


Index: llvm/lib/Analysis/DataStructure/DataStructureAA.cpp
diff -u llvm/lib/Analysis/DataStructure/DataStructureAA.cpp:1.10 llvm/lib/Analysis/DataStructure/DataStructureAA.cpp:1.11
--- llvm/lib/Analysis/DataStructure/DataStructureAA.cpp:1.10	Thu Sep 11 13:12:35 2003
+++ llvm/lib/Analysis/DataStructure/DataStructureAA.cpp	Mon Oct 20 14:43:06 2003
@@ -1,4 +1,11 @@
 //===- DataStructureAA.cpp - Data Structure Based Alias Analysis ----------===//
+// 
+//                     The LLVM Compiler Infrastructure
+//
+// This file was developed by the LLVM research group and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+// 
+//===----------------------------------------------------------------------===//
 //
 // This pass uses the top-down data structure graphs to implement a simple
 // context sensitive alias analysis.


Index: llvm/lib/Analysis/DataStructure/DataStructureOpt.cpp
diff -u llvm/lib/Analysis/DataStructure/DataStructureOpt.cpp:1.2 llvm/lib/Analysis/DataStructure/DataStructureOpt.cpp:1.3
--- llvm/lib/Analysis/DataStructure/DataStructureOpt.cpp:1.2	Sat Jun 28 17:10:58 2003
+++ llvm/lib/Analysis/DataStructure/DataStructureOpt.cpp	Mon Oct 20 14:43:06 2003
@@ -1,4 +1,11 @@
 //===- DataStructureOpt.cpp - Data Structure Analysis Based Optimizations -===//
+// 
+//                     The LLVM Compiler Infrastructure
+//
+// This file was developed by the LLVM research group and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+// 
+//===----------------------------------------------------------------------===//
 //
 // This pass uses DSA to a series of simple optimizations, like marking
 // unwritten global variables 'constant'.


Index: llvm/lib/Analysis/DataStructure/DataStructureStats.cpp
diff -u llvm/lib/Analysis/DataStructure/DataStructureStats.cpp:1.7 llvm/lib/Analysis/DataStructure/DataStructureStats.cpp:1.8
--- llvm/lib/Analysis/DataStructure/DataStructureStats.cpp:1.7	Sat Sep 20 16:48:01 2003
+++ llvm/lib/Analysis/DataStructure/DataStructureStats.cpp	Mon Oct 20 14:43:06 2003
@@ -1,4 +1,11 @@
 //===- DSGraphStats.cpp - Various statistics for DS Graphs ----------------===//
+// 
+//                     The LLVM Compiler Infrastructure
+//
+// This file was developed by the LLVM research group and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+// 
+//===----------------------------------------------------------------------===//
 //
 //===----------------------------------------------------------------------===//
 


Index: llvm/lib/Analysis/DataStructure/GraphChecker.cpp
diff -u llvm/lib/Analysis/DataStructure/GraphChecker.cpp:1.7 llvm/lib/Analysis/DataStructure/GraphChecker.cpp:1.8
--- llvm/lib/Analysis/DataStructure/GraphChecker.cpp:1.7	Wed Oct  1 17:49:22 2003
+++ llvm/lib/Analysis/DataStructure/GraphChecker.cpp	Mon Oct 20 14:43:06 2003
@@ -1,4 +1,11 @@
 //===- GraphChecker.cpp - Assert that various graph properties hold -------===//
+// 
+//                     The LLVM Compiler Infrastructure
+//
+// This file was developed by the LLVM research group and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+// 
+//===----------------------------------------------------------------------===//
 //
 // This pass is used to test DSA with regression tests.  It can be used to check
 // that certain graph properties hold, such as two nodes being disjoint, whether


Index: llvm/lib/Analysis/DataStructure/Local.cpp
diff -u llvm/lib/Analysis/DataStructure/Local.cpp:1.65 llvm/lib/Analysis/DataStructure/Local.cpp:1.66
--- llvm/lib/Analysis/DataStructure/Local.cpp:1.65	Wed Sep 24 18:42:58 2003
+++ llvm/lib/Analysis/DataStructure/Local.cpp	Mon Oct 20 14:43:06 2003
@@ -1,4 +1,11 @@
 //===- Local.cpp - Compute a local data structure graph for a function ----===//
+// 
+//                     The LLVM Compiler Infrastructure
+//
+// This file was developed by the LLVM research group and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+// 
+//===----------------------------------------------------------------------===//
 //
 // Compute the local version of the data structure graph for a function.  The
 // external interface to this file is the DSGraph constructor.


Index: llvm/lib/Analysis/DataStructure/Printer.cpp
diff -u llvm/lib/Analysis/DataStructure/Printer.cpp:1.57 llvm/lib/Analysis/DataStructure/Printer.cpp:1.58
--- llvm/lib/Analysis/DataStructure/Printer.cpp:1.57	Tue Jul  1 23:39:27 2003
+++ llvm/lib/Analysis/DataStructure/Printer.cpp	Mon Oct 20 14:43:06 2003
@@ -1,4 +1,11 @@
 //===- Printer.cpp - Code for printing data structure graphs nicely -------===//
+// 
+//                     The LLVM Compiler Infrastructure
+//
+// This file was developed by the LLVM research group and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+// 
+//===----------------------------------------------------------------------===//
 //
 // This file implements the 'dot' graph printer.
 //


Index: llvm/lib/Analysis/DataStructure/Steensgaard.cpp
diff -u llvm/lib/Analysis/DataStructure/Steensgaard.cpp:1.31 llvm/lib/Analysis/DataStructure/Steensgaard.cpp:1.32
--- llvm/lib/Analysis/DataStructure/Steensgaard.cpp:1.31	Fri Aug  1 17:14:28 2003
+++ llvm/lib/Analysis/DataStructure/Steensgaard.cpp	Mon Oct 20 14:43:06 2003
@@ -1,4 +1,11 @@
 //===- Steensgaard.cpp - Context Insensitive Alias Analysis ---------------===//
+// 
+//                     The LLVM Compiler Infrastructure
+//
+// This file was developed by the LLVM research group and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+// 
+//===----------------------------------------------------------------------===//
 //
 // This pass uses the data structure graphs to implement a simple context
 // insensitive alias analysis.  It does this by computing the local analysis


Index: llvm/lib/Analysis/DataStructure/TopDownClosure.cpp
diff -u llvm/lib/Analysis/DataStructure/TopDownClosure.cpp:1.56 llvm/lib/Analysis/DataStructure/TopDownClosure.cpp:1.57
--- llvm/lib/Analysis/DataStructure/TopDownClosure.cpp:1.56	Sat Sep 20 18:58:33 2003
+++ llvm/lib/Analysis/DataStructure/TopDownClosure.cpp	Mon Oct 20 14:43:06 2003
@@ -1,4 +1,11 @@
 //===- TopDownClosure.cpp - Compute the top-down interprocedure closure ---===//
+// 
+//                     The LLVM Compiler Infrastructure
+//
+// This file was developed by the LLVM research group and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+// 
+//===----------------------------------------------------------------------===//
 //
 // This file implements the TDDataStructures class, which represents the
 // Top-down Interprocedural closure of the data structure graph over the





More information about the llvm-commits mailing list