1987-04-29 10:22:07 +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".
|
|
|
|
*
|
|
|
|
* Author: Ceriel J.H. Jacobs
|
|
|
|
*/
|
|
|
|
|
1986-05-16 17:15:36 +00:00
|
|
|
/* D E S I G N A T O R E V A L U A T I O N */
|
|
|
|
|
1987-04-29 10:22:07 +00:00
|
|
|
/* $Header$ */
|
|
|
|
|
1986-05-16 17:15:36 +00:00
|
|
|
/* Code generation for designators.
|
|
|
|
This file contains some routines that generate code common to address
|
|
|
|
as well as value computations, and leave a description in a "desig"
|
|
|
|
structure. It also contains routines to load an address, load a value
|
|
|
|
or perform a store.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "debug.h"
|
|
|
|
|
|
|
|
#include <em_arith.h>
|
|
|
|
#include <em_label.h>
|
1986-07-08 14:59:02 +00:00
|
|
|
#include <em_code.h>
|
1986-05-16 17:15:36 +00:00
|
|
|
#include <assert.h>
|
1987-07-30 13:37:39 +00:00
|
|
|
#include <alloc.h>
|
1986-05-16 17:15:36 +00:00
|
|
|
|
|
|
|
#include "type.h"
|
1987-07-30 13:37:39 +00:00
|
|
|
#include "LLlex.h"
|
1986-05-16 17:15:36 +00:00
|
|
|
#include "def.h"
|
|
|
|
#include "scope.h"
|
|
|
|
#include "desig.h"
|
|
|
|
#include "node.h"
|
1987-08-10 13:01:54 +00:00
|
|
|
#include "warning.h"
|
1987-09-23 16:39:43 +00:00
|
|
|
#include "walk.h"
|
1986-05-16 17:15:36 +00:00
|
|
|
|
1986-05-21 18:32:20 +00:00
|
|
|
extern int proclevel;
|
|
|
|
|
1987-05-21 09:37:28 +00:00
|
|
|
int
|
1987-07-21 13:54:33 +00:00
|
|
|
WordOrDouble(ds, size)
|
1987-09-23 16:39:43 +00:00
|
|
|
register t_desig *ds;
|
1987-05-27 10:16:03 +00:00
|
|
|
arith size;
|
1987-05-21 09:37:28 +00:00
|
|
|
{
|
1987-09-23 16:39:43 +00:00
|
|
|
if ((int) (ds->dsg_offset) % (int) word_size == 0) {
|
|
|
|
if (size == word_size) return 1;
|
|
|
|
if (size == dword_size) return 2;
|
|
|
|
}
|
|
|
|
return 0;
|
1987-07-21 13:54:33 +00:00
|
|
|
}
|
1987-05-21 09:37:28 +00:00
|
|
|
|
1987-07-21 13:54:33 +00:00
|
|
|
int
|
|
|
|
DoLoad(ds, size)
|
1987-09-23 16:39:43 +00:00
|
|
|
register t_desig *ds;
|
1987-07-21 13:54:33 +00:00
|
|
|
arith size;
|
|
|
|
{
|
1987-09-23 16:39:43 +00:00
|
|
|
switch (WordOrDouble(ds, size)) {
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
case 1:
|
|
|
|
if (ds->dsg_name) {
|
1987-07-21 13:54:33 +00:00
|
|
|
C_loe_dnam(ds->dsg_name, ds->dsg_offset);
|
|
|
|
}
|
1987-09-23 16:39:43 +00:00
|
|
|
else C_lol(ds->dsg_offset);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
if (ds->dsg_name) {
|
|
|
|
C_lde_dnam(ds->dsg_name, ds->dsg_offset);
|
1987-07-21 13:54:33 +00:00
|
|
|
}
|
|
|
|
else C_ldl(ds->dsg_offset);
|
1987-09-23 16:39:43 +00:00
|
|
|
break;
|
1987-07-21 13:54:33 +00:00
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
1987-05-21 09:37:28 +00:00
|
|
|
|
1987-07-21 13:54:33 +00:00
|
|
|
int
|
|
|
|
DoStore(ds, size)
|
1987-09-23 16:39:43 +00:00
|
|
|
register t_desig *ds;
|
1987-07-21 13:54:33 +00:00
|
|
|
arith size;
|
|
|
|
{
|
1987-09-23 16:39:43 +00:00
|
|
|
switch (WordOrDouble(ds, size)) {
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
case 1:
|
|
|
|
if (ds->dsg_name) {
|
1987-07-21 13:54:33 +00:00
|
|
|
C_ste_dnam(ds->dsg_name, ds->dsg_offset);
|
|
|
|
}
|
1987-09-23 16:39:43 +00:00
|
|
|
else C_stl(ds->dsg_offset);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
if (ds->dsg_name) {
|
|
|
|
C_sde_dnam(ds->dsg_name, ds->dsg_offset);
|
1987-07-21 13:54:33 +00:00
|
|
|
}
|
|
|
|
else C_sdl(ds->dsg_offset);
|
1987-09-23 16:39:43 +00:00
|
|
|
break;
|
1987-05-21 09:37:28 +00:00
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
1986-11-28 11:59:08 +00:00
|
|
|
STATIC int
|
1987-07-30 13:37:39 +00:00
|
|
|
properly(ds, tp)
|
1987-09-23 16:39:43 +00:00
|
|
|
register t_desig *ds;
|
|
|
|
register t_type *tp;
|
1986-11-28 11:59:08 +00:00
|
|
|
{
|
|
|
|
/* Check if it is allowed to load or store the value indicated
|
|
|
|
by "ds" with LOI/STI.
|
|
|
|
- if the size is not either a multiple or a dividor of the
|
|
|
|
wordsize, then not.
|
|
|
|
- if the alignment is at least "word" then OK.
|
|
|
|
- if size is dividor of word_size and alignment >= size then OK.
|
|
|
|
- otherwise check alignment of address. This can only be done
|
|
|
|
with DSG_FIXED.
|
|
|
|
*/
|
|
|
|
|
1987-07-30 13:37:39 +00:00
|
|
|
int szmodword = (int) (tp->tp_size) % (int) word_size;
|
|
|
|
/* 0 if multiple of wordsize */
|
|
|
|
int wordmodsz = word_size % tp->tp_size;/* 0 if dividor of wordsize */
|
1986-11-28 11:59:08 +00:00
|
|
|
|
|
|
|
if (szmodword && wordmodsz) return 0;
|
1987-07-30 13:37:39 +00:00
|
|
|
if (tp->tp_align >= word_align) return 1;
|
|
|
|
if (szmodword && tp->tp_align >= szmodword) return 1;
|
1986-11-28 11:59:08 +00:00
|
|
|
|
|
|
|
return ds->dsg_kind == DSG_FIXED &&
|
1987-07-21 13:54:33 +00:00
|
|
|
((! szmodword && (int) (ds->dsg_offset) % word_align == 0) ||
|
1987-07-30 13:37:39 +00:00
|
|
|
(! wordmodsz && ds->dsg_offset % tp->tp_size == 0));
|
1986-11-28 11:59:08 +00:00
|
|
|
}
|
|
|
|
|
1987-06-23 17:12:25 +00:00
|
|
|
CodeValue(ds, tp)
|
1987-09-23 16:39:43 +00:00
|
|
|
register t_desig *ds;
|
|
|
|
register t_type *tp;
|
1986-05-16 17:15:36 +00:00
|
|
|
{
|
|
|
|
/* Generate code to load the value of the designator described
|
|
|
|
in "ds"
|
|
|
|
*/
|
1987-07-16 19:51:40 +00:00
|
|
|
arith sz;
|
1986-05-16 17:15:36 +00:00
|
|
|
|
|
|
|
switch(ds->dsg_kind) {
|
|
|
|
case DSG_LOADED:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DSG_FIXED:
|
1987-07-21 13:54:33 +00:00
|
|
|
if (DoLoad(ds, tp->tp_size)) break;
|
1986-05-16 17:15:36 +00:00
|
|
|
/* Fall through */
|
|
|
|
case DSG_PLOADED:
|
|
|
|
case DSG_PFIXED:
|
1987-07-16 19:51:40 +00:00
|
|
|
sz = WA(tp->tp_size);
|
1987-07-30 13:37:39 +00:00
|
|
|
if (properly(ds, tp)) {
|
1986-11-28 11:59:08 +00:00
|
|
|
CodeAddress(ds);
|
1987-06-23 17:12:25 +00:00
|
|
|
C_loi(tp->tp_size);
|
1986-11-28 11:59:08 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (ds->dsg_kind == DSG_PLOADED) {
|
1987-07-16 19:51:40 +00:00
|
|
|
sz -= pointer_size;
|
1987-05-18 15:57:33 +00:00
|
|
|
|
|
|
|
C_asp(-sz);
|
|
|
|
C_lor((arith) 1);
|
|
|
|
C_adp(sz);
|
|
|
|
C_loi(pointer_size);
|
1986-11-28 11:59:08 +00:00
|
|
|
}
|
1987-05-18 15:57:33 +00:00
|
|
|
else {
|
1987-07-16 19:51:40 +00:00
|
|
|
C_asp(-sz);
|
1986-11-28 11:59:08 +00:00
|
|
|
}
|
1987-07-16 19:51:40 +00:00
|
|
|
CodeAddress(ds);
|
1987-06-23 17:12:25 +00:00
|
|
|
C_loc(tp->tp_size);
|
1986-11-28 11:59:08 +00:00
|
|
|
C_cal("_load");
|
|
|
|
C_asp(2 * word_size);
|
1986-05-16 17:15:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case DSG_INDEXED:
|
|
|
|
C_lar(word_size);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
1986-05-21 18:32:20 +00:00
|
|
|
crash("(CodeValue)");
|
1986-05-16 17:15:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ds->dsg_kind = DSG_LOADED;
|
|
|
|
}
|
|
|
|
|
1987-08-10 13:01:54 +00:00
|
|
|
ChkForFOR(nd)
|
1987-09-23 16:39:43 +00:00
|
|
|
t_node *nd;
|
1987-08-10 13:01:54 +00:00
|
|
|
{
|
|
|
|
if (nd->nd_class == Def) {
|
1987-09-23 16:39:43 +00:00
|
|
|
register t_def *df = nd->nd_def;
|
1987-08-10 13:01:54 +00:00
|
|
|
|
|
|
|
if (df->df_flags & D_FORLOOP) {
|
|
|
|
node_warning(nd,
|
|
|
|
W_ORDINARY,
|
|
|
|
"assignment to FOR-loop control variable");
|
|
|
|
df->df_flags &= ~D_FORLOOP;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1987-06-23 17:12:25 +00:00
|
|
|
CodeStore(ds, tp)
|
1987-09-23 16:39:43 +00:00
|
|
|
register t_desig *ds;
|
|
|
|
register t_type *tp;
|
1986-05-23 09:46:31 +00:00
|
|
|
{
|
|
|
|
/* Generate code to store the value on the stack in the designator
|
|
|
|
described in "ds"
|
|
|
|
*/
|
1987-09-23 16:39:43 +00:00
|
|
|
t_desig save;
|
1986-05-23 09:46:31 +00:00
|
|
|
|
1986-11-28 11:59:08 +00:00
|
|
|
save = *ds;
|
1987-08-10 13:01:54 +00:00
|
|
|
|
1986-05-23 09:46:31 +00:00
|
|
|
switch(ds->dsg_kind) {
|
|
|
|
case DSG_FIXED:
|
1987-07-21 13:54:33 +00:00
|
|
|
if (DoStore(ds, tp->tp_size)) break;
|
1986-05-23 09:46:31 +00:00
|
|
|
/* Fall through */
|
|
|
|
case DSG_PLOADED:
|
|
|
|
case DSG_PFIXED:
|
1986-11-28 11:59:08 +00:00
|
|
|
CodeAddress(&save);
|
1987-07-30 13:37:39 +00:00
|
|
|
if (properly(ds, tp)) {
|
1987-06-23 17:12:25 +00:00
|
|
|
C_sti(tp->tp_size);
|
1986-11-28 11:59:08 +00:00
|
|
|
break;
|
|
|
|
}
|
1987-06-23 17:12:25 +00:00
|
|
|
C_loc(tp->tp_size);
|
1986-11-28 11:59:08 +00:00
|
|
|
C_cal("_store");
|
1987-06-23 17:12:25 +00:00
|
|
|
C_asp(2 * word_size + WA(tp->tp_size));
|
1986-05-23 09:46:31 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case DSG_INDEXED:
|
|
|
|
C_sar(word_size);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
crash("(CodeStore)");
|
|
|
|
}
|
|
|
|
|
|
|
|
ds->dsg_kind = DSG_INIT;
|
|
|
|
}
|
|
|
|
|
1986-11-28 11:59:08 +00:00
|
|
|
CodeCopy(lhs, rhs, sz, psize)
|
1987-09-23 16:39:43 +00:00
|
|
|
register t_desig *lhs, *rhs;
|
1986-11-28 11:59:08 +00:00
|
|
|
arith sz, *psize;
|
|
|
|
{
|
1987-09-23 16:39:43 +00:00
|
|
|
t_desig l, r;
|
1986-11-28 11:59:08 +00:00
|
|
|
|
|
|
|
l = *lhs; r = *rhs;
|
|
|
|
*psize -= sz;
|
|
|
|
lhs->dsg_offset += sz;
|
|
|
|
rhs->dsg_offset += sz;
|
|
|
|
CodeAddress(&r);
|
|
|
|
C_loi(sz);
|
|
|
|
CodeAddress(&l);
|
|
|
|
C_sti(sz);
|
|
|
|
}
|
|
|
|
|
|
|
|
CodeMove(rhs, left, rtp)
|
1987-09-23 16:39:43 +00:00
|
|
|
register t_desig *rhs;
|
|
|
|
register t_node *left;
|
|
|
|
t_type *rtp;
|
1986-11-28 11:59:08 +00:00
|
|
|
{
|
1987-09-23 16:39:43 +00:00
|
|
|
register t_desig *lhs = new_desig();
|
|
|
|
register t_type *tp = left->nd_type;
|
1986-11-28 11:59:08 +00:00
|
|
|
int loadedflag = 0;
|
|
|
|
|
|
|
|
/* Generate code for an assignment. Testing of type
|
|
|
|
compatibility and the like is already done.
|
|
|
|
Go through some (considerable) trouble to see if a BLM can be
|
|
|
|
generated.
|
|
|
|
*/
|
|
|
|
|
1987-08-10 13:01:54 +00:00
|
|
|
ChkForFOR(left);
|
1986-11-28 11:59:08 +00:00
|
|
|
switch(rhs->dsg_kind) {
|
|
|
|
case DSG_LOADED:
|
|
|
|
CodeDesig(left, lhs);
|
|
|
|
if (rtp->tp_fund == T_STRING) {
|
1987-05-27 10:16:03 +00:00
|
|
|
CodeAddress(lhs);
|
1986-11-28 11:59:08 +00:00
|
|
|
C_loc(rtp->tp_size);
|
|
|
|
C_loc(tp->tp_size);
|
|
|
|
C_cal("_StringAssign");
|
|
|
|
C_asp(word_size << 2);
|
1987-07-30 13:37:39 +00:00
|
|
|
break;
|
1986-11-28 11:59:08 +00:00
|
|
|
}
|
1987-06-23 17:12:25 +00:00
|
|
|
CodeStore(lhs, tp);
|
1987-07-30 13:37:39 +00:00
|
|
|
break;
|
1986-11-28 11:59:08 +00:00
|
|
|
case DSG_PLOADED:
|
|
|
|
case DSG_PFIXED:
|
|
|
|
CodeAddress(rhs);
|
1987-07-21 13:54:33 +00:00
|
|
|
if ((int) (tp->tp_size) % (int) word_size == 0 &&
|
|
|
|
tp->tp_align >= (int) word_size) {
|
1986-11-28 11:59:08 +00:00
|
|
|
CodeDesig(left, lhs);
|
|
|
|
CodeAddress(lhs);
|
|
|
|
C_blm(tp->tp_size);
|
1987-07-30 13:37:39 +00:00
|
|
|
break;
|
1986-11-28 11:59:08 +00:00
|
|
|
}
|
1987-06-23 17:12:25 +00:00
|
|
|
CodeValue(rhs, tp);
|
1986-11-28 11:59:08 +00:00
|
|
|
CodeDStore(left);
|
1987-07-30 13:37:39 +00:00
|
|
|
break;
|
1986-11-28 11:59:08 +00:00
|
|
|
case DSG_FIXED:
|
|
|
|
CodeDesig(left, lhs);
|
|
|
|
if (lhs->dsg_kind == DSG_FIXED &&
|
1987-07-21 13:54:33 +00:00
|
|
|
(int) (lhs->dsg_offset) % (int) word_size ==
|
|
|
|
(int) (rhs->dsg_offset) % (int) word_size) {
|
1987-07-13 10:30:37 +00:00
|
|
|
register int sz;
|
1986-11-28 11:59:08 +00:00
|
|
|
arith size = tp->tp_size;
|
|
|
|
|
1987-07-21 13:54:33 +00:00
|
|
|
while (size &&
|
|
|
|
(sz = ((int)(lhs->dsg_offset) % (int)word_size))) {
|
1986-11-28 11:59:08 +00:00
|
|
|
/* First copy up to word-aligned
|
|
|
|
boundaries
|
|
|
|
*/
|
|
|
|
if (sz < 0) sz = -sz; /* bloody '%' */
|
1987-07-13 10:30:37 +00:00
|
|
|
while ((int) word_size % sz) sz--;
|
|
|
|
CodeCopy(lhs, rhs, (arith) sz, &size);
|
1986-11-28 11:59:08 +00:00
|
|
|
}
|
|
|
|
if (size > 3*dword_size) {
|
|
|
|
/* Do a block move
|
|
|
|
*/
|
1987-09-23 16:39:43 +00:00
|
|
|
t_desig l, r;
|
1987-07-13 11:49:32 +00:00
|
|
|
arith sz;
|
1986-11-28 11:59:08 +00:00
|
|
|
|
|
|
|
sz = (size / word_size) * word_size;
|
|
|
|
l = *lhs; r = *rhs;
|
|
|
|
CodeAddress(&r);
|
|
|
|
CodeAddress(&l);
|
1987-07-13 11:49:32 +00:00
|
|
|
C_blm((arith) sz);
|
1986-11-28 11:59:08 +00:00
|
|
|
rhs->dsg_offset += sz;
|
|
|
|
lhs->dsg_offset += sz;
|
|
|
|
size -= sz;
|
|
|
|
}
|
1987-07-21 13:54:33 +00:00
|
|
|
else for (sz = (int) dword_size; sz; sz -= (int) word_size) {
|
1986-11-28 11:59:08 +00:00
|
|
|
while (size >= sz) {
|
|
|
|
/* Then copy dwords, words.
|
|
|
|
Depend on peephole optimizer
|
|
|
|
*/
|
1987-07-13 11:49:32 +00:00
|
|
|
CodeCopy(lhs, rhs, (arith) sz, &size);
|
1986-11-28 11:59:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
sz = word_size;
|
|
|
|
while (size && --sz) {
|
|
|
|
/* And then copy remaining parts
|
|
|
|
*/
|
1987-07-13 11:49:32 +00:00
|
|
|
while ((int) word_size % sz) sz--;
|
1986-11-28 11:59:08 +00:00
|
|
|
while (size >= sz) {
|
1987-07-13 11:49:32 +00:00
|
|
|
CodeCopy(lhs, rhs, (arith) sz, &size);
|
1986-11-28 11:59:08 +00:00
|
|
|
}
|
|
|
|
}
|
1987-07-30 13:37:39 +00:00
|
|
|
break;
|
1986-11-28 11:59:08 +00:00
|
|
|
}
|
|
|
|
if (lhs->dsg_kind == DSG_PLOADED ||
|
|
|
|
lhs->dsg_kind == DSG_INDEXED) {
|
|
|
|
CodeAddress(lhs);
|
|
|
|
loadedflag = 1;
|
|
|
|
}
|
1987-07-21 13:54:33 +00:00
|
|
|
if ((int)(tp->tp_size) % (int) word_size == 0 &&
|
|
|
|
tp->tp_align >= word_size) {
|
1986-11-28 11:59:08 +00:00
|
|
|
CodeAddress(rhs);
|
|
|
|
if (loadedflag) C_exg(pointer_size);
|
|
|
|
else CodeAddress(lhs);
|
|
|
|
C_blm(tp->tp_size);
|
1987-07-30 13:37:39 +00:00
|
|
|
break;
|
1986-11-28 11:59:08 +00:00
|
|
|
}
|
|
|
|
{
|
|
|
|
arith tmp;
|
1987-05-18 15:57:33 +00:00
|
|
|
extern arith NewPtr();
|
1986-11-28 11:59:08 +00:00
|
|
|
|
|
|
|
if (loadedflag) {
|
|
|
|
tmp = NewPtr();
|
|
|
|
lhs->dsg_offset = tmp;
|
|
|
|
lhs->dsg_name = 0;
|
|
|
|
lhs->dsg_kind = DSG_PFIXED;
|
1987-05-27 10:16:03 +00:00
|
|
|
lhs->dsg_def = 0;
|
1986-11-28 11:59:08 +00:00
|
|
|
C_stl(tmp); /* address of lhs */
|
|
|
|
}
|
1987-06-23 17:12:25 +00:00
|
|
|
CodeValue(rhs, tp);
|
|
|
|
CodeStore(lhs, tp);
|
1986-11-28 11:59:08 +00:00
|
|
|
if (loadedflag) FreePtr(tmp);
|
1987-07-30 13:37:39 +00:00
|
|
|
break;
|
1986-11-28 11:59:08 +00:00
|
|
|
}
|
|
|
|
default:
|
|
|
|
crash("CodeMove");
|
|
|
|
}
|
1987-07-30 13:37:39 +00:00
|
|
|
free_desig(lhs);
|
1986-11-28 11:59:08 +00:00
|
|
|
}
|
|
|
|
|
1986-05-16 17:15:36 +00:00
|
|
|
CodeAddress(ds)
|
1987-09-23 16:39:43 +00:00
|
|
|
register t_desig *ds;
|
1986-05-16 17:15:36 +00:00
|
|
|
{
|
|
|
|
/* Generate code to load the address of the designator described
|
|
|
|
in "ds"
|
|
|
|
*/
|
|
|
|
|
|
|
|
switch(ds->dsg_kind) {
|
|
|
|
case DSG_PLOADED:
|
|
|
|
if (ds->dsg_offset) {
|
|
|
|
C_adp(ds->dsg_offset);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DSG_FIXED:
|
|
|
|
if (ds->dsg_name) {
|
|
|
|
C_lae_dnam(ds->dsg_name, ds->dsg_offset);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
C_lal(ds->dsg_offset);
|
1987-05-27 10:16:03 +00:00
|
|
|
if (ds->dsg_def) ds->dsg_def->df_flags |= D_NOREG;
|
1986-05-16 17:15:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case DSG_PFIXED:
|
1987-07-21 13:54:33 +00:00
|
|
|
DoLoad(ds, word_size);
|
1986-05-16 17:15:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case DSG_INDEXED:
|
|
|
|
C_aar(word_size);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
1986-05-21 18:32:20 +00:00
|
|
|
crash("(CodeAddress)");
|
1986-05-16 17:15:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ds->dsg_offset = 0;
|
|
|
|
ds->dsg_kind = DSG_PLOADED;
|
|
|
|
}
|
|
|
|
|
|
|
|
CodeFieldDesig(df, ds)
|
1987-09-23 16:39:43 +00:00
|
|
|
register t_def *df;
|
|
|
|
register t_desig *ds;
|
1986-05-16 17:15:36 +00:00
|
|
|
{
|
|
|
|
/* Generate code for a field designator. Only the code common for
|
|
|
|
address as well as value computation is generated, and the
|
|
|
|
resulting information on where to find the designator is placed
|
|
|
|
in "ds". "df" indicates the definition of the field.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (ds->dsg_kind == DSG_INIT) {
|
|
|
|
/* In a WITH statement. We must find the designator in the
|
|
|
|
WITH statement, and act as if the field is a selection
|
|
|
|
of this designator.
|
|
|
|
So, first find the right WITH statement, which is the
|
1986-09-25 19:39:06 +00:00
|
|
|
first one of the proper record type, which is
|
|
|
|
recognized by its scope indication.
|
1986-05-16 17:15:36 +00:00
|
|
|
*/
|
1986-09-25 19:39:06 +00:00
|
|
|
register struct withdesig *wds = WithDesigs;
|
|
|
|
|
1986-05-16 17:15:36 +00:00
|
|
|
assert(wds != 0);
|
|
|
|
|
|
|
|
while (wds->w_scope != df->df_scope) {
|
|
|
|
wds = wds->w_next;
|
|
|
|
assert(wds != 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Found it. Now, act like it was a selection.
|
|
|
|
*/
|
|
|
|
*ds = wds->w_desig;
|
1986-05-23 09:46:31 +00:00
|
|
|
assert(ds->dsg_kind == DSG_PFIXED);
|
1986-05-16 17:15:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
switch(ds->dsg_kind) {
|
|
|
|
case DSG_PLOADED:
|
|
|
|
case DSG_FIXED:
|
|
|
|
ds->dsg_offset += df->fld_off;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DSG_PFIXED:
|
|
|
|
case DSG_INDEXED:
|
|
|
|
CodeAddress(ds);
|
1986-05-21 18:32:20 +00:00
|
|
|
ds->dsg_kind = DSG_PLOADED;
|
1986-05-16 17:15:36 +00:00
|
|
|
ds->dsg_offset = df->fld_off;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
1986-05-21 18:32:20 +00:00
|
|
|
crash("(CodeFieldDesig)");
|
1986-05-16 17:15:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1986-05-21 18:32:20 +00:00
|
|
|
CodeVarDesig(df, ds)
|
1987-09-23 16:39:43 +00:00
|
|
|
register t_def *df;
|
|
|
|
register t_desig *ds;
|
1986-05-21 18:32:20 +00:00
|
|
|
{
|
|
|
|
/* Generate code for a variable represented by a "def" structure.
|
|
|
|
Of course, there are numerous cases: the variable is local,
|
|
|
|
it is a value parameter, it is a var parameter, it is one of
|
|
|
|
those of an enclosing procedure, or it is global.
|
|
|
|
*/
|
1987-09-24 13:07:31 +00:00
|
|
|
register t_scope *sc = df->df_scope;
|
1986-05-21 18:32:20 +00:00
|
|
|
|
|
|
|
/* Selections from a module are handled earlier, when identifying
|
|
|
|
the variable, so ...
|
|
|
|
*/
|
|
|
|
assert(ds->dsg_kind == DSG_INIT);
|
|
|
|
|
1987-06-29 12:46:00 +00:00
|
|
|
if (df->df_flags & D_ADDRGIVEN) {
|
1986-05-21 18:32:20 +00:00
|
|
|
/* the programmer specified an address in the declaration of
|
|
|
|
the variable. Generate code to push the address.
|
|
|
|
*/
|
1987-07-21 13:54:33 +00:00
|
|
|
CodeConst(df->var_off, (int) pointer_size);
|
1986-05-21 18:32:20 +00:00
|
|
|
ds->dsg_kind = DSG_PLOADED;
|
|
|
|
ds->dsg_offset = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (df->var_name) {
|
|
|
|
/* this variable has been given a name, so it is global.
|
|
|
|
It is directly accessible.
|
|
|
|
*/
|
|
|
|
ds->dsg_name = df->var_name;
|
|
|
|
ds->dsg_offset = 0;
|
|
|
|
ds->dsg_kind = DSG_FIXED;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sc->sc_level != proclevel) {
|
|
|
|
/* the variable is local to a statically enclosing procedure.
|
|
|
|
*/
|
|
|
|
assert(proclevel > sc->sc_level);
|
1986-06-17 12:04:05 +00:00
|
|
|
|
|
|
|
df->df_flags |= D_NOREG;
|
1986-05-21 18:32:20 +00:00
|
|
|
if (df->df_flags & (D_VARPAR|D_VALPAR)) {
|
|
|
|
/* value or var parameter
|
|
|
|
*/
|
|
|
|
C_lxa((arith) (proclevel - sc->sc_level));
|
1986-06-04 09:01:48 +00:00
|
|
|
if ((df->df_flags & D_VARPAR) ||
|
|
|
|
IsConformantArray(df->df_type)) {
|
1986-09-25 19:39:06 +00:00
|
|
|
/* var parameter or conformant array.
|
|
|
|
For conformant array's, the address is
|
|
|
|
passed.
|
1986-05-21 18:32:20 +00:00
|
|
|
*/
|
|
|
|
C_adp(df->var_off);
|
|
|
|
C_loi(pointer_size);
|
|
|
|
ds->dsg_offset = 0;
|
|
|
|
ds->dsg_kind = DSG_PLOADED;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else C_lxl((arith) (proclevel - sc->sc_level));
|
|
|
|
ds->dsg_kind = DSG_PLOADED;
|
|
|
|
ds->dsg_offset = df->var_off;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now, finally, we have a local variable or a local parameter
|
|
|
|
*/
|
1986-06-04 09:01:48 +00:00
|
|
|
if ((df->df_flags & D_VARPAR) || IsConformantArray(df->df_type)) {
|
1986-05-21 18:32:20 +00:00
|
|
|
/* a var parameter; address directly accessible.
|
|
|
|
*/
|
|
|
|
ds->dsg_kind = DSG_PFIXED;
|
|
|
|
}
|
|
|
|
else ds->dsg_kind = DSG_FIXED;
|
1987-05-27 10:16:03 +00:00
|
|
|
ds->dsg_offset = df->var_off;
|
|
|
|
ds->dsg_def = df;
|
1986-05-21 18:32:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CodeDesig(nd, ds)
|
1987-09-23 16:39:43 +00:00
|
|
|
register t_node *nd;
|
|
|
|
register t_desig *ds;
|
1986-05-21 18:32:20 +00:00
|
|
|
{
|
|
|
|
/* Generate code for a designator. Use divide and conquer
|
|
|
|
principle
|
|
|
|
*/
|
1987-09-23 16:39:43 +00:00
|
|
|
register t_def *df;
|
1986-05-21 18:32:20 +00:00
|
|
|
|
|
|
|
switch(nd->nd_class) { /* Divide */
|
1986-06-04 09:01:48 +00:00
|
|
|
case Def:
|
|
|
|
df = nd->nd_def;
|
1987-07-30 13:37:39 +00:00
|
|
|
if (nd->nd_left) CodeDesig(nd->nd_left, ds);
|
1986-05-21 18:32:20 +00:00
|
|
|
|
|
|
|
switch(df->df_kind) {
|
|
|
|
case D_FIELD:
|
|
|
|
CodeFieldDesig(df, ds);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case D_VARIABLE:
|
|
|
|
CodeVarDesig(df, ds);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
crash("(CodeDesig) Def");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
1986-06-10 13:18:52 +00:00
|
|
|
case Arrsel:
|
1986-05-21 18:32:20 +00:00
|
|
|
assert(nd->nd_symb == '[');
|
1986-05-23 19:25:21 +00:00
|
|
|
|
1986-05-21 18:32:20 +00:00
|
|
|
CodeDesig(nd->nd_left, ds);
|
|
|
|
CodeAddress(ds);
|
1986-06-04 09:01:48 +00:00
|
|
|
CodePExpr(nd->nd_right);
|
|
|
|
|
|
|
|
/* Now load address of descriptor
|
|
|
|
*/
|
1986-05-21 18:32:20 +00:00
|
|
|
if (IsConformantArray(nd->nd_left->nd_type)) {
|
1986-06-04 09:01:48 +00:00
|
|
|
assert(nd->nd_left->nd_class == Def);
|
|
|
|
|
|
|
|
df = nd->nd_left->nd_def;
|
|
|
|
if (proclevel > df->df_scope->sc_level) {
|
1986-06-06 02:22:09 +00:00
|
|
|
C_lxa((arith) (proclevel - df->df_scope->sc_level));
|
1986-06-04 09:01:48 +00:00
|
|
|
C_adp(df->var_off + pointer_size);
|
|
|
|
}
|
|
|
|
else C_lal(df->var_off + pointer_size);
|
1986-05-21 18:32:20 +00:00
|
|
|
}
|
|
|
|
else {
|
1987-09-23 16:39:43 +00:00
|
|
|
c_lae_dlb(nd->nd_left->nd_type->arr_descr);
|
1986-05-21 18:32:20 +00:00
|
|
|
}
|
1986-05-23 09:46:31 +00:00
|
|
|
ds->dsg_kind = DSG_INDEXED;
|
1986-05-21 18:32:20 +00:00
|
|
|
break;
|
|
|
|
|
1986-06-10 13:18:52 +00:00
|
|
|
case Arrow:
|
1986-05-21 18:32:20 +00:00
|
|
|
assert(nd->nd_symb == '^');
|
1986-05-23 19:25:21 +00:00
|
|
|
|
1986-05-21 18:32:20 +00:00
|
|
|
CodeDesig(nd->nd_right, ds);
|
|
|
|
switch(ds->dsg_kind) {
|
|
|
|
case DSG_LOADED:
|
|
|
|
ds->dsg_kind = DSG_PLOADED;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DSG_INDEXED:
|
|
|
|
case DSG_PLOADED:
|
|
|
|
case DSG_PFIXED:
|
1987-06-23 17:12:25 +00:00
|
|
|
CodeValue(ds, nd->nd_right->nd_type);
|
1986-05-21 18:32:20 +00:00
|
|
|
ds->dsg_kind = DSG_PLOADED;
|
|
|
|
ds->dsg_offset = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DSG_FIXED:
|
|
|
|
ds->dsg_kind = DSG_PFIXED;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
crash("(CodeDesig) Uoper");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
crash("(CodeDesig) class");
|
|
|
|
}
|
|
|
|
}
|