ack/lang/m2/comp/casestat.C

319 lines
7.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".
*
* Author: Ceriel J.H. Jacobs
*/
1986-05-01 19:06:53 +00:00
/* C A S E S T A T E M E N T C O D E G E N E R A T I O N */
/* $Header$ */
1986-10-06 20:36:30 +00:00
/* Generation of case statements is done by first creating a
description structure for the statement, build a list of the
case-labels, then generating a case description in the code,
and generating either CSA or CSB, and then generating code for the
cases themselves.
*/
1986-05-01 19:06:53 +00:00
#include "debug.h"
#include <em_label.h>
#include <em_arith.h>
1986-07-08 14:59:02 +00:00
#include <em_code.h>
1986-05-01 19:06:53 +00:00
#include <alloc.h>
#include <assert.h>
#include "Lpars.h"
#include "type.h"
#include "LLlex.h"
#include "node.h"
1986-05-21 18:32:20 +00:00
#include "desig.h"
1986-06-20 14:36:49 +00:00
#include "walk.h"
1986-05-01 19:06:53 +00:00
#include "density.h"
struct switch_hdr {
1986-10-06 20:36:30 +00:00
struct switch_hdr *next; /* in the free list */
label sh_break; /* label of statement after this one */
label sh_default; /* label of ELSE part, or 0 */
int sh_nrofentries; /* number of cases */
struct type *sh_type; /* type of case expression */
arith sh_lowerbd; /* lowest case label */
arith sh_upperbd; /* highest case label */
struct case_entry *sh_entries; /* the cases with their generated
labels
*/
1986-05-01 19:06:53 +00:00
};
1986-10-06 20:36:30 +00:00
/* STATICALLOCDEF "switch_hdr" 5 */
1986-05-01 19:06:53 +00:00
struct case_entry {
1986-10-06 20:36:30 +00:00
struct case_entry *next; /* next in list */
label ce_label; /* generated label */
arith ce_value; /* value of case label */
1986-05-01 19:06:53 +00:00
};
1986-10-06 20:36:30 +00:00
/* STATICALLOCDEF "case_entry" 20 */
1986-05-01 19:06:53 +00:00
/* The constant DENSITY determines when CSA and when CSB instructions
are generated. Reasonable values are: 2, 3, 4.
On machines that have lots of address space and memory, higher values
1986-10-06 20:36:30 +00:00
might also be reasonable. On these machines the density of jump tables
1986-05-01 19:06:53 +00:00
may be lower.
*/
#define compact(nr, low, up) (nr != 0 && (up - low) / nr <= DENSITY)
CaseCode(nd, exitlabel)
struct node *nd;
label exitlabel;
{
/* Check the expression, stack a new case header and
fill in the necessary fields.
1986-10-06 20:36:30 +00:00
"exitlabel" is the exit-label of the closest enclosing
LOOP-statement, or 0.
1986-05-01 19:06:53 +00:00
*/
register struct switch_hdr *sh = new_switch_hdr();
register struct node *pnode = nd;
register struct case_entry *ce;
register arith val;
1986-10-06 20:36:30 +00:00
label CaseDescrLab;
1986-11-05 14:33:00 +00:00
int casecnt = 0;
1986-05-01 19:06:53 +00:00
1986-05-28 18:36:51 +00:00
assert(pnode->nd_class == Stat && pnode->nd_symb == CASE);
1986-05-01 19:06:53 +00:00
1986-10-06 20:36:30 +00:00
WalkExpr(pnode->nd_left); /* evaluate case expression */
1986-05-28 18:36:51 +00:00
sh->sh_type = pnode->nd_left->nd_type;
1986-06-20 14:36:49 +00:00
sh->sh_break = ++text_label;
1986-05-01 19:06:53 +00:00
/* Now, create case label list
*/
1986-10-06 20:36:30 +00:00
while (pnode->nd_right) {
1986-05-01 19:06:53 +00:00
pnode = pnode->nd_right;
if (pnode->nd_class == Link && pnode->nd_symb == '|') {
if (pnode->nd_left) {
1986-10-06 20:36:30 +00:00
/* non-empty case
*/
1986-06-20 14:36:49 +00:00
pnode->nd_lab = ++text_label;
1986-11-05 14:33:00 +00:00
casecnt++;
1986-10-06 20:36:30 +00:00
if (! AddCases(sh, /* to descriptor */
1986-05-01 19:06:53 +00:00
pnode->nd_left->nd_left,
1986-10-06 20:36:30 +00:00
/* of case labels */
pnode->nd_lab
/* and code label */
)) {
1986-05-01 19:06:53 +00:00
FreeSh(sh);
return;
}
}
}
else {
/* Else part
*/
1986-06-10 13:18:52 +00:00
1986-06-20 14:36:49 +00:00
sh->sh_default = ++text_label;
1986-10-06 20:36:30 +00:00
break;
1986-05-01 19:06:53 +00:00
}
}
1986-11-05 14:33:00 +00:00
if (!casecnt) {
/* There were no cases, so we have to check the case-expression
here
*/
if (! (sh->sh_type->tp_fund & T_DISCRETE)) {
node_error(nd, "illegal type in CASE-expression");
FreeSh(sh);
return;
}
}
1986-05-01 19:06:53 +00:00
/* Now generate code for the switch itself
1986-10-06 20:36:30 +00:00
First the part that CSA and CSB descriptions have in common.
1986-05-01 19:06:53 +00:00
*/
1986-10-06 20:36:30 +00:00
CaseDescrLab = ++data_label; /* the rom must have a label */
C_df_dlb(CaseDescrLab);
1986-05-01 19:06:53 +00:00
if (sh->sh_default) C_rom_ilb(sh->sh_default);
1986-06-20 14:36:49 +00:00
else C_rom_ucon("0", pointer_size);
1986-05-01 19:06:53 +00:00
if (compact(sh->sh_nrofentries, sh->sh_lowerbd, sh->sh_upperbd)) {
1986-10-06 20:36:30 +00:00
/* CSA
*/
1986-05-01 19:06:53 +00:00
C_rom_cst(sh->sh_lowerbd);
C_rom_cst(sh->sh_upperbd - sh->sh_lowerbd);
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);
ce = ce->next;
}
else if (sh->sh_default) C_rom_ilb(sh->sh_default);
1986-06-20 14:36:49 +00:00
else C_rom_ucon("0", pointer_size);
1986-05-01 19:06:53 +00:00
}
1986-10-06 20:36:30 +00:00
C_lae_dlb(CaseDescrLab, (arith)0); /* perform the switch */
1986-05-01 19:06:53 +00:00
C_csa(word_size);
}
1986-10-06 20:36:30 +00:00
else {
/* CSB
*/
1986-05-01 19:06:53 +00:00
C_rom_cst((arith)sh->sh_nrofentries);
for (ce = sh->sh_entries; ce; ce = ce->next) {
1986-10-06 20:36:30 +00:00
/* generate the entries: value + prog.label
*/
1986-05-01 19:06:53 +00:00
C_rom_cst(ce->ce_value);
C_rom_ilb(ce->ce_label);
}
1986-10-06 20:36:30 +00:00
C_lae_dlb(CaseDescrLab, (arith)0); /* perform the switch */
1986-05-01 19:06:53 +00:00
C_csb(word_size);
}
/* Now generate code for the cases
*/
pnode = nd;
1986-10-06 20:36:30 +00:00
while (pnode->nd_right) {
1986-05-01 19:06:53 +00:00
pnode = pnode->nd_right;
if (pnode->nd_class == Link && pnode->nd_symb == '|') {
if (pnode->nd_left) {
C_df_ilb(pnode->nd_lab);
WalkNode(pnode->nd_left->nd_right, exitlabel);
C_bra(sh->sh_break);
}
}
else {
/* Else part
*/
assert(sh->sh_default != 0);
C_df_ilb(sh->sh_default);
WalkNode(pnode, exitlabel);
1986-10-06 20:36:30 +00:00
break;
1986-05-01 19:06:53 +00:00
}
}
C_df_ilb(sh->sh_break);
FreeSh(sh);
}
FreeSh(sh)
1986-10-06 20:36:30 +00:00
register struct switch_hdr *sh;
1986-05-01 19:06:53 +00:00
{
/* free the allocated switch structure
*/
register struct case_entry *ce;
ce = sh->sh_entries;
while (ce) {
struct case_entry *tmp = ce->next;
free_case_entry(ce);
ce = tmp;
}
free_switch_hdr(sh);
}
AddCases(sh, node, lbl)
struct switch_hdr *sh;
1986-10-06 20:36:30 +00:00
register struct node *node;
1986-05-01 19:06:53 +00:00
label lbl;
{
/* Add case labels to the case label list
*/
register arith v1, v2;
if (node->nd_class == Link) {
if (node->nd_symb == UPTO) {
assert(node->nd_left->nd_class == Value);
assert(node->nd_right->nd_class == Value);
1986-05-28 18:36:51 +00:00
1986-05-01 19:06:53 +00:00
v2 = node->nd_right->nd_INT;
node->nd_type = node->nd_left->nd_type;
for (v1 = node->nd_left->nd_INT; v1 <= v2; v1++) {
node->nd_INT = v1;
if (! AddOneCase(sh, node, lbl)) return 0;
}
return 1;
}
assert(node->nd_symb == ',');
return AddCases(sh, node->nd_left, lbl) &&
AddCases(sh, node->nd_right, lbl);
}
assert(node->nd_class == Value);
return AddOneCase(sh, node, lbl);
}
AddOneCase(sh, node, lbl)
register struct switch_hdr *sh;
1986-10-06 20:36:30 +00:00
register struct node *node;
1986-05-01 19:06:53 +00:00
label lbl;
{
register struct case_entry *ce = new_case_entry();
register struct case_entry *c1 = sh->sh_entries, *c2 = 0;
ce->ce_label = lbl;
ce->ce_value = node->nd_INT;
if (! TstCompat(sh->sh_type, node->nd_type)) {
1986-11-05 14:33:00 +00:00
node_error(node, "type incompatibility in case");
1986-05-01 19:06:53 +00:00
free_case_entry(ce);
return 0;
}
if (sh->sh_entries == 0) {
1986-10-06 20:36:30 +00:00
/* first case entry
*/
1986-05-01 19:06:53 +00:00
ce->next = (struct case_entry *) 0;
sh->sh_entries = ce;
sh->sh_lowerbd = sh->sh_upperbd = ce->ce_value;
sh->sh_nrofentries = 1;
}
else {
1986-10-06 20:36:30 +00:00
/* second etc. case entry
find the proper place to put ce into the list
*/
1986-05-01 19:06:53 +00:00
1986-05-28 18:36:51 +00:00
if (ce->ce_value < sh->sh_lowerbd) {
sh->sh_lowerbd = ce->ce_value;
}
else if (ce->ce_value > sh->sh_upperbd) {
sh->sh_upperbd = ce->ce_value;
}
1986-05-01 19:06:53 +00:00
while (c1 && c1->ce_value < ce->ce_value) {
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 not to be empty.
*/
if (c1) {
if (c1->ce_value == ce->ce_value) {
1986-05-14 09:03:51 +00:00
node_error(node, "multiple case entry for value %ld", ce->ce_value);
1986-05-01 19:06:53 +00:00
free_case_entry(ce);
return 0;
}
if (c2) {
ce->next = c2->next;
c2->next = ce;
}
else {
ce->next = sh->sh_entries;
sh->sh_entries = ce;
}
}
else {
assert(c2);
ce->next = (struct case_entry *) 0;
c2->next = ce;
}
(sh->sh_nrofentries)++;
}
return 1;
}