1 //: Phase 3: Start running a loaded and transformed recipe.
  2 //:
  3 //:   The process of running Mu code:
  4 //:     load -> transform -> run
  5 //:
  6 //: So far we've seen recipes as lists of instructions, and instructions point
  7 //: at other recipes. To kick things off Mu needs to know how to run certain
  8 //: 'primitive' recipes. That will then give the ability to run recipes
  9 //: containing these primitives.
 10 //:
 11 //: This layer defines a skeleton with just two primitive recipes: IDLE which
 12 //: does nothing, and COPY, which can copy numbers from one memory location to
 13 //: another. Later layers will add more primitives.
 14 
 15 :(scenario copy_literal)
 16 def main [
 17   1:num <- copy 23
 18 ]
 19 +run: {1: "number"} <- copy {23: "literal"}
 20 +mem: storing 23 in location 1
 21 
 22 :(scenario copy)
 23 def main [
 24   1:num <- copy 23
 25   2:num <- copy 1:num
 26 ]
 27 +run: {2: "number"} <- copy {1: "number"}
 28 +mem: location 1 is 23
 29 +mem: storing 23 in location 2
 30 
 31 :(scenario copy_multiple)
 32 def main [
 33   1:num, 2:num <- copy 23, 24
 34 ]
 35 +mem: storing 23 in location 1
 36 +mem: storing 24 in location 2
 37 
 38 :(before "End Types")
 39 // Book-keeping while running a recipe.
 40 //: Later layers will replace this to support running multiple routines at once.
 41 struct routine {
 42   recipe_ordinal running_recipe;
 43   int running_step_index;
 44   routine(recipe_ordinal r) :running_recipe(r), running_step_index(0) {}
 45   bool completed() const;
 46   const vector<instruction>& steps() const;
 47 };
 48 
 49 :(before "End Globals")
 50 routine* Current_routine = NULL;
 51 map<string, int> Instructions_running;
 52 map<string, int> Locations_read;
 53 map<string, int> Locations_read_by_instruction;
 54 :(before "End Setup")
 55 Current_routine = NULL;
 56 
 57 :(code)
 58 void run(const recipe_ordinal r) {
 59   routine rr(r);
 60   Current_routine = &rr;
 61   run_current_routine();
 62   Current_routine = NULL;
 63 }
 64 
 65 void run_current_routine() {
 66   while (should_continue_running(Current_routine)) {  // beware: may modify Current_routine
 67   ¦ // Running One Instruction
 68   ¦ if (current_instruction().is_label) { ++current_step_index();  continue; }
 69   ¦ trace(Initial_callstack_depth + Trace_stream->callstack_depth, "run") << to_string(current_instruction()) << end();
 70   ¦ if (get_or_insert(Memory, 0) != 0) {
 71   ¦ ¦ raise << "something wrote to location 0; this should never happen\n" << end();
 72   ¦ ¦ put(Memory, 0, 0);
 73   ¦ }
 74   ¦ // read all ingredients from memory, each potentially spanning multiple locations
 75   ¦ vector<vector<double> > ingredients;
 76   ¦ if (should_copy_ingredients()) {
 77   ¦ ¦ for (int i = 0;  i < SIZE(current_instruction().ingredients);  ++i)
 78   ¦ ¦ ¦ ingredients.push_back(read_memory(current_instruction().ingredients.at(i)));
 79   ¦ }
 80   ¦ // instructions below will write to 'products'
 81   ¦ vector<vector<double> > products;
 82   ¦ switch (current_instruction().operation) {
 83   ¦ ¦ // Primitive Recipe Implementations
 84   ¦ ¦ case COPY: {
 85   ¦ ¦ ¦ copy(ingredients.begin(), ingredients.end(), inserter(products, products.begin()));
 86   ¦ ¦ ¦ break;
 87   ¦ ¦ }
 88   ¦ ¦ // End Primitive Recipe Implementations
 89   ¦ ¦ default: {
 90   ¦ ¦ ¦ cout << "not a primitive op: " << current_instruction().operation << '\n';
 91   ¦ ¦ }
 92   ¦ }
 93   ¦ // Write Products of Instruction
 94   ¦ if (SIZE(products) < SIZE(current_instruction().products)) {
 95   ¦ ¦ raise << SIZE(products) << " vs " << SIZE(current_instruction().products) << ": failed to write to all products! " << to_original_string(current_instruction()) << '\n' << end();
 96   ¦ }
 97   ¦ else {
 98   ¦ ¦ for (int i = 0;  i < SIZE(current_instruction().products);  ++i)
 99   ¦ ¦ ¦ write_memory(current_instruction().products.at(i), products.at(i));
100   ¦ }
101   ¦ // End Write Products of Instruction
102   ¦ // End Running One Instruction
103   ¦ finish_instruction:;
104   ¦ ++current_step_index();
105   }
106   stop_running_current_routine:;
107 }
108 
109 //: hook replaced in a later layer
110 bool should_continue_running(const routine* current_routine) {
111   assert(current_routine == Current_routine);  // argument passed in just to make caller readable above
112   return !Current_routine->completed();
113 }
114 
115 bool should_copy_ingredients() {
116   // End should_copy_ingredients Special-cases
117   return true;
118 }
119 
120 //: Some helpers.
121 //: Important that they return references into the current routine.
122 
123 //: hook replaced in a later layer
124 int& current_step_index() {
125   return Current_routine->running_step_index;
126 }
127 
128 //: hook replaced in a later layer
129 const string& current_recipe_name() {
130   return get(Recipe, Current_routine->running_recipe).name;
131 }
132 
133 //: hook replaced in a later layer
134 const recipe& current_recipe() {
135   return get(Recipe, Current_routine->running_recipe);
136 }
137 
138 //: hook replaced in a later layer
139 const instruction& current_instruction() {
140   return get(Recipe, Current_routine->running_recipe).steps.at(Current_routine->running_step_index);
141 }
142 
143 //: hook replaced in a later layer
144 bool routine::completed() const {
145   return running_step_index >= SIZE(get(Recipe, running_recipe).steps);
146 }
147 
148 //: hook replaced in a later layer
149 const vector<instruction>& routine::steps() const {
150   return get(Recipe, running_recipe).steps;
151 }
152 
153 //:: Startup flow
154 
155 //: Step 1: load all .mu files with numeric prefixes (in order)
156 :(before "End Load Recipes")
157 // Load Mu Prelude
158 //? Save_trace = true;
159 //? START_TRACING_UNTIL_END_OF_SCOPE;
160 load_file_or_directory("core.mu");
161 //? DUMP("");
162 //? exit(0);
163 
164 //: Step 2: load any .mu files provided at the commandline
165 :(before "End Commandline Parsing")
166 // Check For .mu Files
167 //? START_TRACING_UNTIL_END_OF_SCOPE
168 //? Dump_trace = true;
169 if (argc > 1) {
170   // skip argv[0]
171   ++argv;
172   --argc;
173   while (argc > 0) {
174   ¦ // ignore argv past '--'; that's commandline args for 'main'
175   ¦ if (string(*argv) == "--") break;
176   ¦ if (starts_with(*argv, "--"))
177   ¦ ¦ cerr << "treating " << *argv << " as a file rather than an option\n";
178   ¦ load_file_or_directory(*argv);
179   ¦ --argc;
180   ¦ ++argv;
181   }
182   if (Run_tests) Recipe.erase(get(Recipe_ordinal, "main"));
183 }
184 transform_all();
185 //? DUMP("");
186 //? exit(0);
187 if (trace_contains_errors()) return 1;
188 save_snapshots();
189 
190 //: Step 3: if we aren't running tests, locate a recipe called 'main' and
191 //: start running it.
192 :(before "End Main")
193 if (!Run_tests && contains_key(Recipe_ordinal, "main") && contains_key(Recipe, get(Recipe_ordinal, "main"))) {
194   // Running Main
195   setup();
196   if (Start_tracing) {
197   ¦ Trace_stream = new trace_stream;
198   ¦ Save_trace = true;
199   }
200   trace(2, "run") << "=== Starting to run" << end();
201   assert(Num_calls_to_transform_all == 1);
202   run_main(argc, argv);
203   teardown();
204 }
205 :(code)
206 void run_main(int argc, char* argv[]) {
207   recipe_ordinal r = get(Recipe_ordinal, "main");
208   if (r) run(r);
209 }
210 
211 //: By default we don't maintain the trace while running main because its
212 //: overheads can grow rapidly. However, it's useful when debugging.
213 :(before "End Globals")
214 bool Start_tracing = false;
215 :(before "End Commandline Options(*arg)")
216 else if (is_equal(*arg, "--trace")) {
217   Start_tracing = true;
218 }
219 
220 :(code)
221 void dump_profile() {
222   for (map<string, int>::iterator p = Instructions_running.begin();  p != Instructions_running.end();  ++p) {
223   ¦ cerr << p->first << ": " << p->second << '\n';
224   }
225   cerr << "== locations read\n";
226   for (map<string, int>::iterator p = Locations_read.begin();  p != Locations_read.end();  ++p) {
227   ¦ cerr << p->first << ": " << p->second << '\n';
228   }
229   cerr << "== locations read by instruction\n";
230   for (map<string, int>::iterator p = Locations_read_by_instruction.begin();  p != Locations_read_by_instruction.end();  ++p) {
231   ¦ cerr << p->first << ": " << p->second << '\n';
232   }
233 }
234 :(before "End One-time Setup")
235 //? atexit(dump_profile);
236 
237 :(code)
238 void cleanup_main() {
239   if (Save_trace && Trace_stream) {
240   ¦ cerr << "writing trace to 'last_run'\n";
241   ¦ ofstream fout("last_run");
242   ¦ fout << Trace_stream->readable_contents("");
243   ¦ fout.close();
244   }
245   if (Trace_stream) delete Trace_stream, Trace_stream = NULL;
246 }
247 :(before "End One-time Setup")
248 atexit(cleanup_main);
249 
250 :(code)
251 void load_file_or_directory(string filename) {
252   if (is_directory(filename)) {
253   ¦ load_all(filename);
254   ¦ return;
255   }
256   ifstream fin(filename.c_str());
257   if (!fin) {
258   ¦ cerr << "no such file '" << filename << "'\n" << end();  // don't raise, just warn. just in case it's just a name for a scenario to run.
259   ¦ return;
260   }
261   trace(9990, "load") << "=== " << filename << end();
262   load(fin);
263   fin.close();
264 }
265 
266 bool is_directory(string path) {
267   struct stat info;
268   if (stat(path.c_str(), &info)) return false;  // error
269   return info.st_mode & S_IFDIR;
270 }
271 
272 void load_all(string dir) {
273   dirent** files;
274   int num_files = scandir(dir.c_str(), &files, NULL, alphasort);
275   for (int i = 0;  i < num_files;  ++i) {
276   ¦ string curr_file = files[i]->d_name;
277   ¦ if (isdigit(curr_file.at(0)))
278   ¦ ¦ load_file_or_directory(dir+'/'+curr_file);
279   ¦ free(files[i]);
280   ¦ files[i] = NULL;
281   }
282   free(files);
283 }
284 :(before "End Includes")
285 #include <dirent.h>
286 #include <sys/stat.h>
287 
288 //:: Reading from memory, writing to memory.
289 
290 :(code)
291 vector<double> read_memory(reagent/*copy*/ x) {
292   // Begin Preprocess read_memory(x)
293   vector<double> result;
294   if (is_literal(x)) {
295   ¦ result.push_back(x.value);
296   ¦ return result;
297   }
298   // End Preprocess read_memory(x)
299   int size = size_of(x);
300   for (int offset = 0;  offset < size;  ++offset) {
301   ¦ double val = get_or_insert(Memory, x.value+offset);
302   ¦ trace(9999, "mem") << "location " << x.value+offset << " is " << no_scientific(val) << end();
303   ¦ result.push_back(val);
304   }
305   return result;
306 }
307 
308 void write_memory(reagent/*copy*/ x, const vector<double>& data) {
309   assert(Current_routine);  // run-time only
310   // Begin Preprocess write_memory(x, data)
311   if (!x.type) {
312   ¦ raise << "can't write to '" << to_string(x) << "'; no type\n" << end();
313   ¦ return;
314   }
315   if (is_dummy(x)) return;
316   if (is_literal(x)) return;
317   // End Preprocess write_memory(x, data)
318   if (x.value == 0) {
319   ¦ raise << "can't write to location 0 in '" << to_original_string(current_instruction()) << "'\n" << end();
320   ¦ return;
321   }
322   if (size_mismatch(x, data)) {
323   ¦ raise << maybe(current_recipe_name()) << "size mismatch in storing to '" << x.original_string << "' (" << size_of(x) << " vs " << SIZE(data) << ") at '" << to_original_string(current_instruction()) << "'\n" << end();
324   ¦ return;
325   }
326   // End write_memory(x) Special-cases
327   for (int offset = 0;  offset < SIZE(data);  ++offset) {
328   ¦ assert(x.value+offset > 0);
329   ¦ trace(9999, "mem") << "storing " << no_scientific(data.at(offset)) << " in location " << x.value+offset << end();
330   ¦ put(Memory, x.value+offset, data.at(offset));
331   }
332 }
333 
334 :(code)
335 int size_of(const reagent& r) {
336   if (!r.type) return 0;
337   // End size_of(reagent r) Special-cases
338   return size_of(r.type);
339 }
340 int size_of(const type_tree* type) {
341   if (!type) return 0;
342   if (type->atom) {
343   ¦ if (type->value == -1) return 1;  // error value, but we'll raise it elsewhere
344   ¦ if (type->value == 0) return 1;
345   ¦ // End size_of(type) Atom Special-cases
346   }
347   else {
348   ¦ if (!type->left->atom) {
349   ¦ ¦ raise << "invalid type " << to_string(type) << '\n' << end();
350   ¦ ¦ return 0;
351   ¦ }
352   ¦ if (type->left->value == get(Type_ordinal, "address")) return 1;
353   ¦ // End size_of(type) Non-atom Special-cases
354   }
355   // End size_of(type) Special-cases
356   return 1;
357 }
358 
359 bool size_mismatch(const reagent& x, const vector<double>& data) {
360   if (!x.type) return true;
361   // End size_mismatch(x) Special-cases
362 //?   if (size_of(x) != SIZE(data)) cerr << size_of(x) << " vs " << SIZE(data) << '\n';
363   return size_of(x) != SIZE(data);
364 }
365 
366 bool is_literal(const reagent& r) {
367   return is_literal(r.type);
368 }
369 bool is_literal(const type_tree* type) {
370   if (!type) return false;
371   if (!type->atom) return false;
372   return type->value == 0;
373 }
374 
375 bool scalar(const vector<int>& x) {
376   return SIZE(x) == 1;
377 }
378 bool scalar(const vector<double>& x) {
379   return SIZE(x) == 1;
380 }
381 
382 // helper for tests
383 void run(const string& form) {
384   vector<recipe_ordinal> tmp = load(form);
385   transform_all();
386   if (tmp.empty()) return;
387   if (trace_contains_errors()) return;
388   // if a test defines main, it probably wants to start there regardless of
389   // definition order
390   if (contains_key(Recipe, get(Recipe_ordinal, "main")))
391   ¦ run(get(Recipe_ordinal, "main"));
392   else
393   ¦ run(tmp.front());
394 }
395 
396 :(scenario run_label)
397 def main [
398   +foo
399   1:num <- copy 23
400   2:num <- copy 1:num
401 ]
402 +run: {1: "number"} <- copy {23: "literal"}
403 +run: {2: "number"} <- copy {1: "number"}
404 -run: +foo
405 
406 :(scenario run_dummy)
407 def main [
408   _ <- copy 0
409 ]
410 +run: _ <- copy {0: "literal"}
411 
412 :(scenario write_to_0_disallowed)
413 % Hide_errors = true;
414 def main [
415   0:num <- copy 34
416 ]
417 -mem: storing 34 in location 0
418 
419 //: Mu is robust to various combinations of commas and spaces. You just have
420 //: to put spaces around the '<-'.
421 
422 :(scenario comma_without_space)
423 def main [
424   1:num, 2:num <- copy 2,2
425 ]
426 +mem: storing 2 in location 1
427 
428 :(scenario space_without_comma)
429 def main [
430   1:num, 2:num <- copy 2 2
431 ]
432 +mem: storing 2 in location 1
433 
434 :(scenario comma_before_space)
435 def main [
436   1:num, 2:num <- copy 2, 2
437 ]
438 +mem: storing 2 in location 1
439 
440 :(scenario comma_after_space)
441 def main [
442   1:num, 2:num <- copy 2 ,2
443 ]
444 +mem: storing 2 in location 1