2012-05-08 02:44:16 +00:00
|
|
|
/*
|
|
|
|
dot_dag.c
|
|
|
|
|
|
|
|
Output dags to dot (graphvis).
|
|
|
|
|
|
|
|
Copyright (C) 2012 Bill Currie <bill@taniwha.org>
|
|
|
|
|
|
|
|
Author: Bill Currie <bill@taniwha.org>
|
|
|
|
Date: 2012/05/08
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to:
|
|
|
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
59 Temple Place - Suite 330
|
|
|
|
Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
# include <string.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
# include <strings.h>
|
|
|
|
#endif
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include <QF/dstring.h>
|
|
|
|
#include <QF/quakeio.h>
|
|
|
|
#include <QF/va.h>
|
|
|
|
|
|
|
|
#include "dags.h"
|
2012-11-17 12:14:42 +00:00
|
|
|
#include "set.h"
|
2012-05-08 02:44:16 +00:00
|
|
|
#include "statements.h"
|
|
|
|
#include "symtab.h"
|
|
|
|
#include "type.h"
|
|
|
|
|
2012-11-06 12:50:29 +00:00
|
|
|
static void
|
2012-11-17 12:14:42 +00:00
|
|
|
print_node_def (dstring_t *dstr, dagnode_t *node)
|
2012-11-06 12:50:29 +00:00
|
|
|
{
|
2012-11-18 00:23:01 +00:00
|
|
|
dasprintf (dstr, " \"dagnode_%p\" [%slabel=\"%s (%d)\"];\n", node,
|
2012-11-16 13:09:49 +00:00
|
|
|
node->type != st_none ? "" : "shape=none,",
|
2012-11-18 00:23:01 +00:00
|
|
|
daglabel_string (node->label), node->topo);
|
2012-11-06 12:50:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-11-17 12:14:42 +00:00
|
|
|
print_root_nodes (dstring_t *dstr, dag_t *dag)
|
2012-11-06 12:50:29 +00:00
|
|
|
{
|
2012-11-17 12:14:42 +00:00
|
|
|
set_iter_t *node_iter;
|
2012-11-06 12:50:29 +00:00
|
|
|
dasprintf (dstr, " subgraph roots_%p {", dag);
|
|
|
|
dasprintf (dstr, " rank=same;");
|
2012-11-17 12:14:42 +00:00
|
|
|
for (node_iter = set_first (dag->roots); node_iter;
|
|
|
|
node_iter = set_next (node_iter))
|
|
|
|
print_node_def (dstr, dag->nodes[node_iter->member]);
|
2012-11-06 12:50:29 +00:00
|
|
|
dasprintf (dstr, " }\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-11-17 12:14:42 +00:00
|
|
|
print_child_nodes (dstring_t *dstr, dag_t *dag)
|
2012-11-06 12:50:29 +00:00
|
|
|
{
|
2012-11-17 12:14:42 +00:00
|
|
|
int i;
|
|
|
|
dagnode_t *node;
|
|
|
|
|
|
|
|
for (i = 0; i < dag->num_nodes; i++) {
|
|
|
|
node = dag->nodes[i];
|
|
|
|
if (!set_is_empty (node->parents))
|
|
|
|
print_node_def (dstr, node);
|
2012-11-06 12:50:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-08 02:44:16 +00:00
|
|
|
static void
|
2012-11-17 12:14:42 +00:00
|
|
|
print_node (dstring_t *dstr, dag_t *dag, dagnode_t *node)
|
2012-05-08 02:44:16 +00:00
|
|
|
{
|
2012-11-17 12:14:42 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < 3; i++) {
|
|
|
|
if (node->children[i]) {
|
|
|
|
dasprintf (dstr,
|
|
|
|
" \"dagnode_%p\" -> \"dagnode_%p\" [label=%c];\n",
|
|
|
|
node, node->children[i], i + 'a');
|
|
|
|
}
|
2012-07-15 12:09:13 +00:00
|
|
|
}
|
2012-11-17 12:14:42 +00:00
|
|
|
if (!set_is_empty (node->identifiers)) {
|
|
|
|
set_iter_t *id_iter;
|
2012-05-08 02:44:16 +00:00
|
|
|
daglabel_t *id;
|
|
|
|
|
2012-11-06 12:50:29 +00:00
|
|
|
dasprintf (dstr, " \"dagnode_%p\" -> \"dagid_%p\" "
|
2012-07-17 05:01:15 +00:00
|
|
|
"[style=dashed,dir=none];\n", node, node);
|
2012-07-15 12:09:13 +00:00
|
|
|
dasprintf (dstr, " \"dagid_%p\" [shape=none,label=<\n", node);
|
2012-05-08 02:44:16 +00:00
|
|
|
dasprintf (dstr, " <table border=\"0\" cellborder=\"1\" "
|
|
|
|
"cellspacing=\"0\">\n");
|
|
|
|
dasprintf (dstr, " <tr>\n");
|
|
|
|
dasprintf (dstr, " <td>");
|
2012-11-17 12:14:42 +00:00
|
|
|
for (id_iter = set_first (node->identifiers); id_iter;
|
|
|
|
id_iter = set_next (id_iter)) {
|
|
|
|
id = dag->labels[id_iter->member];
|
|
|
|
dasprintf (dstr, " %s", daglabel_string(id));
|
|
|
|
}
|
2012-05-08 02:44:16 +00:00
|
|
|
dasprintf (dstr, " </td>");
|
|
|
|
dasprintf (dstr, " </tr>\n");
|
|
|
|
dasprintf (dstr, " </table>>];\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-11-17 12:14:42 +00:00
|
|
|
print_dag (dstring_t *dstr, dag_t *dag)
|
2012-05-08 02:44:16 +00:00
|
|
|
{
|
2012-11-17 12:14:42 +00:00
|
|
|
int i;
|
2012-11-16 03:42:57 +00:00
|
|
|
dasprintf (dstr, " subgraph cluster_dag_%p {", dag);
|
2012-11-06 12:50:29 +00:00
|
|
|
print_root_nodes (dstr, dag);
|
|
|
|
print_child_nodes (dstr, dag);
|
2012-11-17 12:14:42 +00:00
|
|
|
for (i = 0; i < dag->num_nodes; i++)
|
|
|
|
print_node (dstr, dag, dag->nodes[i]);
|
2012-11-06 12:50:29 +00:00
|
|
|
dasprintf (dstr, " }\n");
|
2012-05-08 02:44:16 +00:00
|
|
|
}
|