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
|
2005-05-30 22:28:29 +02:00
|
|
|
$Id$
|
2000-04-27 22:03:57 +02:00
|
|
|
**********/
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Code to deal with breakpoints and tracing.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "ngspice.h"
|
|
|
|
|
#include "cpdefs.h"
|
|
|
|
|
#include "ftedefs.h"
|
2000-05-06 16:12:51 +02:00
|
|
|
#include "dvec.h"
|
2000-04-27 22:03:57 +02:00
|
|
|
#include "ftedebug.h"
|
* frontend/Makefile.am: Updates for new files.
* frontend/breakp2.c, frontend/newcoms.c, frontend/postcoms.c,
frontend/resource.c, frontend/terminal.h, frontend/variable.c,
frontend/variable.h, frontend/com_compose.c,
frontend/com_display.c, frontend/com_setscale.c,
frontend/com_strcmp.c: Include files update.
* parser/var2.c, parser/var2.h: Empty files, removed.
* parser/Makefile.am: Updates for removed files.
* parser/lexical.c: Small adjustments
* parser/input.c, parser/input.h: Input, output and error streams
handled in the frontend. Moved to the frontend directory.
* frontend/streams.c: Its new home.
2000-07-07 16:09:06 +02:00
|
|
|
#include "quote.h"
|
2000-04-27 22:03:57 +02:00
|
|
|
#include "breakp2.h"
|
|
|
|
|
|
|
|
|
|
struct dbcomm *dbs = NULL; /* export for iplot */
|
|
|
|
|
int debugnumber = 1;
|
|
|
|
|
|
|
|
|
|
/* Set a breakpoint. Possible commands are:
|
|
|
|
|
* stop after n
|
|
|
|
|
* stop when var cond val
|
|
|
|
|
*
|
|
|
|
|
* If more than one is given on a command line, then this is a conjunction.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* Save a vector. */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
com_save(wordlist *wl)
|
|
|
|
|
{
|
|
|
|
|
settrace(wl, VF_ACCUM, NULL);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
com_save2(wordlist *wl, char *name)
|
|
|
|
|
{
|
|
|
|
|
settrace(wl, VF_ACCUM, name);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
/* wrd_chtrace((char *) NULL, TRUE, what); */
|
|
|
|
|
} 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;
|
|
|
|
|
}
|
|
|
|
|
d->db_nodename1 = copy(s);
|
|
|
|
|
/* wrd_chtrace(s, TRUE, what); */
|
|
|
|
|
}
|
2000-10-26 19:02:12 +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
|
|
|
|
|
dbs = d;
|
|
|
|
|
wl = wl->wl_next;
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
ft_getSaves(struct save_info **savesp)
|
|
|
|
|
{
|
|
|
|
|
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++;
|
|
|
|
|
|
|
|
|
|
if (!count)
|
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
|
|
*savesp = array = (struct save_info *)
|
|
|
|
|
tmalloc(sizeof (struct save_info) * count);
|
|
|
|
|
|
|
|
|
|
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 = (IFuid *) copy(d->db_analysis);
|
|
|
|
|
else
|
|
|
|
|
array[i].analysis = NULL;
|
|
|
|
|
array[i++].name = copy(d->db_nodename1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (count);
|
|
|
|
|
}
|