ack/lang/pc/comp/LLmessage.c

74 lines
1.7 KiB
C
Raw Normal View History

1988-10-26 15:21:11 +00:00
/* S Y N T A X E R R O R R E P O R T I N G */
/* Defines the LLmessage routine. LLgen-generated parsers require the
existence of a routine of that name.
The routine must do syntax-error reporting and must be able to
insert tokens in the token stream.
*/
#include <alloc.h>
#include <em_arith.h>
#include <em_label.h>
#include "parameters.h"
1988-10-26 15:21:11 +00:00
#include "LLlex.h"
#include "Lpars.h"
#include "idf.h"
#include "node.h"
1988-10-26 15:21:11 +00:00
#include "type.h"
#include "misc.h"
#include "error.h"
1988-10-26 15:21:11 +00:00
1989-05-03 10:30:22 +00:00
extern int expect_label;
1988-10-26 15:21:11 +00:00
void LLmessage(register int tk)
1988-10-26 15:21:11 +00:00
{
if( tk > 0 ) {
/* if( tk > 0 ), it represents the token to be inserted.
*/
register struct token *dotp = &dot;
1989-11-17 11:44:48 +00:00
error("%s missing before %s", symbol2str(tk), symbol2str(dotp->tk_symb));
1988-10-26 15:21:11 +00:00
aside = *dotp;
asidetype = toktype;
dotp->tk_symb = tk;
switch( tk ) {
/* The operands need some body */
case IDENT:
dotp->TOK_IDF = gen_anon_idf();
break;
case STRING:
dotp->tk_data.tk_str = (struct string *)
Malloc(sizeof (struct string));
dotp->TOK_SLE = 1;
dotp->TOK_STR = Salloc("", 1);
1989-05-03 10:30:22 +00:00
toktype = standard_type(T_STRINGCONST, 1, (arith) 1);
1988-10-26 15:21:11 +00:00
break;
case INTEGER:
toktype = int_type;
1989-05-03 10:30:22 +00:00
if( !expect_label )
dotp->TOK_INT = 1;
else
dotp->TOK_INT = -1;
1988-10-26 15:21:11 +00:00
break;
case REAL:
dotp->tk_data.tk_real = (struct real *)
Malloc(sizeof(struct real));
/* inverse struct */
dotp->TOK_RIV = (struct real *)
Malloc(sizeof(struct real));
dotp->TOK_RIV->r_inverse = dotp->tk_data.tk_real;
dotp->TOK_REL = Salloc("0.0", 4);
dotp->TOK_RIV->r_real = dotp->TOK_REL;
1988-10-26 15:21:11 +00:00
toktype = real_type;
break;
}
}
else if( tk < 0 ) error("garbage at end of program");
else error("%s deleted", symbol2str(dot.tk_symb));
}