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

Subversion Repositories eco32

[/] [eco32/] [tags/] [eco32-0.25/] [lcc/] [etc/] [bprint.c] - Diff between revs 4 and 248

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 4 Rev 248
#include "profio.c"
#include "profio.c"
#include <assert.h>
#include <assert.h>
#include <ctype.h>
#include <ctype.h>
#include <stdio.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdlib.h>
#include <string.h>
#include <string.h>
 
 
/* bprint [ -c | -Idir... | -f | -b | -n ] [ file... ]
/* bprint [ -c | -Idir... | -f | -b | -n ] [ file... ]
 * annotate listings of files with prof.out data
 * annotate listings of files with prof.out data
 */
 */
 
 
static char rcsid2[] = "$Id: bprint.c,v 4.1 2002/08/28 23:12:20 drh Exp $";
static char rcsid2[] = "$Id: bprint.c,v 4.1 2002/08/28 23:12:20 drh Exp $";
 
 
#define NDIRS (sizeof dirs/sizeof dirs[0] - 1)
#define NDIRS (sizeof dirs/sizeof dirs[0] - 1)
#define NELEMS(a) ((int)(sizeof (a)/sizeof ((a)[0])))
#define NELEMS(a) ((int)(sizeof (a)/sizeof ((a)[0])))
 
 
char *progname;
char *progname;
int number;
int number;
char *dirs[20];
char *dirs[20];
int fcount;
int fcount;
 
 
void *alloc(unsigned);
void *alloc(unsigned);
void emitdata(char *);
void emitdata(char *);
void printfile(struct file *, int);
void printfile(struct file *, int);
void printfuncs(struct file *, int);
void printfuncs(struct file *, int);
 
 
void *allocate(unsigned long n, unsigned a) { return alloc(n); }
void *allocate(unsigned long n, unsigned a) { return alloc(n); }
 
 
void *newarray(unsigned long m, unsigned long n, unsigned a) {
void *newarray(unsigned long m, unsigned long n, unsigned a) {
        return alloc(m*n);
        return alloc(m*n);
}
}
 
 
int main(int argc, char *argv[]) {
int main(int argc, char *argv[]) {
        int i;
        int i;
        struct file *p;
        struct file *p;
        void (*f)(struct file *, int) = printfile;
        void (*f)(struct file *, int) = printfile;
 
 
        progname = argv[0];
        progname = argv[0];
        if ((i = process("prof.out")) <= 0) {
        if ((i = process("prof.out")) <= 0) {
                fprintf(stderr, "%s: can't %s `%s'\n", progname,
                fprintf(stderr, "%s: can't %s `%s'\n", progname,
                        i == 0 ? "open" : "interpret", "prof.out");
                        i == 0 ? "open" : "interpret", "prof.out");
                exit(1);
                exit(1);
        }
        }
        for (i = 1; i < argc && *argv[i] == '-'; i++)
        for (i = 1; i < argc && *argv[i] == '-'; i++)
                if (strcmp(argv[i], "-c") == 0) {
                if (strcmp(argv[i], "-c") == 0) {
                        emitdata("prof.out");
                        emitdata("prof.out");
                        exit(0);
                        exit(0);
                } else if (strcmp(argv[i], "-b") == 0)
                } else if (strcmp(argv[i], "-b") == 0)
                        f = printfile;
                        f = printfile;
                else if (strcmp(argv[i], "-f") == 0) {
                else if (strcmp(argv[i], "-f") == 0) {
                        fcount++;
                        fcount++;
                        f = printfuncs;
                        f = printfuncs;
                } else if (strcmp(argv[i], "-n") == 0)
                } else if (strcmp(argv[i], "-n") == 0)
                        number++;
                        number++;
                else if (strncmp(argv[i], "-I", 2) == 0) {
                else if (strncmp(argv[i], "-I", 2) == 0) {
                        int j;
                        int j;
                        for (j = 0; j < NDIRS && dirs[j]; j++)
                        for (j = 0; j < NDIRS && dirs[j]; j++)
                                ;
                                ;
                        if (j < NDIRS)
                        if (j < NDIRS)
                                dirs[j] = &argv[i][2];
                                dirs[j] = &argv[i][2];
                        else
                        else
                                fprintf(stderr, "%s: too many -I options\n", progname);
                                fprintf(stderr, "%s: too many -I options\n", progname);
                } else {
                } else {
                        fprintf(stderr, "usage: %s [ -c | -b | -n | -f | -Idir... ] [ file... ]\n", progname);
                        fprintf(stderr, "usage: %s [ -c | -b | -n | -f | -Idir... ] [ file... ]\n", progname);
                        exit(1);
                        exit(1);
                }
                }
        for (p = filelist; p; p = p->link)
        for (p = filelist; p; p = p->link)
                qsort(p->counts, p->count, sizeof *p->counts, compare);
                qsort(p->counts, p->count, sizeof *p->counts, compare);
        if (i < argc) {
        if (i < argc) {
                int nf = i < argc - 1 ? 1 : 0;
                int nf = i < argc - 1 ? 1 : 0;
                for ( ; i < argc; i++, nf ? nf++ : 0)
                for ( ; i < argc; i++, nf ? nf++ : 0)
                        if (p = findfile(string(argv[i])))
                        if (p = findfile(string(argv[i])))
                                (*f)(p, nf);
                                (*f)(p, nf);
                        else
                        else
                                fprintf(stderr, "%s: no data for `%s'\n", progname, argv[i]);
                                fprintf(stderr, "%s: no data for `%s'\n", progname, argv[i]);
        } else {
        } else {
                int nf = filelist && filelist->link ? 1 : 0;
                int nf = filelist && filelist->link ? 1 : 0;
                for (p = filelist; p; p = p->link, nf ? nf++ : 0)
                for (p = filelist; p; p = p->link, nf ? nf++ : 0)
                        (*f)(p, nf);
                        (*f)(p, nf);
        }
        }
        return 0;
        return 0;
}
}
 
 
/* alloc - allocate n bytes or die */
/* alloc - allocate n bytes or die */
void *alloc(unsigned n) {
void *alloc(unsigned n) {
        void *new = malloc(n);
        void *new = malloc(n);
 
 
        assert(new);
        assert(new);
        return new;
        return new;
}
}
 
 
/* emitdata - write prof.out data to file */
/* emitdata - write prof.out data to file */
void emitdata(char *file) {
void emitdata(char *file) {
        FILE *fp;
        FILE *fp;
 
 
        if (fp = fopen(file, "w")) {
        if (fp = fopen(file, "w")) {
                struct file *p;
                struct file *p;
                for (p = filelist; p; p = p->link) {
                for (p = filelist; p; p = p->link) {
                        int i;
                        int i;
                        struct func *q;
                        struct func *q;
                        struct caller *r;
                        struct caller *r;
                        fprintf(fp, "1\n%s\n", p->name);
                        fprintf(fp, "1\n%s\n", p->name);
                        for (i = 0, q = p->funcs; q; i++, q = q->link)
                        for (i = 0, q = p->funcs; q; i++, q = q->link)
                                if (r = q->callers)
                                if (r = q->callers)
                                        for (i--; r; r = r->link)
                                        for (i--; r; r = r->link)
                                                i++;
                                                i++;
                        fprintf(fp, "%d\n", i);
                        fprintf(fp, "%d\n", i);
                        for (q = p->funcs; q; q = q->link)
                        for (q = p->funcs; q; q = q->link)
                                if (q->count.count == 0 || !q->callers)
                                if (q->count.count == 0 || !q->callers)
                                        fprintf(fp, "%s 1 %d %d %d ? ? 0 0\n", q->name, q->count.x,
                                        fprintf(fp, "%s 1 %d %d %d ? ? 0 0\n", q->name, q->count.x,
                                                q->count.y, q->count.count);
                                                q->count.y, q->count.count);
                                else
                                else
                                        for (r = q->callers; r; r = r->link)
                                        for (r = q->callers; r; r = r->link)
                                                fprintf(fp, "%s 1 %d %d %d %s %s %d %d\n", q->name, q->count.x,
                                                fprintf(fp, "%s 1 %d %d %d %s %s %d %d\n", q->name, q->count.x,
                                                        q->count.y, r->count, r->name, r->file, r->x, r->y);
                                                        q->count.y, r->count, r->name, r->file, r->x, r->y);
                        fprintf(fp, "%d\n", p->count);
                        fprintf(fp, "%d\n", p->count);
                        for (i = 0; i < p->count; i++)
                        for (i = 0; i < p->count; i++)
                                fprintf(fp, "1 %d %d %d\n", p->counts[i].x,
                                fprintf(fp, "1 %d %d %d\n", p->counts[i].x,
                                        p->counts[i].y, p->counts[i].count);
                                        p->counts[i].y, p->counts[i].count);
                }
                }
                fclose(fp);
                fclose(fp);
        } else
        } else
                fprintf(stderr, "%s: can't create `%s'\n", progname, file);
                fprintf(stderr, "%s: can't create `%s'\n", progname, file);
}
}
 
 
/* openfile - open name for reading, searching -I directories */
/* openfile - open name for reading, searching -I directories */
FILE *openfile(char *name) {
FILE *openfile(char *name) {
        int i;
        int i;
        FILE *fp;
        FILE *fp;
 
 
        if (*name != '/')
        if (*name != '/')
                for (i = 0; dirs[i]; i++) {
                for (i = 0; dirs[i]; i++) {
                        char buf[200];
                        char buf[200];
                        sprintf(buf, "%s/%s", dirs[i], name);
                        sprintf(buf, "%s/%s", dirs[i], name);
                        if (fp = fopen(buf, "r"))
                        if (fp = fopen(buf, "r"))
                                return fp;
                                return fp;
                }
                }
        return fopen(name, "r");
        return fopen(name, "r");
}
}
 
 
/* printfile - print annotated listing for p */
/* printfile - print annotated listing for p */
void printfile(struct file *p, int nf) {
void printfile(struct file *p, int nf) {
        int lineno;
        int lineno;
        FILE *fp;
        FILE *fp;
        char *s, buf[512];
        char *s, buf[512];
        struct count *u = p->counts, *r, *uend;
        struct count *u = p->counts, *r, *uend;
 
 
        if (u == 0 || p->count <= 0)
        if (u == 0 || p->count <= 0)
                return;
                return;
        uend = &p->counts[p->count];
        uend = &p->counts[p->count];
        if ((fp = openfile(p->name)) == NULL) {
        if ((fp = openfile(p->name)) == NULL) {
                fprintf(stderr, "%s: can't open `%s'\n", progname, p->name);
                fprintf(stderr, "%s: can't open `%s'\n", progname, p->name);
                return;
                return;
        }
        }
        if (nf)
        if (nf)
                printf("%s%s:\n\n", nf == 1 ? "" : "\f", p->name);
                printf("%s%s:\n\n", nf == 1 ? "" : "\f", p->name);
        for (lineno = 1; fgets(buf, sizeof buf, fp); lineno++) {
        for (lineno = 1; fgets(buf, sizeof buf, fp); lineno++) {
                if (number)
                if (number)
                        printf("%d\t", lineno);
                        printf("%d\t", lineno);
                while (u < uend && u->y < lineno)
                while (u < uend && u->y < lineno)
                        u++;
                        u++;
                for (s = buf; *s; ) {
                for (s = buf; *s; ) {
                        char *t = s + 1;
                        char *t = s + 1;
                        while (u < uend && u->y == lineno && u->x < s - buf)
                        while (u < uend && u->y == lineno && u->x < s - buf)
                                u++;
                                u++;
                        if (isalnum(*s) || *s == '_')
                        if (isalnum(*s) || *s == '_')
                                while (isalnum(*t) || *t == '_')
                                while (isalnum(*t) || *t == '_')
                                        t++;
                                        t++;
                        while (u < uend && u->y == lineno && u->x < t - buf) {
                        while (u < uend && u->y == lineno && u->x < t - buf) {
                                printf("<%d>", u->count);
                                printf("<%d>", u->count);
                                for (r = u++; u < uend && u->x == r->x && u->y == r->y && u->count == r->count; u++)
                                for (r = u++; u < uend && u->x == r->x && u->y == r->y && u->count == r->count; u++)
                                        ;
                                        ;
                        }
                        }
                        while (s < t)
                        while (s < t)
                                putchar(*s++);
                                putchar(*s++);
                }
                }
                if (*s)
                if (*s)
                        printf("%s", s);
                        printf("%s", s);
        }
        }
        fclose(fp);
        fclose(fp);
}
}
 
 
/* printfuncs - summarize data for functions in p */
/* printfuncs - summarize data for functions in p */
void printfuncs(struct file *p, int nf) {
void printfuncs(struct file *p, int nf) {
        struct func *q;
        struct func *q;
 
 
        if (nf)
        if (nf)
                printf("%s:\n", p->name);
                printf("%s:\n", p->name);
        for (q = p->funcs; q; q = q->link)
        for (q = p->funcs; q; q = q->link)
                if (fcount <= 1 || q->count.count == 0 || !q->callers)
                if (fcount <= 1 || q->count.count == 0 || !q->callers)
                        printf("%d\t%s\n", q->count.count, q->name);
                        printf("%d\t%s\n", q->count.count, q->name);
                else {
                else {
                        struct caller *r;
                        struct caller *r;
                        for (r = q->callers; r; r = r->link)
                        for (r = q->callers; r; r = r->link)
                                printf("%d\t%s\tfrom %s\tin %s:%d.%d\n", r->count, q->name, r->name,
                                printf("%d\t%s\tfrom %s\tin %s:%d.%d\n", r->count, q->name, r->name,
                                        r->file, r->y, r->x + 1);
                                        r->file, r->y, r->x + 1);
                }
                }
 
 
}
}
 
 
/* string - save a copy of str, if necessary */
/* string - save a copy of str, if necessary */
char *string(const char *str) {
char *string(const char *str) {
        static struct string { struct string *link; char str[1]; } *list;
        static struct string { struct string *link; char str[1]; } *list;
        struct string *p;
        struct string *p;
 
 
        for (p = list; p; p = p->link)
        for (p = list; p; p = p->link)
                if (strcmp(p->str, str) == 0)
                if (strcmp(p->str, str) == 0)
                        return p->str;
                        return p->str;
        p = alloc(strlen(str) + sizeof *p);
        p = alloc(strlen(str) + sizeof *p);
        strcpy(p->str, str);
        strcpy(p->str, str);
        p->link = list;
        p->link = list;
        list = p;
        list = p;
        return p->str;
        return p->str;
}
}
 
 

powered by: WebSVN 2.1.0

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