mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-26 07:24:25 +00:00
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
This commit is contained in:
@ -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.
|
||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
@ -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 from getting out of date. This class represents a "pointer" in the
|
||||||
/// graph, whose destination is an indexed offset into a node.
|
/// 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 {
|
class DSNodeHandle {
|
||||||
DSNode *N;
|
DSNode *N;
|
||||||
unsigned Offset;
|
unsigned Offset;
|
||||||
|
@ -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.
|
||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
@ -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 from getting out of date. This class represents a "pointer" in the
|
||||||
/// graph, whose destination is an indexed offset into a node.
|
/// 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 {
|
class DSNodeHandle {
|
||||||
DSNode *N;
|
DSNode *N;
|
||||||
unsigned Offset;
|
unsigned Offset;
|
||||||
|
Reference in New Issue
Block a user