mu/043space.cc

131 lines
4.5 KiB
C++
Raw Normal View History

2015-05-19 17:38:23 +00:00
//: Spaces help isolate recipes from each other. You can create them at will,
2015-03-22 00:53:20 +00:00
//: and all addresses in arguments are implicitly based on the 'default-space'
//: (unless they have the /raw property)
2015-04-24 17:19:03 +00:00
:(scenario set_default_space)
# if default-space is 10, and if an array of 5 locals lies from location 11 to 15 (inclusive),
# then location 0 is really location 11, location 1 is really location 12, and so on.
2015-03-22 00:53:20 +00:00
recipe main [
10:number <- copy 5:literal # pretend array; in practice we'll use new
2015-04-19 07:21:24 +00:00
default-space:address:array:location <- copy 10:literal
1:number <- copy 23:literal
2015-03-22 00:53:20 +00:00
]
2015-03-29 03:50:23 +00:00
+mem: storing 23 in location 12
2015-03-22 00:53:20 +00:00
2015-04-24 17:19:03 +00:00
:(scenario deref_sidesteps_default_space)
2015-04-03 18:42:50 +00:00
recipe main [
# pretend pointer from outside
3:number <- copy 34:literal
2015-04-03 18:42:50 +00:00
# pretend array
1000:number <- copy 5:literal
2015-05-19 17:38:23 +00:00
# actual start of this recipe
2015-04-19 07:21:24 +00:00
default-space:address:array:location <- copy 1000:literal
1:address:number <- copy 3:literal
8:number/raw <- copy 1:address:number/deref
2015-04-03 18:42:50 +00:00
]
+mem: storing 34 in location 8
2015-04-13 03:56:45 +00:00
:(before "End call Fields")
2015-05-17 09:22:41 +00:00
long long int default_space;
2015-03-22 00:53:20 +00:00
:(replace "call(recipe_number r) :running_recipe(r)")
2015-04-25 03:41:37 +00:00
call(recipe_number r) :running_recipe(r), running_step_index(0), next_ingredient_to_process(0), default_space(0) {}
2015-03-22 00:53:20 +00:00
:(replace "reagent r = x" following "reagent canonize(reagent x)")
reagent r = absolutize(x);
:(code)
reagent absolutize(reagent x) {
//? if (Recipe_number.find("increment-counter") != Recipe_number.end()) //? 1
//? cout << "AAA " << "increment-counter/2: " << Recipe[Recipe_number["increment-counter"]].steps.at(2).products.at(0).to_string() << '\n'; //? 1
2015-04-18 04:51:13 +00:00
//? cout << "absolutize " << x.to_string() << '\n'; //? 4
2015-04-03 18:42:50 +00:00
//? cout << is_raw(x) << '\n'; //? 1
2015-03-22 00:53:20 +00:00
if (is_raw(x) || is_dummy(x)) return x;
//? cout << "not raw: " << x.to_string() << '\n'; //? 1
assert(x.initialized);
reagent r = x;
r.set_value(address(r.value, space_base(r)));
2015-03-22 00:53:20 +00:00
//? cout << "after absolutize: " << r.value << '\n'; //? 1
r.properties.push_back(pair<string, vector<string> >("raw", vector<string>()));
assert(is_raw(r));
return r;
}
2015-04-03 18:42:50 +00:00
:(before "return result" following "reagent deref(reagent x)")
result.properties.push_back(pair<string, vector<string> >("raw", vector<string>()));
2015-03-22 00:53:20 +00:00
//:: fix 'get'
2015-04-24 17:19:03 +00:00
:(scenario deref_sidesteps_default_space_in_get)
2015-04-18 04:51:13 +00:00
recipe main [
# pretend pointer to container from outside
12:number <- copy 34:literal
13:number <- copy 35:literal
2015-04-18 04:51:13 +00:00
# pretend array
1000:number <- copy 5:literal
2015-05-19 17:38:23 +00:00
# actual start of this recipe
2015-04-19 07:21:24 +00:00
default-space:address:array:location <- copy 1000:literal
2015-04-18 04:51:13 +00:00
1:address:point <- copy 12:literal
9:number/raw <- get 1:address:point/deref, 1:offset
2015-04-18 04:51:13 +00:00
]
+mem: storing 35 in location 9
:(after "reagent tmp" following "case GET:")
tmp.properties.push_back(pair<string, vector<string> >("raw", vector<string>()));
//:: fix 'index'
2015-04-24 17:19:03 +00:00
:(scenario deref_sidesteps_default_space_in_index)
2015-04-18 04:51:13 +00:00
recipe main [
# pretend pointer to array from outside
12:number <- copy 2:literal
13:number <- copy 34:literal
14:number <- copy 35:literal
2015-04-18 04:51:13 +00:00
# pretend array
1000:number <- copy 5:literal
2015-05-19 17:38:23 +00:00
# actual start of this recipe
2015-04-19 07:21:24 +00:00
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
2015-04-18 04:51:13 +00:00
]
+mem: storing 35 in location 9
:(after "reagent tmp" following "case INDEX:")
tmp.properties.push_back(pair<string, vector<string> >("raw", vector<string>()));
//:: helpers
2015-04-03 18:42:50 +00:00
:(code)
2015-05-17 09:22:41 +00:00
long long int space_base(const reagent& x) {
return Current_routine->calls.front().default_space;
}
2015-05-17 09:22:41 +00:00
long long int address(long long int offset, long long int base) {
2015-03-29 03:50:23 +00:00
if (base == 0) return offset; // raw
//? cout << base << '\n'; //? 2
2015-05-17 09:22:41 +00:00
if (offset >= static_cast<long long int>(Memory[base])) {
// todo: test
raise << "location " << offset << " is out of bounds " << Memory[base] << '\n';
}
return base+1 + offset;
2015-03-29 03:50:23 +00:00
}
:(after "void write_memory(reagent x, vector<double> data)")
2015-03-22 00:53:20 +00:00
if (x.name == "default-space") {
2015-05-17 09:22:41 +00:00
assert(scalar(data));
Current_routine->calls.front().default_space = data.at(0);
//? cout << "AAA " << Current_routine->calls.front().default_space << '\n'; //? 1
2015-03-22 00:53:20 +00:00
return;
}
2015-04-15 00:46:43 +00:00
2015-04-24 17:19:03 +00:00
:(scenario get_default_space)
2015-04-15 00:46:43 +00:00
recipe main [
2015-04-19 07:21:24 +00:00
default-space:address:array:location <- copy 10:literal
1:number/raw <- copy default-space:address:array:location
2015-04-15 00:46:43 +00:00
]
+mem: storing 10 in location 1
:(after "vector<double> read_memory(reagent x)")
2015-04-15 00:46:43 +00:00
if (x.name == "default-space") {
vector<double> result;
result.push_back(Current_routine->calls.front().default_space);
2015-04-15 00:46:43 +00:00
return result;
}