OpenCores
URL https://opencores.org/ocsvn/eco32/eco32/trunk

Subversion Repositories eco32

[/] [eco32/] [trunk/] [lcc/] [etc/] [bprint.c] - Blame information for rev 4

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 4 hellwig
#include "profio.c"
2
#include <assert.h>
3
#include <ctype.h>
4
#include <stdio.h>
5
#include <stdlib.h>
6
#include <string.h>
7
 
8
/* bprint [ -c | -Idir... | -f | -b | -n ] [ file... ]
9
 * annotate listings of files with prof.out data
10
 */
11
 
12
static char rcsid2[] = "$Id: bprint.c,v 4.1 2002/08/28 23:12:20 drh Exp $";
13
 
14
#define NDIRS (sizeof dirs/sizeof dirs[0] - 1)
15
#define NELEMS(a) ((int)(sizeof (a)/sizeof ((a)[0])))
16
 
17
char *progname;
18
int number;
19
char *dirs[20];
20
int fcount;
21
 
22
void *alloc(unsigned);
23
void emitdata(char *);
24
void printfile(struct file *, int);
25
void printfuncs(struct file *, int);
26
 
27
void *allocate(unsigned long n, unsigned a) { return alloc(n); }
28
 
29
void *newarray(unsigned long m, unsigned long n, unsigned a) {
30
        return alloc(m*n);
31
}
32
 
33
int main(int argc, char *argv[]) {
34
        int i;
35
        struct file *p;
36
        void (*f)(struct file *, int) = printfile;
37
 
38
        progname = argv[0];
39
        if ((i = process("prof.out")) <= 0) {
40
                fprintf(stderr, "%s: can't %s `%s'\n", progname,
41
                        i == 0 ? "open" : "interpret", "prof.out");
42
                exit(1);
43
        }
44
        for (i = 1; i < argc && *argv[i] == '-'; i++)
45
                if (strcmp(argv[i], "-c") == 0) {
46
                        emitdata("prof.out");
47
                        exit(0);
48
                } else if (strcmp(argv[i], "-b") == 0)
49
                        f = printfile;
50
                else if (strcmp(argv[i], "-f") == 0) {
51
                        fcount++;
52
                        f = printfuncs;
53
                } else if (strcmp(argv[i], "-n") == 0)
54
                        number++;
55
                else if (strncmp(argv[i], "-I", 2) == 0) {
56
                        int j;
57
                        for (j = 0; j < NDIRS && dirs[j]; j++)
58
                                ;
59
                        if (j < NDIRS)
60
                                dirs[j] = &argv[i][2];
61
                        else
62
                                fprintf(stderr, "%s: too many -I options\n", progname);
63
                } else {
64
                        fprintf(stderr, "usage: %s [ -c | -b | -n | -f | -Idir... ] [ file... ]\n", progname);
65
                        exit(1);
66
                }
67
        for (p = filelist; p; p = p->link)
68
                qsort(p->counts, p->count, sizeof *p->counts, compare);
69
        if (i < argc) {
70
                int nf = i < argc - 1 ? 1 : 0;
71
                for ( ; i < argc; i++, nf ? nf++ : 0)
72
                        if (p = findfile(string(argv[i])))
73
                                (*f)(p, nf);
74
                        else
75
                                fprintf(stderr, "%s: no data for `%s'\n", progname, argv[i]);
76
        } else {
77
                int nf = filelist && filelist->link ? 1 : 0;
78
                for (p = filelist; p; p = p->link, nf ? nf++ : 0)
79
                        (*f)(p, nf);
80
        }
81
        return 0;
82
}
83
 
84
/* alloc - allocate n bytes or die */
85
void *alloc(unsigned n) {
86
        void *new = malloc(n);
87
 
88
        assert(new);
89
        return new;
90
}
91
 
