about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--002test.cc1
-rw-r--r--030container.cc17
-rw-r--r--032array.cc13
-rw-r--r--034exclusive_container.cc9
-rw-r--r--037call_reply.cc2
-rw-r--r--041name.cc22
6 files changed, 47 insertions, 17 deletions
diff --git a/002test.cc b/002test.cc
index 159932d6..a35f95bf 100644
--- a/002test.cc
+++ b/002test.cc
@@ -54,6 +54,7 @@ if (Run_tests) {
   time_t t; time(&t);
   cerr << "C tests: " << ctime(&t);
   for (size_t i=0; i < sizeof(Tests)/sizeof(Tests[0]); ++i) {
+//?     cerr << i << '\n'; //? 1
     run_test(i);
   }
   // End Tests
diff --git a/030container.cc b/030container.cc
index fbb0f87c..2bc540bb 100644
--- a/030container.cc
+++ b/030container.cc
@@ -14,11 +14,14 @@ Type[point].elements.push_back(i);
 //: Containers can be copied around with a single instruction just like
 //: numbers, no matter how large they are.
 
+//: Tests in this layer often explicitly setup memory before reading it as a
+//: container. Don't do this in general. I'm tagging exceptions with /raw to
+//: avoid warnings.
 :(scenario copy_multiple_locations)
 recipe main [
   1:number <- copy 34:literal
   2:number <- copy 35:literal
-  3:point <- copy 1:point
+  3:point <- copy 1:point/raw  # unsafe
 ]
 +mem: storing 34 in location 3
 +mem: storing 35 in location 4
@@ -42,7 +45,7 @@ recipe main [
   12:number <- copy 34:literal
   13:number <- copy 35:literal
   14:number <- copy 36:literal
-  15:point-number <- copy 12:point-number
+  15:point-number <- copy 12:point-number/raw  # unsafe
 ]
 +mem: storing 36 in location 17
 
@@ -57,7 +60,7 @@ recipe main [
   4:number <- copy 34:literal  # second
   5:number <- copy 35:literal
   6:number <- copy 36:literal
-  7:boolean <- equal 1:point-number, 4:point-number
+  7:boolean <- equal 1:point-number/raw, 4:point-number/raw  # unsafe
 ]
 +mem: storing 1 in location 7
 
@@ -69,7 +72,7 @@ recipe main [
   4:number <- copy 34:literal  # second
   5:number <- copy 35:literal
   6:number <- copy 37:literal  # different
-  7:boolean <- equal 1:point-number, 4:point-number
+  7:boolean <- equal 1:point-number/raw, 4:point-number/raw  # unsafe
 ]
 +mem: storing 0 in location 7
 
@@ -91,7 +94,7 @@ if (t.kind == container) {
 recipe main [
   12:number <- copy 34:literal
   13:number <- copy 35:literal
-  15:number <- get 12:point, 1:offset
+  15:number <- get 12:point/raw, 1:offset  # unsafe
 ]
 +mem: storing 35 in location 15
 
@@ -129,7 +132,7 @@ recipe main [
   12:number <- copy 34:literal
   13:number <- copy 35:literal
   14:number <- copy 36:literal
-  15:number <- get 12:point-number, 1:offset
+  15:number <- get 12:point-number/raw, 1:offset  # unsafe
 ]
 +mem: storing 36 in location 15
 
@@ -139,7 +142,7 @@ recipe main [
 recipe main [
   12:number <- copy 34:literal
   13:number <- copy 35:literal
-  15:address:number <- get-address 12:point, 1:offset
+  15:address:number <- get-address 12:point/raw, 1:offset  # unsafe
 ]
 +mem: storing 13 in location 15
 
diff --git a/032array.cc b/032array.cc
index 0d8efc5c..de9a05f1 100644
--- a/032array.cc
+++ b/032array.cc
@@ -5,6 +5,9 @@
 //: elements of a fixed size, so you can't create containers containing arrays.
 //: Create containers containing addresses to arrays instead.
 
+//: Tests in this layer often explicitly setup memory before reading it as an
+//: array. Don't do this in general. I'm tagging exceptions with /raw to
+//: avoid warnings.
 :(scenario copy_array)
 # Arrays can be copied around with a single instruction just like numbers,
 # no matter how large they are.
@@ -13,7 +16,7 @@ recipe main [
   2:number <- copy 14:literal
   3:number <- copy 15:literal
   4:number <- copy 16:literal
-  5:array:number <- copy 1:array:number
+  5:array:number <- copy 1:array:number/raw  # unsafe
 ]
 +mem: storing 3 in location 5
 +mem: storing 14 in location 6
@@ -52,7 +55,7 @@ recipe main [
   2:number <- copy 14:literal
   3:number <- copy 15:literal
   4:number <- copy 16:literal
-  5:number <- index 1:array:number, 0:literal
+  5:number <- index 1:array:number/raw, 0:literal  # unsafe
 ]
 +mem: storing 14 in location 5
 
@@ -63,7 +66,7 @@ recipe main [
   3:number <- copy 15:literal
   4:number <- copy 16:literal
   5:number <- copy 0:literal
-  6:number <- index 1:array:number, 5:number
+  6:number <- index 1:array:number/raw, 5:number  # unsafe
 ]
 +mem: storing 14 in location 6
 
@@ -105,7 +108,7 @@ recipe main [
   2:number <- copy 14:literal
   3:number <- copy 15:literal
   4:number <- copy 16:literal
-  5:number <- index-address 1:array:number, 0:literal
+  5:number <- index-address 1:array:number/raw, 0:literal  # unsafe
 ]
 +mem: storing 2 in location 5
 
@@ -148,7 +151,7 @@ recipe main [
   2:number <- copy 14:literal
   3:number <- copy 15:literal
   4:number <- copy 16:literal
-  5:number <- length 1:array:number
+  5:number <- length 1:array:number/raw  # unsafe
 ]
 +mem: storing 3 in location 5
 
diff --git a/034exclusive_container.cc b/034exclusive_container.cc
index 6d8e3932..8247cb42 100644
--- a/034exclusive_container.cc
+++ b/034exclusive_container.cc
@@ -25,13 +25,16 @@ Type[tmp].element_names.push_back("i");
 Type[tmp].element_names.push_back("p");
 }
 
+//: Tests in this layer often explicitly setup memory before reading it as an
+//: array. Don't do this in general. I'm tagging exceptions with /raw to
+//: avoid warnings.
 :(scenario copy_exclusive_container)
 # Copying exclusive containers copies all their contents and an extra location for the tag.
 recipe main [
   1:number <- copy 1:literal  # 'point' variant
   2:number <- copy 34:literal
   3:number <- copy 35:literal
-  4:number-or-point <- copy 1:number-or-point
+  4:number-or-point <- copy 1:number-or-point/raw  # unsafe
 ]
 +mem: storing 1 in location 4
 +mem: storing 34 in location 5
@@ -69,7 +72,7 @@ recipe main [
   12:number <- copy 1:literal
   13:number <- copy 35:literal
   14:number <- copy 36:literal
-  20:address:point <- maybe-convert 12:number-or-point, 1:variant
+  20:address:point <- maybe-convert 12:number-or-point/raw, 1:variant  # unsafe
 ]
 +mem: storing 13 in location 20
 
@@ -78,7 +81,7 @@ recipe main [
   12:number <- copy 1:literal
   13:number <- copy 35:literal
   14:number <- copy 36:literal
-  20:address:point <- maybe-convert 12:number-or-point, 0:variant
+  20:address:point <- maybe-convert 12:number-or-point/raw, 0:variant  # unsafe
 ]
 +mem: storing 0 in location 20
 
diff --git a/037call_reply.cc b/037call_reply.cc
index 4806c169..a6ec8c0c 100644
--- a/037call_reply.cc
+++ b/037call_reply.cc
@@ -51,7 +51,7 @@ recipe main [
 recipe f [
   12:number <- next-ingredient
   13:number <- copy 35:literal
-  reply 12:point
+  reply 12:point/raw  # unsafe
 ]
 +run: result 0 is [2, 35]
 +mem: storing 2 in location 3
diff --git a/041name.cc b/041name.cc
index 24ba4e00..eec6aa3e 100644
--- a/041name.cc
+++ b/041name.cc
@@ -31,6 +31,7 @@ void transform_names(const recipe_number r) {
   bool names_used = false;
   bool numeric_locations_used = false;
   map<string, long long int>& names = Name[r];
+  map<string, vector<type_number> > metadata;
   // store the indices 'used' so far in the map
   long long int& curr_idx = names[""];
   ++curr_idx;  // avoid using index 0, benign skip in some other cases
@@ -39,6 +40,7 @@ void transform_names(const recipe_number r) {
     // Per-recipe Transforms
     // map names to addresses
     for (long long int in = 0; in < SIZE(inst.ingredients); ++in) {
+      check_metadata(metadata, inst.ingredients.at(in), r);
       if (is_numeric_location(inst.ingredients.at(in))) numeric_locations_used = true;
       if (is_named_location(inst.ingredients.at(in))) names_used = true;
       if (disqualified(inst.ingredients.at(in))) continue;
@@ -48,6 +50,7 @@ void transform_names(const recipe_number r) {
       inst.ingredients.at(in).set_value(lookup_name(inst.ingredients.at(in), r));
     }
     for (long long int out = 0; out < SIZE(inst.products); ++out) {
+      check_metadata(metadata, inst.products.at(out), r);
       if (is_numeric_location(inst.products.at(out))) numeric_locations_used = true;
       if (is_named_location(inst.products.at(out))) names_used = true;
       if (disqualified(inst.products.at(out))) continue;
@@ -63,6 +66,15 @@ void transform_names(const recipe_number r) {
     raise << "mixing variable names and numeric addresses in " << Recipe[r].name << '\n';
 }
 
+void check_metadata(map<string, vector<type_number> >& metadata, const reagent& x, const recipe_number r) {
+  if (isa_literal(x)) return;
+  if (is_raw(x)) return;
+  if (metadata.find(x.name) == metadata.end())
+    metadata[x.name] = x.types;
+  if (metadata[x.name] != x.types)
+    raise << x.name << " used with multiple types in " << Recipe[r].name << '\n';
+}
+
 bool disqualified(/*mutable*/ reagent& x) {
   if (x.types.empty())
     raise << "missing type in " << x.to_string() << '\n';
@@ -180,6 +192,14 @@ recipe main [
 ]
 -warn: mixing variable names and numeric addresses in main
 
+:(scenario convert_names_warns_on_reusing_name_with_different_type)
+% Hide_warnings = true;
+recipe main [
+  x:number <- copy 1:literal
+  x:boolean <- copy 1:literal
+]
++warn: x used with multiple types in main
+
 //:: Support element names for containers in 'get' and 'get-address'.
 
 //: update our running example container for the next test
@@ -228,7 +248,7 @@ recipe main [
   12:number <- copy 1:literal
   13:number <- copy 35:literal
   14:number <- copy 36:literal
-  20:address:point <- maybe-convert 12:number-or-point, p:variant
+  20:address:point <- maybe-convert 12:number-or-point/raw, p:variant  # unsafe
 ]
 +name: variant p of type number-or-point has tag 1
 +mem: storing 13 in location 20
h=hlt&id=08f4628e8b858120fe3547d8e5431d9abfe46bf8'>08f4628e ^
ad8161f3 ^
08f4628e ^
760f683f ^



ad8161f3 ^
08f4628e ^
ad8161f3 ^
08f4628e ^
51b0936f ^
1eb8617c ^

4d3d1c10 ^
ad8161f3 ^











1eb8617c ^

00ee2dec ^
e4ecdb0a ^
760f683f ^
77d5b5d6 ^
2d1e7d55 ^
760f683f ^
15f3b222 ^

760f683f ^
15f3b222 ^


1ead3562 ^
15f3b222 ^
00ee2dec ^


6f65d591 ^



00ee2dec ^
760f683f ^
ad8161f3 ^
00ee2dec ^
ad8161f3 ^
08f4628e ^
ad8161f3 ^
08f4628e ^
ad8161f3 ^
08f4628e ^
ad8161f3 ^
08f4628e ^
ad8161f3 ^
08f4628e ^
ad8161f3 ^
08f4628e ^
ad8161f3 ^
08f4628e ^
51b0936f ^
00ee2dec ^

ad8161f3 ^







00ee2dec ^

960e680d ^

6f65d591 ^



960e680d ^
760f683f ^
ad8161f3 ^

960e680d ^
ad8161f3 ^
08f4628e ^
ad8161f3 ^
08f4628e ^
ad8161f3 ^
08f4628e ^
ad8161f3 ^
08f4628e ^
ad8161f3 ^
08f4628e ^
ad8161f3 ^
08f4628e ^
ad8161f3 ^
08f4628e ^
51b0936f ^
960e680d ^

ad8161f3 ^







960e680d ^

28c52ee1 ^

6f65d591 ^



28c52ee1 ^
ad8161f3 ^
28c52ee1 ^
760f683f ^
08f4628e ^
ad8161f3 ^
08f4628e ^
ad8161f3 ^
08f4628e ^
ad8161f3 ^
08f4628e ^
ad8161f3 ^
08f4628e ^
ad8161f3 ^
08f4628e ^
ad8161f3 ^
08f4628e ^
51b0936f ^
28c52ee1 ^

ad8161f3 ^







28c52ee1 ^

9e869332 ^
e4ecdb0a ^
0ab01e6f ^
e4ecdb0a ^

760f683f ^
77d5b5d6 ^
2d1e7d55 ^
e4ecdb0a ^
1ead3562 ^
760f683f ^

e4ecdb0a ^
15f3b222 ^

e4ecdb0a ^
9e869332 ^
502d2ea5 ^
15f3b222 ^
9e869332 ^
e4ecdb0a ^
9e869332 ^
502d2ea5 ^
15f3b222 ^
1ead3562 ^
9e869332 ^
15f3b222 ^
e4ecdb0a ^
1ead3562 ^
9e869332 ^


6f65d591 ^



9e869332 ^
760f683f ^
ad8161f3 ^
51b0936f ^
0ab01e6f ^
ad8161f3 ^
08f4628e ^
ad8161f3 ^
08f4628e ^
760f683f ^
ad8161f3 ^
08f4628e ^
51b0936f ^
0ab01e6f ^

ad8161f3 ^





0ab01e6f ^



6f65d591 ^



0ab01e6f ^
ad8161f3 ^
9e869332 ^
760f683f ^
08f4628e ^
ad8161f3 ^
08f4628e ^
760f683f ^
ad8161f3 ^
08f4628e ^
51b0936f ^
9e869332 ^

ad8161f3 ^




9e869332 ^


0ab01e6f ^
6f65d591 ^



0ab01e6f ^
0ab01e6f ^
760f683f ^
ad8161f3 ^

51b0936f ^
0ab01e6f ^
ad8161f3 ^
08f4628e ^
ad8161f3 ^
08f4628e ^
760f683f ^
ad8161f3 ^
08f4628e ^
51b0936f ^
0ab01e6f ^

ad8161f3 ^





0ab01e6f ^


94c59817 ^
6f65d591 ^

9e869332 ^
ad8161f3 ^
7a84094a ^
9e869332 ^

e4ecdb0a ^
9e869332 ^

6aae6f46 ^
15f3b222 ^




760f683f ^
6aae6f46 ^
2d1e7d55 ^
760f683f ^
51b0936f ^
15f3b222 ^

a4f56447 ^

15f3b222 ^

1ead3562 ^
a4f56447 ^

760f683f ^
15f3b222 ^


6aae6f46 ^
a4f56447 ^
cb75d366 ^

ad8161f3 ^
760f683f ^
ad8161f3 ^




cb75d366 ^


760f683f ^
ad8161f3 ^

cb75d366 ^
08f4628e ^
ad8161f3 ^
08f4628e ^
ad8161f3 ^
08f4628e ^
760f683f ^
cb75d366 ^

ad8161f3 ^



cb75d366 ^


15f3b222 ^
ad8161f3 ^
cb75d366 ^
760f683f ^
ad8161f3 ^




cb75d366 ^

15f3b222 ^
760f683f ^
15f3b222 ^
760f683f ^
ad8161f3 ^



cb75d366 ^
08f4628e ^
ad8161f3 ^
08f4628e ^
ad8161f3 ^
08f4628e ^
760f683f ^
cb75d366 ^

ad8161f3 ^



cb75d366 ^


93752d9d ^
ad8161f3 ^
15f3b222 ^
760f683f ^
ad8161f3 ^

93752d9d ^
15f3b222 ^
760f683f ^
ad8161f3 ^
93752d9d ^
08f4628e ^
ad8161f3 ^
08f4628e ^
ad8161f3 ^
08f4628e ^
760f683f ^
15f3b222 ^


ad8161f3 ^



15f3b222 ^



ad8161f3 ^
15f3b222 ^
760f683f ^
ad8161f3 ^




15f3b222 ^

760f683f ^
ad8161f3 ^
15f3b222 ^
08f4628e ^
ad8161f3 ^
08f4628e ^
760f683f ^
93752d9d ^

ad8161f3 ^


93752d9d ^


e4ecdb0a ^
760f683f ^
a4f56447 ^
2d1e7d55 ^
1ead3562 ^

760f683f ^
a4f56447 ^
760f683f ^
a4f56447 ^



760f683f ^
15f3b222 ^
5efd2b6b ^

15f3b222 ^
5efd2b6b ^
15f3b222 ^

a4f56447 ^

760f683f ^
cb75d366 ^
2d1e7d55 ^
760f683f ^
15f3b222 ^
1ead3562 ^
15f3b222 ^
cb75d366 ^

760f683f ^
53aad02d ^
2d1e7d55 ^

53aad02d ^
760f683f ^
53aad02d ^



53aad02d ^

a4f56447 ^
760f683f ^
a4f56447 ^
2d1e7d55 ^
a4f56447 ^


2d1e7d55 ^
a4f56447 ^
741ef43e ^
a4f56447 ^
51b0936f ^
a4f56447 ^







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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547