about summary refs log tree commit diff stats
path: root/057immutable.cc
blob: 16c2a6abf8710ba4cc4b64af9f9491e5e5ca7939 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
<
:(before "End Globals")
// Comparison ops.
const int EQUAL = 13;
:(before "End Primitive Recipe Numbers")
Recipe_number["equal"] = EQUAL;
assert(Next_recipe_number == EQUAL);
Next_recipe_number++;
:(before "End Primitive Recipe Implementations")
case EQUAL: {
  trace("run") << "ingredient 0 is " << instructions[pc].ingredients[0].name;
  vector<int> arg0 = read_memory(instructions[pc].ingredients[0]);
  trace("run") << "ingredient 1 is " << instructions[pc].ingredients[1].name;
  vector<int> arg1 = read_memory(instructions[pc].ingredients[1]);
  vector<int> result;
  result.push_back(equal(arg0.begin(), arg0.end(), arg1.begin()));
  trace("run") << "product 0 is " << result[0];
  write_memory(instructions[pc].products[0], result);
  break;
}

:(scenario "equal")
recipe main [
  1:integer <- copy 34:literal
  2:integer <- copy 33:literal
  3:integer <- equal 1:integer, 2:integer
]
+run: instruction main/2
+run: ingredient 0 is 1
+mem: location 1 is 34
+run: ingredient 1 is 2
+mem: location 2 is 33
+run: product 0 is 0
+mem: storing 0 in location 3

:(scenario "equal2")
recipe main [
  1:integer <- copy 34:literal
  2:integer <- copy 34:literal
  3:integer <- equal 1:integer, 2:integer
]
+run: instruction main/2
+run: ingredient 0 is 1
+mem: location 1 is 34
+run: ingredient 1 is 2
+mem: location 2 is 34
+run: product 0 is 1
+mem: storing 1 in location 3

:(before "End Globals")
const int GREATER_THAN = 14;
:(before "End Primitive Recipe Numbers")
Recipe_number["greater-than"] = GREATER_THAN;
assert(Next_recipe_number == GREATER_THAN);
Next_recipe_number++;
:(before "End Primitive Recipe Implementations")
case GREATER_THAN: {
  trace("run") << "ingredient 0 is " << instructions[pc].ingredients[0].name;
  vector<int> arg0 = read_memory(instructions[pc].ingredients[0]);
  assert(arg0.size() == 1);
  trace("run") << "ingredient 1 is " << instructions[pc].ingredients[1].name;
  vector<int> arg1 = read_memory(instructions[pc].ingredients[1]);
  assert(arg1.size() == 1);
  vector<int> result;
  result.push_back(arg0[0] > arg1[0]);
  trace("run") << "product 0 is " << result[0];
  write_memory(instructions[pc].products[0], result);
  break;
}

:(scenario "greater_than")
recipe main [
  1:integer <- copy 34:literal
  2:integer <- copy 33:literal
  3:integer <- greater-than 1:integer, 2:integer
]
+run: instruction main/2
+run: ingredient 0 is 1
+mem: location 1 is 34
+run: ingredient 1 is 2
+mem: location 2 is 33
+run: product 0 is 1
+mem: storing 1 in location 3

:(scenario "greater_than2")
recipe main [
  1:integer <- copy 34:literal
  2:integer <- copy 34:literal
  3:integer <- greater-than 1:integer, 2:integer
]
+run: instruction main/2
+run: ingredient 0 is 1
+mem: location 1 is 34
+run: ingredient 1 is 2
+mem: location 2 is 34
+run: product 0 is 0
+mem: storing 0 in location 3

:(before "End Globals")
const int LESSER_THAN = 15;
:(before "End Primitive Recipe Numbers")
Recipe_number["lesser-than"] = LESSER_THAN;
assert(Next_recipe_number == LESSER_THAN);
Next_recipe_number++;
:(before "End Primitive Recipe Implementations")
case LESSER_THAN: {
  trace("run") << "ingredient 0 is " << instructions[pc].ingredients[0].name;
  vector<int> arg0 = read_memory(instructions[pc].ingredients[0]);
  assert(arg0.size() == 1);
  trace("run") << "ingredient 1 is " << instructions[pc].ingredients[1].name;
  vector<int> arg1 = read_memory(instructions[pc].ingredients[1]);
  assert(arg1.size() == 1);
  vector<int> result;
  result.push_back(arg0[0] < arg1[0]);
  trace("run") << "product 0 is " << result[0];
  write_memory(instructions[pc].products[0], result);
  break;
}

