:(scenario set_default_space)
def main [
10:number <- copy 0
11:number <- copy 5
default-space:address:shared:array:location <- copy 10/unsafe
1:number <- copy 23
]
+mem: storing 23 in location 13
:(scenario lookup_sidesteps_default_space)
def main [
3:number <- copy 34
1000:number <- copy 0
1001:number <- copy 5
default-space:address:shared:array:location <- copy 1000/unsafe
1:address:number <- copy 3/unsafe
8:number/raw <- copy *1:address:number
]
+mem: storing 34 in location 8
:(scenario convert_names_passes_default_space)
% Hide_errors = true;
def main [
default-space:number, x:number <- copy 0, 1
]
+name: assign x 1
-name: assign default-space 1
:(before "End is_disqualified Cases")
if (x.name == "default-space")
x.initialized = true;
:(before "End is_special_name Cases")
if (s == "default-space") return true;
:(before "End call Fields")
int default_space;
:(before "End call Constructor")
default_space = 0;
:(before "End canonize(x) Special-cases")
absolutize(x);
:(code)
void absolutize(reagent& x) {
if (is_raw(x) || is_dummy(x)) return;
if (x.name == "default-space") return;
if (!x.initialized) {
raise << to_original_string(current_instruction()) << ": reagent not initialized: " << x.original_string << '\n' << end();
}
x.set_value(address(x.value, space_base(x)));
x.properties.push_back(pair<string, string_tree*>("raw", NULL));
assert(is_raw(x));
}
int space_base(const reagent& x) {
return current_call().default_space ? (current_call().default_space+1) : 0;
}
int address(int offset, int base) {
assert(offset >= 0);
if (base == 0) return offset;
int size = get_or_insert(Memory, base);
if (offset >= size) {
raise << "location " << offset << " is out of bounds " << size << " at " << base << '\n' << end();
return 0;
}
return base + 1 + offset;
}
:(after "void write_memory(reagent x, const vector<double>& data)")
if (x.name == "default-space") {
if (!scalar(data)
|| !x.type
|| x.type->value != get(Type_ordinal, "address")
|| !x.type->right
|| x.type->right->value != get(Type_ordinal, "shared")
|| !x.type->right->right
|| x.type->right->right->value != get(Type_ordinal, "array")
|| !x.type->right->right->right
|| x.type->right->right->right->value != get(Type_ordinal, "location")
|| x.type->right->right->right->right) {
raise << maybe(current_recipe_name()) << "'default-space' should be of type address:shared:array:location, but tried to write " << to_string(data) << '\n' << end();
}
current_call().default_space = data.at(0);
return;
}
:(scenario get_default_space)
def main [
default-space:address:shared:array:location <- copy 10/unsafe
1:address:shared:array:location/raw <- copy default-space:address:shared:array:location
]
+mem: storing 10 in location 1
:(after "vector<double> read_memory(reagent x)")
if (x.name == "default-space") {
vector<double> result;
result.push_back(current_call().default_space);
return result;
}
:(scenario lookup_sidesteps_default_space_in_get)
def main [
12:number <- copy 34
13:number <- copy 35
1000:number <- copy 0
1001:number <- copy 5
default-space:address:shared:array:location <- copy 1000/unsafe
1:address:point <- copy 12/unsafe
9:number/raw <- get *1:address:point, 1:offset
]
+mem: storing 35 in location 9
:(after "reagent tmp" following "case GET:")
tmp.properties.push_back(pair<string, string_tree*>("raw", NULL));
:(scenario lookup_sidesteps_default_space_in_index)
def main [
12:number <- copy 2
13:number <- copy 34
14:number <- copy 35
1000:number <- copy 0
1001:number <- copy 5
default-space:address:shared:array:location <- copy 1000/unsafe
1:address:array:number <- copy 12/unsafe
9:number/raw <- index *1:address:array:number, 1
]
+mem: storing 35 in location 9
:(after "reagent tmp" following "case INDEX:")
tmp.properties.push_back(pair<string, string_tree*>("raw", NULL));
:(scenario new_default_space)
def main [
new-default-space
x:number <- copy 0
y:number <- copy 3
]
+mem: array size is 3
:(before "End is_disqualified Cases")
if (x.name == "number-of-locals")
x.initialized = true;
:(before "End is_special_name Cases")
if (s == "number-of-locals") return true;
:(before "End Rewrite Instruction(curr, recipe result)")
if (curr.name == "new-default-space") {
rewrite_default_space_instruction(curr);
}
:(after "vector<double> read_memory(reagent x)")
if (x.name == "number-of-locals") {
vector<double> result;
result.push_back(Name[get(Recipe_ordinal, current_recipe_name())][""]);
if (result.back() == 0)
raise << "no space allocated for default-space in recipe " << current_recipe_name() << "; are you using names?\n" << end();
return result;
}
:(after "void write_memory(reagent x, const vector<double>& data)")
if (x.name == "number-of-locals") {
raise << maybe(current_recipe_name()) << "can't write to special name 'number-of-locals'\n" << end();
return;
}
:(scenario local_scope)
def main [
1:address <- foo
2:address <- foo
3:boolean <- equal 1:address, 2:address
]
def foo [
local-scope
x:number <- copy 34
return default-space:address:shared:array:location
]
+mem: storing 1 in location 3
:(code)
:(after "Falling Through End Of Recipe")
try_reclaim_locals();
:(after "Starting Reply")
try_reclaim_locals();
:(before "End Rewrite Instruction(curr, recipe result)")
if (curr.name == "local-scope") {
rewrite_default_space_instruction(curr);
}
:(code)
void try_reclaim_locals() {
const recipe_ordinal r = get(Recipe_ordinal, current_recipe_name());
const recipe& exiting_recipe = get(Recipe, r);
if (exiting_recipe.steps.empty()) return;
const instruction& inst = exiting_recipe.steps.at(0);
if (inst.old_name != "local-scope") return;
TODO
abandon(current_call().default_space,
1 + 1 + Name[r][""]);
}
bool escaping(const reagent& r) {
if (current_step_index() >= SIZE(Current_routine->steps())) return false;
for (long long i = 0; i < SIZE(current_instruction().ingredients); ++i) {
if (r == current_instruction().ingredients.at(i))
return true;
}
return false;
}
void rewrite_default_space_instruction(instruction& curr) {
if (!curr.ingredients.empty())
raise << to_original_string(curr) << " can't take any ingredients\n" << end();
curr.name = "new";
curr.ingredients.push_back(reagent("location:type"));
curr.ingredients.push_back(reagent("number-of-locals:literal"));
if (!curr.products.empty())
raise << "new-default-space can't take any results\n" << end();
curr.products.push_back(reagent("default-space:address:shared:array:location"));
}
:(before "End Globals")
bool Hide_missing_default_space_errors = true;
:(before "End Checks")
Transform.push_back(check_default_space);
:(code)
void check_default_space(const recipe_ordinal r) {
if (Hide_missing_default_space_errors) return;
const recipe& caller = get(Recipe, r);
if (caller.name.find("scenario_") == 0) return;
if (caller.name.find("run_") == 0) return;
if (!contains_non_special_name(r)) return;
trace(9991, "transform") << "--- check that recipe " << caller.name << " sets default-space" << end();
if (caller.steps.empty()) return;
if (caller.steps.at(0).products.empty()
|| caller.steps.at(0).products.at(0).name != "default-space") {
raise << maybe(caller.name) << " does not seem to start with default-space or local-scope\n" << end();
}
}
:(after "Load .mu Core")
Hide_missing_default_space_errors = false;
:(after "Test Runs")
Hide_missing_default_space_errors = true;
:(after "Running Main")
Hide_missing_default_space_errors = false;
:(code)
bool contains_non_special_name(const recipe_ordinal r) {
for (map<string, int>::iterator p = Name[r].begin(); p != Name[r].end(); ++p) {
if (p->first.empty()) continue;
if (p->first.find("stash_") == 0) continue;
if (!is_special_name(p->first))
return true;
}
return false;
}
bool operator==(const reagent& a, const reagent& b) {
if (a.name != b.name) return false;
if (property(a, "space") != property(b, "space")) return false;
return true;
}
bool operator<(const reagent& a, const reagent& b) {
int aspace = 0, bspace = 0;
if (has_property(a, "space")) aspace = to_integer(property(a, "space")->value);
if (has_property(b, "space")) bspace = to_integer(property(b, "space")->value);
if (aspace != bspace) return aspace < bspace;
return a.name < b.name;
}