1986-04-08 18:15:46 +00:00
|
|
|
/* E X P R E S S I O N C H E C K I N G */
|
|
|
|
|
|
|
|
static char *RcsId = "$Header$";
|
|
|
|
|
|
|
|
/* Check expressions, and try to evaluate them as far as possible.
|
|
|
|
*/
|
|
|
|
#include <em_arith.h>
|
|
|
|
#include <em_label.h>
|
|
|
|
#include <assert.h>
|
1986-04-09 18:14:49 +00:00
|
|
|
#include <alloc.h>
|
1986-04-18 17:53:47 +00:00
|
|
|
|
1986-04-10 01:08:49 +00:00
|
|
|
#include "Lpars.h"
|
1986-04-08 18:15:46 +00:00
|
|
|
#include "idf.h"
|
|
|
|
#include "type.h"
|
|
|
|
#include "def.h"
|
|
|
|
#include "LLlex.h"
|
|
|
|
#include "node.h"
|
|
|
|
#include "scope.h"
|
1986-04-09 18:14:49 +00:00
|
|
|
#include "const.h"
|
|
|
|
#include "standards.h"
|
1986-04-18 17:53:47 +00:00
|
|
|
|
1986-04-11 11:57:19 +00:00
|
|
|
#include "debug.h"
|
1986-04-08 18:15:46 +00:00
|
|
|
|
1986-04-23 22:12:22 +00:00
|
|
|
extern char *symbol2str();
|
|
|
|
|
1986-04-08 18:15:46 +00:00
|
|
|
int
|
1986-04-10 01:08:49 +00:00
|
|
|
chk_expr(expp)
|
1986-04-08 18:15:46 +00:00
|
|
|
register struct node *expp;
|
|
|
|
{
|
|
|
|
/* Check the expression indicated by expp for semantic errors,
|
|
|
|
identify identifiers used in it, replace constants by
|
1986-04-18 17:53:47 +00:00
|
|
|
their value, and try to evaluate the expression.
|
1986-04-08 18:15:46 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
switch(expp->nd_class) {
|
|
|
|
case Oper:
|
1986-04-23 22:12:22 +00:00
|
|
|
if (expp->nd_symb == '[') {
|
1986-04-25 10:14:08 +00:00
|
|
|
return chk_designator(expp, DESIGNATOR|VARIABLE);
|
1986-04-23 22:12:22 +00:00
|
|
|
}
|
|
|
|
|
1986-04-10 01:08:49 +00:00
|
|
|
return chk_expr(expp->nd_left) &&
|
|
|
|
chk_expr(expp->nd_right) &&
|
|
|
|
chk_oper(expp);
|
1986-04-18 17:53:47 +00:00
|
|
|
|
1986-04-08 18:15:46 +00:00
|
|
|
case Uoper:
|
1986-04-23 22:12:22 +00:00
|
|
|
if (expp->nd_symb == '^') {
|
1986-04-25 10:14:08 +00:00
|
|
|
return chk_designator(expp, DESIGNATOR|VARIABLE);
|
1986-04-23 22:12:22 +00:00
|
|
|
}
|
|
|
|
|
1986-04-10 01:08:49 +00:00
|
|
|
return chk_expr(expp->nd_right) &&
|
|
|
|
chk_uoper(expp);
|
1986-04-18 17:53:47 +00:00
|
|
|
|
1986-04-08 18:15:46 +00:00
|
|
|
case Value:
|
|
|
|
switch(expp->nd_symb) {
|
|
|
|
case REAL:
|
|
|
|
case STRING:
|
|
|
|
case INTEGER:
|
|
|
|
return 1;
|
1986-04-18 17:53:47 +00:00
|
|
|
|
1986-04-08 18:15:46 +00:00
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
break;
|
1986-04-18 17:53:47 +00:00
|
|
|
|
1986-04-08 18:15:46 +00:00
|
|
|
case Xset:
|
1986-04-10 01:08:49 +00:00
|
|
|
return chk_set(expp);
|
1986-04-18 17:53:47 +00:00
|
|
|
|
1986-04-08 18:15:46 +00:00
|
|
|
case Name:
|
1986-04-25 10:14:08 +00:00
|
|
|
return chk_designator(expp, VALUE);
|
1986-04-18 17:53:47 +00:00
|
|
|
|
1986-04-08 18:15:46 +00:00
|
|
|
case Call:
|
1986-04-10 01:08:49 +00:00
|
|
|
return chk_call(expp);
|
1986-04-18 17:53:47 +00:00
|
|
|
|
1986-04-08 18:15:46 +00:00
|
|
|
case Link:
|
1986-04-25 10:14:08 +00:00
|
|
|
return chk_designator(expp, DESIGNATOR|VALUE);
|
1986-04-22 22:36:16 +00:00
|
|
|
|
1986-04-08 23:34:10 +00:00
|
|
|
default:
|
|
|
|
assert(0);
|
1986-04-08 18:15:46 +00:00
|
|
|
}
|
|
|
|
/*NOTREACHED*/
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1986-04-10 01:08:49 +00:00
|
|
|
chk_set(expp)
|
1986-04-08 18:15:46 +00:00
|
|
|
register struct node *expp;
|
|
|
|
{
|
1986-04-09 18:14:49 +00:00
|
|
|
/* Check the legality of a SET aggregate, and try to evaluate it
|
|
|
|
compile time. Unfortunately this is all rather complicated.
|
|
|
|
*/
|
1986-04-08 23:34:10 +00:00
|
|
|
struct type *tp;
|
|
|
|
struct def *df;
|
|
|
|
register struct node *nd;
|
1986-04-09 18:14:49 +00:00
|
|
|
arith *set;
|
1986-04-08 23:34:10 +00:00
|
|
|
|
|
|
|
assert(expp->nd_symb == SET);
|
|
|
|
|
|
|
|
/* First determine the type of the set
|
|
|
|
*/
|
1986-04-22 22:36:16 +00:00
|
|
|
if (nd = expp->nd_left) {
|
1986-04-08 23:34:10 +00:00
|
|
|
/* A type was given. Check it out
|
|
|
|
*/
|
1986-04-25 10:14:08 +00:00
|
|
|
if (! chk_designator(nd, 0)) return 0;
|
1986-04-23 22:12:22 +00:00
|
|
|
|
1986-04-22 22:36:16 +00:00
|
|
|
assert(nd->nd_class == Def);
|
|
|
|
df = nd->nd_def;
|
|
|
|
|
1986-04-18 17:53:47 +00:00
|
|
|
if (!(df->df_kind & (D_TYPE|D_ERROR)) ||
|
1986-04-10 01:08:49 +00:00
|
|
|
(df->df_type->tp_fund != T_SET)) {
|
1986-04-22 22:36:16 +00:00
|
|
|
node_error(expp, "specifier does not represent a set type");
|
1986-04-08 23:34:10 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
tp = df->df_type;
|
1986-04-22 22:36:16 +00:00
|
|
|
FreeNode(expp->nd_left);
|
|
|
|
expp->nd_left = 0;
|
1986-04-08 23:34:10 +00:00
|
|
|
}
|
|
|
|
else tp = bitset_type;
|
|
|
|
|
1986-04-09 18:14:49 +00:00
|
|
|
/* Now check the elements given, and try to compute a constant set.
|
1986-04-22 22:36:16 +00:00
|
|
|
First allocate room for the set
|
1986-04-08 23:34:10 +00:00
|
|
|
*/
|
1986-04-18 17:53:47 +00:00
|
|
|
set = (arith *)
|
|
|
|
Malloc((unsigned) (tp->tp_size * sizeof(arith) / word_size));
|
1986-04-22 22:36:16 +00:00
|
|
|
|
|
|
|
/* Now check the elements, one by one
|
|
|
|
*/
|
1986-04-08 23:34:10 +00:00
|
|
|
nd = expp->nd_right;
|
|
|
|
while (nd) {
|
|
|
|
assert(nd->nd_class == Link && nd->nd_symb == ',');
|
1986-04-22 22:36:16 +00:00
|
|
|
|
1986-04-10 01:08:49 +00:00
|
|
|
if (!chk_el(nd->nd_left, tp->next, &set)) return 0;
|
1986-04-08 23:34:10 +00:00
|
|
|
nd = nd->nd_right;
|
|
|
|
}
|
1986-04-22 22:36:16 +00:00
|
|
|
|
1986-04-09 18:14:49 +00:00
|
|
|
expp->nd_type = tp;
|
1986-04-22 22:36:16 +00:00
|
|
|
|
1986-04-09 18:14:49 +00:00
|
|
|
if (set) {
|
1986-04-18 17:53:47 +00:00
|
|
|
/* Yes, it was a constant set, and we managed to compute it!
|
|
|
|
Notice that at the moment there is no such thing as
|
|
|
|
partial evaluation. Either we evaluate the set, or we
|
|
|
|
don't (at all). Improvement not neccesary. (???)
|
1986-04-09 18:14:49 +00:00
|
|
|
*/
|
|
|
|
expp->nd_class = Set;
|
|
|
|
expp->nd_set = set;
|
|
|
|
FreeNode(expp->nd_right);
|
1986-04-22 22:36:16 +00:00
|
|
|
expp->nd_right = 0;
|
1986-04-09 18:14:49 +00:00
|
|
|
}
|
1986-04-22 22:36:16 +00:00
|
|
|
|
1986-04-08 23:34:10 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1986-04-10 01:08:49 +00:00
|
|
|
chk_el(expp, tp, set)
|
1986-04-09 18:14:49 +00:00
|
|
|
register struct node *expp;
|
1986-04-08 23:34:10 +00:00
|
|
|
struct type *tp;
|
1986-04-09 18:14:49 +00:00
|
|
|
arith **set;
|
1986-04-08 23:34:10 +00:00
|
|
|
{
|
|
|
|
/* Check elements of a set. This routine may call itself
|
1986-04-09 18:14:49 +00:00
|
|
|
recursively.
|
|
|
|
Also try to compute the set!
|
1986-04-08 23:34:10 +00:00
|
|
|
*/
|
1986-04-18 17:53:47 +00:00
|
|
|
register int i;
|
1986-04-22 22:36:16 +00:00
|
|
|
register struct node *left = expp->nd_left;
|
|
|
|
register struct node *right = expp->nd_right;
|
1986-04-18 17:53:47 +00:00
|
|
|
|
1986-04-08 23:34:10 +00:00
|
|
|
if (expp->nd_class == Link && expp->nd_symb == UPTO) {
|
1986-04-09 18:14:49 +00:00
|
|
|
/* { ... , expr1 .. expr2, ... }
|
|
|
|
First check expr1 and expr2, and try to compute them.
|
|
|
|
*/
|
1986-04-22 22:36:16 +00:00
|
|
|
if (!chk_el(left, tp, set) || !chk_el(right, tp, set)) {
|
1986-04-08 23:34:10 +00:00
|
|
|
return 0;
|
|
|
|
}
|
1986-04-22 22:36:16 +00:00
|
|
|
|
|
|
|
if (left->nd_class == Value && right->nd_class == Value) {
|
1986-04-09 18:14:49 +00:00
|
|
|
/* We have a constant range. Put all elements in the
|
|
|
|
set
|
|
|
|
*/
|
|
|
|
|
1986-04-22 22:36:16 +00:00
|
|
|
if (left->nd_INT > right->nd_INT) {
|
1986-04-18 17:53:47 +00:00
|
|
|
node_error(expp, "lower bound exceeds upper bound in range");
|
1986-04-09 18:14:49 +00:00
|
|
|
return rem_set(set);
|
1986-04-08 23:34:10 +00:00
|
|
|
}
|
1986-04-22 22:36:16 +00:00
|
|
|
|
|
|
|
if (*set) {
|
|
|
|
for (i=left->nd_INT+1; i<right->nd_INT; i++) {
|
|
|
|
(*set)[i/wrd_bits] |= (1<<(i%wrd_bits));
|
|
|
|
}
|
1986-04-09 18:14:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (*set) {
|
1986-04-17 09:28:09 +00:00
|
|
|
free((char *) *set);
|
1986-04-09 18:14:49 +00:00
|
|
|
*set = 0;
|
1986-04-08 23:34:10 +00:00
|
|
|
}
|
1986-04-22 22:36:16 +00:00
|
|
|
|
1986-04-08 23:34:10 +00:00
|
|
|
return 1;
|
|
|
|
}
|
1986-04-09 18:14:49 +00:00
|
|
|
|
|
|
|
/* Here, a single element is checked
|
|
|
|
*/
|
1986-04-10 01:08:49 +00:00
|
|
|
if (!chk_expr(expp)) {
|
1986-04-09 18:14:49 +00:00
|
|
|
return rem_set(set);
|
|
|
|
}
|
1986-04-22 22:36:16 +00:00
|
|
|
|
1986-04-08 23:34:10 +00:00
|
|
|
if (!TstCompat(tp, expp->nd_type)) {
|
1986-04-18 17:53:47 +00:00
|
|
|
node_error(expp, "set element has incompatible type");
|
1986-04-09 18:14:49 +00:00
|
|
|
return rem_set(set);
|
1986-04-08 23:34:10 +00:00
|
|
|
}
|
1986-04-22 22:36:16 +00:00
|
|
|
|
1986-04-08 23:34:10 +00:00
|
|
|
if (expp->nd_class == Value) {
|
1986-04-22 22:36:16 +00:00
|
|
|
/* a constant element
|
|
|
|
*/
|
1986-04-18 17:53:47 +00:00
|
|
|
i = expp->nd_INT;
|
1986-04-22 22:36:16 +00:00
|
|
|
|
1986-04-10 01:08:49 +00:00
|
|
|
if ((tp->tp_fund != T_ENUMERATION &&
|
1986-04-18 17:53:47 +00:00
|
|
|
(i < tp->sub_lb || i > tp->sub_ub))
|
1986-04-08 23:34:10 +00:00
|
|
|
||
|
1986-04-10 01:08:49 +00:00
|
|
|
(tp->tp_fund == T_ENUMERATION &&
|
1986-04-18 17:53:47 +00:00
|
|
|
(i < 0 || i > tp->enm_ncst))
|
1986-04-08 23:34:10 +00:00
|
|
|
) {
|
1986-04-18 17:53:47 +00:00
|
|
|
node_error(expp, "set element out of range");
|
1986-04-09 18:14:49 +00:00
|
|
|
return rem_set(set);
|
1986-04-08 23:34:10 +00:00
|
|
|
}
|
1986-04-22 22:36:16 +00:00
|
|
|
|
1986-04-18 17:53:47 +00:00
|
|
|
if (*set) (*set)[i/wrd_bits] |= (1 << (i%wrd_bits));
|
1986-04-08 23:34:10 +00:00
|
|
|
}
|
1986-04-22 22:36:16 +00:00
|
|
|
|
1986-04-08 18:15:46 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
1986-04-09 18:14:49 +00:00
|
|
|
int
|
|
|
|
rem_set(set)
|
|
|
|
arith **set;
|
|
|
|
{
|
|
|
|
/* This routine is only used for error exits of chk_el.
|
|
|
|
It frees the set indicated by "set", and returns 0.
|
|
|
|
*/
|
|
|
|
if (*set) {
|
|
|
|
free((char *) *set);
|
|
|
|
*set = 0;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1986-04-10 01:08:49 +00:00
|
|
|
struct node *
|
|
|
|
getarg(argp, bases)
|
|
|
|
struct node *argp;
|
|
|
|
{
|
|
|
|
struct type *tp;
|
|
|
|
|
|
|
|
if (!argp->nd_right) {
|
1986-04-11 11:57:19 +00:00
|
|
|
node_error(argp, "too few arguments supplied");
|
1986-04-10 01:08:49 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
argp = argp->nd_right;
|
|
|
|
if (!chk_expr(argp->nd_left)) return 0;
|
|
|
|
tp = argp->nd_left->nd_type;
|
|
|
|
if (tp->tp_fund == T_SUBRANGE) tp = tp->next;
|
1986-04-18 17:53:47 +00:00
|
|
|
if (bases && !(tp->tp_fund & bases)) {
|
|
|
|
node_error(argp, "unexpected type");
|
1986-04-10 01:08:49 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return argp;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct node *
|
|
|
|
getname(argp, kinds)
|
|
|
|
struct node *argp;
|
|
|
|
{
|
|
|
|
if (!argp->nd_right) {
|
1986-04-11 11:57:19 +00:00
|
|
|
node_error(argp, "too few arguments supplied");
|
1986-04-10 01:08:49 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
argp = argp->nd_right;
|
1986-04-25 10:14:08 +00:00
|
|
|
if (! chk_designator(argp->nd_left, 0)) return 0;
|
|
|
|
|
1986-04-10 01:08:49 +00:00
|
|
|
assert(argp->nd_left->nd_class == Def);
|
1986-04-25 10:14:08 +00:00
|
|
|
|
1986-04-10 01:08:49 +00:00
|
|
|
if (!(argp->nd_left->nd_def->df_kind & kinds)) {
|
1986-04-18 17:53:47 +00:00
|
|
|
node_error(argp, "unexpected type");
|
1986-04-10 01:08:49 +00:00
|
|
|
return 0;
|
|
|
|
}
|
1986-04-25 10:14:08 +00:00
|
|
|
|
1986-04-10 01:08:49 +00:00
|
|
|
return argp;
|
|
|
|
}
|
|
|
|
|
1986-04-08 18:15:46 +00:00
|
|
|
int
|
1986-04-10 01:08:49 +00:00
|
|
|
chk_call(expp)
|
1986-04-08 18:15:46 +00:00
|
|
|
register struct node *expp;
|
|
|
|
{
|
1986-04-11 11:57:19 +00:00
|
|
|
/* Check something that looks like a procedure or function call.
|
|
|
|
Of course this does not have to be a call at all.
|
|
|
|
it may also be a cast or a standard procedure call.
|
|
|
|
*/
|
1986-04-09 18:14:49 +00:00
|
|
|
register struct node *left;
|
1986-04-10 01:08:49 +00:00
|
|
|
register struct node *arg;
|
1986-04-09 18:14:49 +00:00
|
|
|
|
1986-04-18 17:53:47 +00:00
|
|
|
/* First, get the name of the function or procedure
|
|
|
|
*/
|
1986-04-09 18:14:49 +00:00
|
|
|
expp->nd_type = error_type;
|
|
|
|
left = expp->nd_left;
|
1986-04-25 10:14:08 +00:00
|
|
|
if (! chk_designator(left, 0)) return 0;
|
1986-04-09 18:14:49 +00:00
|
|
|
|
|
|
|
if (left->nd_class == Def &&
|
|
|
|
(left->nd_def->df_kind & (D_HTYPE|D_TYPE|D_HIDDEN))) {
|
1986-04-18 17:53:47 +00:00
|
|
|
/* It was a type cast. This is of course not portable.
|
1986-04-09 18:14:49 +00:00
|
|
|
No runtime action. Remove it.
|
|
|
|
*/
|
1986-04-10 01:08:49 +00:00
|
|
|
arg = expp->nd_right;
|
1986-04-11 11:57:19 +00:00
|
|
|
if ((! arg) || arg->nd_right) {
|
1986-04-18 17:53:47 +00:00
|
|
|
node_error(expp, "only one parameter expected in type cast");
|
1986-04-09 18:14:49 +00:00
|
|
|
return 0;
|
|
|
|
}
|
1986-04-11 11:57:19 +00:00
|
|
|
arg = arg->nd_left;
|
|
|
|
if (! chk_expr(arg)) return 0;
|
|
|
|
if (arg->nd_type->tp_size != left->nd_type->tp_size) {
|
1986-04-25 10:14:08 +00:00
|
|
|
node_error(expp, "unequal sizes in type cast");
|
1986-04-09 18:14:49 +00:00
|
|
|
}
|
1986-04-11 11:57:19 +00:00
|
|
|
arg->nd_type = left->nd_type;
|
1986-04-09 18:14:49 +00:00
|
|
|
FreeNode(expp->nd_left);
|
1986-04-15 17:51:53 +00:00
|
|
|
expp->nd_right->nd_left = 0;
|
|
|
|
FreeNode(expp->nd_right);
|
|
|
|
*expp = *arg;
|
1986-04-11 11:57:19 +00:00
|
|
|
arg->nd_left = 0;
|
|
|
|
arg->nd_right = 0;
|
1986-04-10 01:08:49 +00:00
|
|
|
FreeNode(arg);
|
1986-04-09 18:14:49 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((left->nd_class == Def && left->nd_def->df_kind == D_PROCEDURE) ||
|
1986-04-11 11:57:19 +00:00
|
|
|
left->nd_type->tp_fund == T_PROCEDURE) {
|
1986-04-09 18:14:49 +00:00
|
|
|
/* A procedure call. it may also be a call to a
|
|
|
|
standard procedure
|
|
|
|
*/
|
1986-04-10 01:08:49 +00:00
|
|
|
arg = expp;
|
1986-04-11 11:57:19 +00:00
|
|
|
if (left->nd_type == std_type) {
|
|
|
|
/* A standard procedure
|
|
|
|
*/
|
1986-04-23 22:12:22 +00:00
|
|
|
return chk_std(expp, left, arg);
|
1986-04-09 18:14:49 +00:00
|
|
|
}
|
1986-04-18 17:53:47 +00:00
|
|
|
/* Here, we have found a real procedure call. The left hand
|
|
|
|
side may also represent a procedure variable.
|
1986-04-11 11:57:19 +00:00
|
|
|
*/
|
1986-04-18 17:53:47 +00:00
|
|
|
return chk_proccall(expp);
|
1986-04-09 18:14:49 +00:00
|
|
|
}
|
|
|
|
node_error(expp->nd_left, "procedure, type, or function expected");
|
|
|
|
return 0;
|
1986-04-08 18:15:46 +00:00
|
|
|
}
|
|
|
|
|
1986-04-18 17:53:47 +00:00
|
|
|
chk_proccall(expp)
|
|
|
|
struct node *expp;
|
|
|
|
{
|
|
|
|
/* Check a procedure call
|
|
|
|
*/
|
|
|
|
register struct node *left = expp->nd_left;
|
|
|
|
register struct node *arg;
|
|
|
|
register struct paramlist *param;
|
|
|
|
|
|
|
|
arg = expp;
|
1986-04-25 10:14:08 +00:00
|
|
|
arg->nd_type = left->nd_type->next;
|
|
|
|
param = left->nd_type->prc_params;
|
1986-04-18 17:53:47 +00:00
|
|
|
|
|
|
|
while (param) {
|
1986-04-25 10:14:08 +00:00
|
|
|
if (!(arg = getarg(arg, 0))) return 0;
|
|
|
|
|
|
|
|
if (! TstParCompat(param->par_type,
|
|
|
|
arg->nd_left->nd_type,
|
|
|
|
param->par_var)) {
|
|
|
|
node_error(arg->nd_left, "type incompatibility in parameter");
|
1986-04-18 17:53:47 +00:00
|
|
|
return 0;
|
|
|
|
}
|
1986-04-25 10:14:08 +00:00
|
|
|
|
1986-04-18 17:53:47 +00:00
|
|
|
param = param->next;
|
|
|
|
}
|
1986-04-25 10:14:08 +00:00
|
|
|
|
1986-04-18 17:53:47 +00:00
|
|
|
if (arg->nd_right) {
|
|
|
|
node_error(arg->nd_right, "too many parameters supplied");
|
|
|
|
return 0;
|
|
|
|
}
|
1986-04-25 10:14:08 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
FlagCheck(expp, df, flag)
|
|
|
|
struct node *expp;
|
|
|
|
struct def *df;
|
|
|
|
{
|
|
|
|
/* See the routine "chk_designator" for an explanation of
|
|
|
|
"flag". Here, a definition "df" is checked against it.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if ((flag & VARIABLE) &&
|
|
|
|
!(df->df_kind & (D_FIELD|D_VARIABLE))) {
|
|
|
|
node_error(expp, "variable expected");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((flag & HASSELECTORS) &&
|
|
|
|
( !(df->df_kind & (D_VARIABLE|D_FIELD|D_MODULE)) ||
|
|
|
|
df->df_type->tp_fund != T_RECORD)) {
|
|
|
|
node_error(expp, "illegal selection");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((flag & VALUE) &&
|
|
|
|
( !(df->df_kind & (D_VARIABLE|D_FIELD|D_CONST|D_ENUM)))) {
|
|
|
|
node_error(expp, "value expected");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1986-04-18 17:53:47 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
1986-04-23 22:12:22 +00:00
|
|
|
int
|
|
|
|
chk_designator(expp, flag)
|
1986-04-08 18:15:46 +00:00
|
|
|
register struct node *expp;
|
|
|
|
{
|
|
|
|
/* Find the name indicated by "expp", starting from the current
|
1986-04-25 10:14:08 +00:00
|
|
|
scope. "flag" indicates the kind of designator we expect:
|
|
|
|
It contains the flags VARIABLE, indicating that the result must
|
|
|
|
be something that can be assigned to.
|
|
|
|
It may also contain the flag VALUE, indicating that a
|
|
|
|
value is expected. In this case, VARIABLE may not be set.
|
|
|
|
It also contains the flag DESIGNATOR, indicating that '['
|
|
|
|
and '^' are allowed for this designator.
|
|
|
|
Also contained may be the flag HASSELECTORS, indicating that
|
|
|
|
the result must have selectors.
|
1986-04-08 18:15:46 +00:00
|
|
|
*/
|
|
|
|
register struct def *df;
|
1986-04-09 18:14:49 +00:00
|
|
|
register struct type *tp;
|
1986-04-17 09:28:09 +00:00
|
|
|
struct def *lookfor();
|
1986-04-08 18:15:46 +00:00
|
|
|
|
1986-04-09 18:14:49 +00:00
|
|
|
expp->nd_type = error_type;
|
1986-04-23 22:12:22 +00:00
|
|
|
|
1986-04-08 18:15:46 +00:00
|
|
|
if (expp->nd_class == Name) {
|
1986-04-09 18:14:49 +00:00
|
|
|
expp->nd_def = lookfor(expp, CurrentScope, 1);
|
|
|
|
expp->nd_class = Def;
|
|
|
|
expp->nd_type = expp->nd_def->df_type;
|
1986-04-23 22:12:22 +00:00
|
|
|
if (expp->nd_type == error_type) return 0;
|
1986-04-08 18:15:46 +00:00
|
|
|
}
|
1986-04-23 22:12:22 +00:00
|
|
|
|
1986-04-09 18:14:49 +00:00
|
|
|
if (expp->nd_class == Link) {
|
|
|
|
assert(expp->nd_symb == '.');
|
|
|
|
assert(expp->nd_right->nd_class == Name);
|
1986-04-23 22:12:22 +00:00
|
|
|
|
1986-04-25 10:14:08 +00:00
|
|
|
if (! chk_designator(expp->nd_left,
|
|
|
|
(flag|HASSELECTORS)&DESIGNATOR)) return 0;
|
|
|
|
|
1986-04-09 18:14:49 +00:00
|
|
|
tp = expp->nd_left->nd_type;
|
1986-04-25 10:14:08 +00:00
|
|
|
|
|
|
|
assert(tp->tp_fund == T_RECORD);
|
|
|
|
|
|
|
|
df = lookup(expp->nd_right->nd_IDF, tp->rec_scope);
|
1986-04-23 22:12:22 +00:00
|
|
|
|
1986-04-08 18:15:46 +00:00
|
|
|
if (!df) {
|
1986-04-09 18:14:49 +00:00
|
|
|
id_not_declared(expp->nd_right);
|
1986-04-23 22:12:22 +00:00
|
|
|
return 0;
|
1986-04-08 18:15:46 +00:00
|
|
|
}
|
1986-04-25 10:14:08 +00:00
|
|
|
else {
|
1986-04-09 18:14:49 +00:00
|
|
|
expp->nd_type = df->df_type;
|
|
|
|
if (!(df->df_flags & (D_EXPORTED|D_QEXPORTED))) {
|
|
|
|
node_error(expp->nd_right,
|
1986-04-22 22:36:16 +00:00
|
|
|
"identifier \"%s\" not exported from qualifying module",
|
1986-04-08 18:15:46 +00:00
|
|
|
df->df_idf->id_text);
|
1986-04-23 22:12:22 +00:00
|
|
|
return 0;
|
1986-04-09 18:14:49 +00:00
|
|
|
}
|
1986-04-08 18:15:46 +00:00
|
|
|
}
|
1986-04-23 22:12:22 +00:00
|
|
|
|
1986-04-09 18:14:49 +00:00
|
|
|
if (expp->nd_left->nd_class == Def) {
|
|
|
|
expp->nd_class = Def;
|
|
|
|
expp->nd_def = df;
|
|
|
|
FreeNode(expp->nd_left);
|
|
|
|
FreeNode(expp->nd_right);
|
|
|
|
expp->nd_left = expp->nd_right = 0;
|
|
|
|
}
|
1986-04-25 10:14:08 +00:00
|
|
|
else {
|
|
|
|
return FlagCheck(expp->nd_right, df, flag);
|
|
|
|
}
|
1986-04-09 18:14:49 +00:00
|
|
|
}
|
1986-04-23 22:12:22 +00:00
|
|
|
|
|
|
|
if (expp->nd_class == Def) {
|
|
|
|
df = expp->nd_def;
|
|
|
|
|
1986-04-25 10:14:08 +00:00
|
|
|
if (! FlagCheck(expp, df, flag)) return 0;
|
|
|
|
|
1986-04-23 22:12:22 +00:00
|
|
|
if (df->df_kind & (D_ENUM | D_CONST)) {
|
|
|
|
if (df->df_kind == D_ENUM) {
|
|
|
|
expp->nd_class = Value;
|
|
|
|
expp->nd_INT = df->enm_val;
|
|
|
|
expp->nd_symb = INTEGER;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
assert(df->df_kind == D_CONST);
|
|
|
|
*expp = *(df->con_const);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
1986-04-25 10:14:08 +00:00
|
|
|
if (! (flag & DESIGNATOR)) {
|
1986-04-23 22:12:22 +00:00
|
|
|
node_error(expp, "identifier expected");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1986-04-09 18:14:49 +00:00
|
|
|
if (expp->nd_class == Oper) {
|
1986-04-23 22:12:22 +00:00
|
|
|
struct type *tpl, *tpr;
|
|
|
|
|
1986-04-09 18:14:49 +00:00
|
|
|
assert(expp->nd_symb == '[');
|
1986-04-08 18:15:46 +00:00
|
|
|
|
1986-04-23 22:12:22 +00:00
|
|
|
if (
|
1986-04-25 10:14:08 +00:00
|
|
|
!chk_designator(expp->nd_left, DESIGNATOR|VARIABLE)
|
1986-04-23 22:12:22 +00:00
|
|
|
||
|
|
|
|
!chk_expr(expp->nd_right)
|
|
|
|
||
|
|
|
|
expp->nd_left->nd_type == error_type
|
|
|
|
) return 0;
|
|
|
|
|
|
|
|
tpr = expp->nd_right->nd_type;
|
|
|
|
tpl = expp->nd_left->nd_type;
|
1986-04-08 18:15:46 +00:00
|
|
|
|
1986-04-23 22:12:22 +00:00
|
|
|
if (tpl->tp_fund != T_ARRAY) {
|
|
|
|
node_error(expp,
|
|
|
|
"array index not belonging to an ARRAY");
|
|
|
|
return 0;
|
1986-04-08 18:15:46 +00:00
|
|
|
}
|
1986-04-23 22:12:22 +00:00
|
|
|
|
|
|
|
/* Type of the index must be assignment compatible with
|
|
|
|
the index type of the array (Def 8.1)
|
|
|
|
*/
|
|
|
|
if ((tpl->next && !TstAssCompat(tpl->next, tpr)) ||
|
|
|
|
(!tpl->next && !TstAssCompat(intorcard_type, tpr))) {
|
|
|
|
node_error(expp, "incompatible index type");
|
|
|
|
return 0;
|
1986-04-08 18:15:46 +00:00
|
|
|
}
|
1986-04-23 22:12:22 +00:00
|
|
|
|
|
|
|
expp->nd_type = tpl->arr_elem;
|
|
|
|
return 1;
|
1986-04-08 18:15:46 +00:00
|
|
|
}
|
1986-04-23 22:12:22 +00:00
|
|
|
|
|
|
|
if (expp->nd_class == Uoper) {
|
|
|
|
assert(expp->nd_symb == '^');
|
|
|
|
|
1986-04-25 10:14:08 +00:00
|
|
|
if (! chk_designator(expp->nd_right, DESIGNATOR|VARIABLE)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1986-04-23 22:12:22 +00:00
|
|
|
if (expp->nd_right->nd_type->tp_fund != T_POINTER) {
|
|
|
|
node_error(expp, "illegal operand for unary operator \"%s\"",
|
|
|
|
symbol2str(expp->nd_symb));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
expp->nd_type = expp->nd_right->nd_type->next;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
node_error(expp, "designator expected");
|
|
|
|
return 0;
|
1986-04-08 18:15:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1986-04-10 01:08:49 +00:00
|
|
|
chk_oper(expp)
|
1986-04-08 18:15:46 +00:00
|
|
|
register struct node *expp;
|
|
|
|
{
|
1986-04-10 01:08:49 +00:00
|
|
|
/* Check a binary operation.
|
1986-04-08 18:15:46 +00:00
|
|
|
*/
|
1986-04-23 22:12:22 +00:00
|
|
|
register struct node *left = expp->nd_left;
|
|
|
|
register struct node *right = expp->nd_right;
|
|
|
|
struct type *tpl = left->nd_type;
|
|
|
|
struct type *tpr = right->nd_type;
|
1986-04-08 18:15:46 +00:00
|
|
|
int errval = 1;
|
|
|
|
|
|
|
|
if (tpl == intorcard_type) {
|
|
|
|
if (tpr == int_type || tpr == card_type) {
|
1986-04-23 22:12:22 +00:00
|
|
|
left->nd_type = tpl = tpr;
|
1986-04-08 18:15:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (tpr == intorcard_type) {
|
|
|
|
if (tpl == int_type || tpl == card_type) {
|
1986-04-23 22:12:22 +00:00
|
|
|
right->nd_type = tpr = tpl;
|
1986-04-08 18:15:46 +00:00
|
|
|
}
|
|
|
|
}
|
1986-04-09 18:14:49 +00:00
|
|
|
expp->nd_type = error_type;
|
1986-04-08 18:15:46 +00:00
|
|
|
|
|
|
|
if (expp->nd_symb == IN) {
|
|
|
|
/* Handle this one specially */
|
1986-04-09 18:14:49 +00:00
|
|
|
expp->nd_type = bool_type;
|
1986-04-10 01:08:49 +00:00
|
|
|
if (tpr->tp_fund != T_SET) {
|
1986-04-08 18:15:46 +00:00
|
|
|
node_error(expp, "RHS of IN operator not a SET type");
|
|
|
|
return 0;
|
|
|
|
}
|
1986-04-23 22:12:22 +00:00
|
|
|
if (!TstAssCompat(tpl, tpr->next)) {
|
|
|
|
/* Assignment compatible ???
|
|
|
|
I don't know! Should we be allowed th check
|
|
|
|
if a CARDINAL is a member of a BITSET???
|
|
|
|
*/
|
|
|
|
|
1986-04-08 18:15:46 +00:00
|
|
|
node_error(expp, "IN operator: type of LHS not compatible with element type of RHS");
|
|
|
|
return 0;
|
|
|
|
}
|
1986-04-23 22:12:22 +00:00
|
|
|
if (left->nd_class == Value && right->nd_class == Set) {
|
1986-04-11 11:57:19 +00:00
|
|
|
cstset(expp);
|
|
|
|
}
|
1986-04-08 18:15:46 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
1986-04-10 01:08:49 +00:00
|
|
|
if (tpl->tp_fund == T_SUBRANGE) tpl = tpl->next;
|
1986-04-08 18:15:46 +00:00
|
|
|
expp->nd_type = tpl;
|
|
|
|
|
1986-04-23 22:12:22 +00:00
|
|
|
/* Operands must be compatible (distilled from Def 8.2)
|
|
|
|
*/
|
1986-04-08 18:15:46 +00:00
|
|
|
if (!TstCompat(tpl, tpr)) {
|
1986-04-23 22:12:22 +00:00
|
|
|
node_error(expp, "incompatible types for operator \"%s\"",
|
|
|
|
symbol2str(expp->nd_symb));
|
1986-04-08 18:15:46 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(expp->nd_symb) {
|
|
|
|
case '+':
|
|
|
|
case '-':
|
|
|
|
case '*':
|
|
|
|
switch(tpl->tp_fund) {
|
1986-04-10 01:08:49 +00:00
|
|
|
case T_INTEGER:
|
|
|
|
case T_CARDINAL:
|
1986-04-11 11:57:19 +00:00
|
|
|
case T_INTORCARD:
|
1986-04-23 22:12:22 +00:00
|
|
|
if (left->nd_class==Value && right->nd_class==Value) {
|
1986-04-08 18:15:46 +00:00
|
|
|
cstbin(expp);
|
|
|
|
}
|
|
|
|
return 1;
|
1986-04-18 17:53:47 +00:00
|
|
|
|
1986-04-11 11:57:19 +00:00
|
|
|
case T_SET:
|
1986-04-23 22:12:22 +00:00
|
|
|
if (left->nd_class == Set && right->nd_class == Set) {
|
1986-04-11 11:57:19 +00:00
|
|
|
cstset(expp);
|
|
|
|
}
|
|
|
|
/* Fall through */
|
1986-04-18 17:53:47 +00:00
|
|
|
|
1986-04-10 01:08:49 +00:00
|
|
|
case T_REAL:
|
1986-04-08 18:15:46 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
break;
|
1986-04-18 17:53:47 +00:00
|
|
|
|
1986-04-08 18:15:46 +00:00
|
|
|
case '/':
|
|
|
|
switch(tpl->tp_fund) {
|
1986-04-10 01:08:49 +00:00
|
|
|
case T_SET:
|
1986-04-23 22:12:22 +00:00
|
|
|
if (left->nd_class == Set && right->nd_class == Set) {
|
1986-04-11 11:57:19 +00:00
|
|
|
cstset(expp);
|
1986-04-08 18:15:46 +00:00
|
|
|
}
|
1986-04-11 11:57:19 +00:00
|
|
|
/* Fall through */
|
1986-04-18 17:53:47 +00:00
|
|
|
|
1986-04-10 01:08:49 +00:00
|
|
|
case T_REAL:
|
1986-04-08 18:15:46 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
break;
|
1986-04-18 17:53:47 +00:00
|
|
|
|
1986-04-08 18:15:46 +00:00
|
|
|
case DIV:
|
|
|
|
case MOD:
|
1986-04-11 11:57:19 +00:00
|
|
|
if (tpl->tp_fund & T_INTORCARD) {
|
1986-04-23 22:12:22 +00:00
|
|
|
if (left->nd_class==Value && right->nd_class==Value) {
|
1986-04-08 18:15:46 +00:00
|
|
|
cstbin(expp);
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
break;
|
1986-04-18 17:53:47 +00:00
|
|
|
|
1986-04-08 18:15:46 +00:00
|
|
|
case OR:
|
|
|
|
case AND:
|
1986-04-22 22:36:16 +00:00
|
|
|
case '&':
|
1986-04-08 18:15:46 +00:00
|
|
|
if (tpl == bool_type) {
|
1986-04-23 22:12:22 +00:00
|
|
|
if (left->nd_class==Value && right->nd_class==Value) {
|
1986-04-08 18:15:46 +00:00
|
|
|
cstbin(expp);
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
errval = 3;
|
|
|
|
break;
|
1986-04-18 17:53:47 +00:00
|
|
|
|
1986-04-08 18:15:46 +00:00
|
|
|
case '=':
|
|
|
|
case '#':
|
1986-04-22 22:36:16 +00:00
|
|
|
case UNEQUAL:
|
1986-04-08 18:15:46 +00:00
|
|
|
case GREATEREQUAL:
|
|
|
|
case LESSEQUAL:
|
|
|
|
case '<':
|
|
|
|
case '>':
|
1986-04-22 22:36:16 +00:00
|
|
|
expp->nd_type = bool_type;
|
1986-04-08 18:15:46 +00:00
|
|
|
switch(tpl->tp_fund) {
|
1986-04-10 01:08:49 +00:00
|
|
|
case T_SET:
|
1986-04-08 18:15:46 +00:00
|
|
|
if (expp->nd_symb == '<' || expp->nd_symb == '>') {
|
|
|
|
break;
|
|
|
|
}
|
1986-04-23 22:12:22 +00:00
|
|
|
if (left->nd_class == Set && right->nd_class == Set) {
|
1986-04-11 11:57:19 +00:00
|
|
|
cstset(expp);
|
1986-04-10 01:08:49 +00:00
|
|
|
}
|
|
|
|
return 1;
|
1986-04-18 17:53:47 +00:00
|
|
|
|
1986-04-10 01:08:49 +00:00
|
|
|
case T_INTEGER:
|
|
|
|
case T_CARDINAL:
|
|
|
|
case T_ENUMERATION: /* includes boolean */
|
|
|
|
case T_CHAR:
|
1986-04-11 11:57:19 +00:00
|
|
|
case T_INTORCARD:
|
1986-04-23 22:12:22 +00:00
|
|
|
if (left->nd_class==Value && right->nd_class==Value) {
|
1986-04-08 18:15:46 +00:00
|
|
|
cstbin(expp);
|
|
|
|
}
|
|
|
|
return 1;
|
1986-04-18 17:53:47 +00:00
|
|
|
|
1986-04-10 01:08:49 +00:00
|
|
|
case T_POINTER:
|
1986-04-22 22:36:16 +00:00
|
|
|
if (expp->nd_symb == '=' ||
|
|
|
|
expp->nd_symb == UNEQUAL ||
|
|
|
|
expp->nd_symb == '#') return 1;
|
|
|
|
break;
|
1986-04-18 17:53:47 +00:00
|
|
|
|
1986-04-10 01:08:49 +00:00
|
|
|
case T_REAL:
|
1986-04-08 18:15:46 +00:00
|
|
|
return 1;
|
|
|
|
}
|
1986-04-18 17:53:47 +00:00
|
|
|
|
1986-04-08 18:15:46 +00:00
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
switch(errval) {
|
|
|
|
case 1:
|
1986-04-18 17:53:47 +00:00
|
|
|
node_error(expp,"operator \"%s\": illegal operand type(s)", symbol2str(expp->nd_symb));
|
1986-04-08 18:15:46 +00:00
|
|
|
break;
|
1986-04-18 17:53:47 +00:00
|
|
|
|
1986-04-08 18:15:46 +00:00
|
|
|
case 3:
|
|
|
|
node_error(expp, "BOOLEAN type(s) expected");
|
|
|
|
break;
|
1986-04-18 17:53:47 +00:00
|
|
|
|
1986-04-10 01:08:49 +00:00
|
|
|
default:
|
|
|
|
assert(0);
|
1986-04-08 18:15:46 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1986-04-10 01:08:49 +00:00
|
|
|
chk_uoper(expp)
|
1986-04-08 18:15:46 +00:00
|
|
|
register struct node *expp;
|
|
|
|
{
|
1986-04-10 01:08:49 +00:00
|
|
|
/* Check an unary operation.
|
1986-04-08 18:15:46 +00:00
|
|
|
*/
|
|
|
|
register struct type *tpr = expp->nd_right->nd_type;
|
|
|
|
|
1986-04-10 01:08:49 +00:00
|
|
|
if (tpr->tp_fund == T_SUBRANGE) tpr = tpr->next;
|
1986-04-08 18:15:46 +00:00
|
|
|
expp->nd_type = tpr;
|
|
|
|
|
|
|
|
switch(expp->nd_symb) {
|
|
|
|
case '+':
|
1986-04-11 11:57:19 +00:00
|
|
|
if (tpr->tp_fund & T_NUMERIC) {
|
1986-04-08 18:15:46 +00:00
|
|
|
expp->nd_token = expp->nd_right->nd_token;
|
|
|
|
FreeNode(expp->nd_right);
|
|
|
|
expp->nd_right = 0;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
break;
|
1986-04-18 17:53:47 +00:00
|
|
|
|
1986-04-08 18:15:46 +00:00
|
|
|
case '-':
|
1986-04-11 11:57:19 +00:00
|
|
|
if (tpr->tp_fund & T_INTORCARD) {
|
1986-04-08 18:15:46 +00:00
|
|
|
if (expp->nd_right->nd_class == Value) {
|
|
|
|
cstunary(expp);
|
|
|
|
}
|
|
|
|
return 1;
|
1986-04-11 11:57:19 +00:00
|
|
|
}
|
|
|
|
else if (tpr->tp_fund == T_REAL) {
|
1986-04-08 18:15:46 +00:00
|
|
|
if (expp->nd_right->nd_class == Value) {
|
|
|
|
expp->nd_token = expp->nd_right->nd_token;
|
|
|
|
if (*(expp->nd_REL) == '-') {
|
|
|
|
expp->nd_REL++;
|
|
|
|
}
|
|
|
|
else expp->nd_REL--;
|
|
|
|
FreeNode(expp->nd_right);
|
|
|
|
expp->nd_right = 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
break;
|
1986-04-18 17:53:47 +00:00
|
|
|
|
1986-04-08 18:15:46 +00:00
|
|
|
case NOT:
|
1986-04-22 22:36:16 +00:00
|
|
|
case '~':
|
1986-04-08 18:15:46 +00:00
|
|
|
if (tpr == bool_type) {
|
|
|
|
if (expp->nd_right->nd_class == Value) {
|
|
|
|
cstunary(expp);
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
break;
|
1986-04-18 17:53:47 +00:00
|
|
|
|
1986-04-08 18:15:46 +00:00
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
}
|
1986-04-11 11:57:19 +00:00
|
|
|
node_error(expp, "illegal operand for unary operator \"%s\"",
|
1986-04-08 18:15:46 +00:00
|
|
|
symbol2str(expp->nd_symb));
|
|
|
|
return 0;
|
|
|
|
}
|
1986-04-23 22:12:22 +00:00
|
|
|
|
|
|
|
struct node *
|
|
|
|
getvariable(arg)
|
|
|
|
register struct node *arg;
|
|
|
|
{
|
|
|
|
arg = arg->nd_right;
|
|
|
|
if (!arg) {
|
|
|
|
node_error(arg, "too few parameters supplied");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! chk_designator(arg->nd_left, DESIGNATOR)) return 0;
|
|
|
|
if (arg->nd_left->nd_class == Oper || arg->nd_left->nd_class == Uoper) {
|
|
|
|
return arg;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (arg->nd_left->nd_class != Def ||
|
|
|
|
!(arg->nd_left->nd_def->df_kind & (D_VARIABLE|D_FIELD))) {
|
|
|
|
node_error(arg, "variable expected");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return arg;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
chk_std(expp, left, arg)
|
|
|
|
register struct node *expp, *left, *arg;
|
|
|
|
{
|
|
|
|
/* Check a call of a standard procedure or function
|
|
|
|
*/
|
|
|
|
|
|
|
|
assert(left->nd_class == Def);
|
|
|
|
DO_DEBUG(3, debug("standard name \"%s\", %d",
|
|
|
|
left->nd_def->df_idf->id_text, left->nd_def->df_value.df_stdname));
|
|
|
|
|
|
|
|
switch(left->nd_def->df_value.df_stdname) {
|
|
|
|
case S_ABS:
|
|
|
|
if (!(arg = getarg(arg, T_NUMERIC))) return 0;
|
|
|
|
left = arg->nd_left;
|
|
|
|
expp->nd_type = left->nd_type;
|
|
|
|
if (left->nd_class == Value) cstcall(expp, S_ABS);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case S_CAP:
|
|
|
|
expp->nd_type = char_type;
|
|
|
|
if (!(arg = getarg(arg, T_CHAR))) return 0;
|
|
|
|
left = arg->nd_left;
|
|
|
|
if (left->nd_class == Value) cstcall(expp, S_CAP);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case S_CHR:
|
|
|
|
expp->nd_type = char_type;
|
|
|
|
if (!(arg = getarg(arg, T_INTORCARD))) return 0;
|
|
|
|
left = arg->nd_left;
|
|
|
|
if (left->nd_class == Value) cstcall(expp, S_CHR);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case S_FLOAT:
|
|
|
|
expp->nd_type = real_type;
|
|
|
|
if (!(arg = getarg(arg, T_INTORCARD))) return 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case S_HIGH:
|
|
|
|
if (!(arg = getarg(arg, T_ARRAY))) return 0;
|
|
|
|
expp->nd_type = arg->nd_left->nd_type->next;
|
|
|
|
if (!expp->nd_type) {
|
|
|
|
/* A dynamic array has no explicit index type
|
|
|
|
*/
|
|
|
|
expp->nd_type = intorcard_type;
|
|
|
|
}
|
|
|
|
else cstcall(expp, S_MAX);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case S_MAX:
|
|
|
|
case S_MIN:
|
|
|
|
if (!(arg = getarg(arg, T_DISCRETE))) return 0;
|
|
|
|
expp->nd_type = arg->nd_left->nd_type;
|
|
|
|
cstcall(expp,left->nd_def->df_value.df_stdname);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case S_ODD:
|
|
|
|
if (!(arg = getarg(arg, T_INTORCARD))) return 0;
|
|
|
|
expp->nd_type = bool_type;
|
|
|
|
if (arg->nd_left->nd_class == Value) cstcall(expp, S_ODD);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case S_ORD:
|
|
|
|
if (!(arg = getarg(arg, T_DISCRETE))) return 0;
|
|
|
|
expp->nd_type = card_type;
|
|
|
|
if (arg->nd_left->nd_class == Value) cstcall(expp, S_ORD);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case S_TSIZE: /* ??? */
|
|
|
|
case S_SIZE:
|
|
|
|
expp->nd_type = intorcard_type;
|
|
|
|
arg = getname(arg, D_FIELD|D_VARIABLE|D_TYPE|D_HIDDEN|D_HTYPE);
|
|
|
|
if (!arg) return 0;
|
|
|
|
cstcall(expp, S_SIZE);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case S_TRUNC:
|
|
|
|
expp->nd_type = card_type;
|
|
|
|
if (!(arg = getarg(arg, T_REAL))) return 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case S_VAL:
|
|
|
|
{
|
|
|
|
struct type *tp;
|
|
|
|
|
|
|
|
if (!(arg = getname(arg, D_HIDDEN|D_HTYPE|D_TYPE))) return 0;
|
|
|
|
tp = arg->nd_left->nd_def->df_type;
|
|
|
|
if (tp->tp_fund == T_SUBRANGE) tp = tp->next;
|
|
|
|
if (!(tp->tp_fund & T_DISCRETE)) {
|
|
|
|
node_error(arg, "unexpected type");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
expp->nd_type = arg->nd_left->nd_def->df_type;
|
|
|
|
expp->nd_right = arg->nd_right;
|
|
|
|
arg->nd_right = 0;
|
|
|
|
FreeNode(arg);
|
|
|
|
arg = getarg(expp, T_INTORCARD);
|
|
|
|
if (!arg) return 0;
|
|
|
|
if (arg->nd_left->nd_class == Value) cstcall(expp, S_VAL);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case S_ADR:
|
|
|
|
expp->nd_type = address_type;
|
|
|
|
if (!(arg = getarg(arg, D_VARIABLE|D_FIELD))) return 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case S_DEC:
|
|
|
|
case S_INC:
|
|
|
|
expp->nd_type = 0;
|
|
|
|
if (!(arg = getvariable(arg))) return 0;
|
|
|
|
if (arg->nd_right) {
|
|
|
|
if (!(arg = getarg(arg, T_INTORCARD))) return 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case S_HALT:
|
|
|
|
expp->nd_type = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case S_EXCL:
|
|
|
|
case S_INCL:
|
|
|
|
{
|
|
|
|
struct type *tp;
|
|
|
|
|
|
|
|
expp->nd_type = 0;
|
|
|
|
if (!(arg = getvariable(arg))) return 0;
|
|
|
|
tp = arg->nd_left->nd_type;
|
|
|
|
if (tp->tp_fund != T_SET) {
|
|
|
|
node_error(arg, "EXCL and INCL expect a SET parameter");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (!(arg = getarg(arg, T_DISCRETE))) return 0;
|
|
|
|
if (!TstCompat(tp->next, arg->nd_left->nd_type)) {
|
|
|
|
node_error(arg, "unexpected type");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (arg->nd_right) {
|
|
|
|
node_error(arg->nd_right, "too many parameters supplied");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|