:(scenario global_space)
recipe main [
10:number <- copy 5
20:number <- copy 5
global-space:address:array:location <- copy 20/unsafe
default-space:address:array:location <- copy 10/unsafe
1:number <- copy 23
1:number/space:global <- copy 24
]
+mem: storing 23 in location 12
+mem: storing 24 in location 22
:(before "End Disqualified Reagents")
if (x.name == "global-space")
x.initialized = true;
:(before "End is_special_name Cases")
if (s == "global-space") return true;
:(before "End routine Fields")
long long int global_space;
:(before "End routine Constructor")
global_space = 0;
:(after "void write_memory(reagent x, vector<double> data)")
if (x.name == "global-space") {
if (!scalar(data)
|| !x.type
|| x.type->value != get(Type_ordinal, "address")
|| !x.type->right
|| x.type->right->value != get(Type_ordinal, "array")
|| !x.type->right->right
|| x.type->right->right->value != get(Type_ordinal, "location")
|| x.type->right->right->right) {
raise_error << maybe(current_recipe_name()) << "'global-space' should be of type address:array:location, but tried to write " << to_string(data) << '\n' << end();
}
if (Current_routine->global_space)
raise_error << "routine already has a global-space; you can't over-write your globals" << end();
Current_routine->global_space = data.at(0);
return;
}
:(after "long long int space_base(const reagent& x)")
if (is_global(x)) {
if (!Current_routine->global_space)
raise_error << "routine has no global space\n" << end();
return Current_routine->global_space;
}
:(scenario global_space_with_names)
% Hide_errors = true;
recipe main [
global-space:address:array:location <- new location:type, 10
x:number <- copy 23
1:number/space:global <- copy 24
]
$error: 0
:(after "bool is_numeric_location(const reagent& x)")
if (is_global(x)) return false;
:(code)
bool is_global(const reagent& x) {
for (long long int i = 1; i < SIZE(x.properties); ++i) {
if (x.properties.at(i).first == "space")
return x.properties.at(i).second && x.properties.at(i).second->value == "global";
}
return false;
}