ack/util/ego/share/locals.c

237 lines
4.6 KiB
C
Raw Normal View History

1994-06-24 11:31:16 +00:00
/* $Id$ */
1987-03-09 19:15:41 +00:00
/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
1984-11-26 15:04:22 +00:00
/*
* L O C A L S . C
*/
#include <stdlib.h>
#include <stdio.h>
1991-03-05 12:44:05 +00:00
#include <em_mnem.h>
#include <em_spec.h>
#include <em_pseu.h>
#include <em_mes.h>
1984-11-26 15:04:22 +00:00
#include "types.h"
#include "debug.h"
#include "global.h"
#include "lset.h"
#include "cset.h"
#include "def.h"
#include "get.h"
#include "utils.h"
1984-11-26 15:04:22 +00:00
#include "alloc.h"
#include "locals.h"
short nrglobals;
1984-11-26 15:04:22 +00:00
short nrlocals;
local_p *locals; /* dynamic array */
STATIC void localvar(offset off, short size, local_p *locs, bool reg,
offset score)
1984-11-26 15:04:22 +00:00
{
/* process a reference to a local variable.
* A local is characterized by a (offset,size) pair.
* We first collect all locals in a list, sorted
* by offset. Later we will construct a table
* out of this list.
*/
local_p lc, x, *prevp;
prevp = locs;
for (lc = *locs; lc != (local_p) 0; lc = lc->lc_next) {
if (lc->lc_off == off && lc->lc_size == size) {
if (reg) {
REGVAR(lc); /* register variable */
lc->lc_score = score;
}
return; /* local already present */
}
if (lc->lc_off > off) break;
prevp = &lc->lc_next;
}
/* the local was not seen before; create an entry
* for it in the list.
*/
x = *prevp = newlocal();
x->lc_off = off;
x->lc_size = size;
x->lc_next = lc;
if (reg) {
REGVAR(x);
x->lc_score = score;
}
}
STATIC void check_message(line_p l, local_p *locs)
1984-11-26 15:04:22 +00:00
{
/* See if l is a register message */
arg_p arg;
arg = ARG(l);
if (aoff(arg,0) == ms_reg && arg->a_next != (arg_p) 0) {
localvar(aoff(arg,1), (short) aoff(arg,2), locs, TRUE,
aoff(arg,4));
}
}
STATIC void check_local_use(line_p l, local_p *locs)
1984-11-26 15:04:22 +00:00
{
short sz;
switch(INSTR(l)) {
case op_lol:
case op_stl:
case op_inl:
case op_del:
case op_zrl:
sz = ws;
break;
case op_ldl:
case op_sdl:
sz = 2 * ws;
break;
case op_lil:
case op_sil:
sz = ps;
break;
case ps_mes:
check_message(l,locs);
/* fall through .. */
default:
return;
}
1991-10-02 13:03:31 +00:00
if (l->l_next && INSTR(l->l_next) == op_nop) {
/* volatile */
return;
}
1984-11-26 15:04:22 +00:00
localvar(off_set(l),sz,locs,FALSE,(offset) 0);
}
void make_localtab(proc_p p)
1984-11-26 15:04:22 +00:00
{
/* Make a table of local variables.
* This table is used to associate a
* unique number with a local. If two
* locals overlap (e.g. LDL 4 and LDL 2)
* none of them is considered any further,
* i.e. we don't compute ud-info for them.
*/
1993-11-16 11:35:23 +00:00
local_p prev = 0, next, lc;
1984-11-26 15:04:22 +00:00
local_p locallist = (local_p) 0;
short cnt = 0;
offset x, ill_zone = 0;
register bblock_p b;
register line_p l;
/* first make a list of all locals used */
for (b = p->p_start; b != (bblock_p) 0; b = b->b_next) {
for (l = b->b_start; l != (line_p) 0; l = l->l_next) {
check_local_use(l,&locallist);
}
}
/* Now remove overlapping locals, count useful ones on the fly */
for (lc = locallist; lc != (local_p) 0; lc = lc->lc_next) {
if (ill_zone != 0 && lc->lc_off < ill_zone) {
/* this local overlaps with a previous one */
BADLC(lc);
if (!IS_BADLC(prev)) {
BADLC(prev);
cnt--;
}
} else {
cnt++;
}
x = lc->lc_off + lc->lc_size;
if (ill_zone == 0 || x > ill_zone) {
ill_zone = x;
}
prev = lc;
}
/* Now we know how many local variables there are */
nrlocals = cnt;
locals = (local_p *) newmap(cnt);
cnt = 1;
for (lc = locallist; lc != (local_p) 0; lc = next) {
next = lc->lc_next;
if (IS_BADLC(lc)) {
oldlocal(lc);
} else {
locals[cnt++] = lc;
lc->lc_next = (local_p) 0;
}
}
assert (cnt == nrlocals+1);
}
void find_local(offset off, short *nr_out, bool *found_out)
1984-11-26 15:04:22 +00:00
{
/* Try to find the local variable at the given
* offset. Return its local-number.
*/
short v;
for (v = 1; v <= nrlocals; v++) {
if (locals[v]->lc_off > off) break;
if (locals[v]->lc_off == off) {
*found_out = TRUE;
*nr_out = v;
return;
}
}
*found_out = FALSE;
}
void var_nr(line_p l, short *nr_out, bool *found_out)
1984-11-26 15:04:22 +00:00
{
/* Determine the number of the variable referenced
* by EM instruction l.
*/
1993-11-16 11:35:23 +00:00
offset off = 0;
1984-11-26 15:04:22 +00:00
short nr;
switch(TYPE(l)) {
case OPOBJECT:
/* global variable */
if (OBJ(l)->o_globnr == 0) {
/* We don't maintain ud-info for this var */
*found_out = FALSE;
} else {
*nr_out = GLOB_TO_VARNR(OBJ(l)->o_globnr);
*found_out = TRUE;
}
return;
case OPSHORT:
off = (offset) SHORT(l);
break;
case OPOFFSET:
off = OFFSET(l);
break;
default:
assert(FALSE);
}
/* Its's a local variable */
find_local(off,&nr,found_out);
if (*found_out) {
*nr_out = LOC_TO_VARNR(nr);
}
}