:(scenario "lesser_than")
recipe main [
  1:integer <- copy 32:literal
  2:integer <- copy 33:literal
  3:integer <- lesser-than 1:integer, 2:integer
]
+run: instruction main/2
+run: ingredient 0 is 1
+mem: location 1 is 32
+run: ingredient 1 is 2
+mem: location 2 is 33
+run: product 0 is 1
+mem: storing 1 in location 3

:(scenario "lesser_than2")
recipe main [
  1:integer <- copy 34:literal
  2:integer <- copy 33:literal
  3:integer <- lesser-than 1:integer, 2:integer
]
+run: instruction main/2
+run: ingredient 0 is 1
+mem: location 1 is 34
+run: ingredient 1 is 2
+mem: location 2 is 33
+run: product 0 is 0
+mem: storing 0 in location 3

:(before "End Globals")
const int GREATER_OR_EQUAL = 16;
:(before "End Primitive Recipe Numbers")
Recipe_number["greater-or-equal"] = GREATER_OR_EQUAL;
assert(Next_recipe_number == GREATER_OR_EQUAL);
Next_recipe_number++;
:(before "End Primitive Recipe Implementations")
case GREATER_OR_EQUAL: {
  trace("run") << "ingredient 0 is " << instructions[pc].ingredients[0].name;
  vector<int> arg0 = read_memory(instructions[pc].ingredients[0]);
  assert(arg0.size() == 1);
  trace("run") << "ingredient 1 is " << instructions[pc].ingredients[1].name;
  vector<int> arg1 = read_memory(instructions[pc].ingredients[1]);
  assert(arg1.size() == 1);
  vector<int> result;
  result.push_back(arg0[0] >= arg1[0]);
  trace("run") << "product 0 is " << result[0];
  write_memory(instructions[pc].products[0], result);
  break;
}

:(scenario "greater_or_equal")
recipe main [
  1:integer <- copy 34:literal
  2:integer <- copy 33:literal
  3:integer <- greater-or-equal 1:integer, 2:integer
]
+run: instruction main/2
+run: ingredient 0 is 1
+mem: location 1 is 34
+run: ingredient 1 is 2
+mem: location 2 is 33
+run: product 0 is 1
+mem: storing 1 in location 3

:(scenario "greater_or_equal2")
recipe main [
  1:integer <- copy 34:literal
  2:integer <- copy 34:literal
  3:integer <- greater-or-equal 1:integer, 2:integer
]
+run: instruction main/2
+run: ingredient 0 is 1
+mem: location 1 is 34
+run: ingredient 1 is 2
+mem: location 2 is 34
+run: product 0 is 1
+mem: storing 1 in location 3

:(scenario "greater_or_equal3")
recipe main [
  1:integer <- copy 34:literal
  2:integer <- copy 35:literal
  3:integer <- greater-or-equal 1:integer, 2:integer
]
+run: instruction main/2
+run: ingredient 0 is 1
+mem: location 1 is 34
+run: ingredient 1 is 2
+mem: location 2 is 35
+run: product 0 is 0
+mem: storing 0 in location 3

:(before "End Globals")
const int LESSER_OR_EQUAL = 17;
:(before "End Primitive Recipe Numbers")
Recipe_number["lesser-or-equal"] = LESSER_OR_EQUAL;
assert(Next_recipe_number == LESSER_OR_EQUAL);
Next_recipe_number++;
:(before "End Primitive Recipe Implementations")
case LESSER_OR_EQUAL: {
  trace("run") << "ingredient 0 is " << instructions[pc].ingredients[0].name;
  vector<int> arg0 = read_memory(instructions[pc].ingredients[0]);
  assert(arg0.size() == 1);
  trace("run") << "ingredient 1 is " << instructions[pc].ingredients[1].name;
  vector<int> arg1 = read_memory(instructions[pc].ingredients[1]);
  assert(arg1.size() == 1);
  vector<int> result;
  result.push_back(arg0[0] <= arg1[0]);
  trace("run") << "product 0 is " << result[0];
  write_memory(instructions[pc].products[0], result);
  break;
}

:(scenario "lesser_or_equal")
recipe main [
  1:integer <- copy 32:literal
  2:integer <- copy 33:literal
  3:integer <- lesser-or-equal 1:integer, 2:integer
]
+run: instruction main/2
+run: ingredient 0 is 1
+mem: location 1 is 32
+run: ingredient 1 is 2
+mem: location 2 is 33
+run: product 0 is 1
+mem: storing 1 in location 3

