ack/lang/cem/cemcom/declarator.c

113 lines
2.3 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 O R M A N I P U L A T I O N */
#include "botch_free.h"
#include <alloc.h>
1986-03-10 13:07:55 +00:00
#include "arith.h"
#include "type.h"
#include "Lpars.h"
1986-03-10 15:10:56 +00:00
#include "declar.h"
1986-03-10 13:07:55 +00:00
#include "idf.h"
#include "label.h"
#include "expr.h"
#include "sizes.h"
struct declarator null_declarator;
struct type *
declare_type(tp, dc)
struct type *tp;
struct declarator *dc;
{
/* Applies the decl_unary list starting at dc->dc_decl_unary
to the type tp and returns the result.
*/
register struct decl_unary *du = dc->dc_decl_unary;
while (du) {
tp = construct_type(du->du_fund, tp, du->du_count);
du = du->next;
}
return tp;
}
add_decl_unary(dc, fund, count, fm)
register struct declarator *dc;
1986-03-10 13:07:55 +00:00
arith count;
struct formal *fm;
1986-03-10 13:07:55 +00:00
{
/* A decl_unary describing a constructor with fundamental
type fund and with size count is inserted in front of the
declarator dc.
*/
register struct decl_unary *new = new_decl_unary();
new->next = dc->dc_decl_unary;
new->du_fund = fund;
new->du_count = count;
if (fm) {
1986-03-10 13:07:55 +00:00
if (dc->dc_decl_unary) {
/* paramlist only allowed at first decl_unary */
error("formal parameter list discarded");
}
else {
/* register the parameters */
dc->dc_formal = fm;
1986-03-10 13:07:55 +00:00
}
}
dc->dc_decl_unary = new;
}
remove_declarator(dc)
struct declarator *dc;
{
/* The decl_unary list starting at dc->dc_decl_unary is
removed.
*/
register struct decl_unary *du = dc->dc_decl_unary;
while (du) {
struct decl_unary *old_du = du;
du = du->next;
free_decl_unary(old_du);
}
}
reject_params(dc)
register struct declarator *dc;
1986-03-10 13:07:55 +00:00
{
/* The declarator is checked to have no parameters, if it
is a function.
*/
if (dc->dc_formal) {
1986-03-10 13:07:55 +00:00
error("non_empty formal parameter pack");
free_formals(dc->dc_formal);
dc->dc_formal = 0;
1986-03-10 13:07:55 +00:00
}
}
1986-09-28 20:33:15 +00:00
check_array_subscript(expr)
register struct expr *expr;
1986-03-10 13:07:55 +00:00
{
arith size = expr->VL_VALUE;
if (size < 0) {
1988-09-16 23:19:50 +00:00
error("array size is negative");
1986-03-10 13:07:55 +00:00
expr->VL_VALUE = (arith)1;
}
else
1986-04-28 09:56:33 +00:00
if (size == 0) {
1988-09-16 23:19:50 +00:00
warning("array size is 0");
1986-04-28 09:56:33 +00:00
}
else
1986-09-28 20:33:15 +00:00
if (size & ~max_unsigned) { /* absolutely ridiculous */
1986-03-10 13:07:55 +00:00
expr_error(expr, "overflow in array size");
expr->VL_VALUE = (arith)1;
}
}