diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2002-11-02 21:18:53 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2002-11-02 21:18:53 +0000 |
commit | 0d05e6d942e75a1187e8538adf3a05c09976cabf (patch) | |
tree | 12048970b86671bfeefe3975a73e3fa25667da0d | |
parent | f01729ea56ea72316508e55a3626c8c0310a1ae4 (diff) | |
download | external_llvm-0d05e6d942e75a1187e8538adf3a05c09976cabf.zip external_llvm-0d05e6d942e75a1187e8538adf3a05c09976cabf.tar.gz external_llvm-0d05e6d942e75a1187e8538adf3a05c09976cabf.tar.bz2 |
Fixed comment on top of DSNode.h, added note to DSSupport.h as to why
functions were split out from DSNode class.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4509 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Analysis/DSNode.h | 4 | ||||
-rw-r--r-- | include/llvm/Analysis/DSSupport.h | 4 | ||||
-rw-r--r-- | include/llvm/Analysis/DataStructure/DSNode.h | 4 | ||||
-rw-r--r-- | include/llvm/Analysis/DataStructure/DSSupport.h | 4 |
4 files changed, 12 insertions, 4 deletions
diff --git a/include/llvm/Analysis/DSNode.h b/include/llvm/Analysis/DSNode.h index 74fd5af..12d2cbc 100644 --- a/include/llvm/Analysis/DSNode.h +++ b/include/llvm/Analysis/DSNode.h @@ -1,6 +1,6 @@ -//===- DSSupport.h - Support for datastructure graphs -----------*- C++ -*-===// +//===- DSNode.h - Node definition for datastructure graphs ------*- C++ -*-===// // -// Support for graph nodes, call sites, and types. +// Data structure graph nodes and some implementation of DSNodeHandle. // //===----------------------------------------------------------------------===// diff --git a/include/llvm/Analysis/DSSupport.h b/include/llvm/Analysis/DSSupport.h index b3c3ed0..ae1e815 100644 --- a/include/llvm/Analysis/DSSupport.h +++ b/include/llvm/Analysis/DSSupport.h @@ -28,6 +28,10 @@ class DSNodeIterator; // Data structure graph traversal iterator /// graph from getting out of date. This class represents a "pointer" in the /// graph, whose destination is an indexed offset into a node. /// +/// Note: some functions that are marked as inline in DSNodeHandle are actually +/// defined in DSNode.h because they need knowledge of DSNode operation. Putting +/// them in a CPP file wouldn't help making them inlined and keeping DSNode and +/// DSNodeHandle (and friends) in one file complicates things. class DSNodeHandle { DSNode *N; unsigned Offset; diff --git a/include/llvm/Analysis/DataStructure/DSNode.h b/include/llvm/Analysis/DataStructure/DSNode.h index 74fd5af..12d2cbc 100644 --- a/include/llvm/Analysis/DataStructure/DSNode.h +++ b/include/llvm/Analysis/DataStructure/DSNode.h @@ -1,6 +1,6 @@ -//===- DSSupport.h - Support for datastructure graphs -----------*- C++ -*-===// +//===- DSNode.h - Node definition for datastructure graphs ------*- C++ -*-===// // -// Support for graph nodes, call sites, and types. +// Data structure graph nodes and some implementation of DSNodeHandle. // //===----------------------------------------------------------------------===// diff --git a/include/llvm/Analysis/DataStructure/DSSupport.h b/include/llvm/Analysis/DataStructure/DSSupport.h index b3c3ed0..ae1e815 100644 --- a/include/llvm/Analysis/DataStructure/DSSupport.h +++ b/include/llvm/Analysis/DataStructure/DSSupport.h @@ -28,6 +28,10 @@ class DSNodeIterator; // Data structure graph traversal iterator /// graph from getting out of date. This class represents a "pointer" in the /// graph, whose destination is an indexed offset into a node. /// +/// Note: some functions that are marked as inline in DSNodeHandle are actually +/// defined in DSNode.h because they need knowledge of DSNode operation. Putting +/// them in a CPP file wouldn't help making them inlined and keeping DSNode and +/// DSNodeHandle (and friends) in one file complicates things. class DSNodeHandle { DSNode *N; unsigned Offset; |