:(scenario "lesser_or_equal2")
recipe main [
  1:integer <- copy 33:literal
  2:integer <- copy 33:literal
  3:integer <- lesser-or-equal 1:integer, 2:integer
]
+run: instruction main/2
+run: ingredient 0 is 1
+mem: location 1 is 33
+run: ingredient 1 is 2
+mem: location 2 is 33
+run: product 0 is 1
+mem: storing 1 in location 3

:(scenario "lesser_or_equal3")
recipe main [
  1:integer <- copy 34:literal
  2:integer <- copy 33:literal
  3:integer <- lesser-or-equal 1:integer, 2:integer
]
+run: instruction main/2
+run: ingredient 0 is 1
+mem: location 1 is 34
+run: ingredient 1 is 2
+mem: location 2 is 33
+run: product 0 is 0
+mem: storing 0 in location 3
'n705' href='#n705'>705 706 707 708 709 710 711 712 713 714 715
//: Ingredients of a recipe are meant to be immutable unless they're also
//: products. This layer will start enforcing this check.
//:
//: One hole for now: variables in surrounding spaces are implicitly mutable.
//: [tag: todo]

void test_can_modify_ingredients_that_are_also_products() {
  run(
      // mutable container
      "def main [\n"
      "  local-scope\n"
      "  p:point <- merge 34, 35\n"
      "  p <- foo p\n"
      "]\n"
      "def foo p:point -> p:point [\n"
      "  local-scope\n"
      "  load-ingredients\n"
      "  p <- put p, x:offset, 34\n"
      "]\n"
  );
  CHECK_TRACE_COUNT("error", 0);
}

void test_can_modify_ingredients_that_are_also_products_2() {
  run(
      "def main [\n"
      "  local-scope\n"
      "  p:&:point <- new point:type\n"
      "  p <- foo p\n"
      "]\n"
      // mutable address to container
      "def foo p:&:point -> p:&:point [\n"
      "  local-scope\n"
      "  load-ingredients\n"
      "  *p <- put *p, x:offset, 34\n"
      "]\n"
  );
  CHECK_TRACE_COUNT("error", 0);
}

void test_can_modify_ingredients_that_are_also_products_3() {
  run(
      "def main [\n"
      "  local-scope\n"
      "  p:&:@:num <- new number:type, 3\n"
      "  p <- foo p\n"
      "]\n"
      // mutable address
      "def foo p:&:@:num -> p:&:@:num [\n"
      "  local-scope\n"
      "  load-ingredients\n"
      "  *p <- put-index *p, 0, 34\n"
      "]\n"
  );
  CHECK_TRACE_COUNT("error", 0);
}

void test_ignore_literal_ingredients_for_immutability_checks() {
  run(
      "def main [\n"
      "  local-scope\n"
      "  p:&:d1 <- new d1:type\n"
      "  q:num <- foo p\n"
      "]\n"
      "def foo p:&:d1 -> q:num [\n"
      "  local-scope\n"
      "  load-ingredients\n"
      "  x:&:d1 <- new d1:type\n"
      "  *x <- put *x, p:offset, 34\n"  // ignore this 'p'
      "  return 36\n"
      "]\n"
      "container d1 [\n"
      "  p:num\n"
      "  q:num\n"
      "]\n"
  );
  CHECK_TRACE_COUNT("error", 0);
}

void test_cannot_modify_immutable_ingredients() {
  Hide_errors = true;
  run(
      "def main [\n"
      "  local-scope\n"
      "  x:&:num <- new number:type\n"
      "  foo x\n"
      "]\n"
      // immutable address to primitive
      "def foo x:&:num [\n"
      "  local-scope\n"
      "  load-ingredients\n"
      "  *x <- copy 34\n"
      "]\n"
  );
  CHECK_TRACE_CONTENTS(
      "error: foo: cannot modify 'x' in instruction '*x <- copy 34' because it's an ingredient of recipe foo but not also a product\n"
  );
}

void test_cannot_modify_immutable_containers() {
  Hide_errors = true;
  run(
      "def main [\n"
      "  local-scope\n"
      "  x:point-number <- merge 34, 35, 36\n"
      "  foo x\n"
      "]\n"
      // immutable container
      "def foo x:point-number [\n"
      "  local-scope\n"
      "  load-ingredients\n"
         // copy an element: ok
      "  y:point <- get x, xy:offset\n"
         // modify the element: boom
         // This could be ok if y contains no addresses, but we're not going to try to be that smart.
         // It also makes the rules easier to reason about. If it's just an ingredient, just don't try to change it.
      "  y <- put y, x:offset, 37\n"
      "]\n"
  );
  CHECK_TRACE_CONTENTS(
      "error: foo: cannot modify 'y' in instruction 'y <- put y, x:offset, 37' because that would modify 'x' which is an ingredient of recipe foo but not also a product\n"
  );
}

