ack/lang/cem/cemcom/switch.c

210 lines
5.4 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$ */
/* S W I T C H - S T A T E M E N T A D M I N I S T R A T I O N */
#include "nofloat.h"
#include <em.h>
1986-03-10 13:07:55 +00:00
#include "debug.h"
#include "botch_free.h"
#include <alloc.h>
1986-03-10 13:07:55 +00:00
#include "density.h"
#include "Lpars.h"
1986-03-10 13:07:55 +00:00
#include "idf.h"
#include "label.h"
#include "arith.h"
#include "switch.h"
#include "code.h"
#include "assert.h"
#include "expr.h"
#include "type.h"
extern char options[];
1986-03-10 13:07:55 +00:00
#define compact(nr, low, up) (nr != 0 && (up - low) / nr <= (DENSITY - 1))
static struct switch_hdr *switch_stack = 0;
/* (EB 86.05.20) The following rules hold for switch statements:
- the expression E in "switch(E)" is cast to 'int' (RM 9.7)
- the expression E in "case E:" must be 'int' (RM 9.7)
- the values in the CSA/CSB tables are words (EM 7.4)
For simplicity, we suppose int_size == word_size.
*/
code_startswitch(expp)
struct expr **expp;
1986-03-10 13:07:55 +00:00
{
/* Check the expression, stack a new case header and
fill in the necessary fields.
1986-03-10 13:07:55 +00:00
*/
register label l_table = text_label();
register label l_break = text_label();
register struct switch_hdr *sh = new_switch_hdr();
int fund = any2arith(expp, SWITCH); /* INT, LONG or DOUBLE */
switch (fund) {
case LONG:
if (options['R'])
warning("long in switch (cast to int)");
int2int(expp, int_type);
break;
#ifndef NOFLOAT
case DOUBLE:
error("float/double in switch");
erroneous2int(expp);
break;
#endif NOFLOAT
}
stack_stmt(l_break, NO_LABEL);
1986-03-10 13:07:55 +00:00
sh->sh_break = l_break;
sh->sh_default = 0;
sh->sh_table = l_table;
sh->sh_nrofentries = 0;
sh->sh_type = (*expp)->ex_type; /* the expression switched */
sh->sh_lowerbd = sh->sh_upperbd = (arith)0; /* immaterial ??? */
1986-03-10 13:07:55 +00:00
sh->sh_entries = (struct case_entry *) 0; /* case-entry list */
sh->next = switch_stack; /* push onto switch-stack */
switch_stack = sh;
/* evaluate the switch expr. */
code_expr(*expp, RVAL, TRUE, NO_LABEL, NO_LABEL);
1986-03-10 13:07:55 +00:00
C_bra(l_table); /* goto start of switch_table */
}
code_endswitch()
{
register struct switch_hdr *sh = switch_stack;
register label tablabel;
register struct case_entry *ce;
1986-03-10 13:07:55 +00:00
if (sh->sh_default == 0) /* no default occurred yet */
sh->sh_default = sh->sh_break;
C_bra(sh->sh_break); /* skip the switch table now */
C_df_ilb(sh->sh_table); /* switch table entry */
1986-03-10 13:07:55 +00:00
tablabel = data_label(); /* the rom must have a label */
C_df_dlb(tablabel);
C_rom_ilb(sh->sh_default);
1986-03-10 13:07:55 +00:00
if (compact(sh->sh_nrofentries, sh->sh_lowerbd, sh->sh_upperbd)) {
/* CSA */
register arith val;
C_rom_cst(sh->sh_lowerbd);
C_rom_cst(sh->sh_upperbd - sh->sh_lowerbd);
1986-03-10 13:07:55 +00:00
ce = sh->sh_entries;
for (val = sh->sh_lowerbd; val <= sh->sh_upperbd; val++) {
ASSERT(ce);
if (val == ce->ce_value) {
C_rom_ilb(ce->ce_label);
1986-03-10 13:07:55 +00:00
ce = ce->next;
}
else
C_rom_ilb(sh->sh_default);
1986-03-10 13:07:55 +00:00
}
C_lae_dlb(tablabel, (arith)0); /* perform the switch */
1986-03-10 13:07:55 +00:00
C_csa(sh->sh_type->tp_size);
}
else { /* CSB */
C_rom_cst((arith)sh->sh_nrofentries);
for (ce = sh->sh_entries; ce; ce = ce->next) {
1986-03-10 13:07:55 +00:00
/* generate the entries: value + prog.label */
C_rom_cst(ce->ce_value);
C_rom_ilb(ce->ce_label);
1986-03-10 13:07:55 +00:00
}
C_lae_dlb(tablabel, (arith)0); /* perform the switch */
1986-03-10 13:07:55 +00:00
C_csb(sh->sh_type->tp_size);
}
C_df_ilb(sh->sh_break);
1986-03-10 13:07:55 +00:00
switch_stack = sh->next; /* unstack the switch descriptor */
for (ce = sh->sh_entries; ce;) { /* free allocated switch structure */
register struct case_entry *tmp = ce->next;
1986-03-10 13:07:55 +00:00
free_case_entry(ce);
ce = tmp;
1986-03-10 13:07:55 +00:00
}
free_switch_hdr(sh);
unstack_stmt();
1986-03-10 13:07:55 +00:00
}
code_case(expr)
struct expr *expr;
1986-03-10 13:07:55 +00:00
{
register arith val;
1986-03-10 13:07:55 +00:00
register struct case_entry *ce;
register struct switch_hdr *sh = switch_stack;
ASSERT(is_cp_cst(expr));
if (sh == 0) {
1986-03-10 13:07:55 +00:00
error("case statement not in switch");
return;
}
if (expr->ex_flags & EX_ERROR) /* is probably 0 anyway */
return;
ch7cast(&expr, SWITCH, sh->sh_type);
1986-03-10 13:07:55 +00:00
ce = new_case_entry();
C_df_ilb(ce->ce_label = text_label());
ce->ce_value = val = expr->VL_VALUE;
if (sh->sh_entries == 0) { /* first case entry */
1986-03-10 13:07:55 +00:00
ce->next = (struct case_entry *) 0;
sh->sh_entries = ce;
sh->sh_lowerbd = sh->sh_upperbd = val;
1986-03-10 13:07:55 +00:00
sh->sh_nrofentries = 1;
}
else { /* second etc. case entry; put ce into proper place */
1986-03-10 13:07:55 +00:00
register struct case_entry *c1 = sh->sh_entries, *c2 = 0;
if (val < sh->sh_lowerbd)
sh->sh_lowerbd = val;
else
if (val > sh->sh_upperbd)
sh->sh_upperbd = val;
while (c1 && c1->ce_value < ce->ce_value) {
1986-03-10 13:07:55 +00:00
c2 = c1;
c1 = c1->next;
}
/* At this point three cases are possible:
1: c1 != 0 && c2 != 0: insert ce somewhere in the middle
2: c1 != 0 && c2 == 0: insert ce right after the head
3: c1 == 0 && c2 != 0: append ce to last element
The case c1 == 0 && c2 == 0 cannot occur, since
the list is guaranteed to be non-empty.
1986-03-10 13:07:55 +00:00
*/
if (c1) {
if (c1->ce_value == ce->ce_value) {
1986-03-10 13:07:55 +00:00
error("multiple case entry for value %ld",
ce->ce_value);
free_case_entry(ce);
return;
}
if (c2) {
1986-03-10 13:07:55 +00:00
ce->next = c2->next;
c2->next = ce;
}
else {
1986-03-10 13:07:55 +00:00
ce->next = sh->sh_entries;
sh->sh_entries = ce;
}
}
else {
1986-03-10 13:07:55 +00:00
ASSERT(c2);
ce->next = (struct case_entry *) 0;
c2->next = ce;
}
(sh->sh_nrofentries)++;
}
}
code_default()
{
register struct switch_hdr *sh = switch_stack;
if (sh == 0)
1986-03-10 13:07:55 +00:00
error("default not in switch");
else
if (sh->sh_default != 0)
1986-03-10 13:07:55 +00:00
error("multiple entry for default in switch");
else
C_df_ilb(sh->sh_default = text_label());
1986-03-10 13:07:55 +00:00
}