[llvm-commits] CVS: llvm/lib/Support/Annotation.cpp CommandLine.cpp ConstantRange.cpp Debug.cpp DynamicLinker.cpp FileUtilities.cpp LeakDetector.cpp Mangler.cpp PluginLoader.cpp Signals.cpp Statistic.cpp SystemUtils.cpp Timer.cpp ToolRunner.cpp ValueHolder.cpp

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


Changes in directory llvm/lib/Support:

Annotation.cpp updated: 1.10 -> 1.11
CommandLine.cpp updated: 1.39 -> 1.40
ConstantRange.cpp updated: 1.5 -> 1.6
Debug.cpp updated: 1.2 -> 1.3
DynamicLinker.cpp updated: 1.1 -> 1.2
FileUtilities.cpp updated: 1.7 -> 1.8
LeakDetector.cpp updated: 1.3 -> 1.4
Mangler.cpp updated: 1.5 -> 1.6
PluginLoader.cpp updated: 1.5 -> 1.6
Signals.cpp updated: 1.8 -> 1.9
Statistic.cpp updated: 1.10 -> 1.11
SystemUtils.cpp updated: 1.17 -> 1.18
Timer.cpp updated: 1.26 -> 1.27
ToolRunner.cpp updated: 1.9 -> 1.10
ValueHolder.cpp updated: 1.1 -> 1.2

---
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:  (+105 -0)

Index: llvm/lib/Support/Annotation.cpp
diff -u llvm/lib/Support/Annotation.cpp:1.10 llvm/lib/Support/Annotation.cpp:1.11
--- llvm/lib/Support/Annotation.cpp:1.10	Sun Oct 12 22:32:08 2003
+++ llvm/lib/Support/Annotation.cpp	Mon Oct 20 14:43:16 2003
@@ -1,4 +1,11 @@
 //===-- Annotation.cpp - Implement the Annotation Classes -----------------===//
+// 
+//                     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 AnnotationManager class.
 //


Index: llvm/lib/Support/CommandLine.cpp
diff -u llvm/lib/Support/CommandLine.cpp:1.39 llvm/lib/Support/CommandLine.cpp:1.40
--- llvm/lib/Support/CommandLine.cpp:1.39	Fri Oct 10 12:01:36 2003
+++ llvm/lib/Support/CommandLine.cpp	Mon Oct 20 14:43:16 2003
@@ -1,4 +1,11 @@
 //===-- CommandLine.cpp - Command line parser implementation --------------===//
+// 
+//                     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 class implements a command line argument processor that is useful when
 // creating a tool.  It provides a simple, minimalistic interface that is easily


Index: llvm/lib/Support/ConstantRange.cpp
diff -u llvm/lib/Support/ConstantRange.cpp:1.5 llvm/lib/Support/ConstantRange.cpp:1.6
--- llvm/lib/Support/ConstantRange.cpp:1.5	Wed Jul 23 10:22:17 2003
+++ llvm/lib/Support/ConstantRange.cpp	Mon Oct 20 14:43:16 2003
@@ -1,4 +1,11 @@
 //===-- ConstantRange.cpp - ConstantRange implementation ------------------===//
+// 
+//                     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.
+// 
+//===----------------------------------------------------------------------===//
 //
 // Represent a range of possible values that may occur when the program is run
 // for an integral value.  This keeps track of a lower and upper bound for the


Index: llvm/lib/Support/Debug.cpp
diff -u llvm/lib/Support/Debug.cpp:1.2 llvm/lib/Support/Debug.cpp:1.3
--- llvm/lib/Support/Debug.cpp:1.2	Tue Aug 12 15:46:50 2003
+++ llvm/lib/Support/Debug.cpp	Mon Oct 20 14:43:16 2003
@@ -1,4 +1,11 @@
 //===-- Debug.cpp - An easy way to add debug output to your code ----------===//
+// 
+//                     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 a handle way of adding debugging information to your
 // code, without it being enabled all of the time, and without having to add


Index: llvm/lib/Support/DynamicLinker.cpp
diff -u llvm/lib/Support/DynamicLinker.cpp:1.1 llvm/lib/Support/DynamicLinker.cpp:1.2
--- llvm/lib/Support/DynamicLinker.cpp:1.1	Fri Oct 10 11:55:42 2003
+++ llvm/lib/Support/DynamicLinker.cpp	Mon Oct 20 14:43:16 2003
@@ -1,4 +1,11 @@
 //===-- DynamicLinker.cpp - Implement DynamicLinker interface -------------===//
+// 
+//                     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.
+// 
+//===----------------------------------------------------------------------===//
 //
 // Lightweight interface to dynamic library linking and loading, and dynamic
 // symbol lookup functionality, in whatever form the operating system


Index: llvm/lib/Support/FileUtilities.cpp
diff -u llvm/lib/Support/FileUtilities.cpp:1.7 llvm/lib/Support/FileUtilities.cpp:1.8
--- llvm/lib/Support/FileUtilities.cpp:1.7	Tue Sep 16 10:31:46 2003
+++ llvm/lib/Support/FileUtilities.cpp	Mon Oct 20 14:43:16 2003
@@ -1,4 +1,11 @@
 //===- Support/FileUtilities.cpp - File System Utilities ------------------===//
+// 
+//                     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 a family of utility functions which are useful for doing
 // various things with files.