void test_can_modify_immutable_pointers() {
  run(
      "def main [\n"
      "  local-scope\n"
      "  x:&:num <- new number:type\n"
      "  foo x\n"
      "]\n"
      "def foo x:&:num [\n"
      "  local-scope\n"
      "  load-ingredients\n"
         // modify the address, not the payload
      "  x <- copy null\n"
      "]\n"
  );
  CHECK_TRACE_COUNT("error", 0);
}

void test_can_modify_immutable_pointers_but_not_their_payloads() {
  Hide_errors = true;
  run(
      "def main [\n"
      "  local-scope\n"
      "  x:&:num <- new number:type\n"
      "  foo x\n"
      "]\n"
      "def foo x:&:num [\n"
      "  local-scope\n"
      "  load-ingredients\n"
      // modify address: ok
      "  x <- new number:type\n"
      // modify payload: boom
      // this could be ok, but we're not going to try to be that smart
      "  *x <- copy 34\n"
      "]\n"
  );
  CHECK_TRACE_CONTENTS(
      "error: foo: cannot modify 'x' in instruction '*x <- copy 34' because it's an ingredient of recipe foo but not also a product\n"
  );
}

void test_cannot_call_mutating_recipes_on_immutable_ingredients() {
  Hide_errors = true;
  run(
      "def main [\n"
      "  local-scope\n"
      "  p:&:point <- new point:type\n"
      "  foo p\n"
      "]\n"
      "def foo p:&:point [\n"
      "  local-scope\n"
      "  load-ingredients\n"
      "  bar p\n"
      "]\n"
      "def bar p:&:point -> p:&:point [\n"
      "  local-scope\n"
      "  load-ingredients\n"
         // p could be modified here, but it doesn't have to be; it's already
         // marked mutable in the header
      "]\n"
  );
  CHECK_TRACE_CONTENTS(
      "error: foo: cannot modify 'p' in instruction 'bar p' because it's an ingredient of recipe foo but not also a product\n"
  );
}

void test_cannot_modify_copies_of_immutable_ingredients() {
  Hide_errors = true;
  run(
      "def main [\n"
      "  local-scope\n"
      "  p:&:point <- new point:type\n"
      "  foo p\n"
      "]\n"
      "def foo p:&:point [\n"
      "  local-scope\n"
      "  load-ingredients\n"
      "  q:&:point <- copy p\n"
      "  *q <- put *q, x:offset, 34\n"
      "]\n"
  );
  CHECK_TRACE_CONTENTS(
      "error: foo: cannot modify 'q' in instruction '*q <- put *q, x:offset, 34' because that would modify p which is an ingredient of recipe foo but not also a product\n"
  );
}

void test_can_modify_copies_of_mutable_ingredients() {
  run(
      "def main [\n"
      "  local-scope\n"
      "  p:&:point <- new point:type\n"
      "  foo p\n"
      "]\n"
      "def foo p:&:point -> p:&:point [\n"
      "  local-scope\n"
      "  load-ingredients\n"
      "  q:&:point <- copy p\n"
      "  *q <- put *q, x:offset, 34\n"
      "]\n"
  );
  CHECK_TRACE_COUNT("error", 0);
}

void test_cannot_modify_address_inside_immutable_ingredients() {
  Hide_errors = true;
  run(
      "container foo [\n"
      "  x:&:@:num\n"  // contains an address
      "]\n"
      "def main [\n"
      "]\n"
      "def foo a:&:foo [\n"
      "  local-scope\n"
      "  load-ingredients\n"
      "  x:&:@:num <- get *a, x:offset\n"  // just a regular get of the container
      "  *x <- put-index *x, 0, 34\n"  // but then a put-index on the result
      "]\n"
  );
  CHECK_TRACE_CONTENTS(
      "error: foo: cannot modify 'x' in instruction '*x <- put-index *x, 0, 34' because that would modify a which is an ingredient of recipe foo but not also a product\n"
  );
}

void test_cannot_modify_address_inside_immutable_ingredients_2() {
  run(
      "container foo [\n"
      "  x:&:@:num\n"  // contains an address
      "]\n"
      "def main [\n"
         // don't run anything
      "]\n"
      "def foo a:&:foo [\n"
      "  local-scope\n"
      "  load-ingredients\n"
      "  b:foo <- merge null\n"
         // modify b, completely unrelated to immutable ingredient a
      "  x:&:@:num <- get b, x:offset\n"
      "  *x <- put-index *x, 0, 34\n"
      "]\n"
  );
  CHECK_TRACE_COUNT("error", 0);
}

