1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-03 07:24:58 +03:00
inform7/inter/bytecode-module/Chapter 4/The Constant Construct.w

567 lines
24 KiB
OpenEdge ABL
Raw Normal View History

2019-02-05 02:44:07 +02:00
[Inter::Constant::] The Constant Construct.
Defining the constant construct.
@
@e CONSTANT_IST
=
void Inter::Constant::define(void) {
2019-07-09 08:45:46 +03:00
inter_construct *IC = Inter::Defn::create_construct(
2019-02-05 02:44:07 +02:00
CONSTANT_IST,
L"constant (%C+) (%i+) = (%c+)",
I"constant", I"constants");
2019-07-09 08:45:46 +03:00
METHOD_ADD(IC, CONSTRUCT_READ_MTID, Inter::Constant::read);
2019-07-27 13:16:22 +03:00
METHOD_ADD(IC, CONSTRUCT_TRANSPOSE_MTID, Inter::Constant::transpose);
2019-07-09 08:45:46 +03:00
METHOD_ADD(IC, CONSTRUCT_VERIFY_MTID, Inter::Constant::verify);
METHOD_ADD(IC, CONSTRUCT_WRITE_MTID, Inter::Constant::write);
2019-02-05 02:44:07 +02:00
}
@
@d DEFN_CONST_IFLD 2
@d KIND_CONST_IFLD 3
@d FORMAT_CONST_IFLD 4
@d DATA_CONST_IFLD 5
@d CONSTANT_DIRECT 0
@d CONSTANT_INDIRECT_LIST 1
@d CONSTANT_SUM_LIST 2
@d CONSTANT_PRODUCT_LIST 3
@d CONSTANT_DIFFERENCE_LIST 4
@d CONSTANT_QUOTIENT_LIST 5
@d CONSTANT_INDIRECT_TEXT 6
@d CONSTANT_ROUTINE 7
@d CONSTANT_STRUCT 8
2019-02-05 02:44:07 +02:00
=
2019-07-14 12:44:07 +03:00
void Inter::Constant::read(inter_construct *IC, inter_bookmark *IBM, inter_line_parse *ilp, inter_error_location *eloc, inter_error_message **E) {
*E = Inter::Defn::vet_level(IBM, CONSTANT_IST, ilp->indent_level, eloc);
2019-07-09 08:45:46 +03:00
if (*E) return;
2019-02-05 02:44:07 +02:00
2022-01-27 01:59:02 +02:00
inter_symbol *con_name = Inter::Textual::new_symbol(eloc, InterBookmark::scope(IBM), ilp->mr.exp[0], E);
2019-07-09 08:45:46 +03:00
if (*E) return;
2019-02-05 02:44:07 +02:00
2019-07-26 10:59:23 +03:00
Inter::Annotations::copy_set_to_symbol(&(ilp->set), con_name);
2019-02-05 02:44:07 +02:00
2022-01-27 01:59:02 +02:00
inter_symbol *con_kind = Inter::Textual::find_symbol(InterBookmark::tree(IBM), eloc, InterBookmark::scope(IBM), ilp->mr.exp[1], KIND_IST, E);
2019-07-09 08:45:46 +03:00
if (*E) return;
2019-02-05 02:44:07 +02:00
text_stream *S = ilp->mr.exp[2];
inter_data_type *idt = Inter::Kind::data_type(con_kind);
2019-02-05 02:44:07 +02:00
match_results mr2 = Regexp::create_mr();
2020-07-01 02:58:55 +03:00
inter_ti op = 0;
if (Regexp::match(&mr2, S, L"sum{ (%c*) }")) op = CONSTANT_SUM_LIST;
else if (Regexp::match(&mr2, S, L"product{ (%c*) }")) op = CONSTANT_PRODUCT_LIST;
else if (Regexp::match(&mr2, S, L"difference{ (%c*) }")) op = CONSTANT_DIFFERENCE_LIST;
else if (Regexp::match(&mr2, S, L"quotient{ (%c*) }")) op = CONSTANT_QUOTIENT_LIST;
if (op != 0) {
2019-07-24 20:15:07 +03:00
inter_tree_node *P =
2022-02-03 17:51:44 +02:00
Inode::new_with_3_data_fields(IBM, CONSTANT_IST, InterSymbolsTable::id_from_symbol_at_bookmark(IBM, con_name), InterSymbolsTable::id_from_symbol_at_bookmark(IBM, con_kind), op, eloc, (inter_ti) ilp->indent_level);
2022-01-27 01:59:02 +02:00
*E = Inter::Defn::verify_construct(InterBookmark::package(IBM), P);
2019-07-09 08:45:46 +03:00
if (*E) return;
2019-02-05 02:44:07 +02:00
text_stream *conts = mr2.exp[0];
match_results mr3 = Regexp::create_mr();
while (Regexp::match(&mr3, conts, L"(%c*?), (%c+)")) {
if (Inter::Constant::append(ilp->line, eloc, IBM, con_kind, P, mr3.exp[0], E) == FALSE)
2019-07-09 08:45:46 +03:00
return;
2019-02-05 02:44:07 +02:00
Str::copy(conts, mr3.exp[1]);
}
if (Regexp::match(&mr3, conts, L" *(%c*?) *")) {
if (Inter::Constant::append(ilp->line, eloc, IBM, con_kind, P, mr3.exp[0], E) == FALSE)
2019-07-09 08:45:46 +03:00
return;
2019-02-05 02:44:07 +02:00
}
2022-01-27 01:59:02 +02:00
NodePlacement::move_to_moving_bookmark(P, IBM);
2019-07-09 08:45:46 +03:00
return;
2019-02-05 02:44:07 +02:00
}
if ((idt) && ((idt->type_ID == LIST_IDT) || (idt->type_ID == COLUMN_IDT))) {
inter_symbol *conts_kind = Inter::Kind::operand_symbol(con_kind, 0);
if (conts_kind) {
match_results mr2 = Regexp::create_mr();
2020-07-01 02:58:55 +03:00
inter_ti form = 0;
2019-02-05 02:44:07 +02:00
if (Regexp::match(&mr2, S, L"{ (%c*) }")) form = CONSTANT_INDIRECT_LIST;
else if (Regexp::match(&mr2, S, L"sum{ (%c*) }")) form = CONSTANT_SUM_LIST;
else if (Regexp::match(&mr2, S, L"product{ (%c*) }")) form = CONSTANT_PRODUCT_LIST;
else if (Regexp::match(&mr2, S, L"difference{ (%c*) }")) form = CONSTANT_DIFFERENCE_LIST;
else if (Regexp::match(&mr2, S, L"quotient{ (%c*) }")) form = CONSTANT_QUOTIENT_LIST;
2019-02-05 02:44:07 +02:00
if (form != 0) {
2019-07-24 20:15:07 +03:00
inter_tree_node *P =
2022-02-03 17:51:44 +02:00
Inode::new_with_3_data_fields(IBM, CONSTANT_IST, InterSymbolsTable::id_from_symbol_at_bookmark(IBM, con_name), InterSymbolsTable::id_from_symbol_at_bookmark(IBM, con_kind), form, eloc, (inter_ti) ilp->indent_level);
2022-01-27 01:59:02 +02:00
*E = Inter::Defn::verify_construct(InterBookmark::package(IBM), P);
2019-07-09 08:45:46 +03:00
if (*E) return;
2019-02-05 02:44:07 +02:00
text_stream *conts = mr2.exp[0];
match_results mr3 = Regexp::create_mr();
while (Regexp::match(&mr3, conts, L"(%c*?), (%c+)")) {
if (Inter::Constant::append(ilp->line, eloc, IBM, conts_kind, P, mr3.exp[0], E) == FALSE)
2019-07-09 08:45:46 +03:00
return;
2019-02-05 02:44:07 +02:00
Str::copy(conts, mr3.exp[1]);
}
if (Regexp::match(&mr3, conts, L" *(%c*?) *")) {
if (Inter::Constant::append(ilp->line, eloc, IBM, conts_kind, P, mr3.exp[0], E) == FALSE)
2019-07-09 08:45:46 +03:00
return;
2019-02-05 02:44:07 +02:00
}
2022-01-27 01:59:02 +02:00
NodePlacement::move_to_moving_bookmark(P, IBM);
2019-07-09 08:45:46 +03:00
return;
2019-02-05 02:44:07 +02:00
}
}
}
if ((idt) && (idt->type_ID == STRUCT_IDT)) {
match_results mr2 = Regexp::create_mr();
if (Regexp::match(&mr2, S, L"{ (%c*) }")) {
2019-07-24 20:15:07 +03:00
inter_tree_node *P =
2022-02-03 17:51:44 +02:00
Inode::new_with_3_data_fields(IBM, CONSTANT_IST, InterSymbolsTable::id_from_symbol_at_bookmark(IBM, con_name), InterSymbolsTable::id_from_symbol_at_bookmark(IBM, con_kind), CONSTANT_STRUCT, eloc, (inter_ti) ilp->indent_level);
2019-02-05 02:44:07 +02:00
int arity = Inter::Kind::arity(con_kind);
int counter = 0;
text_stream *conts = mr2.exp[0];
match_results mr3 = Regexp::create_mr();
while (Regexp::match(&mr3, conts, L"(%c*?), (%c+)")) {
inter_symbol *conts_kind = Inter::Kind::operand_symbol(con_kind, counter++);
if (Inter::Constant::append(ilp->line, eloc, IBM, conts_kind, P, mr3.exp[0], E) == FALSE)
2019-07-09 08:45:46 +03:00
return;
2019-02-05 02:44:07 +02:00
Str::copy(conts, mr3.exp[1]);
}
if (Regexp::match(&mr3, conts, L" *(%c*?) *")) {
inter_symbol *conts_kind = Inter::Kind::operand_symbol(con_kind, counter++);
if (Inter::Constant::append(ilp->line, eloc, IBM, conts_kind, P, mr3.exp[0], E) == FALSE)
2019-07-09 08:45:46 +03:00
return;
2019-02-05 02:44:07 +02:00
}
if (counter != arity)
2019-07-09 08:45:46 +03:00
{ *E = Inter::Errors::quoted(I"wrong size", S, eloc); return; }
2022-01-27 01:59:02 +02:00
*E = Inter::Defn::verify_construct(InterBookmark::package(IBM), P); if (*E) return;
NodePlacement::move_to_moving_bookmark(P, IBM);
2019-07-09 08:45:46 +03:00
return;
2019-02-05 02:44:07 +02:00
}
}
if ((idt) && (idt->type_ID == TABLE_IDT)) {
match_results mr2 = Regexp::create_mr();
if (Regexp::match(&mr2, S, L"{ (%c*) }")) {
2019-07-24 20:15:07 +03:00
inter_tree_node *P =
2022-02-03 17:51:44 +02:00
Inode::new_with_3_data_fields(IBM, CONSTANT_IST, InterSymbolsTable::id_from_symbol_at_bookmark(IBM, con_name), InterSymbolsTable::id_from_symbol_at_bookmark(IBM, con_kind), CONSTANT_INDIRECT_LIST, eloc, (inter_ti) ilp->indent_level);
2022-01-27 01:59:02 +02:00
*E = Inter::Defn::verify_construct(InterBookmark::package(IBM), P);
2019-07-09 08:45:46 +03:00
if (*E) return;
2019-02-05 02:44:07 +02:00
text_stream *conts = mr2.exp[0];
match_results mr3 = Regexp::create_mr();
while (Regexp::match(&mr3, conts, L"(%c*?), (%c+)")) {
if (Inter::Constant::append(ilp->line, eloc, IBM, NULL, P, mr3.exp[0], E) == FALSE)
2019-07-09 08:45:46 +03:00
return;
2019-02-05 02:44:07 +02:00
Str::copy(conts, mr3.exp[1]);
}
if (Regexp::match(&mr3, conts, L" *(%c*?) *")) {
if (Inter::Constant::append(ilp->line, eloc, IBM, NULL, P, mr3.exp[0], E) == FALSE)
2019-07-09 08:45:46 +03:00
return;
2019-02-05 02:44:07 +02:00
}
2022-01-27 01:59:02 +02:00
NodePlacement::move_to_moving_bookmark(P, IBM);
2019-07-09 08:45:46 +03:00
return;
2019-02-05 02:44:07 +02:00
}
}
if ((idt) && (idt->type_ID == TEXT_IDT)) {
if ((Str::begins_with_wide_string(S, L"\"")) && (Str::ends_with_wide_string(S, L"\""))) {
2020-06-28 01:18:54 +03:00
TEMPORARY_TEXT(parsed_text)
2019-07-09 08:45:46 +03:00
*E = Inter::Constant::parse_text(parsed_text, S, 1, Str::len(S)-2, eloc);
2020-07-01 02:58:55 +03:00
inter_ti ID = 0;
2019-07-09 08:45:46 +03:00
if (*E == NULL) {
2022-01-30 15:32:38 +02:00
ID = InterWarehouse::create_text(InterBookmark::warehouse(IBM), InterBookmark::package(IBM));
Str::copy(InterWarehouse::get_text(InterBookmark::warehouse(IBM), ID), parsed_text);
2019-02-05 02:44:07 +02:00
}
2020-06-28 01:18:54 +03:00
DISCARD_TEXT(parsed_text)
2019-07-09 08:45:46 +03:00
if (*E) return;
2022-02-03 17:51:44 +02:00
*E = Inter::Constant::new_textual(IBM, InterSymbolsTable::id_from_symbol_at_bookmark(IBM, con_name), InterSymbolsTable::id_from_symbol_at_bookmark(IBM, con_kind), ID, (inter_ti) ilp->indent_level, eloc);
2019-07-09 08:45:46 +03:00
return;
2019-02-05 02:44:07 +02:00
}
}
if ((idt) && (idt->type_ID == ROUTINE_IDT)) {
2022-02-03 17:51:44 +02:00
inter_package *block = InterPackage::from_name(InterBookmark::package(IBM), S);
2019-07-27 13:16:22 +03:00
if (block == NULL) {
*E = Inter::Errors::quoted(I"no such code block", S, eloc); return;
}
2022-02-03 17:51:44 +02:00
*E = Inter::Constant::new_function(IBM, InterSymbolsTable::id_from_symbol_at_bookmark(IBM, con_name), InterSymbolsTable::id_from_symbol_at_bookmark(IBM, con_kind), block, (inter_ti) ilp->indent_level, eloc);
2019-07-09 08:45:46 +03:00
return;
2019-02-05 02:44:07 +02:00
}
2020-07-01 02:58:55 +03:00
inter_ti con_val1 = 0;
inter_ti con_val2 = 0;
2019-02-05 02:44:07 +02:00
if (Str::eq(S, I"0")) { con_val1 = LITERAL_IVAL; con_val2 = 0; }
else {
2022-01-27 01:59:02 +02:00
*E = Inter::Types::read(ilp->line, eloc, InterBookmark::tree(IBM), InterBookmark::package(IBM), con_kind, S, &con_val1, &con_val2, InterBookmark::scope(IBM));
2019-07-09 08:45:46 +03:00
if (*E) return;
2019-02-05 02:44:07 +02:00
}
2022-02-03 17:51:44 +02:00
*E = Inter::Constant::new_numerical(IBM, InterSymbolsTable::id_from_symbol_at_bookmark(IBM, con_name), InterSymbolsTable::id_from_symbol_at_bookmark(IBM, con_kind), con_val1, con_val2, (inter_ti) ilp->indent_level, eloc);
2019-02-05 02:44:07 +02:00
}
inter_error_message *Inter::Constant::parse_text(text_stream *parsed_text, text_stream *S, int from, int to, inter_error_location *eloc) {
inter_error_message *E = NULL;
int literal_mode = FALSE;
LOOP_THROUGH_TEXT(pos, S) {
if ((pos.index < from) || (pos.index > to)) continue;
int c = (int) Str::get(pos);
if (literal_mode == FALSE) {
if (c == '\\') { literal_mode = TRUE; continue; }
} else {
switch (c) {
case '\\': break;
case '"': break;
case 't': c = 9; break;
case 'n': c = 10; break;
default: E = Inter::Errors::plain(I"no such backslash escape", eloc); break;
}
}
if (Inter::Constant::char_acceptable(c) == FALSE) E = Inter::Errors::quoted(I"bad character in text", S, eloc);
PUT_TO(parsed_text, c);
literal_mode = FALSE;
}
if (E) Str::clear(parsed_text);
return E;
}
void Inter::Constant::write_text(OUTPUT_STREAM, text_stream *S) {
LOOP_THROUGH_TEXT(P, S) {
wchar_t c = Str::get(P);
if (c == 9) { WRITE("\\t"); continue; }
if (c == 10) { WRITE("\\n"); continue; }
if (c == '"') { WRITE("\\\""); continue; }
if (c == '\\') { WRITE("\\\\"); continue; }
PUT(c);
}
}
2020-07-01 02:58:55 +03:00
inter_error_message *Inter::Constant::new_numerical(inter_bookmark *IBM, inter_ti SID, inter_ti KID, inter_ti val1, inter_ti val2, inter_ti level, inter_error_location *eloc) {
2022-01-28 01:38:14 +02:00
inter_tree_node *P = Inode::new_with_5_data_fields(IBM,
2019-02-05 02:44:07 +02:00
CONSTANT_IST, SID, KID, CONSTANT_DIRECT, val1, val2, eloc, level);
2022-01-27 01:59:02 +02:00
inter_error_message *E = Inter::Defn::verify_construct(InterBookmark::package(IBM), P); if (E) return E;
NodePlacement::move_to_moving_bookmark(P, IBM);
2019-02-05 02:44:07 +02:00
return NULL;
}
2020-07-01 02:58:55 +03:00
inter_error_message *Inter::Constant::new_textual(inter_bookmark *IBM, inter_ti SID, inter_ti KID, inter_ti TID, inter_ti level, inter_error_location *eloc) {
2022-01-28 01:38:14 +02:00
inter_tree_node *P = Inode::new_with_4_data_fields(IBM,
2019-02-05 02:44:07 +02:00
CONSTANT_IST, SID, KID, CONSTANT_INDIRECT_TEXT, TID, eloc, level);
2022-01-27 01:59:02 +02:00
inter_error_message *E = Inter::Defn::verify_construct(InterBookmark::package(IBM), P); if (E) return E;
NodePlacement::move_to_moving_bookmark(P, IBM);
2019-02-05 02:44:07 +02:00
return NULL;
}
2020-07-01 02:58:55 +03:00
inter_error_message *Inter::Constant::new_function(inter_bookmark *IBM, inter_ti SID, inter_ti KID, inter_package *block, inter_ti level, inter_error_location *eloc) {
2022-01-31 01:49:12 +02:00
inter_ti BID = block->resource_ID;
2022-01-28 01:38:14 +02:00
inter_tree_node *P = Inode::new_with_4_data_fields(IBM,
2019-02-05 02:44:07 +02:00
CONSTANT_IST, SID, KID, CONSTANT_ROUTINE, BID, eloc, level);
2022-01-27 01:59:02 +02:00
inter_error_message *E = Inter::Defn::verify_construct(InterBookmark::package(IBM), P); if (E) return E;
NodePlacement::move_to_moving_bookmark(P, IBM);
2019-02-05 02:44:07 +02:00
return NULL;
}
2021-12-05 01:31:28 +02:00
inter_error_message *Inter::Constant::new_list(inter_bookmark *IBM, inter_ti SID, inter_ti KID,
int no_pairs, inter_ti *v1_pile, inter_ti *v2_pile, inter_ti level, inter_error_location *eloc) {
2022-01-28 01:38:14 +02:00
inter_tree_node *AP = Inode::new_with_3_data_fields(IBM, CONSTANT_IST, SID, KID, CONSTANT_INDIRECT_LIST, eloc, level);
2021-12-05 01:31:28 +02:00
int pos = AP->W.extent;
2022-01-30 15:32:38 +02:00
Inode::extend_instruction_by(AP, (inter_ti) (2*no_pairs));
2021-12-05 01:31:28 +02:00
for (int i=0; i<no_pairs; i++) {
2022-01-30 15:32:38 +02:00
AP->W.instruction[pos++] = v1_pile[i];
AP->W.instruction[pos++] = v2_pile[i];
2021-12-05 01:31:28 +02:00
}
2022-01-27 01:59:02 +02:00
inter_error_message *E = Inter::Defn::verify_construct(InterBookmark::package(IBM), AP); if (E) return E;
NodePlacement::move_to_moving_bookmark(AP, IBM);
2021-12-05 01:31:28 +02:00
return NULL;
}
2019-07-24 20:15:07 +03:00
int Inter::Constant::append(text_stream *line, inter_error_location *eloc, inter_bookmark *IBM, inter_symbol *conts_kind, inter_tree_node *P, text_stream *S, inter_error_message **E) {
2019-02-05 02:44:07 +02:00
*E = NULL;
2020-07-01 02:58:55 +03:00
inter_ti con_val1 = 0;
inter_ti con_val2 = 0;
2019-02-05 02:44:07 +02:00
if (conts_kind == NULL) {
2022-01-27 01:59:02 +02:00
inter_symbol *tc = Inter::Textual::find_symbol(InterBookmark::tree(IBM), eloc, InterBookmark::scope(IBM), S, CONSTANT_IST, E);
2019-02-05 02:44:07 +02:00
if (*E) return FALSE;
if (Inter::Kind::constructor(Inter::Constant::kind_of(tc)) == COLUMN_ICON) {
InterSymbol::to_data(InterBookmark::tree(IBM), InterBookmark::package(IBM), tc, &con_val1, &con_val2);
2019-02-05 02:44:07 +02:00
} else {
*E = Inter::Errors::quoted(I"not a table column constant", S, eloc);
return FALSE;
}
} else {
2022-01-27 01:59:02 +02:00
*E = Inter::Types::read(line, eloc, InterBookmark::tree(IBM), InterBookmark::package(IBM), conts_kind, S, &con_val1, &con_val2, InterBookmark::scope(IBM));
2019-02-05 02:44:07 +02:00
if (*E) return FALSE;
}
2022-01-30 15:32:38 +02:00
Inode::extend_instruction_by(P, 2);
P->W.instruction[P->W.extent-2] = con_val1;
P->W.instruction[P->W.extent-1] = con_val2;
2019-02-05 02:44:07 +02:00
return TRUE;
}
2020-07-01 02:58:55 +03:00
void Inter::Constant::transpose(inter_construct *IC, inter_tree_node *P, inter_ti *grid, inter_ti grid_extent, inter_error_message **E) {
2022-01-30 15:32:38 +02:00
if (P->W.instruction[FORMAT_CONST_IFLD] == CONSTANT_ROUTINE)
P->W.instruction[DATA_CONST_IFLD] = grid[P->W.instruction[DATA_CONST_IFLD]];
2022-01-30 15:32:38 +02:00
switch (P->W.instruction[FORMAT_CONST_IFLD]) {
case CONSTANT_DIRECT:
2022-01-30 15:32:38 +02:00
P->W.instruction[DATA_CONST_IFLD+1] = Inter::Types::transpose_value(P->W.instruction[DATA_CONST_IFLD], P->W.instruction[DATA_CONST_IFLD+1], grid, grid_extent, E);
break;
case CONSTANT_INDIRECT_TEXT:
2022-01-30 15:32:38 +02:00
P->W.instruction[DATA_CONST_IFLD] = grid[P->W.instruction[DATA_CONST_IFLD]];
break;
case CONSTANT_SUM_LIST:
case CONSTANT_PRODUCT_LIST:
case CONSTANT_DIFFERENCE_LIST:
case CONSTANT_QUOTIENT_LIST:
case CONSTANT_INDIRECT_LIST:
case CONSTANT_STRUCT:
for (int i=DATA_CONST_IFLD; i<P->W.extent; i=i+2) {
2022-01-30 15:32:38 +02:00
P->W.instruction[i+1] = Inter::Types::transpose_value(P->W.instruction[i], P->W.instruction[i+1], grid, grid_extent, E);
}
break;
}
2019-07-27 13:16:22 +03:00
}
2019-07-24 20:15:07 +03:00
void Inter::Constant::verify(inter_construct *IC, inter_tree_node *P, inter_package *owner, inter_error_message **E) {
*E = Inter::Verify::defn(owner, P, DEFN_CONST_IFLD); if (*E) return;
2022-01-30 15:32:38 +02:00
*E = Inter::Verify::symbol(owner, P, P->W.instruction[KIND_CONST_IFLD], KIND_IST); if (*E) return;
2022-02-03 17:51:44 +02:00
inter_symbol *con_kind = InterSymbolsTable::symbol_from_ID(InterPackage::scope(owner), P->W.instruction[KIND_CONST_IFLD]);
2022-01-30 15:32:38 +02:00
switch (P->W.instruction[FORMAT_CONST_IFLD]) {
2019-02-05 02:44:07 +02:00
case CONSTANT_DIRECT:
2020-05-11 17:21:29 +03:00
if (P->W.extent != DATA_CONST_IFLD + 2) { *E = Inode::error(P, I"extent wrong", NULL); return; }
*E = Inter::Verify::value(owner, P, DATA_CONST_IFLD, con_kind); if (*E) return;
2019-02-05 02:44:07 +02:00
break;
case CONSTANT_SUM_LIST:
case CONSTANT_PRODUCT_LIST:
case CONSTANT_DIFFERENCE_LIST:
case CONSTANT_QUOTIENT_LIST:
2020-05-11 17:21:29 +03:00
if ((P->W.extent % 2) != 1) { *E = Inode::error(P, I"extent wrong", NULL); return; }
2019-07-24 20:15:07 +03:00
for (int i=DATA_CONST_IFLD; i<P->W.extent; i=i+2) {
*E = Inter::Verify::value(owner, P, i, con_kind); if (*E) return;
2019-02-05 02:44:07 +02:00
}
break;
case CONSTANT_INDIRECT_LIST: {
2020-05-11 17:21:29 +03:00
if ((P->W.extent % 2) != 1) { *E = Inode::error(P, I"extent wrong", NULL); return; }
2019-02-05 02:44:07 +02:00
inter_data_type *idt = Inter::Kind::data_type(con_kind);
if ((idt) && ((idt->type_ID == LIST_IDT) || (idt->type_ID == COLUMN_IDT))) {
inter_symbol *conts_kind = Inter::Kind::operand_symbol(con_kind, 0);
2020-05-11 17:21:29 +03:00
if (Inter::Kind::is(conts_kind) == FALSE) { *E = Inode::error(P, I"not a kind", (conts_kind)?(conts_kind->symbol_name):NULL); return; }
2019-07-24 20:15:07 +03:00
for (int i=DATA_CONST_IFLD; i<P->W.extent; i=i+2) {
*E = Inter::Verify::value(owner, P, i, conts_kind); if (*E) return;
2019-02-05 02:44:07 +02:00
}
} else if ((idt) && (idt->type_ID == TABLE_IDT)) {
2019-07-24 20:15:07 +03:00
for (int i=DATA_CONST_IFLD; i<P->W.extent; i=i+2) {
2022-01-30 15:32:38 +02:00
inter_ti V1 = P->W.instruction[i];
inter_ti V2 = P->W.instruction[i+1];
2022-01-31 01:49:12 +02:00
inter_symbol *K = Inter::Types::value_to_constant_symbol_kind(InterPackage::scope(owner), V1, V2);
2020-05-11 17:21:29 +03:00
if (Inter::Kind::constructor(K) != COLUMN_ICON) { *E = Inode::error(P, I"not a table column constant", NULL); return; }
2019-02-05 02:44:07 +02:00
}
} else {
2020-05-11 17:21:29 +03:00
{ *E = Inode::error(P, I"not a list", con_kind->symbol_name); return; }
2019-02-05 02:44:07 +02:00
}
break;
}
case CONSTANT_STRUCT: {
2020-05-11 17:21:29 +03:00
if ((P->W.extent % 2) != 1) { *E = Inode::error(P, I"extent odd", NULL); return; }
2019-02-05 02:44:07 +02:00
inter_data_type *idt = Inter::Kind::data_type(con_kind);
if ((idt) && (idt->type_ID == STRUCT_IDT)) {
int arity = Inter::Kind::arity(con_kind);
2019-07-24 20:15:07 +03:00
int given = (P->W.extent - DATA_CONST_IFLD)/2;
2020-05-11 17:21:29 +03:00
if (arity != given) { *E = Inode::error(P, I"extent not same size as struct definition", NULL); return; }
2019-07-24 20:15:07 +03:00
for (int i=DATA_CONST_IFLD, counter = 0; i<P->W.extent; i=i+2) {
2019-02-05 02:44:07 +02:00
inter_symbol *conts_kind = Inter::Kind::operand_symbol(con_kind, counter++);
2020-05-11 17:21:29 +03:00
if (Inter::Kind::is(conts_kind) == FALSE) { *E = Inode::error(P, I"not a kind", (conts_kind)?(conts_kind->symbol_name):NULL); return; }
*E = Inter::Verify::value(owner, P, i, conts_kind); if (*E) return;
2019-02-05 02:44:07 +02:00
}
} else {
2020-05-11 17:21:29 +03:00
{ *E = Inode::error(P, I"not a struct", NULL); return; }
2019-02-05 02:44:07 +02:00
}
break;
}
case CONSTANT_INDIRECT_TEXT:
2020-05-11 17:21:29 +03:00
if (P->W.extent != DATA_CONST_IFLD + 1) { *E = Inode::error(P, I"extent wrong", NULL); return; }
2022-01-30 15:32:38 +02:00
inter_ti ID = P->W.instruction[DATA_CONST_IFLD];
2020-05-11 17:21:29 +03:00
text_stream *S = Inode::ID_to_text(P, ID);
if (S == NULL) { *E = Inode::error(P, I"no text in comment", NULL); return; }
2019-02-05 02:44:07 +02:00
LOOP_THROUGH_TEXT(pos, S)
if (Inter::Constant::char_acceptable(Str::get(pos)) == FALSE)
2020-05-11 17:21:29 +03:00
{ *E = Inode::error(P, I"bad character in text", NULL); return; }
2019-02-05 02:44:07 +02:00
break;
case CONSTANT_ROUTINE:
2020-05-11 17:21:29 +03:00
if (P->W.extent != DATA_CONST_IFLD + 1) { *E = Inode::error(P, I"extent wrong", NULL); return; }
2019-02-05 02:44:07 +02:00
break;
}
}
2019-07-24 20:15:07 +03:00
void Inter::Constant::write(inter_construct *IC, OUTPUT_STREAM, inter_tree_node *P, inter_error_message **E) {
2022-02-03 17:51:44 +02:00
inter_symbol *con_name = InterSymbolsTable::symbol_from_ID_at_node(P, DEFN_CONST_IFLD);
inter_symbol *con_kind = InterSymbolsTable::symbol_from_ID_at_node(P, KIND_CONST_IFLD);
2019-02-05 02:44:07 +02:00
int hex = FALSE;
2019-07-26 10:59:23 +03:00
if (Inter::Annotations::find(&(con_name->ann_set), HEX_IANN)) hex = TRUE;
2019-02-05 02:44:07 +02:00
if ((con_name) && (con_kind)) {
WRITE("constant %S %S = ", con_name->symbol_name, con_kind->symbol_name);
2022-01-30 15:32:38 +02:00
switch (P->W.instruction[FORMAT_CONST_IFLD]) {
2019-02-05 02:44:07 +02:00
case CONSTANT_DIRECT:
Inter::Types::write(OUT, P, con_kind,
2022-01-31 01:49:12 +02:00
P->W.instruction[DATA_CONST_IFLD], P->W.instruction[DATA_CONST_IFLD+1], InterPackage::scope_of(P), hex);
2019-02-05 02:44:07 +02:00
break;
case CONSTANT_SUM_LIST:
case CONSTANT_PRODUCT_LIST:
case CONSTANT_DIFFERENCE_LIST:
case CONSTANT_QUOTIENT_LIST:
2019-02-05 02:44:07 +02:00
case CONSTANT_INDIRECT_LIST: {
2022-01-30 15:32:38 +02:00
if (P->W.instruction[FORMAT_CONST_IFLD] == CONSTANT_SUM_LIST) WRITE("sum");
if (P->W.instruction[FORMAT_CONST_IFLD] == CONSTANT_PRODUCT_LIST) WRITE("product");
if (P->W.instruction[FORMAT_CONST_IFLD] == CONSTANT_DIFFERENCE_LIST) WRITE("difference");
if (P->W.instruction[FORMAT_CONST_IFLD] == CONSTANT_QUOTIENT_LIST) WRITE("quotient");
2019-02-05 02:44:07 +02:00
inter_symbol *conts_kind = Inter::Kind::operand_symbol(con_kind, 0);
WRITE("{");
2019-07-24 20:15:07 +03:00
for (int i=DATA_CONST_IFLD; i<P->W.extent; i=i+2) {
2019-02-05 02:44:07 +02:00
if (i > DATA_CONST_IFLD) WRITE(",");
WRITE(" ");
2022-01-31 01:49:12 +02:00
Inter::Types::write(OUT, P, conts_kind, P->W.instruction[i], P->W.instruction[i+1], InterPackage::scope_of(P), hex);
2019-02-05 02:44:07 +02:00
}
WRITE(" }");
break;
}
case CONSTANT_STRUCT: {
WRITE("{");
2019-07-24 20:15:07 +03:00
for (int i=DATA_CONST_IFLD, counter = 0; i<P->W.extent; i=i+2) {
2019-02-05 02:44:07 +02:00
if (i > DATA_CONST_IFLD) WRITE(",");
WRITE(" ");
inter_symbol *conts_kind = Inter::Kind::operand_symbol(con_kind, counter++);
2022-01-31 01:49:12 +02:00
Inter::Types::write(OUT, P, conts_kind, P->W.instruction[i], P->W.instruction[i+1], InterPackage::scope_of(P), hex);
2019-02-05 02:44:07 +02:00
}
WRITE(" }");
break;
}
case CONSTANT_INDIRECT_TEXT:
WRITE("\"");
2022-01-30 15:32:38 +02:00
inter_ti ID = P->W.instruction[DATA_CONST_IFLD];
2020-05-11 17:21:29 +03:00
text_stream *S = Inode::ID_to_text(P, ID);
2019-02-05 02:44:07 +02:00
Inter::Constant::write_text(OUT, S);
WRITE("\"");
break;
case CONSTANT_ROUTINE: {
2022-01-30 15:32:38 +02:00
inter_package *block = Inode::ID_to_package(P, P->W.instruction[DATA_CONST_IFLD]);
2022-01-31 01:49:12 +02:00
WRITE("%S", InterPackage::name(block));
2019-02-05 02:44:07 +02:00
break;
}
}
InterSymbol::write_annotations(OUT, P, con_name);
2019-02-05 02:44:07 +02:00
} else {
2020-05-11 17:21:29 +03:00
*E = Inode::error(P, I"constant can't be written", NULL);
2019-07-09 08:45:46 +03:00
return;
2019-02-05 02:44:07 +02:00
}
}
inter_symbol *Inter::Constant::kind_of(inter_symbol *con_symbol) {
if (con_symbol == NULL) return NULL;
inter_tree_node *D = InterSymbol::definition(con_symbol);
if (D == NULL) return NULL;
2022-01-30 15:32:38 +02:00
if (D->W.instruction[ID_IFLD] != CONSTANT_IST) return NULL;
2022-02-03 17:51:44 +02:00
return InterSymbolsTable::symbol_from_ID_at_node(D, KIND_CONST_IFLD);
2019-02-05 02:44:07 +02:00
}
2019-07-27 13:16:22 +03:00
inter_package *Inter::Constant::code_block(inter_symbol *con_symbol) {
2019-02-05 02:44:07 +02:00
if (con_symbol == NULL) return NULL;
inter_tree_node *D = InterSymbol::definition(con_symbol);
if (D == NULL) return NULL;
2022-01-30 15:32:38 +02:00
if (D->W.instruction[ID_IFLD] != CONSTANT_IST) return NULL;
if (D->W.instruction[FORMAT_CONST_IFLD] != CONSTANT_ROUTINE) return NULL;
return Inode::ID_to_package(D, D->W.instruction[DATA_CONST_IFLD]);
2019-02-05 02:44:07 +02:00
}
int Inter::Constant::is_routine(inter_symbol *con_symbol) {
if (con_symbol == NULL) return FALSE;
inter_tree_node *D = InterSymbol::definition(con_symbol);
if (D == NULL) return FALSE;
2022-01-30 15:32:38 +02:00
if (D->W.instruction[ID_IFLD] != CONSTANT_IST) return FALSE;
if (D->W.instruction[FORMAT_CONST_IFLD] != CONSTANT_ROUTINE) return FALSE;
2019-02-05 02:44:07 +02:00
return TRUE;
}
inter_symbols_table *Inter::Constant::local_symbols(inter_symbol *con_symbol) {
2022-01-31 01:49:12 +02:00
return InterPackage::scope(Inter::Constant::code_block(con_symbol));
2019-02-05 02:44:07 +02:00
}
int Inter::Constant::char_acceptable(int c) {
if ((c < 0x20) && (c != 0x09) && (c != 0x0a)) return FALSE;
return TRUE;
}
2021-09-26 13:01:13 +03:00
int Inter::Constant::constant_depth(inter_symbol *con) {
LOG_INDENT;
int d = Inter::Constant::constant_depth_r(con);
LOGIF(CONSTANT_DEPTH_CALCULATION, "%S has depth %d\n", con->symbol_name, d);
LOG_OUTDENT;
return d;
}
int Inter::Constant::constant_depth_r(inter_symbol *con) {
if (con == NULL) return 1;
inter_tree_node *D = InterSymbol::definition(con);
2022-01-30 15:32:38 +02:00
if (D->W.instruction[ID_IFLD] != CONSTANT_IST) return 1;
if (D->W.instruction[FORMAT_CONST_IFLD] == CONSTANT_DIRECT) {
inter_ti val1 = D->W.instruction[DATA_CONST_IFLD];
inter_ti val2 = D->W.instruction[DATA_CONST_IFLD + 1];
2021-09-26 13:01:13 +03:00
if (val1 == ALIAS_IVAL) {
inter_symbol *alias =
2022-02-03 17:51:44 +02:00
InterSymbolsTable::symbol_from_data_pair(
2022-01-31 01:49:12 +02:00
val1, val2, InterPackage::scope(D->package));
2021-09-26 13:01:13 +03:00
return Inter::Constant::constant_depth(alias) + 1;
}
return 1;
}
2022-01-30 15:32:38 +02:00
if ((D->W.instruction[FORMAT_CONST_IFLD] == CONSTANT_SUM_LIST) ||
(D->W.instruction[FORMAT_CONST_IFLD] == CONSTANT_PRODUCT_LIST) ||
(D->W.instruction[FORMAT_CONST_IFLD] == CONSTANT_DIFFERENCE_LIST) ||
(D->W.instruction[FORMAT_CONST_IFLD] == CONSTANT_QUOTIENT_LIST)) {
2021-09-26 13:01:13 +03:00
int total = 0;
for (int i=DATA_CONST_IFLD; i<D->W.extent; i=i+2) {
2022-01-30 15:32:38 +02:00
inter_ti val1 = D->W.instruction[i];
inter_ti val2 = D->W.instruction[i + 1];
2021-09-26 13:01:13 +03:00
if (val1 == ALIAS_IVAL) {
inter_symbol *alias =
2022-02-03 17:51:44 +02:00
InterSymbolsTable::symbol_from_data_pair(
2022-01-31 01:49:12 +02:00
val1, val2, InterPackage::scope(D->package));
2021-09-26 13:01:13 +03:00
total += Inter::Constant::constant_depth(alias);
} else total++;
}
return 1 + total;
}
return 1;
}
2021-10-10 16:53:42 +03:00
inter_ti Inter::Constant::evaluate(inter_symbols_table *T, inter_ti val1, inter_ti val2) {
2021-09-26 13:01:13 +03:00
if (val1 == LITERAL_IVAL) return val2;
if (InterSymbol::is_stored_in_data(val1, val2)) {
2022-02-03 17:51:44 +02:00
inter_symbol *aliased = InterSymbolsTable::symbol_from_data_pair(val1, val2, T);
2021-09-26 13:01:13 +03:00
if (aliased == NULL) internal_error("bad aliased symbol");
inter_tree_node *D = aliased->definition;
if (D == NULL) internal_error("undefined symbol");
2022-01-30 15:32:38 +02:00
switch (D->W.instruction[FORMAT_CONST_IFLD]) {
2021-09-26 13:01:13 +03:00
case CONSTANT_DIRECT: {
2022-01-30 15:32:38 +02:00
inter_ti dval1 = D->W.instruction[DATA_CONST_IFLD];
inter_ti dval2 = D->W.instruction[DATA_CONST_IFLD + 1];
2022-01-31 01:49:12 +02:00
inter_ti e = Inter::Constant::evaluate(InterPackage::scope_of(D), dval1, dval2);
2021-09-26 13:01:13 +03:00
return e;
}
case CONSTANT_SUM_LIST:
case CONSTANT_PRODUCT_LIST:
case CONSTANT_DIFFERENCE_LIST:
case CONSTANT_QUOTIENT_LIST: {
inter_ti result = 0;
for (int i=DATA_CONST_IFLD; i<D->W.extent; i=i+2) {
2022-01-31 01:49:12 +02:00
inter_ti extra = Inter::Constant::evaluate(InterPackage::scope_of(D), D->W.instruction[i], D->W.instruction[i+1]);
2021-09-26 13:01:13 +03:00
if (i == DATA_CONST_IFLD) result = extra;
else {
2022-01-30 15:32:38 +02:00
if (D->W.instruction[FORMAT_CONST_IFLD] == CONSTANT_SUM_LIST) result = result + extra;
if (D->W.instruction[FORMAT_CONST_IFLD] == CONSTANT_PRODUCT_LIST) result = result * extra;
if (D->W.instruction[FORMAT_CONST_IFLD] == CONSTANT_DIFFERENCE_LIST) result = result - extra;
if (D->W.instruction[FORMAT_CONST_IFLD] == CONSTANT_QUOTIENT_LIST) result = result / extra;
2021-09-26 13:01:13 +03:00
}
}
return result;
}
}
}
return 0;
}