From 37da2899f40661e3e9631e497da8dc59b971cbd0 Mon Sep 17 00:00:00 2001 From: "Charles.Forsyth" Date: Fri, 22 Dec 2006 17:07:39 +0000 Subject: 20060303a --- libinterp/validstk.c | 53 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 libinterp/validstk.c (limited to 'libinterp/validstk.c') diff --git a/libinterp/validstk.c b/libinterp/validstk.c new file mode 100644 index 00000000..6956a641 --- /dev/null +++ b/libinterp/validstk.c @@ -0,0 +1,53 @@ +#include "lib9.h" +#include "isa.h" +#include "interp.h" + +static int depth; + +void +memchk(void *p, Type *t) +{ + Heap *h; + int i, j; + ulong *v, **base; + + if(depth > 100) + return; + depth++; + base = p; + for(i = 0; i < t->np; i++) { + for(j = 0; j < 8; j++) { + if(t->map[i] & (1<<(7-j))) { + v = base[(i*8)+j]; + if(v != H) { + h = D2H(v); + hmsize(h); + if(h->ref <= 0) + abort(); + if(h->t != nil) + memchk(v, h->t); + } + } + } + } + depth--; +} + +void +validstk(void) +{ + Type *t; + Frame *f; + uchar *fp; + + fp = R.FP; + while(fp != nil) { + f = (Frame*)fp; + t = f->t; + if(t == nil) + t = SEXTYPE(f)->reg.TR; + + memchk(f, t); + fp = f->fp; + } +} -- cgit v1.2.3