void test_cannot_modify_address_inside_immutable_ingredients_3() {
  Hide_errors = true;
  run(
      "def main [\n"
        // don't run anything
      "]\n"
      "def foo a:&:@:&:num [\n"
      "  local-scope\n"
      "  load-ingredients\n"
      "  x:&:num <- index *a, 0\n"  // just a regular index of the array
      "  *x <- copy 34\n"  // but then modify the result
      "]\n"
  );
  CHECK_TRACE_CONTENTS(
      "error: foo: cannot modify 'x' in instruction '*x <- copy 34' because that would modify a which is an ingredient of recipe foo but not also a product\n"
  );
}

void test_cannot_modify_address_inside_immutable_ingredients_4() {
  run(
      "def main [\n"
         // don't run anything
      "]\n"
      "def foo a:&:@:&:num [\n"
      "  local-scope\n"
      "  load-ingredients\n"
      "  b:&:@:&:num <- new {(address number): type}, 3\n"
         // modify b, completely unrelated to immutable ingredient a
      "  x:&:num <- index *b, 0\n"
      "  *x <- copy 34\n"
      "]\n"
  );
  CHECK_TRACE_COUNT("error", 0);
}

void test_latter_ingredient_of_index_is_immutable() {
  run(
      "def main [\n"
         // don't run anything
      "]\n"
      "def foo a:&:@:&:@:num, b:num -> a:&:@:&:@:num [\n"
      "  local-scope\n"
      "  load-ingredients\n"
      "  x:&:@:num <- index *a, b\n"
      "  *x <- put-index *x, 0, 34\n"
      "]\n"
  );
  CHECK_TRACE_COUNT("error", 0);
}

void test_can_traverse_immutable_ingredients() {
  run(
      "container test-list [\n"
      "  next:&:test-list\n"
      "]\n"
      "def main [\n"
      "  local-scope\n"
      "  p:&:test-list <- new test-list:type\n"
      "  foo p\n"
      "]\n"
      "def foo p:&:test-list [\n"
      "  local-scope\n"
      "  load-ingredients\n"
      "  p2:&:test-list <- bar p\n"
      "]\n"
      "def bar x:&:test-list -> y:&:test-list [\n"
      "  local-scope\n"
      "  load-ingredients\n"
      "  y <- get *x, next:offset\n"
      "]\n"
  );
  CHECK_TRACE_COUNT("error", 0);
}

void test_treat_optional_ingredients_as_mutable() {
  run(
      "def main [\n"
      "  k:&:num <- new number:type\n"
      "  test k\n"
      "]\n"
      // recipe taking an immutable address ingredient
      "def test k:&:num [\n"
      "  local-scope\n"
      "  load-ingredients\n"
      "  foo k\n"
      "]\n"
      // ..calling a recipe with an optional address ingredient
      "def foo -> [\n"
      "  local-scope\n"
      "  load-ingredients\n"
      "  k:&:num, found?:bool <- next-ingredient\n"
         // we don't further check k for immutability, but assume it's mutable
      "]\n"
  );
  CHECK_TRACE_COUNT("error", 0);
}

void test_treat_optional_ingredients_as_mutable_2() {
  Hide_errors = true;
  run(
      "def main [\n"
      "  local-scope\n"
      "  p:&:point <- new point:type\n"
      "  foo p\n"
      "]\n"
      "def foo p:&:point [\n"
      "  local-scope\n"
      "  load-ingredients\n"
      "  bar p\n"
      "]\n"
      "def bar [\n"
      "  local-scope\n"
      "  load-ingredients\n"
      "  p:&:point <- next-ingredient\n"  // optional ingredient; assumed to be mutable
      "]\n"
  );
  CHECK_TRACE_CONTENTS(
      "error: foo: cannot modify 'p' in instruction 'bar p' because it's an ingredient of recipe foo but not also a product\n"
  );
}

//: when checking for immutable ingredients, remember to take space into account
void test_check_space_of_reagents_in_immutability_checks() {
  run(
      "def main [\n"
      "  a:space/names:new-closure <- new-closure\n"
      "  b:&:num <- new number:type\n"
      "  run-closure b:&:num, a:space\n"
      "]\n"
      "def new-closure [\n"
      "  local-scope\n"
      "  x:&:num <- new number:type\n"
      "  return default-space/names:new-closure\n"
      "]\n"
      "def run-closure x:&:num, s:space/names:new-closure [\n"
      "  local-scope\n"
      "  load-ingredients\n"
      "  0:space/names:new-closure <- copy s\n"
         // different space; always mutable
      "  *x:&:num/space:1 <- copy 34\n"
      "]\n"
  );
  CHECK_TRACE_COUNT("error", 0);
}

