:(scenario surrounding_space)
def main [
10:num <- copy 0
11:num <- copy 5
20:num <- copy 0
21:num <- copy 5
default-space:space <- copy 10/unsafe
0:space/names:dummy <- copy 20/unsafe
1:num <- copy 32
1:num/space:1 <- copy 33
]
def dummy [
]
+mem: storing 20 in location 12
+mem: storing 32 in location 13
+mem: storing 33 in location 23
:(before "End Checks For Reclaiming Locals")
if (space_index(inst.products.at(i)) > 0) continue;
:(replace{} "int space_base(const reagent& x)")
int space_base(const reagent& x) {
int base = current_call().default_space ? (current_call().default_space+1) : 0;
return space_base(x, space_index(x), base);
}
int space_base(const reagent& x, int space_index, int base) {
if (space_index == 0)
return base;
int result = space_base(x, space_index-1, get_or_insert(Memory, base+1))+1;
return result;
}
int space_index(const reagent& x) {
for (int i = 0; i < SIZE(x.properties); ++i) {
if (x.properties.at(i).first == "space") {
if (!x.properties.at(i).second || x.properties.at(i).second->right)
raise << maybe(current_recipe_name()) << "/space metadata should take exactly one value in '" << x.original_string << "'\n" << end();
return to_integer(x.properties.at(i).second->value);
}
}
return 0;
}
:(scenario permit_space_as_variable_name)
def main [
space:num <- copy 0
]