about summary refs log tree commit diff stats
path: root/cpp/027space
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-17 09:56:04 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-17 09:56:04 -0700
commit9da1b126cc017e14035b94c4615d211e5bc4bb21 (patch)
treea69baf5f6b75be08e68003a725d33cd478659b56 /cpp/027space
parentc8087de8d99a4c3c4264eb89e4d0b35a4fb2c816 (diff)
downloadmu-9da1b126cc017e14035b94c4615d211e5bc4bb21.tar.gz
1072
Diffstat (limited to 'cpp/027space')
-rw-r--r--cpp/027space90
1 files changed, 0 insertions, 90 deletions
diff --git a/cpp/027space b/cpp/027space
deleted file mode 100644
index 1bb91b8e..00000000
--- a/cpp/027space
+++ /dev/null
@@ -1,90 +0,0 @@
-//: Spaces help isolate functions from each other. You can create them at will,
-//: and all addresses in arguments are implicitly based on the 'default-space'
-//: (unless they have the /raw property)
-
-:(scenarios run)
-:(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.
-recipe main [
-  10:integer <- copy 5:literal  # pretend array; in practice we'll use new
-  default-space:address:space <- copy 10:literal
-  1:integer <- copy 23:literal
-]
-+mem: storing 23 in location 12
-
-:(scenario "deref_sidesteps_default_space")
-recipe main [
-  # pretend pointer from outside
-  7:integer <- copy 34:literal
-  # pretend array
-  10:integer <- copy 5:literal
-  # actual start of this function
-  default-space:address:space <- copy 10:literal
-  1:address:integer <- copy 7:literal
-  8:integer/raw <- copy 1:address:integer/deref
-]
-+mem: storing 34 in location 8
-
-:(before "End call Fields")
-size_t default_space;
-:(replace "call(recipe_number r) :running_recipe(r)")
-call(recipe_number r) :running_recipe(r), pc(0), next_ingredient_to_process(0), default_space(0) {}
-
-:(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[2].products[0].to_string() << '\n'; //? 1
-//?   cout << "absolutize " << x.to_string() << '\n'; //? 3
-//?   cout << is_raw(x) << '\n'; //? 1
-  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)));
-//?   cout << "after absolutize: " << r.value << '\n'; //? 1
-  r.properties.push_back(pair<string, vector<string> >("raw", vector<string>()));
-  assert(is_raw(r));
-  return r;
-}
-:(before "return result" following "reagent deref(reagent x)")
-result.properties.push_back(pair<string, vector<string> >("raw", vector<string>()));
-
-:(code)
-int space_base(const reagent& x) {
-  return Current_routine->calls.top().default_space;
-}
-
-int address(int offset, int base) {
-  if (base == 0) return offset;  // raw
-//?   cout << base << '\n'; //? 1
-  if (offset >= Memory[base]) {
-    // todo: test
-    raise << "location " << offset << " is out of bounds " << Memory[base] << '\n';
-  }
-  return base+1 + offset;
-}
-
-:(after "void write_memory(reagent x, vector<int> data)")
-  if (x.name == "default-space") {
-    assert(data.size() == 1);
-    Current_routine->calls.top().default_space = data[0];
-//?     cout << "AAA " << Current_routine->calls.top().default_space << '\n'; //? 1
-    return;
-  }
-
-:(scenario "get_default_space")
-recipe main [
-  default-space:address:space <- copy 10:literal
-  1:integer/raw <- copy default-space:address:space
-]
-+mem: storing 10 in location 1
-
-:(after "vector<int> read_memory(reagent x)")
-  if (x.name == "default-space") {
-    vector<int> result;
-    result.push_back(Current_routine->calls.top().default_space);
-    return result;
-  }
pre>66bbf7518 ^
43bddf62d ^





















66bbf7518 ^


43bddf62d ^












66bbf7518 ^
43bddf62d ^
3c7bbfebb ^
43bddf62d ^
66bbf7518 ^


43bddf62d ^





43bddf62d ^

43bddf62d ^

66bbf7518 ^



43bddf62d ^






f7f3a25be ^
43bddf62d ^







66bbf7518 ^

43bddf62d ^
66bbf7518 ^








43bddf62d ^
66bbf7518 ^

43bddf62d ^
66bbf7518 ^

43bddf62d ^
































000b8afd2 ^
43bddf62d ^



3d543b153 ^
43bddf62d ^


3d543b153 ^









43bddf62d ^


3d543b153 ^
43bddf62d ^
3d543b153 ^
43bddf62d ^
3d543b153 ^






43bddf62d ^

43bddf62d ^







3d543b153 ^


43bddf62d ^










cb1231bf7 ^
2569a58f0 ^


43bddf62d ^

194b14a18 ^
43bddf62d ^















3d543b153 ^




43bddf62d ^










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