blob: 00973d59fab23cf68d64009e3c2ea05a3427591b [file] [log] [blame]
Chris Lattner5de22042001-11-27 00:03:19 +00001//===-- Support/GraphTraits.h - Graph traits template ------------*- C++ -*--=//
Chris Lattner409bbec2001-09-28 22:59:14 +00002//
3// This file defines the little GraphTraits<X> template class that should be
4// specialized by classes that want to be iteratable by generic graph iterators.
5//
6// This file also defines the marker class Inverse that is used to iterate over
7// graphs in a graph defined, inverse ordering...
8//
9//===----------------------------------------------------------------------===//
10
11#ifndef LLVM_SUPPORT_GRAPH_TRAITS_H
12#define LLVM_SUPPORT_GRAPH_TRAITS_H
13
14// GraphTraits - This class should be specialized by different graph types...
15// which is why the default version is empty.
16//
17template<class GraphType>
18struct GraphTraits {
19 // Elements to provide:
20
21 // typedef NodeType - Type of Node in the graph
22 // typedef ChildIteratorType - Type used to iterate over children in graph
23
24 // static NodeType *getEntryNode(GraphType *)
25 // Return the entry node of the graph
26
27 // static ChildIteratorType child_begin(NodeType *)
28 // static ChildIteratorType child_end (NodeType *)
29 // Return iterators that point to the beginning and ending of the child
30 // node list for the specified node.
31 //
32
33
34 // If anyone tries to use this class without having an appropriate
Chris Lattner274aeb72001-10-01 13:34:22 +000035 // specialization, make an error. If you get this error, it's because you
Chris Lattner409bbec2001-09-28 22:59:14 +000036 // need to include the appropriate specialization of GraphTraits<> for your
Chris Lattner274aeb72001-10-01 13:34:22 +000037 // graph, or you need to define it for a new graph type. Either that or
38 // your argument to XXX_begin(...) is unknown or needs to have the proper .h
39 // file #include'd.
Chris Lattner409bbec2001-09-28 22:59:14 +000040 //
41 typedef typename GraphType::UnknownGraphTypeError NodeType;
42};
43
44
45// Inverse - This class is used as a little marker class to tell the graph
46// iterator to iterate over the graph in a graph defined "Inverse" ordering.
47// Not all graphs define an inverse ordering, and if they do, it depends on
48// the graph exactly what that is. Here's an example of usage with the
49// df_iterator:
50//
Chris Lattner274aeb72001-10-01 13:34:22 +000051// idf_iterator<Method*> I = idf_begin(M), E = idf_end(M);
52// for (; I != E; ++I) { ... }
53//
54// Which is equivalent to:
55// df_iterator<Inverse<Method*> > I = idf_begin(M), E = idf_end(M);
Chris Lattner409bbec2001-09-28 22:59:14 +000056// for (; I != E; ++I) { ... }
57//
58template <class GraphType>
59struct Inverse {
60 GraphType &Graph;
61
62 inline Inverse(GraphType &G) : Graph(G) {}
63};
64
65#endif