diff options
61 files changed, 427 insertions, 0 deletions
diff --git a/include/Support/Annotation.h b/include/Support/Annotation.h index f4b7c28202..075ffc297a 100644 --- a/include/Support/Annotation.h +++ b/include/Support/Annotation.h @@ -1,4 +1,11 @@ //===-- Support/Annotation.h - Annotation classes ---------------*- 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 the declarations for two classes: Annotation & Annotable. // Using these two simple classes, anything that derives from Annotable can have diff --git a/include/Support/BitSetVector.h b/include/Support/BitSetVector.h index fa2598a285..08bafa1580 100644 --- a/include/Support/BitSetVector.h +++ b/include/Support/BitSetVector.h @@ -1,4 +1,11 @@ //===-- BitVectorSet.h - A bit-vector representation of sets ----*- 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 is an implementation of the bit-vector representation of sets. Unlike // vector<bool>, this allows much more efficient parallel set operations on diff --git a/include/Support/Casting.h b/include/Support/Casting.h index fc2d4b21ea..065919c179 100644 --- a/include/Support/Casting.h +++ b/include/Support/Casting.h @@ -1,4 +1,11 @@ //===-- Support/Casting.h - Allow flexible, checked, casts ------*- 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 defines the isa<X>(), cast<X>(), dyn_cast<X>(), cast_or_null<X>(), // and dyn_cast_or_null<X>() templates. diff --git a/include/Support/CommandLine.h b/include/Support/CommandLine.h index 179bca378b..01f55a81d4 100644 --- a/include/Support/CommandLine.h +++ b/include/Support/CommandLine.h @@ -1,4 +1,11 @@ //===- Support/CommandLine.h - Flexible Command line parser -----*- 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 class implements a command line argument processor that is useful when // creating a tool. It provides a simple, minimalistic interface that is easily diff --git a/include/Support/DOTGraphTraits.h b/include/Support/DOTGraphTraits.h index 6ffade878b..002a78ec4f 100644 --- a/include/Support/DOTGraphTraits.h +++ b/include/Support/DOTGraphTraits.h @@ -1,4 +1,11 @@ //===-- Support/DotGraphTraits.h - Customize .dot output --------*- 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 defines a template class that can be used to customize dot output // graphs generated by the GraphWriter.h file. The default implementation of diff --git a/include/Support/DataTypes.h b/include/Support/DataTypes.h index eb933216d8..e2a08ea2ad 100644 --- a/include/Support/DataTypes.h +++ b/include/Support/DataTypes.h @@ -1,4 +1,11 @@ //===-- include/Support/DataTypes.h - Define fixed size types ---*- 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 definitions to figure out the size of _HOST_ data types. // This file is important because different host OS's define different macros, diff --git a/include/Support/Debug.h b/include/Support/Debug.h index 0a4c8a7784..8cba05771f 100644 --- a/include/Support/Debug.h +++ b/include/Support/Debug.h @@ -1,4 +1,11 @@ //===- Debug.h - An easy way to add debug output to your code ---*- 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 implements a handle way of adding debugging information to your // code, without it being enabled all of the time, and without having to add diff --git a/include/Support/DepthFirstIterator.h b/include/Support/DepthFirstIterator.h index 7df5c26f98..bb7673c83d 100644 --- a/include/Support/DepthFirstIterator.h +++ b/include/Support/DepthFirstIterator.h @@ -1,4 +1,11 @@ //===- Support/DepthFirstIterator.h - Depth First iterator ------*- 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 builds on the Support/GraphTraits.h file to build generic depth // first graph iterator. This file exposes the following functions/types: diff --git a/include/Support/DynamicLinker.h b/include/Support/DynamicLinker.h index 9b0e749aeb..8f02708268 100644 --- a/include/Support/DynamicLinker.h +++ b/include/Support/DynamicLinker.h @@ -1,4 +1,11 @@ //===-- DynamicLinker.h - System-indep. DynamicLinker interface -*- 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. +// +//===----------------------------------------------------------------------===// // // Lightweight interface to dynamic library linking and loading, and dynamic // symbol lookup functionality, in whatever form the operating system diff --git a/include/Support/EquivalenceClasses.h b/include/Support/EquivalenceClasses.h index dab5d73257..01e8c5ef82 100644 --- a/include/Support/EquivalenceClasses.h +++ b/include/Support/EquivalenceClasses.h @@ -1,5 +1,12 @@ //===-- Support/EquivalenceClasses.h ----------------------------*- 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. +// +//===----------------------------------------------------------------------===// +// // Generic implementation of equivalence classes and implementation of // union-find algorithms A not-so-fancy implementation: 2 level tree i.e root // and one more level Overhead of a union = size of the equivalence class being diff --git a/include/Support/FileUtilities.h b/include/Support/FileUtilities.h index 3bba3fec73..0323ffac9f 100644 --- a/include/Support/FileUtilities.h +++ b/include/Support/FileUtilities.h @@ -1,4 +1,11 @@ //===- Support/FileUtilities.h - File System Utilities ----------*- 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 defines a family of utility functions which are useful for doing // various things with files. diff --git a/include/Support/GraphTraits.h b/include/Support/GraphTraits.h index e54d963129..305f71e280 100644 --- a/include/Support/GraphTraits.h +++ b/include/Support/GraphTraits.h @@ -1,4 +1,11 @@ //===-- Support/GraphTraits.h - Graph traits template -----------*- 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 defines the little GraphTraits<X> template class that should be // specialized by classes that want to be iteratable by generic graph iterators. diff --git a/include/Support/GraphWriter.h b/include/Support/GraphWriter.h index 7b21dbf30f..229284fa8e 100644 --- a/include/Support/GraphWriter.h +++ b/include/Support/GraphWriter.h @@ -1,4 +1,11 @@ //===-- Support/GraphWriter.h - Write a graph to a .dot file ----*- 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 defines a simple interface that can be used to print out generic // LLVM graphs to ".dot" files. "dot" is a tool that is part of the AT&T diff --git a/include/Support/HashExtras.h b/include/Support/HashExtras.h index f648a28c09..871080c467 100644 --- a/include/Support/HashExtras.h +++ b/include/Support/HashExtras.h @@ -1,4 +1,11 @@ //===-- HashExtras.h - Useful functions for STL hash containers -*- 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 some templates that are useful if you are working with the // STL Hashed containers. diff --git a/include/Support/LeakDetector.h b/include/Support/LeakDetector.h index 4c682be500..b39e0b5911 100644 --- a/include/Support/LeakDetector.h +++ b/include/Support/LeakDetector.h @@ -1,4 +1,11 @@ //===-- Support/LeakDetector.h - Provide simple leak detection --*- 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 defines a class that can be used to provide very simple memory leak // checks for an API. Basically LLVM uses this to make sure that Instructions, diff --git a/include/Support/MathExtras.h b/include/Support/MathExtras.h index ea3bba40c9..ec742324b0 100644 --- a/include/Support/MathExtras.h +++ b/include/Support/MathExtras.h @@ -1,4 +1,11 @@ //===-- Support/MathExtras.h - Useful math functions ------------*- 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 some functions that are useful for math stuff. // diff --git a/include/Support/PostOrderIterator.h b/include/Support/PostOrderIterator.h index 2e5a0ad336..9309554f32 100644 --- a/include/Support/PostOrderIterator.h +++ b/include/Support/PostOrderIterator.h @@ -1,4 +1,11 @@ //===- Support/PostOrderIterator.h - Generic PostOrder iterator -*- 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 builds on the Support/GraphTraits.h file to build a generic graph // post order iterator. This should work over any graph type that has a diff --git a/include/Support/SCCIterator.h b/include/Support/SCCIterator.h index e8c4af6c8f..cf137cd473 100644 --- a/include/Support/SCCIterator.h +++ b/include/Support/SCCIterator.h @@ -1,4 +1,11 @@ //===-- Support/SCCIterator.h - SCC iterator --------------------*- 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 builds on the Support/GraphTraits.h file to find the strongly connected // components (SCCs) of a graph in O(N+E) time using Tarjan's DFS algorithm. diff --git a/include/Support/STLExtras.h b/include/Support/STLExtras.h index 012d002427..bc84f32037 100644 --- a/include/Support/STLExtras.h +++ b/include/Support/STLExtras.h @@ -1,4 +1,11 @@ //===- STLExtras.h - Useful functions when working with the STL -*- 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 some templates that are useful if you are working with the // STL at all. diff --git a/include/Support/SetOperations.h b/include/Support/SetOperations.h index fe020b87da..dc6e0d6029 100644 --- a/include/Support/SetOperations.h +++ b/include/Support/SetOperations.h @@ -1,4 +1,11 @@ //===-- Support/SetOperations.h - Generic Set Operations --------*- 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 defines generic set operations that may be used on set's of // different types, and different element types. diff --git a/include/Support/Signals.h b/include/Support/Signals.h index 218cf99a24..ce12301a15 100644 --- a/include/Support/Signals.h +++ b/include/Support/Signals.h @@ -1,4 +1,11 @@ //===- Support/Signals.h - Signal Handling support --------------*- 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 defines some helpful functions for dealing with the possibility of // unix signals occuring while your program is running. diff --git a/include/Support/Statistic.h b/include/Support/Statistic.h index f25ffc6b3a..d69809ff18 100644 --- a/include/Support/Statistic.h +++ b/include/Support/Statistic.h @@ -1,4 +1,11 @@ //===-- Support/Statistic.h - Easy way to expose stats ----------*- 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 defines the 'Statistic' class, which is designed to be an easy way // to expose various success metrics from passes. These statistics are printed diff --git a/include/Support/StringExtras.h b/include/Support/StringExtras.h index 0596b2feb5..0ca6609ff4 100644 --- a/include/Support/StringExtras.h +++ b/include/Support/StringExtras.h @@ -1,4 +1,11 @@ //===-- Support/StringExtras.h - Useful string functions --------*- 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 some functions that are useful when dealing with strings. // diff --git a/include/Support/SystemUtils.h b/include/Support/SystemUtils.h index 01c8189723..ccde86cce6 100644 --- a/include/Support/SystemUtils.h +++ b/include/Support/SystemUtils.h @@ -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. diff --git a/include/Support/Timer.h b/include/Support/Timer.h index 3a2a457681..57ef3f0d64 100644 --- a/include/Support/Timer.h +++ b/include/Support/Timer.h @@ -1,4 +1,11 @@ //===-- Support/Timer.h - Interval Timing Support ---------------*- 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 defines three classes: Timer, TimeRegion, and TimerGroup, // documented below. diff --git a/include/Support/Tree.h b/include/Support/Tree.h index 15572614b0..e6454317a8 100644 --- a/include/Support/Tree.h +++ b/include/Support/Tree.h @@ -1,4 +1,11 @@ //===- Support/Tree.h - Generic n-way tree structure ------------*- 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 class defines a generic N way tree node structure. The tree structure // is immutable after creation, but the payload contained within it is not. diff --git a/include/Support/TypeInfo.h b/include/Support/TypeInfo.h index 488f56dc0f..aa2093a43d 100644 --- a/include/Support/TypeInfo.h +++ b/include/Support/TypeInfo.h @@ -1,4 +1,11 @@ //===- Support/TypeInfo.h - Support cl |