blob: 754e38fa7f5e7ae2ef1056f070ef43fb33a8a270 [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
Chris Lattner0e0e32d2002-10-13 17:12:05 +000034 // typedef ...iterator nodes_iterator;
35 // static nodes_iterator nodes_begin(GraphType *G)
36 // static nodes_iterator nodes_end (GraphType *G)
37 //
38 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
39
40
Chris Lattner409bbec2001-09-28 22:59:14 +000041 // If anyone tries to use this class without having an appropriate
Chris Lattner274aeb72001-10-01 13:34:22 +000042 // specialization, make an error. If you get this error, it's because you
Chris Lattner409bbec2001-09-28 22:59:14 +000043 // need to include the appropriate specialization of GraphTraits<> for your
Chris Lattner274aeb72001-10-01 13:34:22 +000044 // graph, or you need to define it for a new graph type. Either that or
45 // your argument to XXX_begin(...) is unknown or needs to have the proper .h
46 // file #include'd.
Chris Lattner409bbec2001-09-28 22:59:14 +000047 //
48 typedef typename GraphType::UnknownGraphTypeError NodeType;
49};
50
51
52// Inverse - This class is used as a little marker class to tell the graph
53// iterator to iterate over the graph in a graph defined "Inverse" ordering.
54// Not all graphs define an inverse ordering, and if they do, it depends on
55// the graph exactly what that is. Here's an example of usage with the
56// df_iterator:
57//
Chris Lattner274aeb72001-10-01 13:34:22 +000058// idf_iterator<Method*> I = idf_begin(M), E = idf_end(M);
59// for (; I != E; ++I) { ... }
60//
61// Which is equivalent to:
62// df_iterator<Inverse<Method*> > I = idf_begin(M), E = idf_end(M);
Chris Lattner409bbec2001-09-28 22:59:14 +000063// for (; I != E; ++I) { ... }
64//
65template <class GraphType>
66struct Inverse {
67 GraphType &Graph;
68
69 inline Inverse(GraphType &G) : Graph(G) {}
70};
71
72#endif