mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
Enhancements for --view-graph
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50737 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2ba4c5abab
commit
97fda6d915
@ -204,15 +204,29 @@ namespace llvm {
|
||||
: public DefaultDOTGraphTraits
|
||||
{
|
||||
|
||||
template<typename GraphType>
|
||||
static std::string getNodeLabel(const Node* N, const GraphType&) {
|
||||
if (N->ToolPtr)
|
||||
return N->Name();
|
||||
else
|
||||
return "root";
|
||||
}
|
||||
template<typename GraphType>
|
||||
static std::string getNodeLabel(const Node* N, const GraphType&)
|
||||
{
|
||||
if (N->ToolPtr)
|
||||
if (N->ToolPtr->IsJoin())
|
||||
return N->Name() + "\n (join" +
|
||||
(N->HasChildren() ? ")"
|
||||
: std::string(": ") + N->ToolPtr->OutputLanguage() + ')');
|
||||
else
|
||||
return N->Name();
|
||||
else
|
||||
return "root";
|
||||
}
|
||||
|
||||
template<typename EdgeIter>
|
||||
static std::string getEdgeSourceLabel(const Node* N, EdgeIter I) {
|
||||
if (N->ToolPtr)
|
||||
return N->ToolPtr->OutputLanguage();
|
||||
else
|
||||
return I->ToolPtr->InputLanguage();
|
||||
}
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
void CompilationGraph::writeGraph() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user