:(scenario deep_copy_number)
def main [
local-scope
x:num <- copy 34
y:num <- deep-copy x
10:bool/raw <- equal x, y
]
+mem: storing 1 in location 10
:(scenario deep_copy_container_without_address)
container foo [
x:num
y:num
]
def main [
local-scope
a:foo <- merge 34, 35
b:foo <- deep-copy a
10:bool/raw <- equal a, b
]
+mem: storing 1 in location 10
:(scenario deep_copy_address)
% Memory_allocated_until = 200;
def main [
1:&:num <- copy 100/unsafe
*1:&:num <- copy 34
2:&:num <- deep-copy 1:&:num
10:bool <- equal 1:&:num, 2:&:num
11:bool <- equal *1:&:num, *2:&:num
2:&:num <- copy 0
]
+mem: storing 0 in location 10
+mem: storing 1 in location 11
+run: {2: ("address" "number")} <- copy {0: "literal"}
+mem: decrementing refcount of 202: 1 -> 0
+abandon: saving 202 in free-list of size 2
:(scenario deep_copy_address_to_container)
% Memory_allocated_until = 200;
def main [
1:&:point <- copy 100/unsafe
*1:&:point <- merge 34, 35
2:&:point <- deep-copy 1:&:point
10:bool <- equal 1:&:point, 2:&:point
11:bool <- equal *1:&:point, *2:&:point
]
+mem: storing 0 in location 10
+mem: storing 1 in location 11
:(scenario deep_copy_address_to_address)
% Memory_allocated_until = 200;
def main [
1:&:&:num <- copy 100/unsafe
*1:&:&:num <- copy 150/unsafe
**1:&:&:num <- copy 34
2:&:&:num <- deep-copy 1:&:&:num
10:bool <- equal 1:&:&:num, 2:&:&:num
11:bool <- equal *1:&:&:num, *2:&:&:num
12:bool <- equal **1:&:&:num, **2:&:&:num
]
+mem: storing 0 in location 10
+mem: storing 0 in location 11
+mem: storing 1 in location 12
:(scenario deep_copy_array)
% Memory_allocated_until = 200;
def main [
100:num <- copy 1
101:num <- copy 3
1:&:@:num <- copy 100/unsafe
put-index *1:&:@:num, 0, 34
put-index *1:&:@:num, 1, 35
put-index *1:&:@:num, 2, 36
stash [old:], *1:&:@:num
2:&:@:num <- deep-copy 1:&:@:num
stash 2:&:@:num
stash [new:], *2:&:@:num
10:bool <- equal 1:&:@:num, 2:&:@:num
11:bool <- equal *1:&:@:num, *2:&:@:num
]
+app: old: 3 34 35 36
+app: new: 3 34 35 36
+mem: storing 0 in location 10
+mem: storing 1 in location 11
:(scenario deep_copy_container_with_address)
container foo [
x:num
y:&:num
]
def main [
local-scope
y0:&:num <- new number:type
*y0 <- copy 35
a:foo <- merge 34, y0
b:foo <- deep-copy a
10:bool/raw <- equal a, b
y1:&:num <- get b, y:offset
11:bool/raw <- equal y0, y1
12:num/raw <- copy *y1
]
+mem: storing 0 in location 10
+mem: storing 0 in location 11
+mem: storing 35 in location 12
:(scenario deep_copy_exclusive_container_with_address)
exclusive-container foo [
x:num
y:&:num
]
def main [
local-scope
y0:&:num <- new number:type
*y0 <- copy 34
a:foo <- merge 1/y, y0
b:foo <- deep-copy a
10:bool/raw <- equal a, b
y1:&:num, z:bool <- maybe-convert b, y:variant
11:bool/raw <- equal y0, y1
12:num/raw <- copy *y1
]
+mem: storing 0 in location 10
+mem: storing 0 in location 11
+mem: storing 34 in location 12
:(scenario deep_copy_exclusive_container_with_container_with_address)
exclusive-container foo [
x:num
y:bar
]
container bar [
x:&:num
]
def main [
local-scope
y0:&:num <- new number:type
*y0 <- copy 34
a:bar <- merge y0
b:foo <- merge 1/y, a
c:foo <- deep-copy b
10:bool/raw <- equal b, c
d:bar, z:bool <- maybe-convert c, y:variant
y1:&:num <- get d, x:offset
11:bool/raw <- equal y0, y1
12:num/raw <- copy *y1
]
+mem: storing 0 in location 10
+mem: storing 0 in location 11
+mem: storing 34 in location 12
:(before "End Primitive Recipe Declarations")
DEEP_COPY,
:(before "End Primitive Recipe Numbers")
put(Recipe_ordinal, "deep-copy", DEEP_COPY);
:(before "End Primitive Recipe Checks")
case DEEP_COPY: {
if (SIZE(inst.ingredients) != 1) {
raise << maybe(get(Recipe, r).name) << "'deep-copy' takes exactly one ingredient rather than '" << inst.original_string << "'\n" << end();
break;
}
if (SIZE(inst.products) != 1) {
raise << maybe(get(Recipe, r).name) << "'deep-copy' takes exactly one ingredient rather than '" << inst.original_string << "'\n" << end();
break;
}
if (!types_strictly_match(inst.ingredients.at(0), inst.products.at(0))) {
raise << maybe(get(Recipe, r).name) << "'deep-copy' requires its ingredient and product to be the same type, but got '" << inst.original_string << "'\n" << end();
break;
}
break;
}
:(before "End Primitive Recipe Implementations")
case DEEP_COPY: {
const reagent& input = current_instruction().ingredients.at(0);
trace(9991, "run") << "deep-copy: allocating space for temporary" << end();
reagent tmp("tmp:address:number");
tmp.set_value(allocate(1));
products.push_back(deep_copy(input, tmp));
trace(9991, "run") << "deep-copy: reclaiming temporary" << end();
abandon(tmp.value, tmp.type->right, payload_size(tmp));
break;
}
:(code)
vector<double> deep_copy(const reagent& in, const reagent& tmp) {
map<int, int> addresses_copied;
return deep_copy(in, addresses_copied, tmp);
}
vector<double> deep_copy(reagent in, map<int, int>& addresses_copied, const reagent& tmp) {
canonize(in);
vector<double> result;
if (is_mu_address(in))
result.push_back(deep_copy_address(in, addresses_copied, tmp));
else
deep_copy(in, addresses_copied, tmp, result);
return result;
}
int deep_copy_address(const reagent& canonized_in, map<int, int>& addresses_copied, const reagent& tmp) {
if (canonized_in.value == 0) return 0;
int in_address = payload_address(canonized_in);
trace(9991, "run") << "deep-copy: copying address " << in_address << end();
if (contains_key(addresses_copied, in_address)) {
int out = get(addresses_copied, in_address);
trace(9991, "run") << "deep-copy: copy already exists: " << out << end();
return out;
}
int out = allocate(payload_size(canonized_in));
trace(9991, "run") << "deep-copy: new address is " << out << end();
put(addresses_copied, in_address, out);
reagent payload = canonized_in;
payload.properties.push_back(pair<string, string_tree*>("lookup", NULL));
trace(9991, "run") << "recursing on payload " << payload.value << ' ' << to_string(payload) << end();
vector<double> data = deep_copy(payload, addresses_copied, tmp);
trace(9991, "run") << "deep-copy: writing result " << out << ": " << to_string(data) << end();
trace(9991, "run") << "deep-copy: writing temporary " << tmp.value << ": " << out << end();
put(Memory, tmp.value, out);
payload.set_value(tmp.value);
vector<double> old_data = read_memory(payload);
trace(9991, "run") << "deep-copy: really writing to " << payload.value << ' ' << to_string(payload) << " (old value " << to_string(old_data) << " new value " << to_string(data) << ")" << end();
write_memory(payload, data);
trace(9991, "run") << "deep-copy: output is " << to_string(data) << end();
return out;
}
void deep_copy(const reagent& canonized_in, map<int, int>& addresses_copied, const reagent& tmp, vector<double>& out) {
assert(!is_mu_address(canonized_in));
vector<double> data = read_memory(canonized_in);
out.insert(out.end(), data.begin(), data.end());
if (!contains_key(Container_metadata, canonized_in.type)) return;
trace(9991, "run") << "deep-copy: scanning for addresses in " << to_string(data) << end();
const container_metadata& metadata = get(Container_metadata, canonized_in.type);
for (map<set<tag_condition_info>, set<address_element_info> >::const_iterator p = metadata.address.begin(); p != metadata.address.end(); ++p) {
if (!all_match(data, p->first)) continue;
for (set<address_element_info>::const_iterator info = p->second.begin(); info != p->second.end(); ++info) {
reagent curr;
curr.type = new type_tree(new type_tree("address"), new type_tree(*info->payload_type));
curr.set_value(canonized_in.value + info->offset);
curr.properties.push_back(pair<string, string_tree*>("raw", NULL));
trace(9991, "run") << "deep-copy: copying address " << curr.value << end();
out.at(info->offset) = deep_copy_address(curr, addresses_copied, tmp);
}
}
}
int payload_address(reagent x) {
x.properties.push_back(pair<string, string_tree*>("lookup", NULL));
canonize(x);
return x.value;
}
:(scenario deep_copy_stress_test_1)
container foo1 [
p:&:num
]
container foo2 [
p:&:foo1
]
exclusive-container foo3 [
p:&:foo1
q:&:foo2
]
def main [
local-scope
x:&:num <- new number:type
*x <- copy 34
a:&:foo1 <- new foo1:type
*a <- merge x
b:&:foo2 <- new foo2:type
*b <- merge a
c:foo3 <- merge 1/q, b
d:foo3 <- deep-copy c
e:&:foo2, z:bool <- maybe-convert d, q:variant
f:&:foo1 <- get *e, p:offset
g:&:num <- get *f, p:offset
1:num/raw <- copy *g
]
+mem: storing 34 in location 1
:(scenario deep_copy_stress_test_2)
container foo1 [
p:&:num
]
container foo2 [
p:&:foo1
]
exclusive-container foo3 [
p:&:foo1
q:&:foo2
]
container foo4 [
p:num
q:&:foo3
]
def main [
local-scope
x:&:num <- new number:type
*x <- copy 34
a:&:foo1 <- new foo1:type
*a <- merge x
b:&:foo2 <- new foo2:type
*b <- merge a
c:&:foo3 <- new foo3:type
*c <- merge 1/q, b
d:foo4 <- merge 35, c
e:foo4 <- deep-copy d
f:&:foo3 <- get e, q:offset
g:&:foo2, z:bool <- maybe-convert *f, q:variant
h:&:foo1 <- get *g, p:offset
y:&:num <- get *h, p:offset
1:num/raw <- copy *y
]
+mem: storing 34 in location 1
:(scenario deep_copy_cycles)
container foo [
p:num
q:&:foo
]
def main [
local-scope
x:&:foo <- new foo:type
*x <- put *x, p:offset, 34
*x <- put *x, q:offset, x
y:&:foo <- deep-copy x
1:num/raw <- get *y, p:offset
y2:&:foo <- get *y, q:offset
stash y [vs] y2
2:bool/raw <- equal y, y2
3:bool/raw <- equal x, y
]
+mem: storing 34 in location 1
+mem: storing 1 in location 2
+mem: storing 0 in location 3