:(before "End Transforms")
Transform.push_back(check_immutable_ingredients);  // idempotent

:(code)
void check_immutable_ingredients(const recipe_ordinal r) {
  // to ensure an address reagent isn't modified, it suffices to show that
  //   a) we never write to its contents directly,
  //   b) we never call 'put' or 'put-index' on it, and
  //   c) any non-primitive recipe calls in the body aren't returning it as a product
  const recipe& caller = get(Recipe, r);
  trace(101, "transform") << "--- check mutability of ingredients in recipe " << caller.name << end();
  if (!caller.has_header) return;  // skip check for old-style recipes calling next-ingredient directly
  for (int i = 0;  i < SIZE(caller.ingredients);  ++i) {
    const reagent& current_ingredient = caller.ingredients.at(i);
    if (is_present_in_products(caller, current_ingredient.name)) continue;  // not expected to be immutable
    // End Immutable Ingredients Special-cases
    set<reagent, name_and_space_lt> immutable_vars;
    immutable_vars.insert(current_ingredient);
    for (int i = 0;  i < SIZE(caller.steps);  ++i) {
      const instruction& inst = caller.steps.at(i);
      check_immutable_ingredient_in_instruction(inst, immutable_vars, current_ingredient.name, caller);
      if (inst.operation == INDEX && SIZE(inst.ingredients) > 1 && inst.ingredients.at(1).name == current_ingredient.name) continue;
      update_aliases(inst, immutable_vars);
    }
  }
}

void update_aliases(const instruction& inst, set<reagent, name_and_space_lt>& current_ingredient_and_aliases) {
  set<int> current_ingredient_indices = ingredient_indices(inst, current_ingredient_and_aliases);
  if (!contains_key(Recipe, inst.operation)) {
    // primitive recipe
    switch (inst.operation) {
      case COPY:
        for (set<int>::iterator p = current_ingredient_indices.begin();  p != current_ingredient_indices.end();  ++p)
          current_ingredient_and_aliases.insert(inst.products.at(*p).name);
        break;
      case GET:
      case INDEX:
      case MAYBE_CONVERT:
        // current_ingredient_indices can only have 0 or one value
        if (!current_ingredient_indices.empty() && !inst.products.empty()) {
          if (is_mu_address(inst.products.at(0)) || is_mu_container(inst.products.at(0)) || is_mu_exclusive_container(inst.products.at(0)))
            current_ingredient_and_aliases.insert(inst.products.at(0));
        }
        break;
      default: break;
    }
  }
  else {
    // defined recipe
    set<int> contained_in_product_indices = scan_contained_in_product_indices(inst, current_ingredient_indices);
    for (set<int>::iterator p = contained_in_product_indices.begin();  p != contained_in_product_indices.end();  ++p) {
      if (*p < SIZE(inst.products))
        current_ingredient_and_aliases.insert(inst.products.at(*p));
    }
  }
}

set<int> scan_contained_in_product_indices(const instruction& inst, set<int>& ingredient_indices) {
  set<reagent, name_and_space_lt> selected_ingredients;
  const recipe& callee = get(Recipe, inst.operation);
  for (set<int>::iterator p = ingredient_indices.begin();  p != ingredient_indices.end();  ++p) {
    if (*p >= SIZE(callee.ingredients)) continue;  // optional immutable ingredient
    selected_ingredients.insert(callee.ingredients.at(*p));
  }
  set<int> result;
  for (int i = 0;  i < SIZE(callee.products);  ++i) {
    const reagent& current_product = callee.products.at(i);
    const string_tree* contained_in_name = property(current_product, "contained-in");
    if (contained_in_name && selected_ingredients.find(contained_in_name->value) != selected_ingredients.end())
      result.insert(i);
  }
  return result;
}

bool is_mu_container(const reagent& r) {
  return is_mu_container(r.type);
}
bool is_mu_container(const type_tree* type) {
  if (!type) return false;
  if (!type->atom)
    return is_mu_container(get_base_type(type));
  if (type->value == 0) return false;
  if (!contains_key(Type, type->value)) return false;  // error raised elsewhere
  type_info& info = get(Type, type->value);
  return info.kind == CONTAINER;
}

