:(scenario set_default_space)
recipe main [
10:number <- copy 5:literal
default-space:address:array:location <- copy 10:literal
1:number <- copy 23:literal
]
+mem: storing 23 in location 12
:(scenario deref_sidesteps_default_space)
recipe main [
3:number <- copy 34:literal
1000:number <- copy 5:literal
default-space:address:array:location <- copy 1000:literal
1:address:number <- copy 3:literal
8:number/raw <- copy 1:address:number/deref
]
+mem: storing 34 in location 8
:(before "End call Fields")
index_t default_space;
:(replace "call(recipe_number r) :running_recipe(r)")
call(recipe_number r) :running_recipe(r), running_step_index(0), next_ingredient_to_process(0), default_space(0) {}
:(replace "reagent r = x" following "reagent canonize(reagent x)")
reagent r = absolutize(x);
:(code)
reagent absolutize(reagent x) {
if (is_raw(x) || is_dummy(x)) return x;
assert(x.initialized);
reagent r = x;
r.set_value(address(r.value, space_base(r)));
r.properties.push_back(pair<string, vector<string> >("raw", vector<string>()));
assert(is_raw(r));
return r;
}
:(before "return result" following "reagent deref(reagent x)")
result.properties.push_back(pair<string, vector<string> >("raw", vector<string>()));
:(scenario deref_sidesteps_default_space_in_get)
recipe main [
12:number <- copy 34:literal
13:number <- copy 35:literal
1000:number <- copy 5:literal
default-space:address:array:location <- copy 1000:literal
1:address:point <- copy 12:literal
9:number/raw <- get 1:address:point/deref, 1:offset
]
+mem: storing 35 in location 9
:(after "reagent tmp" following "case GET:")
tmp.properties.push_back(pair<string, vector<string> >("raw", vector<string>()));
:(scenario deref_sidesteps_default_space_in_index)
recipe main [
12:number <- copy 2:literal
13:number <- copy 34:literal
14:number <- copy 35:literal
1000:number <- copy 5:literal
default-space:address:array:location <- copy 1000:literal
1:address:array:number <- copy 12:literal
9:number/raw <- index 1:address:array:number/deref, 1:literal
]
+mem: storing 35 in location 9
:(after "reagent tmp" following "case INDEX:")
tmp.properties.push_back(pair<string, vector<string> >("raw", vector<string>()));
:(code)
index_t space_base(const reagent& x) {
return Current_routine->calls.front().default_space;
}
index_t address(index_t offset, index_t base) {
if (base == 0) return offset;
if (offset >= static_cast<index_t>(Memory[base])) {
raise << "location " << offset << " is out of bounds " << Memory[base] << '\n';
}
return base+1 + offset;
}
:(after "void write_memory(reagent x, vector<double> data)")
if (x.name == "default-space") {
assert(data.size() == 1);
Current_routine->calls.front().default_space = data.at(0);
return;
}
:(scenario get_default_space)
recipe main [
default-space:address:array:location <- copy 10:literal
1:number/raw <- copy default-space:address: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_routine->calls.front().default_space);
return result;
}