ngspice/src/frontend/breakp2.c

170 lines
3.7 KiB
C
Raw Normal View History

2000-04-27 22:03:57 +02:00
/**********
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Wayne A. Christopher, U. C. Berkeley CAD Group
**********/
/*
* Code to deal with breakpoints and tracing.
*/
#include "ngspice/ngspice.h"
#include "ngspice/cpdefs.h"
#include "ngspice/ftedefs.h"
#include "ngspice/dvec.h"
#include "ngspice/ftedebug.h"
#include "quote.h"
2000-04-27 22:03:57 +02:00
#include "breakp2.h"
2009-12-19 17:04:22 +01:00
/* global linked list to store .save data and breakpoint data */
2000-04-27 22:03:57 +02:00
struct dbcomm *dbs = NULL; /* export for iplot */
2009-12-19 17:04:22 +01:00
/* used in breakp.c and breakp2.c */
2000-04-27 22:03:57 +02:00
int debugnumber = 1;
static char *copynode(char* s);
2009-12-19 17:04:22 +01:00
/* Analyse the data given by the .save card or 'save' command.
Store the data in the global dbs struct.
*/
2000-04-27 22:03:57 +02:00
/* Save a vector. */
void
com_save(wordlist *wl)
{
settrace(wl, VF_ACCUM, NULL);
}
2009-12-19 17:04:22 +01:00
/* Save a vector with the analysis type given (name). */
2000-04-27 22:03:57 +02:00
void
com_save2(wordlist *wl, char *name)
{
settrace(wl, VF_ACCUM, name);
}
2000-04-27 22:03:57 +02:00
void
settrace(wordlist *wl, int what, char *name)
{
struct dbcomm *d, *td;
char *s;
while (wl) {
s = cp_unquote(wl->wl_word);
d = alloc(struct dbcomm);
d->db_number = debugnumber++;
d->db_analysis = name;
if (eq(s, "all")) {
switch (what) {
case VF_PRINT:
d->db_type = DB_TRACEALL;
break;
/* case VF_PLOT:
d->db_type = DB_IPLOTALL;
break; */
case VF_ACCUM:
/* d->db_type = DB_SAVEALL; */
d->db_nodename1 = copy(s);
d->db_type = DB_SAVE;
break;
2000-04-27 22:03:57 +02:00
}
/* wrd_chtrace(NULL, TRUE, what); */
2000-04-27 22:03:57 +02:00
} else {
switch (what) {
case VF_PRINT:
d->db_type = DB_TRACENODE;
break;
/* case VF_PLOT:
d->db_type = DB_IPLOT;
break; */
case VF_ACCUM:
d->db_type = DB_SAVE;
break;
2000-04-27 22:03:57 +02:00
}
/* v(2) --> 2, i(vds) --> vds#branch */
d->db_nodename1 = copynode(s);
/* wrd_chtrace(s, TRUE, what); */
2000-04-27 22:03:57 +02:00
}
tfree(s); /*DG avoid memoy leak */
2000-04-27 22:03:57 +02:00
if (dbs) {
for (td = dbs; td->db_next; td = td->db_next)
;
td->db_next = d;
} else {
ft_curckt->ci_dbs = dbs = d;
}
2000-04-27 22:03:57 +02:00
wl = wl->wl_next;
}
}
2009-12-19 17:04:22 +01:00
/* retrieve the save nodes from dbs into an array */
2000-04-27 22:03:57 +02:00
int
ft_getSaves(struct save_info **savesp)
2009-12-19 17:04:22 +01:00
/* global variable: dbs */
2000-04-27 22:03:57 +02:00
{
struct dbcomm *d;
int count = 0, i = 0;
struct save_info *array;
for (d = dbs; d; d = d->db_next)
if (d->db_type == DB_SAVE)
count++;
2009-12-19 17:04:22 +01:00
2000-04-27 22:03:57 +02:00
if (!count)
return (0);
*savesp = array = TMALLOC(struct save_info, count);
2000-04-27 22:03:57 +02:00
for (d = dbs; d; d = d->db_next)
if (d->db_type == DB_SAVE) {
array[i].used = 0;
if (d->db_analysis)
array[i].analysis = copy(d->db_analysis);
else
array[i].analysis = NULL;
2000-04-27 22:03:57 +02:00
array[i++].name = copy(d->db_nodename1);
}
2000-04-27 22:03:57 +02:00
return (count);
}
/* v(2) --> 2, i(vds) --> vds#branch, 3 --> 3, @mn1[vth0] --> @mn1[vth0]
* derived from wordlist *gettoks(char *s)
*/
static char*
copynode(char *s)
{
char *l, *r;
char *ret = NULL;
if (strstr(s, "("))
s = stripWhiteSpacesInsideParens(s);
2013-08-20 19:47:10 +02:00
else
s = copy(s);
l = strrchr(s, '('/*)*/);
2013-08-20 19:47:10 +02:00
if (!l)
return s;
r = strchr(s, /*(*/')');
*r = '\0';
if (*(l - 1) == 'i' || *(l - 1) == 'I') {
char buf[513];
sprintf(buf, "%s#branch", l + 1);
ret = copy(buf);
} else
ret = copy(l + 1);
2013-08-20 19:47:10 +02:00
tfree(s);
return ret;
}