ack/lang/cem/cemcom/decspecs.c

112 lines
2.2 KiB
C
Raw Normal View History

/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
1986-03-10 13:07:55 +00:00
/* $Header$ */
/* D E C L A R A T I O N S P E C I F I E R C H E C K I N G */
#include "nofloat.h"
1988-09-16 23:19:50 +00:00
#include "assert.h"
1986-03-10 13:07:55 +00:00
#include "Lpars.h"
#include "decspecs.h"
#include "arith.h"
#include "type.h"
#include "level.h"
#include "def.h"
1987-03-25 23:14:43 +00:00
#include "noRoption.h"
1986-03-10 13:07:55 +00:00
extern char options[];
extern int level;
extern char *symbol2str();
struct decspecs null_decspecs;
do_decspecs(ds)
register struct decspecs *ds;
1986-03-10 13:07:55 +00:00
{
/* The provisional decspecs ds as obtained from the program
is turned into a legal consistent decspecs.
*/
register struct type *tp = ds->ds_type;
1986-03-10 13:07:55 +00:00
1988-09-16 23:19:50 +00:00
ASSERT(level != L_FORMAL1);
1986-03-10 13:07:55 +00:00
if ( level == L_GLOBAL &&
(ds->ds_sc == AUTO || ds->ds_sc == REGISTER)
) {
warning("no global %s variable allowed",
symbol2str(ds->ds_sc));
ds->ds_sc = GLOBAL;
}
if (level == L_FORMAL2) {
if (ds->ds_sc_given &&
1986-03-10 13:07:55 +00:00
ds->ds_sc != REGISTER){
error("%s formal illegal", symbol2str(ds->ds_sc));
ds->ds_sc = FORMAL;
1986-03-10 13:07:55 +00:00
}
}
/* The tests concerning types require a full knowledge of the
type and will have to be postponed to declare_idf.
*/
/* some adjustments as described in RM 8.2 */
if (tp == 0 && ds->ds_size == 0 && ds->ds_unsigned == 0) {
ds->ds_notypegiven = 1;
}
if (tp == 0) {
1986-03-10 13:07:55 +00:00
tp = int_type;
}
1986-03-10 13:07:55 +00:00
switch (ds->ds_size) {
case SHORT:
if (tp == int_type)
tp = short_type;
else
error("short with illegal type");
1986-03-10 13:07:55 +00:00
break;
case LONG:
if (tp == int_type)
tp = long_type;
else
#ifndef NOFLOAT
1986-03-10 13:07:55 +00:00
if (tp == float_type)
tp = double_type;
else
#endif NOFLOAT
error("long with illegal type");
1986-03-10 13:07:55 +00:00
break;
}
if (ds->ds_unsigned) {
switch (tp->tp_fund) {
case CHAR:
1987-03-25 23:14:43 +00:00
#ifndef NOROPTION
1986-03-10 13:07:55 +00:00
if (options['R'])
warning("unsigned char not allowed");
1987-03-25 23:14:43 +00:00
#endif
1986-03-10 13:07:55 +00:00
tp = uchar_type;
break;
case SHORT:
1987-03-25 23:14:43 +00:00
#ifndef NOROPTION
1986-03-10 13:07:55 +00:00
if (options['R'])
warning("unsigned short not allowed");
1987-03-25 23:14:43 +00:00
#endif
1986-03-10 13:07:55 +00:00
tp = ushort_type;
break;
case INT:
tp = uint_type;
break;
case LONG:
1987-03-25 23:14:43 +00:00
#ifndef NOROPTION
1986-03-10 13:07:55 +00:00
if (options['R'])
warning("unsigned long not allowed");
1987-03-25 23:14:43 +00:00
#endif
1986-03-10 13:07:55 +00:00
tp = ulong_type;
break;
default:
error("unsigned with illegal type");
break;
}
}
ds->ds_type = tp;
}