bool is_mu_exclusive_container(const reagent& r) {
  return is_mu_exclusive_container(r.type);
}
bool is_mu_exclusive_container(const type_tree* type) {
  if (!type) return false;
  if (!type->atom)
    return is_mu_exclusive_container(get_base_type(type));
  if (type->value == 0) return false;
  if (!contains_key(Type, type->value)) return false;  // error raised elsewhere
  type_info& info = get(Type, type->value);
  return info.kind == EXCLUSIVE_CONTAINER;
}

:(before "End Types")
// reagent comparison -- only in the context of a single recipe
struct name_and_space_lt {
  bool operator()(const reagent& a, const reagent& b) const;
};
:(code)
bool name_and_space_lt::operator()(const reagent& a, const reagent& b) const {
  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;
}

void test_immutability_infects_contained_in_variables() {
  Hide_errors = true;
  transform(
      "container test-list [\n"
      "  value:num\n"
      "  next:&:test-list\n"
      "]\n"
      "def main [\n"
      "  local-scope\n"
      "  p:&:test-list <- new test-list:type\n"
      "  foo p\n"
      "]\n"
      "def foo p:&:test-list [\n"  // p is immutable
      "  local-scope\n"
      "  load-ingredients\n"
      "  p2:&:test-list <- test-next p\n"  // p2 is immutable
      "  *p2 <- put *p2, value:offset, 34\n"
      "]\n"
      "def test-next x:&:test-list -> y:&:test-list/contained-in:x [\n"
      "  local-scope\n"
      "  load-ingredients\n"
      "  y <- get *x, next:offset\n"
      "]\n"
  );
  CHECK_TRACE_CONTENTS(
      "error: foo: cannot modify 'p2' in instruction '*p2 <- put *p2, value:offset, 34' because that would modify p which is an ingredient of recipe foo but not also a product\n"
  );
}

void check_immutable_ingredient_in_instruction(const instruction& inst, const set<reagent, name_and_space_lt>& current_ingredient_and_aliases, const string& original_ingredient_name, const recipe& caller) {
  // first check if the instruction is directly modifying something it shouldn't
  for (int i = 0;  i < SIZE(inst.products);  ++i) {
    if (has_property(inst.products.at(i), "lookup")
        && current_ingredient_and_aliases.find(inst.products.at(i)) != current_ingredient_and_aliases.end()) {
      string current_product_name = inst.products.at(i).name;
      if (current_product_name == original_ingredient_name)
        raise << maybe(caller.name) << "cannot modify '" << current_product_name << "' in instruction '" << to_original_string(inst) << "' because it's an ingredient of recipe " << caller.name << " but not also a product\n" << end();
      else
        raise << maybe(caller.name) << "cannot modify '" << current_product_name << "' in instruction '" << to_original_string(inst) << "' because that would modify " << original_ingredient_name << " which is an ingredient of recipe " << caller.name << " but not also a product\n" << end();
      return;
    }
  }
  // check if there's any indirect modification going on
  set<int> current_ingredient_indices = ingredient_indices(inst, current_ingredient_and_aliases);
  if (current_ingredient_indices.empty()) return;  // ingredient not found in call
  for (set<int>::iterator p = current_ingredient_indices.begin();  p != current_ingredient_indices.end();  ++p) {
    const int current_ingredient_index = *p;
    reagent current_ingredient = inst.ingredients.at(current_ingredient_index);
    canonize_type(current_ingredient);
    const string& current_ingredient_name = current_ingredient.name;
    if (!contains_key(Recipe, inst.operation)) {
      // primitive recipe
      // we got here only because we got an instruction with an implicit product, and the instruction didn't explicitly spell it out
      //    put x, y:offset, z
      // instead of
      //    x <- put x, y:offset, z
      if (inst.operation == PUT || inst.operation == PUT_INDEX) {
        if (current_ingredient_index == 0) {
          if (current_ingredient_name == original_ingredient_name)
            raise << maybe(caller.name) << "cannot modify '" << current_ingredient_name << "' in instruction '" << to_original_string(inst) << "' because it's an ingredient of recipe " << caller.name << " but not also a product\n" << end();
          else
            raise << maybe(caller.name) << "cannot modify '" << current_ingredient_name << "' in instruction '" << to_original_string(inst) << "' because that would modify '" << original_ingredient_name << "' which is an ingredient of recipe " << caller.name << " but not also a product\n" << end();
        }
      }
    }
    else {
      // defined recipe
      if (is_modified_in_recipe(inst.operation, current_ingredient_index, caller)) {
        if (current_ingredient_name == original_ingredient_name)
          raise << maybe(caller.name) << "cannot modify '" << current_ingredient_name << "' in instruction '" << to_original_string(inst) << "' because it's an ingredient of recipe " << caller.name << " but not also a product\n" << end();
        else
          raise << maybe(caller.name) << "cannot modify '" << current_ingredient_name << "' in instruction '" << to_original_string(inst) << "' because that would modify '" << original_ingredient_name << "' which is an ingredient of recipe " << caller.name << " but not also a product\n" << end();
      }
    }
  }
}

