Print this page
new smatch
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/tools/smatch/src/graph.c
+++ new/usr/src/tools/smatch/src/graph.c
1 1 /* Copyright © International Business Machines Corp., 2006
2 2 * Adelard LLP, 2007
3 3 *
4 4 * Author: Josh Triplett <josh@freedesktop.org>
5 5 * Dan Sheridan <djs@adelard.com>
6 6 *
7 7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 8 * of this software and associated documentation files (the "Software"), to deal
9 9 * in the Software without restriction, including without limitation the rights
10 10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 11 * copies of the Software, and to permit persons to whom the Software is
12 12 * furnished to do so, subject to the following conditions:
13 13 *
14 14 * The above copyright notice and this permission notice shall be included in
15 15 * all copies or substantial portions of the Software.
16 16 *
17 17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 23 * THE SOFTWARE.
24 24 */
25 25 #include <stdarg.h>
26 26 #include <stdlib.h>
27 27 #include <stdio.h>
28 28 #include <string.h>
29 29 #include <ctype.h>
30 30 #include <unistd.h>
31 31 #include <fcntl.h>
32 32
33 33 #include "lib.h"
34 34 #include "allocate.h"
35 35 #include "token.h"
36 36 #include "parse.h"
37 37 #include "symbol.h"
38 38 #include "expression.h"
39 39 #include "linearize.h"
40 40
41 41
42 42 /* Draw the subgraph for a given entrypoint. Includes details of loads
43 43 * and stores for globals, and marks return bbs */
44 44 static void graph_ep(struct entrypoint *ep)
45 45 {
46 46 struct basic_block *bb;
47 47 struct instruction *insn;
48 48
49 49 const char *fname, *sname;
50 50
51 51 fname = show_ident(ep->name->ident);
52 52 sname = stream_name(ep->entry->bb->pos.stream);
53 53
54 54 printf("subgraph cluster%p {\n"
55 55 " color=blue;\n"
56 56 " label=<<TABLE BORDER=\"0\" CELLBORDER=\"0\">\n"
57 57 " <TR><TD>%s</TD></TR>\n"
58 58 " <TR><TD><FONT POINT-SIZE=\"21\">%s()</FONT></TD></TR>\n"
59 59 " </TABLE>>;\n"
60 60 " file=\"%s\";\n"
61 61 " fun=\"%s\";\n"
62 62 " ep=bb%p;\n",
63 63 ep, sname, fname, sname, fname, ep->entry->bb);
64 64
65 65 FOR_EACH_PTR(ep->bbs, bb) {
66 66 struct basic_block *child;
↓ open down ↓ |
66 lines elided |
↑ open up ↑ |
67 67 int ret = 0;
68 68 const char * s = ", ls=\"[";
69 69
70 70 /* Node for the bb */
71 71 printf(" bb%p [shape=ellipse,label=%d,line=%d,col=%d",
72 72 bb, bb->pos.line, bb->pos.line, bb->pos.pos);
73 73
74 74
75 75 /* List loads and stores */
76 76 FOR_EACH_PTR(bb->insns, insn) {
77 + if (!insn->bb)
78 + continue;
77 79 switch(insn->opcode) {
78 80 case OP_STORE:
79 - if (insn->symbol->type == PSEUDO_SYM) {
80 - printf("%s store(%s)", s, show_ident(insn->symbol->sym->ident));
81 + if (insn->src->type == PSEUDO_SYM) {
82 + printf("%s store(%s)", s, show_ident(insn->src->sym->ident));
81 83 s = ",";
82 84 }
83 85 break;
84 86
85 87 case OP_LOAD:
86 - if (insn->symbol->type == PSEUDO_SYM) {
87 - printf("%s load(%s)", s, show_ident(insn->symbol->sym->ident));
88 + if (insn->src->type == PSEUDO_SYM) {
89 + printf("%s load(%s)", s, show_ident(insn->src->sym->ident));
88 90 s = ",";
89 91 }
90 92 break;
91 93
92 94 case OP_RET:
93 95 ret = 1;
94 96 break;
95 97
96 98 }
97 99 } END_FOR_EACH_PTR(insn);
98 100 if (s[1] == 0)
99 101 printf("]\"");
100 102 if (ret)
101 103 printf(",op=ret");
102 104 printf("];\n");
103 105
104 106 /* Edges between bbs; lower weight for upward edges */
105 107 FOR_EACH_PTR(bb->children, child) {
106 108 printf(" bb%p -> bb%p [op=br, %s];\n", bb, child,
107 109 (bb->pos.line > child->pos.line) ? "weight=5" : "weight=10");
108 110 } END_FOR_EACH_PTR(child);
109 111 } END_FOR_EACH_PTR(bb);
110 112
111 113 printf("}\n");
112 114 }
113 115
114 116
115 117 /* Insert edges for intra- or inter-file calls, depending on the value
116 118 * of internal. Bold edges are used for calls with destinations;
117 119 * dashed for calls to external functions */
118 120 static void graph_calls(struct entrypoint *ep, int internal)
119 121 {
120 122 struct basic_block *bb;
121 123 struct instruction *insn;
122 124
↓ open down ↓ |
25 lines elided |
↑ open up ↑ |
123 125 show_ident(ep->name->ident);
124 126 stream_name(ep->entry->bb->pos.stream);
125 127
126 128 FOR_EACH_PTR(ep->bbs, bb) {
127 129 if (!bb)
128 130 continue;
129 131 if (!bb->parents && !bb->children && !bb->insns && verbose < 2)
130 132 continue;
131 133
132 134 FOR_EACH_PTR(bb->insns, insn) {
135 + if (!insn->bb)
136 + continue;
133 137 if (insn->opcode == OP_CALL &&
134 138 internal == !(insn->func->sym->ctype.modifiers & MOD_EXTERN)) {
135 139
136 140 /* Find the symbol for the callee's definition */
137 141 struct symbol * sym;
138 142 if (insn->func->type == PSEUDO_SYM) {
139 143 for (sym = insn->func->sym->ident->symbols;
140 144 sym; sym = sym->next_id) {
141 145 if (sym->namespace & NS_SYMBOL && sym->ep)
142 146 break;
143 147 }
144 148
145 149 if (sym)
146 150 printf("bb%p -> bb%p"
147 151 "[label=%d,line=%d,col=%d,op=call,style=bold,weight=30];\n",
148 152 bb, sym->ep->entry->bb,
149 153 insn->pos.line, insn->pos.line, insn->pos.pos);
150 154 else
151 155 printf("bb%p -> \"%s\" "
152 156 "[label=%d,line=%d,col=%d,op=extern,style=dashed];\n",
153 157 bb, show_pseudo(insn->func),
154 158 insn->pos.line, insn->pos.line, insn->pos.pos);
155 159 }
156 160 }
157 161 } END_FOR_EACH_PTR(insn);
158 162 } END_FOR_EACH_PTR(bb);
159 163 }
160 164
161 165 int main(int argc, char **argv)
162 166 {
163 167 struct string_list *filelist = NULL;
164 168 char *file;
↓ open down ↓ |
22 lines elided |
↑ open up ↑ |
165 169 struct symbol *sym;
166 170
167 171 struct symbol_list *fsyms, *all_syms=NULL;
168 172
169 173 printf("digraph call_graph {\n");
170 174 fsyms = sparse_initialize(argc, argv, &filelist);
171 175 concat_symbol_list(fsyms, &all_syms);
172 176
173 177 /* Linearize all symbols, graph internal basic block
174 178 * structures and intra-file calls */
175 - FOR_EACH_PTR_NOTAG(filelist, file) {
179 + FOR_EACH_PTR(filelist, file) {
176 180
177 181 fsyms = sparse(file);
178 182 concat_symbol_list(fsyms, &all_syms);
179 183
180 184 FOR_EACH_PTR(fsyms, sym) {
181 185 expand_symbol(sym);
182 186 linearize_symbol(sym);
183 187 } END_FOR_EACH_PTR(sym);
184 188
185 189 FOR_EACH_PTR(fsyms, sym) {
186 190 if (sym->ep) {
187 191 graph_ep(sym->ep);
188 192 graph_calls(sym->ep, 1);
189 193 }
190 - } END_FOR_EACH_PTR_NOTAG(sym);
194 + } END_FOR_EACH_PTR(sym);
191 195
192 - } END_FOR_EACH_PTR_NOTAG(file);
196 + } END_FOR_EACH_PTR(file);
193 197
194 198 /* Graph inter-file calls */
195 199 FOR_EACH_PTR(all_syms, sym) {
196 200 if (sym->ep)
197 201 graph_calls(sym->ep, 0);
198 - } END_FOR_EACH_PTR_NOTAG(sym);
202 + } END_FOR_EACH_PTR(sym);
199 203
200 204 printf("}\n");
201 205 return 0;
202 206 }
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX