From: Chris Lattner Date: Thu, 17 Oct 2002 00:16:39 +0000 (+0000) Subject: As wierd as it feels to type it, const void* is more generic than void* X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=a16adb7dd268dec23464681167721f223766384b;p=oota-llvm.git As wierd as it feels to type it, const void* is more generic than void* git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4206 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/Support/DOTGraphTraits.h b/include/Support/DOTGraphTraits.h index 42f9af24c61..f67035f5970 100644 --- a/include/Support/DOTGraphTraits.h +++ b/include/Support/DOTGraphTraits.h @@ -21,45 +21,55 @@ struct DefaultDOTGraphTraits { /// getGraphName - Return the label for the graph as a whole. Printed at the /// top of the graph. /// - static std::string getGraphName(void *Graph) { return ""; } + static std::string getGraphName(const void *Graph) { return ""; } /// getGraphProperties - Return any custom properties that should be included /// in the top level graph structure for dot. By default, we resize the graph /// to fit on a letter size page. /// - static std::string getGraphProperties(void *Graph) { + static std::string getGraphProperties(const void *Graph) { return "\tsize=\"7.5,10\";\n"; // Size to fit on a page } /// getNodeLabel - Given a node and a pointer to the top level graph, return /// the label to print in the node. - static std::string getNodeLabel(void *Node, void *Graph) { return ""; } + static std::string getNodeLabel(const void *Node, const void *Graph) { + return ""; + } /// If you want to specify custom node attributes, this is the place to do so /// - static std::string getNodeAttributes(void *Node) { return ""; } + static std::string getNodeAttributes(const void *Node) { return ""; } /// If you want to override the dot attributes printed for a particular edge, /// override this method. template - static std::string getEdgeAttributes(void *Node, EdgeIter EI) { return ""; } + static std::string getEdgeAttributes(const void *Node, EdgeIter EI) { + return ""; + } /// getEdgeSourceLabel - If you want to label the edge source itself, /// implement this method. template - static std::string getEdgeSourceLabel(void *Node, EdgeIter I) { return ""; } + static std::string getEdgeSourceLabel(const void *Node, EdgeIter I) { + return ""; + } /// edgeTargetsEdgeSource - This method returns true if this outgoing edge /// should actually target another edge source, not a node. If this method is /// implemented, getEdgeTarget should be implemented. template - static bool edgeTargetsEdgeSource(void *Node, EdgeIter I) { return false; } + static bool edgeTargetsEdgeSource(const void *Node, EdgeIter I) { + return false; + } /// getEdgeTarget - If edgeTargetsEdgeSource returns true, this method is /// called to determine which outgoing edge of Node is the target of this /// edge. template - static EdgeIter getEdgeTarget(void *Node, EdgeIter I) { return I; } + static EdgeIter getEdgeTarget(const void *Node, EdgeIter I) { + return I; + } /// addCustomGraphFeatures - If a graph is made up of more than just /// straight-forward nodes and edges, this is the place to put all of the @@ -68,7 +78,7 @@ struct DefaultDOTGraphTraits { /// it to add things to the output graph. /// template - static void addCustomGraphFeatures(void *Graph, GraphWriter &GW) {} + static void addCustomGraphFeatures(const void *Graph, GraphWriter &GW) {} }; diff --git a/include/llvm/Support/DOTGraphTraits.h b/include/llvm/Support/DOTGraphTraits.h index 42f9af24c61..f67035f5970 100644 --- a/include/llvm/Support/DOTGraphTraits.h +++ b/include/llvm/Support/DOTGraphTraits.h @@ -21,45 +21,55 @@ struct DefaultDOTGraphTraits { /// getGraphName - Return the label for the graph as a whole. Printed at the /// top of the graph. /// - static std::string getGraphName(void *Graph) { return ""; } + static std::string getGraphName(const void *Graph) { return ""; } /// getGraphProperties - Return any custom properties that should be included /// in the top level graph structure for dot. By default, we resize the graph /// to fit on a letter size page. /// - static std::string getGraphProperties(void *Graph) { + static std::string getGraphProperties(const void *Graph) { return "\tsize=\"7.5,10\";\n"; // Size to fit on a page } /// getNodeLabel - Given a node and a pointer to the top level graph, return /// the label to print in the node. - static std::string getNodeLabel(void *Node, void *Graph) { return ""; } + static std::string getNodeLabel(const void *Node, const void *Graph) { + return ""; + } /// If you want to specify custom node attributes, this is the place to do so /// - static std::string getNodeAttributes(void *Node) { return ""; } + static std::string getNodeAttributes(const void *Node) { return ""; } /// If you want to override the dot attributes printed for a particular edge, /// override this method. template - static std::string getEdgeAttributes(void *Node, EdgeIter EI) { return ""; } + static std::string getEdgeAttributes(const void *Node, EdgeIter EI) { + return ""; + } /// getEdgeSourceLabel - If you want to label the edge source itself, /// implement this method. template - static std::string getEdgeSourceLabel(void *Node, EdgeIter I) { return ""; } + static std::string getEdgeSourceLabel(const void *Node, EdgeIter I) { + return ""; + } /// edgeTargetsEdgeSource - This method returns true if this outgoing edge /// should actually target another edge source, not a node. If this method is /// implemented, getEdgeTarget should be implemented. template - static bool edgeTargetsEdgeSource(void *Node, EdgeIter I) { return false; } + static bool edgeTargetsEdgeSource(const void *Node, EdgeIter I) { + return false; + } /// getEdgeTarget - If edgeTargetsEdgeSource returns true, this method is /// called to determine which outgoing edge of Node is the target of this /// edge. template - static EdgeIter getEdgeTarget(void *Node, EdgeIter I) { return I; } + static EdgeIter getEdgeTarget(const void *Node, EdgeIter I) { + return I; + } /// addCustomGraphFeatures - If a graph is made up of more than just /// straight-forward nodes and edges, this is the place to put all of the @@ -68,7 +78,7 @@ struct DefaultDOTGraphTraits { /// it to add things to the output graph. /// template - static void addCustomGraphFeatures(void *Graph, GraphWriter &GW) {} + static void addCustomGraphFeatures(const void *Graph, GraphWriter &GW) {} };