diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2017-09-13 22:23:01 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2017-09-13 22:23:01 -0700 |
commit | 8f4549ec0fdb70f57436801c0685c273685df8d0 (patch) | |
tree | a0f251d1ea64493f70f810e058b1a5e9dc29bf56 | |
parent | 81a324bec3e992d6a979830c5bcae89ac7cdf40c (diff) | |
download | mu-8f4549ec0fdb70f57436801c0685c273685df8d0.tar.gz |
3996
-rw-r--r-- | 071deep_copy.cc | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/071deep_copy.cc b/071deep_copy.cc index d403200b..a19ca99f 100644 --- a/071deep_copy.cc +++ b/071deep_copy.cc @@ -20,6 +20,16 @@ def main [ # non-address primitives are identical +mem: storing 1 in location 10 +:(scenario deep_copy_null_pointer) +def main [ + local-scope + x:&:num <- copy 0 + y:&:num <- deep-copy x + 10:bool/raw <- equal x, y +] +# null addresses are identical ++mem: storing 1 in location 10 + :(scenario deep_copy_container_without_address) container foo [ x:num @@ -247,7 +257,7 @@ vector<double> deep_copy(reagent/*copy*/ in, map<int, int>& addresses_copied, co // deep-copy an address and return a new address int deep_copy_address(const reagent& canonized_in, map<int, int>& addresses_copied, const reagent& tmp) { - if (canonized_in.value == 0) return 0; + if (address_value(canonized_in) == 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)) { @@ -312,6 +322,13 @@ int payload_address(reagent/*copy*/ x) { return x.value; } +int address_value(const reagent& x) { + assert(is_mu_address(x)); + vector<double> result = read_memory(x); + assert(SIZE(result) == 1); + return static_cast<int>(result.at(0)); +} + :(scenario deep_copy_stress_test_1) container foo1 [ p:&:num |