bool is_modified_in_recipe(const recipe_ordinal r, const int ingredient_index, const recipe& caller) {
  const recipe& callee = get(Recipe, r);
  if (!callee.has_header) {
    raise << maybe(caller.name) << "can't check mutability of ingredients in recipe " << callee.name << " because it uses 'next-ingredient' directly, rather than a recipe header.\n" << end();
    return true;
  }
  if (ingredient_index >= SIZE(callee.ingredients)) return false;  // optional immutable ingredient
  return is_present_in_products(callee, callee.ingredients.at(ingredient_index).name);
}

bool is_present_in_products(const recipe& callee, const string& ingredient_name) {
  for (int i = 0;  i < SIZE(callee.products);  ++i) {
    if (callee.products.at(i).name == ingredient_name)
      return true;
  }
  return false;
}

set<int> ingredient_indices(const instruction& inst, const set<reagent, name_and_space_lt>& ingredient_names) {
  set<int> result;
  for (int i = 0;  i < SIZE(inst.ingredients);  ++i) {
    if (is_literal(inst.ingredients.at(i))) continue;
    if (ingredient_names.find(inst.ingredients.at(i)) != ingredient_names.end())
      result.insert(i);
  }
  return result;
}

//: Sometimes you want to pass in two addresses, one pointing inside the
//: other. For example, you want to delete a node from a linked list. You
//: can't pass both pointers back out, because if a caller tries to make both
//: identical then you can't tell which value will be written on the way out.
//:
//: Experimental solution: just tell Mu that one points inside the other.
//: This way we can return just one pointer as high up as necessary to capture
//: all modifications performed by a recipe.
//:
//: We'll see if we end up wanting to abuse /contained-in for other reasons.

void test_can_modify_contained_in_addresses() {
  transform(
      "container test-list [\n"
      "  value:num\n"
      "  next:&:test-list\n"
      "]\n"
      "def main [\n"
      "  local-scope\n"
      "  p:&:test-list <- new test-list:type\n"
      "  foo p\n"
      "]\n"
      "def foo p:&:test-list -> p:&:test-list [\n"
      "  local-scope\n"
      "  load-ingredients\n"
      "  p2:&:test-list <- test-next p\n"
      "  p <- test-remove p2, p\n"
      "]\n"
      "def test-next x:&:test-list -> y:&:test-list [\n"
      "  local-scope\n"
      "  load-ingredients\n"
      "  y <- get *x, next:offset\n"
      "]\n"
      "def test-remove x:&:test-list/contained-in:from, from:&:test-list -> from:&:test-list [\n"
      "  local-scope\n"
      "  load-ingredients\n"
      "  *x <- put *x, value:offset, 34\n"  // can modify x
      "]\n"
  );
  CHECK_TRACE_COUNT("error", 0);
}

:(before "End Immutable Ingredients Special-cases")
if (has_property(current_ingredient, "contained-in")) {
  const string_tree* tmp = property(current_ingredient, "contained-in");
  if (!tmp->atom
      || (!is_present_in_ingredients(caller, tmp->value)
          && !is_present_in_products(caller, tmp->value))) {
    raise << maybe(caller.name) << "/contained-in can only point to another ingredient or product, but got '" << to_string(property(current_ingredient, "contained-in")) << "'\n" << end();
  }
  continue;
}

:(code)
void test_contained_in_product() {
  transform(
      "container test-list [\n"
      "  value:num\n"
      "  next:&:test-list\n"
      "]\n"
      "def foo x:&:test-list/contained-in:result -> result:&:test-list [\n"
      "  local-scope\n"
      "  load-ingredients\n"
      "  result <- copy null\n"
      "]\n"
  );
  CHECK_TRACE_COUNT("error", 0);
}

void test_contained_in_is_mutable() {
  transform(
      "container test-list [\n"
      "  value:num\n"
      "  next:&:test-list\n"
      "]\n"
      "def foo x:&:test-list/contained-in:result -> result:&:test-list [\n"
      "  local-scope\n"
      "  load-ingredients\n"
      "  result <- copy x\n"
      "  put *x, value:offset, 34\n"
      "]\n"
  );
  CHECK_TRACE_COUNT("error", 0);
}