1989-02-07 11:04:05 +00:00
|
|
|
/*
|
|
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
|
|
*/
|
1994-06-27 08:03:14 +00:00
|
|
|
/* $Id$ */
|
1989-02-07 11:04:05 +00:00
|
|
|
/* 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 */
|
|
|
|
|
2017-11-10 03:22:13 +00:00
|
|
|
#include <assert.h>
|
2013-05-12 19:45:55 +00:00
|
|
|
#include "parameters.h"
|
1990-12-07 14:42:26 +00:00
|
|
|
#ifndef LINT
|
1989-02-07 11:04:05 +00:00
|
|
|
#include <em.h>
|
1990-12-07 14:42:26 +00:00
|
|
|
#else
|
|
|
|
#include "l_em.h"
|
1991-12-17 13:12:22 +00:00
|
|
|
#endif /* LINT */
|
2017-11-10 22:31:11 +00:00
|
|
|
#include <ack_string.h>
|
1989-02-07 11:04:05 +00:00
|
|
|
#include <alloc.h>
|
|
|
|
#include "Lpars.h"
|
|
|
|
#include "label.h"
|
1989-09-19 16:13:23 +00:00
|
|
|
#include <flt_arith.h>
|
1989-02-07 11:04:05 +00:00
|
|
|
#include "arith.h"
|
|
|
|
#include "switch.h"
|
|
|
|
#include "code.h"
|
|
|
|
#include "expr.h"
|
|
|
|
#include "type.h"
|
1989-09-19 16:13:23 +00:00
|
|
|
#include "sizes.h"
|
2019-02-18 16:42:15 +00:00
|
|
|
#include "switch.h"
|
|
|
|
#include "eval.h"
|
|
|
|
#include "ch3.h"
|
|
|
|
#include "error.h"
|
1989-02-07 11:04:05 +00:00
|
|
|
|
|
|
|
extern char options[];
|
|
|
|
|
1991-03-01 13:51:37 +00:00
|
|
|
int density = DENSITY;
|
|
|
|
|
Add long long literals like 123LL to ACK C.
For now, a long long literal must have the 'LL' or 'll' suffix. A
literal without 'LL' or 'll' acts as before: it may become unsigned
long but not long long. (For targets where int and long have the same
size, some literals change from unsigned int to unsigned long.)
Type `arith` may be too narrow for long long values. Add a second
type `writh` for wide arithmetic, and change some variables from arith
to writh. This may cause bugs if I forget to use writh, or if a
conversion from writh to arith overflows. I mark some conversions
with (arith) or (writh) casts.
- BigPars, SmallPars: Remove SPECIAL_ARITHMETICS. This feature
would change arith to a different type, but can't work, because it
would conflict with definitions of arith in both <em_arith.h> and
<flt_arith.h>.
- LLlex.c: Understand 'LL' or 'll' suffix. Cut size of constant when
it overflows writh, not only when it overflows the target machine's
types. (This cut might not be necessary, because we might cut it
again later.) When picking signed long or unsigned long, check the
target's long type, not the compiler's arith type; the old check
for `val >= 0` was broken where sizeof(arith) > 4.
- LLlex.h: Change struct token's tok_ival to writh, so it can hold a
long long literal.
- arith.c: Adjust to VL_VALUE being writh. Don't convert between
float and integer at compile-time if the integer might be too wide
for <flt_arith.h>. Add writh2str(), because writh might be too
wide for long2str().
- arith.h: Remove SPECIAL_ARITHMETICS. Declare full_mask[] here,
not in several *.c files. Declare writh2str().
- ch3.c, ch3bin.c, ch3mon.c, declarator.c, statement.g: Remove
obsolete casts. Adjust to VL_VALUE being writh.
- conversion.c, stab.c: Don't declare full_mask[].
- cstoper.c: Use writh for constant operations on VL_VALUE, and for
full_mask[].
- declar., field.c, ival.g: Add casts.
- dumpidf.c: Need to #include "parameters.h" before checking DEBUG.
Use writh2str, because "%ld" might not work.
- eval.c, eval.h: Add casts. Use writh when writing a wide constant
in EM.
- expr.c: Add and remove casts. In fill_int_expr(), make expression
from long long literal. In chk_cst_expr(), allow long long as
constant expression, so the compiler may accept `case 123LL:` in a
switch statement.
- expr.str: Change struct value's vl_value and struct expr's VL_VALUE
to writh, so an expression may have a long long value at compile
time.
- statement.g: Remove obsolete casts.
- switch.c, switch.str: Use writh in case entries for switch
statements, so `switch (ll) {...}` with long long ll works.
- tokenname.c: Add ULNGLNG so LLlex.c can use it for literals.
2019-09-05 02:14:38 +00:00
|
|
|
static int compact(int nr, writh low, writh up)
|
1989-02-07 11:04:05 +00:00
|
|
|
{
|
|
|
|
/* Careful! up - low might not fit in an arith. And then,
|
|
|
|
the test "up-low < 0" might also not work to detect this
|
|
|
|
situation! Or is this just a bug in the M68020/M68000?
|
|
|
|
*/
|
Add long long literals like 123LL to ACK C.
For now, a long long literal must have the 'LL' or 'll' suffix. A
literal without 'LL' or 'll' acts as before: it may become unsigned
long but not long long. (For targets where int and long have the same
size, some literals change from unsigned int to unsigned long.)
Type `arith` may be too narrow for long long values. Add a second
type `writh` for wide arithmetic, and change some variables from arith
to writh. This may cause bugs if I forget to use writh, or if a
conversion from writh to arith overflows. I mark some conversions
with (arith) or (writh) casts.
- BigPars, SmallPars: Remove SPECIAL_ARITHMETICS. This feature
would change arith to a different type, but can't work, because it
would conflict with definitions of arith in both <em_arith.h> and
<flt_arith.h>.
- LLlex.c: Understand 'LL' or 'll' suffix. Cut size of constant when
it overflows writh, not only when it overflows the target machine's
types. (This cut might not be necessary, because we might cut it
again later.) When picking signed long or unsigned long, check the
target's long type, not the compiler's arith type; the old check
for `val >= 0` was broken where sizeof(arith) > 4.
- LLlex.h: Change struct token's tok_ival to writh, so it can hold a
long long literal.
- arith.c: Adjust to VL_VALUE being writh. Don't convert between
float and integer at compile-time if the integer might be too wide
for <flt_arith.h>. Add writh2str(), because writh might be too
wide for long2str().
- arith.h: Remove SPECIAL_ARITHMETICS. Declare full_mask[] here,
not in several *.c files. Declare writh2str().
- ch3.c, ch3bin.c, ch3mon.c, declarator.c, statement.g: Remove
obsolete casts. Adjust to VL_VALUE being writh.
- conversion.c, stab.c: Don't declare full_mask[].
- cstoper.c: Use writh for constant operations on VL_VALUE, and for
full_mask[].
- declar., field.c, ival.g: Add casts.
- dumpidf.c: Need to #include "parameters.h" before checking DEBUG.
Use writh2str, because "%ld" might not work.
- eval.c, eval.h: Add casts. Use writh when writing a wide constant
in EM.
- expr.c: Add and remove casts. In fill_int_expr(), make expression
from long long literal. In chk_cst_expr(), allow long long as
constant expression, so the compiler may accept `case 123LL:` in a
switch statement.
- expr.str: Change struct value's vl_value and struct expr's VL_VALUE
to writh, so an expression may have a long long value at compile
time.
- statement.g: Remove obsolete casts.
- switch.c, switch.str: Use writh in case entries for switch
statements, so `switch (ll) {...}` with long long ll works.
- tokenname.c: Add ULNGLNG so LLlex.c can use it for literals.
2019-09-05 02:14:38 +00:00
|
|
|
writh diff = up - low;
|
1989-02-07 11:04:05 +00:00
|
|
|
|
1991-03-01 13:51:37 +00:00
|
|
|
return (nr == 0 || (diff >= 0 && diff / nr <= (density - 1)));
|
1989-02-07 11:04:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct switch_hdr *switch_stack = 0;
|
|
|
|
|
|
|
|
/* (EB 86.05.20) The following rules hold for switch statements:
|
1989-09-19 16:13:23 +00:00
|
|
|
- the expression E in "switch(E)" shall have integral type (3.6.4.2)
|
|
|
|
- the expression E in "case E:" is converted to the promoted type
|
|
|
|
of the controlling expression
|
1989-02-07 11:04:05 +00:00
|
|
|
For simplicity, we suppose int_size == word_size.
|
|
|
|
*/
|
|
|
|
|
2019-02-18 16:42:15 +00:00
|
|
|
void code_startswitch(struct expr **expp)
|
1989-02-07 11:04:05 +00:00
|
|
|
{
|
|
|
|
/* Check the expression, stack a new case header and
|
|
|
|
fill in the necessary fields.
|
|
|
|
*/
|
|
|
|
register label l_table = text_label();
|
|
|
|
register label l_break = text_label();
|
|
|
|
register struct switch_hdr *sh = new_switch_hdr();
|
1989-09-19 16:13:23 +00:00
|
|
|
int fund = any2arith(expp, SWITCH);
|
Begin to add `long long` to C compiler for linux386.
Add long long type, but without literals; you can't say '123LL' yet.
You can try constant operations, like `(long long)123 + 1`, but the
compiler's `arith` type might not be wide enough. Conversions,
shifts, and some other operations don't work in i386 ncg; I am using a
union instead of conversions:
union q {
long long ll;
unsigned long long ull;
int i[2];
};
Hack plat/linux386/descr to enable long long (size 8, alignment 4)
only for this platform. The default for other platforms is to disable
long long (size -1).
In lang/cem/cemcom.ansi,
- BigPars, SmallPars: Add default size, alignment of long long.
- align.h: Add lnglng_align.
- arith.c: Convert arithmetic operands to long long or unsigned long
long when necessary; avoid conversion from long long to long.
Allow long long as an arithmetic, integral, or logical operand.
- ch3.c: Handle long long like int and long when erroneously applying
a selector, like `long long ll; ll.member` or `ll->member`. Add
long long to integral and arithmetic types.
- code.c: Add long long to type stabs for debugging.
- conversion.c: Add long long to integral conversions.
- cstoper.c: Write masks up to full_mask[8]. Add FIXME comment.
- declar.g: Parse `long long` in code.
- decspecs.c: Understand long long in type declarations.
- eval.c: Add long long to operations, to generate code like `adi 8`.
Don't use `ldc` with constant over 4 bytes.
- ival.g: Allow long long in initializations.
- main.c: Set lnglng_type and related values.
- options.c: Add option like `-Vq8.4` to set long long to size 8,
alignment 4. I chose 'q', because Perl's pack and Ruby's
Array#pack use 'q' for 64-bit or long long values; it might be a
reference to BSD's old quad_t alias for long long.
- sizes.h: Add lnglng_size.
- stab.c: Allow long long when writing the type stab for debugging.
Switch from calculating the ranges to hardcoding them in strings;
add 8-byte ranges as a special case. This also hardcodes the
unsigned 4-byte range as "0;-1". Before it was either "0;-1" or
"0;4294967295", depending on sizeof(long) in the compiler.
- struct.c: Try long long bitfield, but it will probably give the
error, "bit field type long long does not fit in a word".
- switch.c: Update comment.
- tokenname.c: Define LNGLNG (long long) like LNGDBL (long double).
- type.c, type.str: Add lnglng_type and ulnglng_type. Add function
no_long_long() to check if long long is disabled.
2019-09-02 15:24:44 +00:00
|
|
|
/* INT, LONG, LNGLNG, FLOAT, DOUBLE or LNGDBL */
|
1989-02-07 11:04:05 +00:00
|
|
|
|
|
|
|
switch (fund) {
|
1989-09-19 16:13:23 +00:00
|
|
|
case FLOAT:
|
1989-02-07 11:04:05 +00:00
|
|
|
case DOUBLE:
|
1989-09-19 16:13:23 +00:00
|
|
|
case LNGDBL:
|
|
|
|
error("floating point type in switch");
|
1989-02-07 11:04:05 +00:00
|
|
|
erroneous2int(expp);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
stack_stmt(l_break, NO_LABEL);
|
|
|
|
sh->sh_break = l_break;
|
1989-10-20 16:16:06 +00:00
|
|
|
/* sh->sh_default = 0; */
|
1989-02-07 11:04:05 +00:00
|
|
|
sh->sh_table = l_table;
|
1989-10-20 16:16:06 +00:00
|
|
|
/* sh->sh_nrofentries = 0; */
|
1989-02-07 11:04:05 +00:00
|
|
|
sh->sh_type = (*expp)->ex_type; /* the expression switched */
|
2007-02-20 00:35:37 +00:00
|
|
|
/* sh->sh_entries = (struct case_entry *) 0; -- case-entry list */
|
1989-02-07 11:04:05 +00:00
|
|
|
sh->sh_expr = *expp;
|
1990-12-07 14:42:26 +00:00
|
|
|
#ifdef LINT
|
|
|
|
code_expr(sh->sh_expr, RVAL, TRUE, NO_LABEL, NO_LABEL);
|
|
|
|
#endif
|
1989-02-07 11:04:05 +00:00
|
|
|
sh->next = switch_stack; /* push onto switch-stack */
|
|
|
|
switch_stack = sh;
|
|
|
|
C_bra(l_table); /* goto start of switch_table */
|
|
|
|
}
|
|
|
|
|
2019-02-18 16:42:15 +00:00
|
|
|
void code_endswitch(void)
|
1989-02-07 11:04:05 +00:00
|
|
|
{
|
|
|
|
register struct switch_hdr *sh = switch_stack;
|
|
|
|
register label tablabel;
|
|
|
|
register struct case_entry *ce;
|
1989-10-20 16:16:06 +00:00
|
|
|
arith size = sh->sh_type->tp_size;
|
1989-02-07 11:04:05 +00:00
|
|
|
|
|
|
|
if (sh->sh_default == 0) /* no default occurred yet */
|
|
|
|
sh->sh_default = sh->sh_break;
|
1991-07-05 11:55:17 +00:00
|
|
|
|
|
|
|
#ifndef LINT
|
1989-02-07 11:04:05 +00:00
|
|
|
C_bra(sh->sh_break); /* skip the switch table now */
|
|
|
|
C_df_ilb(sh->sh_table); /* switch table entry */
|
|
|
|
/* evaluate the switch expr. */
|
|
|
|
code_expr(sh->sh_expr, RVAL, TRUE, NO_LABEL, NO_LABEL);
|
1991-03-01 13:51:37 +00:00
|
|
|
if (sh->sh_nrofentries <= 1) {
|
|
|
|
if (sh->sh_nrofentries) {
|
|
|
|
load_cst(sh->sh_lowerbd, size);
|
|
|
|
C_cms(size);
|
|
|
|
C_zeq(sh->sh_entries->ce_label);
|
|
|
|
}
|
|
|
|
else C_asp(size);
|
|
|
|
C_bra(sh->sh_default);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
tablabel = data_label(); /* the rom must have a label */
|
|
|
|
C_df_dlb(tablabel);
|
|
|
|
C_rom_ilb(sh->sh_default);
|
|
|
|
if (compact(sh->sh_nrofentries, sh->sh_lowerbd, sh->sh_upperbd)) {
|
1989-02-07 11:04:05 +00:00
|
|
|
/* CSA */
|
Add long long literals like 123LL to ACK C.
For now, a long long literal must have the 'LL' or 'll' suffix. A
literal without 'LL' or 'll' acts as before: it may become unsigned
long but not long long. (For targets where int and long have the same
size, some literals change from unsigned int to unsigned long.)
Type `arith` may be too narrow for long long values. Add a second
type `writh` for wide arithmetic, and change some variables from arith
to writh. This may cause bugs if I forget to use writh, or if a
conversion from writh to arith overflows. I mark some conversions
with (arith) or (writh) casts.
- BigPars, SmallPars: Remove SPECIAL_ARITHMETICS. This feature
would change arith to a different type, but can't work, because it
would conflict with definitions of arith in both <em_arith.h> and
<flt_arith.h>.
- LLlex.c: Understand 'LL' or 'll' suffix. Cut size of constant when
it overflows writh, not only when it overflows the target machine's
types. (This cut might not be necessary, because we might cut it
again later.) When picking signed long or unsigned long, check the
target's long type, not the compiler's arith type; the old check
for `val >= 0` was broken where sizeof(arith) > 4.
- LLlex.h: Change struct token's tok_ival to writh, so it can hold a
long long literal.
- arith.c: Adjust to VL_VALUE being writh. Don't convert between
float and integer at compile-time if the integer might be too wide
for <flt_arith.h>. Add writh2str(), because writh might be too
wide for long2str().
- arith.h: Remove SPECIAL_ARITHMETICS. Declare full_mask[] here,
not in several *.c files. Declare writh2str().
- ch3.c, ch3bin.c, ch3mon.c, declarator.c, statement.g: Remove
obsolete casts. Adjust to VL_VALUE being writh.
- conversion.c, stab.c: Don't declare full_mask[].
- cstoper.c: Use writh for constant operations on VL_VALUE, and for
full_mask[].
- declar., field.c, ival.g: Add casts.
- dumpidf.c: Need to #include "parameters.h" before checking DEBUG.
Use writh2str, because "%ld" might not work.
- eval.c, eval.h: Add casts. Use writh when writing a wide constant
in EM.
- expr.c: Add and remove casts. In fill_int_expr(), make expression
from long long literal. In chk_cst_expr(), allow long long as
constant expression, so the compiler may accept `case 123LL:` in a
switch statement.
- expr.str: Change struct value's vl_value and struct expr's VL_VALUE
to writh, so an expression may have a long long value at compile
time.
- statement.g: Remove obsolete casts.
- switch.c, switch.str: Use writh in case entries for switch
statements, so `switch (ll) {...}` with long long ll works.
- tokenname.c: Add ULNGLNG so LLlex.c can use it for literals.
2019-09-05 02:14:38 +00:00
|
|
|
writh val;
|
1989-02-07 11:04:05 +00:00
|
|
|
|
Add long long literals like 123LL to ACK C.
For now, a long long literal must have the 'LL' or 'll' suffix. A
literal without 'LL' or 'll' acts as before: it may become unsigned
long but not long long. (For targets where int and long have the same
size, some literals change from unsigned int to unsigned long.)
Type `arith` may be too narrow for long long values. Add a second
type `writh` for wide arithmetic, and change some variables from arith
to writh. This may cause bugs if I forget to use writh, or if a
conversion from writh to arith overflows. I mark some conversions
with (arith) or (writh) casts.
- BigPars, SmallPars: Remove SPECIAL_ARITHMETICS. This feature
would change arith to a different type, but can't work, because it
would conflict with definitions of arith in both <em_arith.h> and
<flt_arith.h>.
- LLlex.c: Understand 'LL' or 'll' suffix. Cut size of constant when
it overflows writh, not only when it overflows the target machine's
types. (This cut might not be necessary, because we might cut it
again later.) When picking signed long or unsigned long, check the
target's long type, not the compiler's arith type; the old check
for `val >= 0` was broken where sizeof(arith) > 4.
- LLlex.h: Change struct token's tok_ival to writh, so it can hold a
long long literal.
- arith.c: Adjust to VL_VALUE being writh. Don't convert between
float and integer at compile-time if the integer might be too wide
for <flt_arith.h>. Add writh2str(), because writh might be too
wide for long2str().
- arith.h: Remove SPECIAL_ARITHMETICS. Declare full_mask[] here,
not in several *.c files. Declare writh2str().
- ch3.c, ch3bin.c, ch3mon.c, declarator.c, statement.g: Remove
obsolete casts. Adjust to VL_VALUE being writh.
- conversion.c, stab.c: Don't declare full_mask[].
- cstoper.c: Use writh for constant operations on VL_VALUE, and for
full_mask[].
- declar., field.c, ival.g: Add casts.
- dumpidf.c: Need to #include "parameters.h" before checking DEBUG.
Use writh2str, because "%ld" might not work.
- eval.c, eval.h: Add casts. Use writh when writing a wide constant
in EM.
- expr.c: Add and remove casts. In fill_int_expr(), make expression
from long long literal. In chk_cst_expr(), allow long long as
constant expression, so the compiler may accept `case 123LL:` in a
switch statement.
- expr.str: Change struct value's vl_value and struct expr's VL_VALUE
to writh, so an expression may have a long long value at compile
time.
- statement.g: Remove obsolete casts.
- switch.c, switch.str: Use writh in case entries for switch
statements, so `switch (ll) {...}` with long long ll works.
- tokenname.c: Add ULNGLNG so LLlex.c can use it for literals.
2019-09-05 02:14:38 +00:00
|
|
|
C_rom_icon(writh2str(sh->sh_lowerbd, 0), size);
|
|
|
|
C_rom_icon(writh2str(sh->sh_upperbd - sh->sh_lowerbd, 0),
|
1989-10-20 16:16:06 +00:00
|
|
|
size);
|
1989-02-07 11:04:05 +00:00
|
|
|
ce = sh->sh_entries;
|
1991-03-01 13:51:37 +00:00
|
|
|
for (val = sh->sh_lowerbd; val <= sh->sh_upperbd; val++) {
|
2017-11-10 03:22:13 +00:00
|
|
|
assert(ce);
|
1989-02-07 11:04:05 +00:00
|
|
|
if (val == ce->ce_value) {
|
|
|
|
C_rom_ilb(ce->ce_label);
|
|
|
|
ce = ce->next;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
C_rom_ilb(sh->sh_default);
|
|
|
|
}
|
|
|
|
C_lae_dlb(tablabel, (arith)0); /* perform the switch */
|
1989-10-20 16:16:06 +00:00
|
|
|
C_csa(size);
|
1991-03-01 13:51:37 +00:00
|
|
|
}
|
|
|
|
else { /* CSB */
|
Add long long literals like 123LL to ACK C.
For now, a long long literal must have the 'LL' or 'll' suffix. A
literal without 'LL' or 'll' acts as before: it may become unsigned
long but not long long. (For targets where int and long have the same
size, some literals change from unsigned int to unsigned long.)
Type `arith` may be too narrow for long long values. Add a second
type `writh` for wide arithmetic, and change some variables from arith
to writh. This may cause bugs if I forget to use writh, or if a
conversion from writh to arith overflows. I mark some conversions
with (arith) or (writh) casts.
- BigPars, SmallPars: Remove SPECIAL_ARITHMETICS. This feature
would change arith to a different type, but can't work, because it
would conflict with definitions of arith in both <em_arith.h> and
<flt_arith.h>.
- LLlex.c: Understand 'LL' or 'll' suffix. Cut size of constant when
it overflows writh, not only when it overflows the target machine's
types. (This cut might not be necessary, because we might cut it
again later.) When picking signed long or unsigned long, check the
target's long type, not the compiler's arith type; the old check
for `val >= 0` was broken where sizeof(arith) > 4.
- LLlex.h: Change struct token's tok_ival to writh, so it can hold a
long long literal.
- arith.c: Adjust to VL_VALUE being writh. Don't convert between
float and integer at compile-time if the integer might be too wide
for <flt_arith.h>. Add writh2str(), because writh might be too
wide for long2str().
- arith.h: Remove SPECIAL_ARITHMETICS. Declare full_mask[] here,
not in several *.c files. Declare writh2str().
- ch3.c, ch3bin.c, ch3mon.c, declarator.c, statement.g: Remove
obsolete casts. Adjust to VL_VALUE being writh.
- conversion.c, stab.c: Don't declare full_mask[].
- cstoper.c: Use writh for constant operations on VL_VALUE, and for
full_mask[].
- declar., field.c, ival.g: Add casts.
- dumpidf.c: Need to #include "parameters.h" before checking DEBUG.
Use writh2str, because "%ld" might not work.
- eval.c, eval.h: Add casts. Use writh when writing a wide constant
in EM.
- expr.c: Add and remove casts. In fill_int_expr(), make expression
from long long literal. In chk_cst_expr(), allow long long as
constant expression, so the compiler may accept `case 123LL:` in a
switch statement.
- expr.str: Change struct value's vl_value and struct expr's VL_VALUE
to writh, so an expression may have a long long value at compile
time.
- statement.g: Remove obsolete casts.
- switch.c, switch.str: Use writh in case entries for switch
statements, so `switch (ll) {...}` with long long ll works.
- tokenname.c: Add ULNGLNG so LLlex.c can use it for literals.
2019-09-05 02:14:38 +00:00
|
|
|
C_rom_icon(writh2str(sh->sh_nrofentries, 0), size);
|
1989-02-07 11:04:05 +00:00
|
|
|
for (ce = sh->sh_entries; ce; ce = ce->next) {
|
|
|
|
/* generate the entries: value + prog.label */
|
Add long long literals like 123LL to ACK C.
For now, a long long literal must have the 'LL' or 'll' suffix. A
literal without 'LL' or 'll' acts as before: it may become unsigned
long but not long long. (For targets where int and long have the same
size, some literals change from unsigned int to unsigned long.)
Type `arith` may be too narrow for long long values. Add a second
type `writh` for wide arithmetic, and change some variables from arith
to writh. This may cause bugs if I forget to use writh, or if a
conversion from writh to arith overflows. I mark some conversions
with (arith) or (writh) casts.
- BigPars, SmallPars: Remove SPECIAL_ARITHMETICS. This feature
would change arith to a different type, but can't work, because it
would conflict with definitions of arith in both <em_arith.h> and
<flt_arith.h>.
- LLlex.c: Understand 'LL' or 'll' suffix. Cut size of constant when
it overflows writh, not only when it overflows the target machine's
types. (This cut might not be necessary, because we might cut it
again later.) When picking signed long or unsigned long, check the
target's long type, not the compiler's arith type; the old check
for `val >= 0` was broken where sizeof(arith) > 4.
- LLlex.h: Change struct token's tok_ival to writh, so it can hold a
long long literal.
- arith.c: Adjust to VL_VALUE being writh. Don't convert between
float and integer at compile-time if the integer might be too wide
for <flt_arith.h>. Add writh2str(), because writh might be too
wide for long2str().
- arith.h: Remove SPECIAL_ARITHMETICS. Declare full_mask[] here,
not in several *.c files. Declare writh2str().
- ch3.c, ch3bin.c, ch3mon.c, declarator.c, statement.g: Remove
obsolete casts. Adjust to VL_VALUE being writh.
- conversion.c, stab.c: Don't declare full_mask[].
- cstoper.c: Use writh for constant operations on VL_VALUE, and for
full_mask[].
- declar., field.c, ival.g: Add casts.
- dumpidf.c: Need to #include "parameters.h" before checking DEBUG.
Use writh2str, because "%ld" might not work.
- eval.c, eval.h: Add casts. Use writh when writing a wide constant
in EM.
- expr.c: Add and remove casts. In fill_int_expr(), make expression
from long long literal. In chk_cst_expr(), allow long long as
constant expression, so the compiler may accept `case 123LL:` in a
switch statement.
- expr.str: Change struct value's vl_value and struct expr's VL_VALUE
to writh, so an expression may have a long long value at compile
time.
- statement.g: Remove obsolete casts.
- switch.c, switch.str: Use writh in case entries for switch
statements, so `switch (ll) {...}` with long long ll works.
- tokenname.c: Add ULNGLNG so LLlex.c can use it for literals.
2019-09-05 02:14:38 +00:00
|
|
|
C_rom_icon(writh2str(ce->ce_value, 0), size);
|
1989-02-07 11:04:05 +00:00
|
|
|
C_rom_ilb(ce->ce_label);
|
|
|
|
}
|
|
|
|
C_lae_dlb(tablabel, (arith)0); /* perform the switch */
|
1989-10-20 16:16:06 +00:00
|
|
|
C_csb(size);
|
1991-03-01 13:51:37 +00:00
|
|
|
}
|
1989-02-07 11:04:05 +00:00
|
|
|
}
|
|
|
|
C_df_ilb(sh->sh_break);
|
1991-07-05 11:55:17 +00:00
|
|
|
#endif
|
|
|
|
|
1989-02-07 11:04:05 +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;
|
|
|
|
|
|
|
|
free_case_entry(ce);
|
|
|
|
ce = tmp;
|
|
|
|
}
|
|
|
|
free_switch_hdr(sh);
|
|
|
|
unstack_stmt();
|
|
|
|
}
|
|
|
|
|
2019-02-18 16:42:15 +00:00
|
|
|
void code_case(struct expr *expr)
|
1989-02-07 11:04:05 +00:00
|
|
|
{
|
Add long long literals like 123LL to ACK C.
For now, a long long literal must have the 'LL' or 'll' suffix. A
literal without 'LL' or 'll' acts as before: it may become unsigned
long but not long long. (For targets where int and long have the same
size, some literals change from unsigned int to unsigned long.)
Type `arith` may be too narrow for long long values. Add a second
type `writh` for wide arithmetic, and change some variables from arith
to writh. This may cause bugs if I forget to use writh, or if a
conversion from writh to arith overflows. I mark some conversions
with (arith) or (writh) casts.
- BigPars, SmallPars: Remove SPECIAL_ARITHMETICS. This feature
would change arith to a different type, but can't work, because it
would conflict with definitions of arith in both <em_arith.h> and
<flt_arith.h>.
- LLlex.c: Understand 'LL' or 'll' suffix. Cut size of constant when
it overflows writh, not only when it overflows the target machine's
types. (This cut might not be necessary, because we might cut it
again later.) When picking signed long or unsigned long, check the
target's long type, not the compiler's arith type; the old check
for `val >= 0` was broken where sizeof(arith) > 4.
- LLlex.h: Change struct token's tok_ival to writh, so it can hold a
long long literal.
- arith.c: Adjust to VL_VALUE being writh. Don't convert between
float and integer at compile-time if the integer might be too wide
for <flt_arith.h>. Add writh2str(), because writh might be too
wide for long2str().
- arith.h: Remove SPECIAL_ARITHMETICS. Declare full_mask[] here,
not in several *.c files. Declare writh2str().
- ch3.c, ch3bin.c, ch3mon.c, declarator.c, statement.g: Remove
obsolete casts. Adjust to VL_VALUE being writh.
- conversion.c, stab.c: Don't declare full_mask[].
- cstoper.c: Use writh for constant operations on VL_VALUE, and for
full_mask[].
- declar., field.c, ival.g: Add casts.
- dumpidf.c: Need to #include "parameters.h" before checking DEBUG.
Use writh2str, because "%ld" might not work.
- eval.c, eval.h: Add casts. Use writh when writing a wide constant
in EM.
- expr.c: Add and remove casts. In fill_int_expr(), make expression
from long long literal. In chk_cst_expr(), allow long long as
constant expression, so the compiler may accept `case 123LL:` in a
switch statement.
- expr.str: Change struct value's vl_value and struct expr's VL_VALUE
to writh, so an expression may have a long long value at compile
time.
- statement.g: Remove obsolete casts.
- switch.c, switch.str: Use writh in case entries for switch
statements, so `switch (ll) {...}` with long long ll works.
- tokenname.c: Add ULNGLNG so LLlex.c can use it for literals.
2019-09-05 02:14:38 +00:00
|
|
|
writh val;
|
1989-02-07 11:04:05 +00:00
|
|
|
register struct case_entry *ce;
|
|
|
|
register struct switch_hdr *sh = switch_stack;
|
|
|
|
|
2017-11-10 03:22:13 +00:00
|
|
|
assert(is_cp_cst(expr));
|
1989-02-07 11:04:05 +00:00
|
|
|
if (sh == 0) {
|
|
|
|
error("case statement not in switch");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (expr->ex_flags & EX_ERROR) /* is probably 0 anyway */
|
|
|
|
return;
|
1989-09-25 14:28:10 +00:00
|
|
|
ch3cast(&expr, CASE, sh->sh_type);
|
1989-02-07 11:04:05 +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 */
|
1989-10-20 16:16:06 +00:00
|
|
|
/* ce->next = (struct case_entry *) 0; */
|
1989-02-07 11:04:05 +00:00
|
|
|
sh->sh_entries = ce;
|
|
|
|
sh->sh_lowerbd = sh->sh_upperbd = val;
|
|
|
|
sh->sh_nrofentries = 1;
|
|
|
|
}
|
|
|
|
else { /* second etc. case entry; put ce into proper place */
|
|
|
|
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) {
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
if (c1) {
|
|
|
|
if (c1->ce_value == ce->ce_value) {
|
|
|
|
error("multiple case entry for value %ld",
|
|
|
|
ce->ce_value);
|
|
|
|
free_case_entry(ce);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (c2) {
|
|
|
|
ce->next = c2->next;
|
|
|
|
c2->next = ce;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
ce->next = sh->sh_entries;
|
|
|
|
sh->sh_entries = ce;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2017-11-10 03:22:13 +00:00
|
|
|
assert(c2);
|
1989-02-07 11:04:05 +00:00
|
|
|
ce->next = (struct case_entry *) 0;
|
|
|
|
c2->next = ce;
|
|
|
|
}
|
|
|
|
(sh->sh_nrofentries)++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-18 16:42:15 +00:00
|
|
|
void code_default(void)
|
1989-02-07 11:04:05 +00:00
|
|
|
{
|
|
|
|
register struct switch_hdr *sh = switch_stack;
|
|
|
|
|
|
|
|
if (sh == 0) {
|
|
|
|
error("default statement not in switch");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (sh->sh_default != 0) {
|
|
|
|
error("multiple entry for default in switch");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
C_df_ilb(sh->sh_default = text_label());
|
|
|
|
}
|