ack/lang/cem/cemcom.ansi/label.c
David Given c1aca7dae5 First milestone of replacing the build system.
--HG--
branch : dtrg-buildsystem
rename : lang/cem/cpp.ansi/Parameters => lang/cem/cpp.ansi/parameters.h
2013-05-12 20:45:55 +01:00

56 lines
1.3 KiB
C

/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
/* $Id$ */
/* L A B E L H A N D L I N G */
#include "parameters.h"
#include "idf.h"
#include "Lpars.h"
#include "level.h"
#include "label.h"
#include "arith.h"
#include "def.h"
#include "type.h"
#include "stack.h"
extern char options[];
enter_label(idf, defining)
register struct idf *idf;
{
/* The identifier idf is entered as a label. If it is new,
it is entered into the idf list with the largest possible
scope, i.e., on the lowest possible level.
If defining, the label comes from a label statement.
*/
register struct def *def = idf->id_label;
if (def) {
if (defining && def->df_initialized)
error("redeclaration of label %s", idf->id_text);
}
else {
stack_idf(idf, stack_level_of(L_LOCAL));
def = new_def();
def->df_sc = LABEL;
idf->id_label = def;
def->df_file = idf->id_file;
def->df_line = idf->id_line;
}
if (def->df_address == 0)
def->df_address = (arith) text_label();
if (defining)
def->df_initialized = 1;
}
unstack_label(idf)
register struct idf *idf;
{
/* The scope in which the label idf occurred is left.
*/
if (!idf->id_label->df_initialized && !is_anon_idf(idf))
error("label %s not defined", idf->id_text);
}