:(before "End Mu Types Initialization")
{
type_ordinal tmp = Type_ordinal["number-or-point"] = Next_type_ordinal++;
Type[tmp].size = 2;
Type[tmp].kind = exclusive_container;
Type[tmp].name = "number-or-point";
vector<type_ordinal> t1;
t1.push_back(number);
Type[tmp].elements.push_back(t1);
vector<type_ordinal> t2;
t2.push_back(point);
Type[tmp].elements.push_back(t2);
Type[tmp].element_names.push_back("i");
Type[tmp].element_names.push_back("p");
}
:(scenario copy_exclusive_container)
recipe main [
1:number <- copy 1
2:number <- copy 34
3:number <- copy 35
4:number-or-point <- copy 1:number-or-point/raw
]
+mem: storing 1 in location 4
+mem: storing 34 in location 5
+mem: storing 35 in location 6
:(before "End size_of(types) Cases")
if (t.kind == exclusive_container) {
long long int result = 0;
for (long long int i = 0; i < t.size; ++i) {
long long int tmp = size_of(t.elements.at(i));
if (tmp > result) result = tmp;
}
return result+1;
}
:(before "End Mu Types Initialization")
Type_ordinal["variant"] = 0;
:(scenario maybe_convert)
recipe main [
12:number <- copy 1
13:number <- copy 35
14:number <- copy 36
20:address:point <- maybe-convert 12:number-or-point/raw, 1:variant
]
+mem: storing 13 in location 20
:(scenario maybe_convert_fail)
recipe main [
12:number <- copy 1
13:number <- copy 35
14:number <- copy 36
20:address:point <- maybe-convert 12:number-or-point/raw, 0:variant
]
+mem: storing 0 in location 20
:(before "End Primitive Recipe Declarations")
MAYBE_CONVERT,
:(before "End Primitive Recipe Numbers")
Recipe_ordinal["maybe-convert"] = MAYBE_CONVERT;
:(before "End Primitive Recipe Implementations")
case MAYBE_CONVERT: {
if (SIZE(ingredients) != 2) {
raise << current_recipe_name() << ": 'maybe-convert' expects exactly 2 ingredients in '" << current_instruction().to_string() << "'\n" << end();
break;
}
reagent base = canonize(current_instruction().ingredients.at(0));
long long int base_address = base.value;
if (base_address == 0) {
raise << current_recipe_name() << ": tried to access location 0 in '" << current_instruction().to_string() << "'\n" << end();
break;
}
if (base.types.empty() || Type[base.types.at(0)].kind != exclusive_container) {
raise << current_recipe_name () << ": first ingredient of 'maybe-convert' should be an exclusive-container, but got " << base.original_string << '\n' << end();
break;
}
if (!is_literal(current_instruction().ingredients.at(1))) {
raise << current_recipe_name() << ": second ingredient of 'maybe-convert' should have type 'variant', but got " << current_instruction().ingredients.at(1).original_string << '\n' << end();
break;
}
long long int tag = current_instruction().ingredients.at(1).value;
long long int result;
if (tag == static_cast<long long int>(Memory[base_address])) {
result = base_address+1;
}
else {
result = 0;
}
products.resize(1);
products.at(0).push_back(result);
break;
}
:(scenario exclusive_container)
exclusive-container foo [
x:number
y:number
]
+parse: reading exclusive-container foo
+parse: element name: x
+parse: type: 1
+parse: element name: y
+parse: type: 1
:(before "End Command Handlers")
else if (command == "exclusive-container") {
insert_container(command, exclusive_container, in);
}
:(scenario lift_to_exclusive_container)
exclusive-container foo [
x:number
y:number
]
recipe main [
1:number <- copy 34
2:foo <- merge 0/x, 1:number
4:foo <- merge 1/x, 1:number
]
+mem: storing 0 in location 2
+mem: storing 34 in location 3
+mem: storing 1 in location 4
+mem: storing 34 in location 5
:(before "End size_mismatch(x) Cases")
if (current_instruction().operation == MERGE
&& !current_instruction().products.empty()
&& !current_instruction().products.at(0).types.empty()) {
reagent x = canonize(current_instruction().products.at(0));
if (Type[x.types.at(0)].kind == exclusive_container) {
return size_of(x) < SIZE(data);
}
}
:(scenario merge_exclusive_container_with_mismatched_sizes)
container foo [
x:number
y:number
]
exclusive-container bar [
x:number
y:foo
]
recipe main [
1:number <- copy 34
2:number <- copy 35
3:bar <- merge 0/x, 1:number
6:bar <- merge 1/foo, 1:number, 2:number
]
+mem: storing 0 in location 3
+mem: storing 34 in location 4
+mem: storing 1 in location 6
+mem: storing 34 in location 7
+mem: storing 35 in location 8