Index: llvm/lib/Support/LeakDetector.cpp
diff -u llvm/lib/Support/LeakDetector.cpp:1.3 llvm/lib/Support/LeakDetector.cpp:1.4
--- llvm/lib/Support/LeakDetector.cpp:1.3	Thu Sep 19 14:22:11 2002
+++ llvm/lib/Support/LeakDetector.cpp	Mon Oct 20 14:43:16 2003
@@ -1,4 +1,11 @@
 //===-- LeakDetector.cpp - Implement LeakDetector interface ---------------===//
+// 
+//                     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 LeakDetector class.
 //


Index: llvm/lib/Support/Mangler.cpp
diff -u llvm/lib/Support/Mangler.cpp:1.5 llvm/lib/Support/Mangler.cpp:1.6
--- llvm/lib/Support/Mangler.cpp:1.5	Sun Aug 24 16:08:38 2003
+++ llvm/lib/Support/Mangler.cpp	Mon Oct 20 14:43:16 2003
@@ -1,4 +1,11 @@
 //===-- Mangler.cpp - Self-contained c/asm llvm name mangler --------------===//
+// 
+//                     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.
+// 
+//===----------------------------------------------------------------------===//
 //
 // Unified name mangler for CWriter and assembly backends.
 //


Index: llvm/lib/Support/PluginLoader.cpp
diff -u llvm/lib/Support/PluginLoader.cpp:1.5 llvm/lib/Support/PluginLoader.cpp:1.6
--- llvm/lib/Support/PluginLoader.cpp:1.5	Fri Oct 10 12:01:49 2003
+++ llvm/lib/Support/PluginLoader.cpp	Mon Oct 20 14:43:16 2003
@@ -1,4 +1,11 @@
 //===-- PluginLoader.cpp - Implement -load command line option ------------===//
+// 
+//                     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 -load <plugin> command line option processor.  When
 // linked into a program, this new command line option is available that allows


Index: llvm/lib/Support/Signals.cpp
diff -u llvm/lib/Support/Signals.cpp:1.8 llvm/lib/Support/Signals.cpp:1.9
--- llvm/lib/Support/Signals.cpp:1.8	Tue Sep 16 10:31:46 2003
+++ llvm/lib/Support/Signals.cpp	Mon Oct 20 14:43:16 2003
@@ -1,4 +1,11 @@
 //===- Signals.cpp - Signal Handling support ------------------------------===//
+// 
+//                     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 defines some helpful functions for dealing with the possibility of
 // Unix signals occuring while your program is running.


Index: llvm/lib/Support/Statistic.cpp
diff -u llvm/lib/Support/Statistic.cpp:1.10 llvm/lib/Support/Statistic.cpp:1.11
--- llvm/lib/Support/Statistic.cpp:1.10	Wed Aug 13 16:32:37 2003
+++ llvm/lib/Support/Statistic.cpp	Mon Oct 20 14:43:16 2003
@@ -1,4 +1,11 @@
 //===-- Statistic.cpp - Easy way to expose stats information --------------===//
+// 
+//                     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 'Statistic' class, which is designed to be an easy
 // way to expose various success metrics from passes.  These statistics are


Index: llvm/lib/Support/SystemUtils.cpp
diff -u llvm/lib/Support/SystemUtils.cpp:1.17 llvm/lib/Support/SystemUtils.cpp:1.18
--- llvm/lib/Support/SystemUtils.cpp:1.17	Wed Oct 15 15:46:58 2003
+++ llvm/lib/Support/SystemUtils.cpp	Mon Oct 20 14:43:16 2003
@@ -1,4 +1,11 @@
 //===- SystemUtils.h - Utilities to do low-level system stuff --*- C++ -*--===//
+// 
+//                     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 contains functions used to do a variety of low-level, often
 // system-specific, tasks.


Index: llvm/lib/Support/Timer.cpp
diff -u llvm/lib/Support/Timer.cpp:1.26 llvm/lib/Support/Timer.cpp:1.27
--- llvm/lib/Support/Timer.cpp:1.26	Fri Oct 10 13:46:27 2003
+++ llvm/lib/Support/Timer.cpp	Mon Oct 20 14:43:16 2003
@@ -1,4 +1,11 @@
 //===-- Timer.cpp - Interval Timing Support -------------------------------===//
+// 
+//                     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.
+// 
+//===----------------------------------------------------------------------===//
 //
 // Interval Timing implementation.
 //


Index: llvm/lib/Support/ToolRunner.cpp
diff -u llvm/lib/Support/ToolRunner.cpp:1.9 llvm/lib/Support/ToolRunner.cpp:1.10
--- llvm/lib/Support/ToolRunner.cpp:1.9	Sat Oct 18 21:27:40 2003
+++ llvm/lib/Support/ToolRunner.cpp	Mon Oct 20 14:43:16 2003
@@ -1,4 +1,11 @@
 //===-- ToolRunner.cpp ----------------------------------------------------===//
+// 
+//                     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 interfaces described in the ToolRunner.h file.
 //


Index: llvm/lib/Support/ValueHolder.cpp
diff -u llvm/lib/Support/ValueHolder.cpp:1.1 llvm/lib/Support/ValueHolder.cpp:1.2
--- llvm/lib/Support/ValueHolder.cpp:1.1	Sat Aug 23 14:43:16 2003
+++ llvm/lib/Support/ValueHolder.cpp	Mon Oct 20 14:43:16 2003
@@ -1,4 +1,11 @@
 //===-- ValueHolder.cpp - Wrapper for Value implementation ----------------===//
+// 
+//                     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 class defines a simple subclass of User, which keeps a pointer to a
 // Value, which automatically updates when Value::replaceAllUsesWith is called.





More information about the llvm-commits mailing list