Remove superfluous asserts
[libfirm] / ir / kaps / html_dumper.c
1 /*
2  * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief   HTML dumper for PBQP.
23  * @date    03.10.2008
24  * @author  Sebastian Buchwald
25  * @version $Id$
26  */
27 #include "config.h"
28
29 #include "adt/array.h"
30 #include "assert.h"
31
32 #include "pbqp_edge_t.h"
33 #include "pbqp_node_t.h"
34 #include "optimal.h"
35 #include "html_dumper.h"
36 #include "kaps.h"
37
38 /* Caution: Due to static buffer use only once per statement */
39 static const char *cost2a(num const cost)
40 {
41         static char buf[10];
42
43         if (cost == INF_COSTS) return "inf";
44 #if KAPS_USE_UNSIGNED
45         sprintf(buf, "%u", cost);
46 #else
47         sprintf(buf, "%10lld", cost);
48 #endif
49         return buf;
50 }
51
52 /* print vector */
53 static void dump_vector(FILE *f, vector_t *vec)
54 {
55         unsigned index;
56
57         fprintf(f, "<span class=\"vector\">( ");
58         unsigned len = vec->len;
59         assert(len > 0);
60         for (index = 0; index < len; ++index) {
61 #if KAPS_ENABLE_VECTOR_NAMES
62                 fprintf(f, "<span title=\"%s\">%s</span> ",
63                                 vec->entries[index].name, cost2a(vec->entries[index].data));
64 #else
65                 fprintf(f, "%s ", cost2a(vec->entries[index].data));
66 #endif
67         }
68         fprintf(f, " )</span>\n");
69 }
70
71 static void dump_matrix(FILE *f, pbqp_matrix_t *mat)
72 {
73         unsigned row, col;
74         num *p = mat->entries;
75
76         assert(mat->cols > 0);
77         assert(mat->rows > 0);
78         fprintf(f, "\t\\begin{pmatrix}\n");
79         for (row = 0; row < mat->rows; ++row) {
80                 fprintf(f, "\t %s", cost2a(*p++));
81
82                 for (col = 1; col < mat->cols; ++col) {
83                         fprintf(f, "& %s", cost2a(*p++));
84                 }
85                 fprintf(f, "\\\\\n");
86         }
87         fprintf(f, "\t\\end{pmatrix}\n");
88 }
89
90 void dump_edge(FILE *file, pbqp_edge_t *edge)
91 {
92         fputs("<tex>\n", file);
93         fprintf(file, "\t\\overline\n{C}_{%d,%d}=\n",
94                         edge->src->index, edge->tgt->index);
95         dump_matrix(file, edge->costs);
96         fputs("</tex><br>", file);
97 }
98
99 static void dump_edge_costs(pbqp_t *pbqp)
100 {
101         unsigned src_index;
102
103         fputs("<p>", pbqp->dump_file);
104         for (src_index = 0; src_index < pbqp->num_nodes; ++src_index) {
105                 pbqp_node_t *src_node = get_node(pbqp, src_index);
106
107                 if (!src_node)
108                         continue;
109
110                 unsigned edge_index;
111                 unsigned len = ARR_LEN(src_node->edges);
112                 for (edge_index = 0; edge_index < len; ++edge_index) {
113                         pbqp_edge_t *edge      = src_node->edges[edge_index];
114                         unsigned     tgt_index = edge->tgt->index;
115                         if (src_index < tgt_index) {
116                                 dump_edge(pbqp->dump_file, edge);
117                         }
118                 }
119         }
120         fputs("</p>", pbqp->dump_file);
121 }
122
123 void dump_node(FILE *file, pbqp_node_t *node)
124 {
125         if (node) {
126                 fprintf(file, "\tc<sub>%d</sub> = ", node->index);
127                 dump_vector(file, node->costs);
128                 fputs("<br>\n", file);
129         }
130 }
131
132 static void dump_node_costs(pbqp_t *pbqp)
133 {
134         unsigned index;
135
136         /* dump node costs */
137         fputs("<p>", pbqp->dump_file);
138         for (index = 0; index < pbqp->num_nodes; ++index) {
139                 dump_node(pbqp->dump_file, get_node(pbqp, index));
140         }
141         fputs("</p>", pbqp->dump_file);
142 }
143
144 void dump_section(FILE *f, int level, const char *txt)
145 {
146         fprintf(f, "<h%d>%s</h%d>\n", level, txt, level);
147 }
148
149 void pbqp_dump_graph(pbqp_t *pbqp)
150 {
151         unsigned src_index;
152
153         fputs("<p>\n<graph>\n\tgraph input {\n", pbqp->dump_file);
154         for (src_index = 0; src_index < pbqp->num_nodes; ++src_index) {
155                 pbqp_node_t *node = get_node(pbqp, src_index);
156                 if (node && !node_is_reduced(node)) {
157                         fprintf(pbqp->dump_file, "\t n%d;\n", src_index);
158                 }
159         }
160
161         for (src_index = 0; src_index < pbqp->num_nodes; ++src_index) {
162                 pbqp_node_t *node = get_node(pbqp, src_index);
163
164                 if (!node)
165                         continue;
166
167                 if (node_is_reduced(node))
168                         continue;
169
170                 unsigned len = ARR_LEN(node->edges);
171                 unsigned edge_index;
172                 for (edge_index = 0; edge_index < len; ++edge_index) {
173                         pbqp_node_t *tgt_node  = node->edges[edge_index]->tgt;
174                         unsigned     tgt_index = tgt_node->index;
175
176                         if (node_is_reduced(tgt_node))
177                                 continue;
178
179                         if (src_index < tgt_index) {
180                                 fprintf(pbqp->dump_file, "\t n%d -- n%d;\n", src_index,
181                                                 tgt_index);
182                         }
183                 }
184         }
185         fputs("\t}\n</graph>\n</p>\n", pbqp->dump_file);
186 }
187
188 void pbqp_dump_input(pbqp_t *pbqp)
189 {
190         dump_section(pbqp->dump_file, 1, "1. PBQP Problem");
191         dump_section(pbqp->dump_file, 2, "1.1 Topology");
192         pbqp_dump_graph(pbqp);
193         dump_section(pbqp->dump_file, 2, "1.2 Cost Vectors");
194         dump_node_costs(pbqp);
195         dump_section(pbqp->dump_file, 2, "1.3 Cost Matrices");
196         dump_edge_costs(pbqp);
197 }
198
199 void dump_simplifyedge(pbqp_t *pbqp, pbqp_edge_t *edge)
200 {
201         dump_node(pbqp->dump_file, edge->src);
202         dump_edge(pbqp->dump_file, edge);
203         dump_node(pbqp->dump_file, edge->tgt);
204 }