ack/lang/m2/comp/declar.g

543 lines
11 KiB
Plaintext
Raw Normal View History

1986-03-26 15:11:02 +00:00
/* D E C L A R A T I O N S */
1986-03-20 14:52:03 +00:00
1986-03-26 15:11:02 +00:00
{
1986-05-01 19:06:53 +00:00
#ifndef NORCSID
1986-03-20 14:52:03 +00:00
static char *RcsId = "$Header$";
1986-05-01 19:06:53 +00:00
#endif
#include "debug.h"
1986-03-20 14:52:03 +00:00
1986-03-26 15:11:02 +00:00
#include <em_arith.h>
#include <em_label.h>
1986-04-08 18:15:46 +00:00
#include <alloc.h>
1986-03-26 22:46:48 +00:00
#include <assert.h>
1986-04-22 22:36:16 +00:00
1986-03-26 15:11:02 +00:00
#include "idf.h"
#include "LLlex.h"
#include "def.h"
#include "type.h"
#include "scope.h"
1986-04-06 17:42:56 +00:00
#include "node.h"
#include "misc.h"
1986-04-18 17:53:47 +00:00
#include "main.h"
1986-06-26 09:39:36 +00:00
#include "chk_expr.h"
1986-04-15 17:51:53 +00:00
1986-06-20 14:36:49 +00:00
int proclevel = 0; /* nesting level of procedures */
int return_occurred; /* set if a return occurred in a
procedure or function
*/
1986-03-26 15:11:02 +00:00
}
1986-03-20 14:52:03 +00:00
1986-03-26 15:11:02 +00:00
ProcedureDeclaration
{
1986-06-20 14:36:49 +00:00
register struct def *df;
struct def *df1;
1986-03-26 15:11:02 +00:00
} :
1986-07-08 14:59:02 +00:00
{ ++proclevel;
return_occurred = 0;
}
1986-06-20 14:36:49 +00:00
ProcedureHeading(&df1, D_PROCEDURE)
1986-07-08 14:59:02 +00:00
{ CurrentScope->sc_definedby = df = df1;
1986-05-30 18:48:00 +00:00
df->prc_vis = CurrVis;
1986-04-15 17:51:53 +00:00
}
1986-04-17 09:28:09 +00:00
';' block(&(df->prc_body)) IDENT
1986-07-08 14:59:02 +00:00
{ match_id(dot.TOK_IDF, df->df_idf);
1986-04-22 22:36:16 +00:00
close_scope(SC_CHKFORW|SC_REVERSE);
1986-06-20 14:36:49 +00:00
if (! return_occurred && ResultType(df->df_type)) {
1986-07-08 14:59:02 +00:00
error("function procedure %s does not return a value", df->df_idf->id_text);
1986-06-20 14:36:49 +00:00
}
1986-07-08 14:59:02 +00:00
--proclevel;
1986-03-26 15:11:02 +00:00
}
;
1986-03-26 22:46:48 +00:00
ProcedureHeading(struct def **pdf; int type;)
1986-03-26 15:11:02 +00:00
{
1986-03-27 17:37:41 +00:00
struct paramlist *params = 0;
1986-06-26 09:39:36 +00:00
struct type *tp = 0;
1986-04-04 13:47:04 +00:00
register struct def *df;
1986-06-26 09:39:36 +00:00
arith NBytesParams;
1986-03-26 15:11:02 +00:00
} :
PROCEDURE IDENT
1986-07-08 14:59:02 +00:00
{ df = DeclProc(type);
if (proclevel > 1) { /* need room for static link */
1986-06-26 09:39:36 +00:00
NBytesParams = pointer_size;
1986-05-14 09:03:51 +00:00
}
1986-06-26 09:39:36 +00:00
else NBytesParams = 0;
1986-04-15 17:51:53 +00:00
}
1986-06-26 09:39:36 +00:00
FormalParameters(&params, &tp, &NBytesParams)?
1986-07-08 14:59:02 +00:00
{ tp = construct_type(T_PROCEDURE, tp);
1986-04-15 17:51:53 +00:00
tp->prc_params = params;
1986-06-26 09:39:36 +00:00
tp->prc_nbpar = NBytesParams;
1986-04-22 22:36:16 +00:00
if (df->df_type) {
/* We already saw a definition of this type
in the definition module.
*/
1986-04-22 23:22:19 +00:00
if (!TstProcEquiv(tp, df->df_type)) {
1986-04-04 13:47:04 +00:00
error("inconsistent procedure declaration for \"%s\"", df->df_idf->id_text);
1986-04-22 22:36:16 +00:00
}
FreeType(df->df_type);
1986-04-15 17:51:53 +00:00
}
1986-04-21 17:27:06 +00:00
df->df_type = tp;
1986-04-15 17:51:53 +00:00
*pdf = df;
}
1986-03-20 14:52:03 +00:00
;
1986-06-26 09:39:36 +00:00
block(struct node **pnd;) :
1986-04-17 09:28:09 +00:00
declaration*
[
BEGIN
StatementSequence(pnd)
|
{ *pnd = 0; }
]
END
1986-03-20 14:52:03 +00:00
;
declaration:
CONST [ ConstantDeclaration ';' ]*
|
TYPE [ TypeDeclaration ';' ]*
|
VAR [ VariableDeclaration ';' ]*
|
ProcedureDeclaration ';'
|
ModuleDeclaration ';'
;
1986-05-30 18:48:00 +00:00
FormalParameters(struct paramlist **pr;
1986-07-08 14:59:02 +00:00
struct type **ptp;
1986-04-15 17:51:53 +00:00
arith *parmaddr;)
1986-03-27 17:37:41 +00:00
{
struct def *df;
} :
'('
[
1986-05-30 18:48:00 +00:00
FPSection(pr, parmaddr)
1986-03-27 17:37:41 +00:00
[
1986-05-30 18:48:00 +00:00
';' FPSection(pr, parmaddr)
1986-03-27 17:37:41 +00:00
]*
]?
')'
1986-07-08 14:59:02 +00:00
[ ':' qualtype(ptp)
1986-03-26 15:11:02 +00:00
]?
1986-03-20 14:52:03 +00:00
;
1986-05-30 18:48:00 +00:00
FPSection(struct paramlist **ppr; arith *parmaddr;)
1986-03-20 14:52:03 +00:00
{
1986-04-06 17:42:56 +00:00
struct node *FPList;
1986-03-29 01:04:49 +00:00
struct type *tp;
1986-07-08 14:59:02 +00:00
int VARp;
1986-06-26 09:39:36 +00:00
struct paramlist *p = 0;
1986-03-20 14:52:03 +00:00
} :
1986-07-08 14:59:02 +00:00
var(&VARp) IdentList(&FPList) ':' FormalType(&p, 0)
1986-06-26 09:39:36 +00:00
{ EnterParamList(ppr, FPList, p->par_def->df_type,
VARp, parmaddr);
free_def(p->par_def);
free_paramlist(p);
}
1986-03-20 14:52:03 +00:00
;
1986-06-26 09:39:36 +00:00
FormalType(struct paramlist **ppr; int VARp;)
1986-03-27 17:37:41 +00:00
{
1986-06-26 09:39:36 +00:00
register struct def *df;
int ARRAYflag;
1986-06-04 09:01:48 +00:00
register struct type *tp;
1986-07-08 14:59:02 +00:00
struct type *tp1;
1986-06-26 09:39:36 +00:00
register struct paramlist *p = new_paramlist();
1986-06-04 09:01:48 +00:00
extern arith ArrayElSize();
1986-03-27 17:37:41 +00:00
} :
[ ARRAY OF { ARRAYflag = 1; }
1986-06-26 09:39:36 +00:00
| { ARRAYflag = 0; }
]
1986-07-08 14:59:02 +00:00
qualtype(&tp1)
{ if (ARRAYflag) {
1986-06-26 09:39:36 +00:00
tp = construct_type(T_ARRAY, NULLTYPE);
1986-07-08 14:59:02 +00:00
tp->arr_elem = tp1;
tp->arr_elsize = ArrayElSize(tp1);
1986-06-04 09:01:48 +00:00
tp->tp_align = lcm(word_align, pointer_align);
1986-04-21 17:27:06 +00:00
}
1986-07-08 14:59:02 +00:00
else tp = tp1;
1986-06-26 09:39:36 +00:00
p->next = *ppr;
*ppr = p;
p->par_def = df = new_def();
df->df_type = tp;
df->df_flags = VARp;
1986-04-21 17:27:06 +00:00
}
1986-03-20 14:52:03 +00:00
;
1986-03-26 15:11:02 +00:00
TypeDeclaration
{
1986-06-04 09:01:48 +00:00
register struct def *df;
1986-03-27 17:37:41 +00:00
struct type *tp;
1986-03-26 15:11:02 +00:00
}:
1986-07-08 14:59:02 +00:00
IDENT { df = define(dot.TOK_IDF,CurrentScope,D_TYPE); }
1986-03-27 17:37:41 +00:00
'=' type(&tp)
1986-07-08 14:59:02 +00:00
{ if (df->df_type && df->df_type->tp_fund == T_HIDDEN) {
1986-06-04 09:01:48 +00:00
if (tp->tp_fund != T_POINTER) {
1986-04-28 18:06:58 +00:00
error("opaque type \"%s\" is not a pointer type", df->df_idf->id_text);
1986-06-04 09:01:48 +00:00
}
1986-07-08 14:59:02 +00:00
/* Careful now ... we might have declarations
referring to the hidden type.
*/
1986-06-04 09:01:48 +00:00
*(df->df_type) = *tp;
free_type(tp);
}
1986-07-08 14:59:02 +00:00
else df->df_type = tp;
1986-04-02 17:34:21 +00:00
}
1986-03-20 14:52:03 +00:00
;
1986-03-27 17:37:41 +00:00
type(struct type **ptp;):
SimpleType(ptp)
1986-03-20 14:52:03 +00:00
|
1986-03-27 17:37:41 +00:00
ArrayType(ptp)
1986-03-20 14:52:03 +00:00
|
1986-03-27 17:37:41 +00:00
RecordType(ptp)
1986-03-20 14:52:03 +00:00
|
1986-03-27 17:37:41 +00:00
SetType(ptp)
1986-03-20 14:52:03 +00:00
|
1986-03-27 17:37:41 +00:00
PointerType(ptp)
1986-03-20 14:52:03 +00:00
|
1986-03-27 17:37:41 +00:00
ProcedureType(ptp)
1986-03-20 14:52:03 +00:00
;
1986-03-27 17:37:41 +00:00
SimpleType(struct type **ptp;)
{
1986-07-08 14:59:02 +00:00
struct type *tp;
1986-03-27 17:37:41 +00:00
} :
1986-07-08 14:59:02 +00:00
qualtype(ptp)
1986-03-20 14:52:03 +00:00
[
1986-03-29 01:04:49 +00:00
/* nothing */
1986-03-20 14:52:03 +00:00
|
1986-07-08 14:59:02 +00:00
SubrangeType(&tp)
1986-03-29 01:04:49 +00:00
/* The subrange type is given a base type by the
qualident (this is new modula-2).
*/
1986-07-08 14:59:02 +00:00
{ chk_basesubrange(tp, *ptp); }
1986-03-20 14:52:03 +00:00
]
|
1986-03-27 17:37:41 +00:00
enumeration(ptp)
1986-03-20 14:52:03 +00:00
|
1986-03-27 17:37:41 +00:00
SubrangeType(ptp)
1986-03-20 14:52:03 +00:00
;
1986-03-27 17:37:41 +00:00
enumeration(struct type **ptp;)
1986-03-20 14:52:03 +00:00
{
1986-04-06 17:42:56 +00:00
struct node *EnumList;
1986-05-28 18:36:51 +00:00
register struct type *tp;
1986-03-20 14:52:03 +00:00
} :
'(' IdentList(&EnumList) ')'
1986-07-08 14:59:02 +00:00
{ *ptp = tp = standard_type(T_ENUMERATION, 1, (arith) 1);
1986-06-10 13:18:52 +00:00
EnterEnumList(EnumList, tp);
if (tp->enm_ncst > 256) { /* ??? is this reasonable ??? */
1986-05-28 18:36:51 +00:00
error("Too many enumeration literals");
1986-04-15 17:51:53 +00:00
}
1986-04-10 01:08:49 +00:00
}
1986-03-20 14:52:03 +00:00
;
1986-04-06 17:42:56 +00:00
IdentList(struct node **p;)
1986-03-20 14:52:03 +00:00
{
1986-04-06 17:42:56 +00:00
register struct node *q;
1986-03-20 14:52:03 +00:00
} :
1986-07-08 14:59:02 +00:00
IDENT { *p = q = MkLeaf(Value, &dot); }
1986-03-20 14:52:03 +00:00
[
1986-04-06 17:42:56 +00:00
',' IDENT
1986-06-04 09:01:48 +00:00
{ q->next = MkLeaf(Value, &dot);
1986-04-06 17:42:56 +00:00
q = q->next;
}
1986-03-20 14:52:03 +00:00
]*
1986-04-06 17:42:56 +00:00
{ q->next = 0; }
1986-03-20 14:52:03 +00:00
;
1986-03-27 17:37:41 +00:00
SubrangeType(struct type **ptp;)
{
1986-04-08 23:34:10 +00:00
struct node *nd1, *nd2;
1986-03-27 17:37:41 +00:00
}:
1986-03-20 14:52:03 +00:00
/*
This is not exactly the rule in the new report, but see
the rule for "SimpleType".
*/
1986-04-06 17:42:56 +00:00
'[' ConstExpression(&nd1)
UPTO ConstExpression(&nd2)
1986-03-27 17:37:41 +00:00
']'
1986-07-08 14:59:02 +00:00
{ *ptp = subr_type(nd1, nd2); }
1986-03-20 14:52:03 +00:00
;
1986-03-27 17:37:41 +00:00
ArrayType(struct type **ptp;)
{
struct type *tp;
register struct type *tp2;
} :
ARRAY SimpleType(&tp)
1986-07-08 14:59:02 +00:00
{ *ptp = tp2 = construct_type(T_ARRAY, tp); }
1986-03-27 17:37:41 +00:00
[
',' SimpleType(&tp)
1986-05-28 18:36:51 +00:00
{ tp2->arr_elem = construct_type(T_ARRAY, tp);
tp2 = tp2->arr_elem;
1986-03-27 17:37:41 +00:00
}
]* OF type(&tp)
1986-04-15 17:51:53 +00:00
{ tp2->arr_elem = tp;
ArraySizes(*ptp);
}
1986-03-20 14:52:03 +00:00
;
1986-03-27 17:37:41 +00:00
RecordType(struct type **ptp;)
{
1986-07-08 14:59:02 +00:00
register struct scope *scope;
1986-04-15 17:51:53 +00:00
arith count;
1986-04-17 09:28:09 +00:00
int xalign = struct_align;
1986-03-27 17:37:41 +00:00
}
:
RECORD
1986-07-08 14:59:02 +00:00
{ open_scope(OPENSCOPE);
scope = CurrentScope;
close_scope(0);
count = 0;
}
1986-04-15 17:51:53 +00:00
FieldListSequence(scope, &count, &xalign)
1986-07-08 14:59:02 +00:00
{ *ptp = standard_type(T_RECORD, xalign, WA(count));
1986-04-15 17:51:53 +00:00
(*ptp)->rec_scope = scope;
1986-04-10 01:08:49 +00:00
}
1986-03-27 17:37:41 +00:00
END
1986-03-20 14:52:03 +00:00
;
1986-04-15 17:51:53 +00:00
FieldListSequence(struct scope *scope; arith *cnt; int *palign;):
FieldList(scope, cnt, palign)
1986-03-27 17:37:41 +00:00
[
1986-04-15 17:51:53 +00:00
';' FieldList(scope, cnt, palign)
1986-03-27 17:37:41 +00:00
]*
1986-03-20 14:52:03 +00:00
;
1986-04-15 17:51:53 +00:00
FieldList(struct scope *scope; arith *cnt; int *palign;)
1986-03-20 14:52:03 +00:00
{
1986-04-06 17:42:56 +00:00
struct node *FldList;
1986-07-08 14:59:02 +00:00
register struct idf *id = gen_anon_idf();
register struct def *df;
1986-03-27 17:37:41 +00:00
struct type *tp;
1986-04-11 11:57:19 +00:00
struct node *nd;
1986-04-15 17:51:53 +00:00
arith tcnt, max;
1986-03-20 14:52:03 +00:00
} :
[
1986-03-27 17:37:41 +00:00
IdentList(&FldList) ':' type(&tp)
1986-04-15 17:51:53 +00:00
{ *palign = lcm(*palign, tp->tp_align);
1986-06-10 13:18:52 +00:00
EnterFieldList(FldList, tp, scope, cnt);
1986-04-04 13:47:04 +00:00
}
1986-03-20 14:52:03 +00:00
|
1986-03-27 17:37:41 +00:00
CASE
1986-04-11 11:57:19 +00:00
/* Also accept old fashioned Modula-2 syntax, but give a warning
*/
1986-07-08 14:59:02 +00:00
[ qualident(0, (struct def **) 0, (char *) 0, &nd)
[ ':' qualtype(&tp)
/* This is correct, in both kinds of Modula-2, if
1986-04-11 11:57:19 +00:00
the first qualident is a single identifier.
*/
1986-07-08 14:59:02 +00:00
{ if (nd->nd_class != Name) {
error("illegal variant tag");
}
else id = nd->nd_IDF;
}
1986-04-11 11:57:19 +00:00
|
/* Old fashioned! the first qualident now represents
the type
*/
1986-04-15 17:51:53 +00:00
{ warning("Old fashioned Modula-2 syntax!");
1986-06-26 09:39:36 +00:00
if (chk_designator(nd) &&
1986-04-23 22:12:22 +00:00
(nd->nd_class != Def ||
1986-07-08 14:59:02 +00:00
!(nd->nd_def->df_kind&(D_ERROR|D_ISTYPE)) ||
!nd->nd_def->df_type)) {
1986-04-23 22:12:22 +00:00
node_error(nd, "type expected");
1986-07-08 14:59:02 +00:00
tp = error_type;
1986-04-11 11:57:19 +00:00
}
1986-07-08 14:59:02 +00:00
else tp = nd->nd_def->df_type;
1986-04-11 11:57:19 +00:00
FreeNode(nd);
}
]
1986-03-27 17:37:41 +00:00
|
1986-07-08 14:59:02 +00:00
/* Aha, third edition. Well done! */
':' qualtype(&tp)
1986-04-11 11:57:19 +00:00
]
1986-07-08 14:59:02 +00:00
{ if (!(tp->tp_fund & T_DISCRETE)) {
1986-05-01 19:06:53 +00:00
error("Illegal type in variant");
}
1986-04-15 17:51:53 +00:00
df = define(id, scope, D_FIELD);
df->df_type = tp;
df->fld_off = align(*cnt, tp->tp_align);
*cnt = tcnt = df->fld_off + tp->tp_size;
1986-04-22 22:36:16 +00:00
df->df_flags |= D_QEXPORTED;
1986-03-27 17:37:41 +00:00
}
1986-04-15 17:51:53 +00:00
OF variant(scope, &tcnt, tp, palign)
{ max = tcnt; tcnt = *cnt; }
1986-03-27 17:37:41 +00:00
[
1986-04-15 17:51:53 +00:00
'|' variant(scope, &tcnt, tp, palign)
1986-04-21 17:27:06 +00:00
{ if (tcnt > max) max = tcnt; tcnt = *cnt; }
1986-03-27 17:37:41 +00:00
]*
1986-04-15 17:51:53 +00:00
[ ELSE FieldListSequence(scope, &tcnt, palign)
{ if (tcnt > max) max = tcnt; }
1986-03-27 17:37:41 +00:00
]?
1986-03-20 14:52:03 +00:00
END
1986-04-15 17:51:53 +00:00
{ *cnt = max; }
1986-03-20 14:52:03 +00:00
]?
;
1986-04-15 17:51:53 +00:00
variant(struct scope *scope; arith *cnt; struct type *tp; int *palign;)
{
struct type *tp1 = tp;
1986-04-17 09:28:09 +00:00
struct node *nd;
1986-04-15 17:51:53 +00:00
} :
[
1986-04-17 09:28:09 +00:00
CaseLabelList(&tp1, &nd)
{ /* Ignore the cases for the time being.
Maybe a checking version will be supplied
later ???
*/
FreeNode(nd);
}
':' FieldListSequence(scope, cnt, palign)
1986-04-15 17:51:53 +00:00
]?
1986-03-20 14:52:03 +00:00
/* Changed rule in new modula-2 */
;
1986-04-17 09:28:09 +00:00
CaseLabelList(struct type **ptp; struct node **pnd;):
CaseLabels(ptp, pnd)
[
{ *pnd = MkNode(Link, *pnd, NULLNODE, &dot); }
',' CaseLabels(ptp, &((*pnd)->nd_right))
{ pnd = &((*pnd)->nd_right); }
]*
1986-03-20 14:52:03 +00:00
;
1986-04-17 09:28:09 +00:00
CaseLabels(struct type **ptp; struct node **pnd;)
1986-04-06 17:42:56 +00:00
{
struct node *nd1, *nd2 = 0;
}:
1986-04-17 09:28:09 +00:00
ConstExpression(&nd1) { *pnd = nd1; }
1986-04-15 17:51:53 +00:00
[
1986-04-17 09:28:09 +00:00
UPTO { *pnd = MkNode(Link,nd1,NULLNODE,&dot); }
ConstExpression(&nd2)
1986-04-15 17:51:53 +00:00
{ if (!TstCompat(nd1->nd_type, nd2->nd_type)) {
node_error(nd2,"type incompatibility in case label");
1986-05-01 19:06:53 +00:00
nd1->nd_type = error_type;
1986-04-15 17:51:53 +00:00
}
1986-04-17 09:28:09 +00:00
(*pnd)->nd_right = nd2;
1986-04-15 17:51:53 +00:00
}
]?
{ if (*ptp != 0 &&
!TstCompat(*ptp, nd1->nd_type)) {
node_error(nd1,"type incompatibility in case label");
}
*ptp = nd1->nd_type;
}
1986-03-20 14:52:03 +00:00
;
1986-03-27 17:37:41 +00:00
SetType(struct type **ptp;)
{
} :
1986-07-08 14:59:02 +00:00
SET OF SimpleType(ptp)
{ *ptp = set_type(*ptp); }
1986-03-20 14:52:03 +00:00
;
1986-03-29 01:04:49 +00:00
/* In a pointer type definition, the type pointed at does not
have to be declared yet, so be careful about identifying
type-identifiers
*/
1986-03-27 17:37:41 +00:00
PointerType(struct type **ptp;)
{
1986-07-08 14:59:02 +00:00
register struct def *df;
register struct node *nd;
1986-03-27 17:37:41 +00:00
} :
POINTER TO
1986-07-08 14:59:02 +00:00
{ *ptp = construct_type(T_POINTER, NULLTYPE); }
[ %if ( lookup(dot.TOK_IDF, CurrentScope))
1986-03-29 01:04:49 +00:00
/* Either a Module or a Type, but in both cases defined
in this scope, so this is the correct identification
*/
1986-07-08 14:59:02 +00:00
qualtype(&((*ptp)->next))
1986-04-08 18:15:46 +00:00
| %if ( nd = new_node(), nd->nd_token = dot,
1986-04-28 18:06:58 +00:00
df = lookfor(nd, CurrVis, 0), free_node(nd),
1986-04-08 18:15:46 +00:00
df->df_kind == D_MODULE)
1986-07-08 14:59:02 +00:00
type(&((*ptp)->next))
1986-03-27 17:37:41 +00:00
|
1986-07-08 14:59:02 +00:00
IDENT { Forward(&dot, &((*ptp)->next)); }
1986-03-27 17:37:41 +00:00
]
1986-03-20 14:52:03 +00:00
;
1986-07-08 14:59:02 +00:00
qualtype(struct type **ptp;)
{
struct def *df;
} :
qualident(D_ISTYPE, &df, "type", (struct node **) 0)
{ if (!df->df_type) {
error("type \"%s\" not declared", df->df_idf->id_text);
*ptp = error_type;
}
else *ptp = df->df_type;
}
;
1986-03-29 01:04:49 +00:00
ProcedureType(struct type **ptp;)
{
struct paramlist *pr = 0;
1986-07-08 14:59:02 +00:00
register struct type *tp;
1986-03-29 01:04:49 +00:00
} :
1986-07-08 14:59:02 +00:00
{ *ptp = 0; }
PROCEDURE FormalTypeList(&pr, ptp)?
{ *ptp = tp = construct_type(T_PROCEDURE, *ptp);
tp->prc_params = pr;
1986-03-29 01:04:49 +00:00
}
1986-03-20 14:52:03 +00:00
;
1986-03-29 01:04:49 +00:00
FormalTypeList(struct paramlist **ppr; struct type **ptp;)
1986-03-27 17:37:41 +00:00
{
struct def *df;
1986-03-29 01:04:49 +00:00
int VARp;
1986-03-27 17:37:41 +00:00
} :
1986-03-29 01:04:49 +00:00
'(' { *ppr = 0; }
[
1986-07-08 14:59:02 +00:00
var(&VARp) FormalType(ppr, VARp)
1986-03-29 01:04:49 +00:00
[
1986-07-08 14:59:02 +00:00
',' var(&VARp) FormalType(ppr, VARp)
1986-03-29 01:04:49 +00:00
]*
]?
')'
1986-07-08 14:59:02 +00:00
[ ':' qualtype(ptp)
1986-03-27 17:37:41 +00:00
]?
1986-03-20 14:52:03 +00:00
;
1986-07-08 14:59:02 +00:00
var(int *VARp;):
VAR { *VARp = D_VARPAR; }
|
/* empty */ { *VARp = D_VALPAR; }
;
1986-03-26 15:11:02 +00:00
ConstantDeclaration
{
1986-03-26 22:46:48 +00:00
struct idf *id;
1986-04-06 17:42:56 +00:00
struct node *nd;
1986-03-26 15:11:02 +00:00
}:
1986-07-08 14:59:02 +00:00
IDENT { id = dot.TOK_IDF; }
'=' ConstExpression(&nd)
{ define(id,CurrentScope,D_CONST)->con_const = nd; }
1986-03-20 14:52:03 +00:00
;
VariableDeclaration
{
1986-04-06 17:42:56 +00:00
struct node *VarList;
1986-06-06 02:22:09 +00:00
register struct node *nd;
1986-03-27 17:37:41 +00:00
struct type *tp;
1986-03-20 14:52:03 +00:00
} :
1986-06-06 02:22:09 +00:00
IdentAddr(&VarList)
{ nd = VarList; }
[
',' IdentAddr(&(nd->nd_right))
{ nd = nd->nd_right; }
]*
1986-03-27 17:37:41 +00:00
':' type(&tp)
1986-06-10 13:18:52 +00:00
{ EnterVarList(VarList, tp, proclevel > 0); }
1986-03-20 14:52:03 +00:00
;
1986-04-15 17:51:53 +00:00
1986-06-06 02:22:09 +00:00
IdentAddr(struct node **pnd;) :
1986-06-04 09:01:48 +00:00
IDENT { *pnd = MkLeaf(Name, &dot); }
1986-06-06 02:22:09 +00:00
ConstExpression(&((*pnd)->nd_left))?
1986-04-15 17:51:53 +00:00
;