92
/* emitdata - write prof.out data to file */
93
void emitdata(char *file) {
94
        FILE *fp;
95
 
96
        if (fp = fopen(file, "w")) {
97
                struct file *p;
98
                for (p = filelist; p; p = p->link) {
99
                        int i;
100
                        struct func *q;
101
                        struct caller *r;
102
                        fprintf(fp, "1\n%s\n", p->name);
103
                        for (i = 0, q = p->funcs; q; i++, q = q->link)
104
                                if (r = q->callers)
105
                                        for (i--; r; r = r->link)
106
                                                i++;
107
                        fprintf(fp, "%d\n", i);
108
                        for (q = p->funcs; q; q = q->link)
109
                                if (q->count.count == 0 || !q->callers)
110
                                        fprintf(fp, "%s 1 %d %d %d ? ? 0 0\n", q->name, q->count.x,
111
                                                q->count.y, q->count.count);
112
                                else
113
                                        for (r = q->callers; r; r = r->link)
114
                                                fprintf(fp, "%s 1 %d %d %d %s %s %d %d\n", q->name, q->count.x,
115
                                                        q->count.y, r->count, r->name, r->file, r->x, r->y);
116
                        fprintf(fp, "%d\n", p->count);
117
                        for (i = 0; i < p->count; i++)
118
                                fprintf(fp, "1 %d %d %d\n", p->counts[i].x,
119
                                        p->counts[i].y, p->counts[i].count);
120
                }
121
                fclose(fp);
122
        } else
123
                fprintf(stderr, "%s: can't create `%s'\n", progname, file);
124
}
125
 
126
/* openfile - open name for reading, searching -I directories */
127
FILE *openfile(char *name) {
128
        int i;
129
        FILE *fp;
130
 
131
        if (*name != '/')
132
                for (i = 0; dirs[i]; i++) {
133
                        char buf[200];
134
                        sprintf(buf, "%s/%s", dirs[i], name);
135
                        if (fp = fopen(buf, "r"))
136
                                return fp;
137
                }
138
        return fopen(name, "r");
139
}
140
 
141
/* printfile - print annotated listing for p */
142
void printfile(struct file *p, int nf) {
143
        int lineno;
144
        FILE *fp;
145
        char *s, buf[512];
146
        struct count *u = p->counts, *r, *uend;
147
 
148
        if (u == 0 || p->count <= 0)
149
                return;
150
        uend = &p->counts[p->count];
151
        if ((fp = openfile(p->name)) == NULL) {
152
                fprintf(stderr, "%s: can't open `%s'\n", progname, p->name);
153
                return;
154
        }
155
        if (nf)
156
                printf("%s%s:\n\n", nf == 1 ? "" : "\f", p->name);
157
        for (lineno = 1; fgets(buf, sizeof buf, fp); lineno++) {
158
                if (number)
159
                        printf("%d\t", lineno);
160
                while (u < uend && u->y < lineno)
161
                        u++;
162
                for (s = buf; *s; ) {
163
                        char *t = s + 1;
164
                        while (u < uend && u->y == lineno && u->x < s - buf)
165
                                u++;
166
                        if (isalnum(*s) || *s == '_')
167
                                while (isalnum(*t) || *t == '_')
168
                                        t++;
169
                        while (u < uend && u->y == lineno && u->x < t - buf) {
170
                                printf("<%d>", u->count);
171
                                for (r = u++; u < uend && u->x == r->x && u->y == r->y && u->count == r->count; u++)
172
                                        ;
173
                        }
174
                        while (s < t)
175
                                putchar(*s++);
176
                }
177
                if (*s)
178
                        printf("%s", s);
179
        }
180
        fclose(fp);
181
}
182
 
183
/* printfuncs - summarize data for functions in p */
184
void printfuncs(struct file *p, int nf) {
185
        struct func *q;
186
 
187
        if (nf)
188
                printf("%s:\n", p->name);
189
        for (q = p->funcs; q; q = q->link)
190
                if (fcount <= 1 || q->count.count == 0 || !q->callers)
191
                        printf("%d\t%s\n", q->count.count, q->name);
192
                else {
193
                        struct caller *r;
194
                        for (r = q->callers; r; r = r->link)
195
                                printf("%d\t%s\tfrom %s\tin %s:%d.%d\n", r->count, q->name, r->name,
196
                                        r->file, r->y, r->x + 1);
197
                }
198
 
199
}
200
 
201
/* string - save a copy of str, if necessary */
202
char *string(const char *str) {
203
        static struct string { struct string *link; char str[1]; } *list;
204
        struct string *p;
205
 
206
        for (p = list; p; p = p->link)
207
                if (strcmp(p->str, str) == 0)
208
                        return p->str;
209
        p = alloc(strlen(str) + sizeof *p);
210
        strcpy(p->str, str);
211
        p->link = list;
212
        list = p;
213
        return p->str;
214
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.