about summary refs log tree commit diff stats
path: root/tangle/003tangle.cc
blob: 1699e8ce6f7d7ca9affe6ad570e702dbef7cf650 (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
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
// Reorder a file based on directives starting with ':(' (tangle directives).
// Insert #line directives to preserve line numbers in the original.
// Clear lines starting with '//:' (tangle comments).

//// Preliminaries regarding line number management

struct Line {
  string filename;
  size_t line_number;
  string contents;
  Line() :line_number(0) {}
  Line(const string& text) :line_number(0) {
    contents = text;
  }
  Line(const string& text, const string& f, const size_t& l) {
    contents = text;
    filename = f;
    line_number = l;
  }
  Line(const string& text, const Line& origin) {
    contents = text;
    filename = origin.filename;
    line_number = origin.line_number;
  }
};

// Emit a list of line contents, inserting directives just at discontinuities.
// Needs to be a macro because 'out' can have the side effect of creating a
// new trace in Trace_stream.
#define EMIT(lines, out) if (!lines.empty()) { \
  string last_file = lines.begin()->filename; \
  size_t last_line = lines.begin()->line_number-1; \
  out << line_directive(lines.begin()->line_number, lines.begin()->filename) << '\n'; \
  for (list<Line>::const_iterator p = lines.begin(); p != lines.end(); ++p) { \
    if (last_file != p->filename || last_line != p->line_number-1) \
      out << line_directive(p->line_number, p->filename) << '\n'; \
    out << p->contents << '\n'; \
    last_file = p->filename; \
    last_line = p->line_number; \
  } \
}

string line_directive(size_t line_number, string filename) {
  ostringstream result;
  if (filename.empty())
    result << "#line " << line_number;
  else
    result << "#line " << line_number << " \"" << filename << '"';
  return result.str();
}

//// Tangle

string Toplevel = "run";

int tangle(int argc, const char* argv[]) {
  list<Line> result;
  for (int i = 1; i < argc; ++i) {
//?     cerr << "new file " << argv[i] << '\n';
    Toplevel = "run";
    ifstream in(argv[i]);
    tangle(in, argv[i], result);
  }

  EMIT(result, cout);
  return 0;
}

void tangle(istream& in, const string& filename, list<Line>& out) {
  string curr_line;
  size_t line_number = 1;
  while (!in.eof()) {
    getline(in, curr_line);
    if (starts_with(curr_line, ":(")) {
      ++line_number;
      process_next_hunk(in, trim(curr_line), filename, line_number, out);
      continue;
    }
    if (starts_with(curr_line, "//:")) {
      ++line_number;
      continue;
    }
    out.push_back(Line(curr_line, filename, line_number));
    ++line_number;
  }

  // Trace all line contents, inserting directives just at discontinuities.
  if (!Trace_stream) return;
  EMIT(out, Trace_stream->stream("tangle"));
}

// just for tests
void tangle(istream& in, list<Line>& out) {
  tangle(in, "", out);
}

void process_next_hunk(istream& in, const string& directive, const string& filename, size_t& line_number, list<Line>& out) {
  istringstream directive_stream(directive.substr(2));  // length of ":("
  string cmd = next_tangle_token(directive_stream);

  // first slurp all lines until next directive
  list<Line> hunk;
  bool end_of_scenario_input = false;
  {
    string curr_line;
    while (!in.eof()) {
      std::streampos old = in.tellg();
      getline(in, curr_line);
      if (starts_with(curr_line, ":(")) {
        in.seekg(old);
        break;
      }
      if (starts_with(curr_line, "//:")) {
        // tangle comments
        ++line_number;
        continue;
      }
      if (cmd == "scenario") {
        // ignore mu comments in scenarios, but only after the end of input
        if (!starts_with(curr_line, "#") && !is_input(curr_line)) {
          // remaining lines are checks
          end_of_scenario_input = true;
        }
        else if (end_of_scenario_input && starts_with(curr_line, "#")) {
          ++line_number;
          continue;
        }
        if (trim(curr_line).empty()) {
          // ignore empty lines in scenarios, whether in input of after
          ++line_number;
          continue;
        }
      }
      hunk.push_back(Line(curr_line, filename, line_number));
      ++line_number;
    }
  }

  if (cmd == "code") {
    out.insert(out.end(), hunk.begin(), hunk.end());
    return;
  }

  if (cmd == "scenarios") {
    Toplevel = next_tangle_token(directive_stream);
    return;
  }

  if (cmd == "scenario") {
    list<Line> result;
    string name = next_tangle_token(directive_stream);
    emit_test(name, hunk, result);
//?     cerr << out.size() << " " << result.size() << '\n';
    out.insert(out.end(), result.begin(), result.end());
//?     cerr << out.size() << " " << result.size() << '\n';
    return;
  }

  if (cmd == "before" || cmd == "after" || cmd == "replace" || cmd == "replace{}" || cmd == "delete" || cmd == "delete{}") {
    list<Line>::iterator target = locate_target(out, directive_stream);
    if (target == out.end()) {
      raise << "couldn't find target " << directive << '\n' << die();
      return;
    }

    indent_all(hunk, target);

    if (cmd == "before") {
      out.splice(target, hunk);
    }
    else if (cmd == "after") {
      ++target;
      out.splice(target, hunk);
    }
    else if (cmd == "replace" || cmd == "delete") {
      out.splice(target, hunk);
      out.erase(target);
    }
    else if (cmd == "replace{}" || cmd == "delete{}") {
      if (find_trim(hunk, ":OLD_CONTENTS") == hunk.end()) {
        out.splice(target, hunk);
        out.erase(target, balancing_curly(target));
      }
      else {
        list<Line>::iterator next = balancing_curly(target);
        list<Line> old_version;
        old_version.splice(old_version.begin(), out, target, next);
        old_version.pop_back();  old_version.pop_front();  // contents only please, not surrounding curlies

        list<Line>::iterator new_pos = find_trim(hunk, ":OLD_CONTENTS");
        indent_all(old_version, new_pos);
        hunk.splice(new_pos, old_version);
        hunk.erase(new_pos);
        out.splice(next, hunk);
      }
    }
    return;
  }

  raise << "unknown directive " << cmd << '\n' << die();
}

list<Line>::iterator locate_target(list<Line>& out, istream& directive_stream) {
  string pat = next_tangle_token(directive_stream);
  if (pat == "") return out.end();

  string next_token = next_tangle_token(directive_stream);
  if (next_token == "") {
    return find_substr(out, pat);
  }
  // first way to do nested pattern: pattern 'following' intermediate
  else if (next_token == "following") {
    string pat2 = next_tangle_token(directive_stream);
    if (pat2 == "") return out.end();
    list<Line>::iterator intermediate = find_substr(out, pat2);
    if (intermediate == out.end()) return out.end();
    return find_substr(out, intermediate, pat);
  }
  // second way to do nested pattern: intermediate 'then' pattern
  else if (next_token == "then") {
    list<Line>::iterator intermediate = find_substr(out, pat);
    if (intermediate == out.end()) return out.end();
    string pat2 = next_tangle_token(directive_stream);
    if (pat2 == "") return out.end();
    return find_substr(out, intermediate, pat2);
  }
  raise << "unknown keyword in directive: " << next_token << '\n';
  return out.end();
}

// indent all lines in l like indentation at exemplar
void indent_all(list<Line>& l, list<Line>::iterator exemplar) {
  string curr_indent = indent(exemplar->contents);
  for (list<Line>::iterator p = l.begin(); p != l.end(); ++p)
    if (!p->contents.empty())
      p->contents.insert(p->contents.begin(), curr_indent.begin(), curr_indent.end());
}

string next_tangle_token(istream& in) {
  in >> std::noskipws;
  ostringstream out;
  skip_whitespace(in);
  if (in.peek() == '"')
    slurp_tangle_string(in, out);
  else
    slurp_word(in, out);
  return out.str();
}

void slurp_tangle_string(istream& in, ostream& out) {
  in.get();
  char c;
  while (in >> c) {
    if (c == '\\') {
      // skip backslash and save next character unconditionally
      in >> c;
      out << c;
      continue;
    }
    if (c == '"') break;
    out << c;
  }
}

void slurp_word(istream& in, ostream& out) {
  char c;
  while (in >> c) {
    if (isspace(c) || c == ')') {
      in.putback(c);
      break;
    }
    out << c;
  }
}

void skip_whitespace(istream& in) {
  while (isspace(in.peek()))
    in.get();
}

list<Line>::iterator balancing_curly(list<Line>::iterator curr) {
  long open_curlies = 0;
  do {
    for (string::iterator p = curr->contents.begin(); p != curr->contents.end(); ++p) {
      if (*p == '{') ++open_curlies;
      if (*p == '}') --open_curlies;
    }
    ++curr;
    // no guard so far against unbalanced curly, including inside comments or strings
  } while (open_curlies != 0);
  return curr;
}

// A scenario is one or more sessions separated by calls to CLEAR_TRACE ('===')
//   A session is:
//     one or more lines of escaped setup in C/C++ ('%')
//   followed by one or more lines of input,
//   followed optionally by (in order):
//     one or more lines expected in trace in order ('+')
//     one or more lines trace shouldn't include ('-')
//     one or more lines expressing counts of specific layers emitted in trace ('$')
//     a directive to print the trace just for debugging ('?')
// Remember to update is_input below if you add to this format.
void emit_test(const string& name, list<Line>& lines, list<Line>& result) {
  result.push_back(Line("void test_"+name+"() {", front(lines).filename, front(lines).line_number-1));  // use line number of directive
//?   result.push_back("cerr << \""+name+"\\n\";");  // debug: uncomment this to print scenario names as you run them
  while (!lines.empty()) {
    while (!lines.empty() && starts_with(front(lines).contents, "% ")) {
      result.push_back(Line("  "+front(lines).contents.substr(strlen("% ")), front(lines)));
      lines.pop_front();
    }
    if (lines.empty()) break;
    result.push_back(input_lines(lines));
    if (!lines.empty() && !front(lines).contents.empty() && front(lines).contents.at(0) == '+')
      result.push_back(expected_in_trace(lines));
    while (!lines.empty() && !front(lines).contents.empty() && front(lines).contents.at(0) == '-') {
      result.push_back(expected_not_in_trace(front(lines)));
      lines.pop_front();
    }
    if (!lines.empty() && front(lines).contents.at(0) == '$') {
      const string& in = front(lines).contents;
      size_t pos = in.find(": ");
      string layer = in.substr(1, pos-1);
      string count = in.substr(pos+2);
      result.push_back(Line("  CHECK_TRACE_COUNT(\""+layer+"\", "+count+");", front(lines)));
      lines.pop_front();
    }
    if (!lines.empty() && front(lines).contents == "===") {
      result.push_back(Line("  CLEAR_TRACE;", front(lines)));
      lines.pop_front();
    }
    if (!lines.empty() && front(lines).contents == "?") {
      result.push_back(Line("  DUMP(\"\");", front(lines)));
      lines.pop_front();
    }
  }
  result.push_back(Line("}"));
}

bool is_input(const string& line) {
  if (line.empty()) return true;
  return line != "===" && line.find_first_of("+-$?%") != 0;
}

Line input_lines(list<Line>& hunk) {
  assert(!hunk.empty());
  Line result;
  result.line_number = hunk.front().line_number;
  result.filename = hunk.front().filename;
  while (!hunk.empty() && is_input(hunk.front().contents)) {
    result.contents += hunk.front().contents+"";  // temporary delimiter; replace with escaped newline after escaping other backslashes
    hunk.pop_front();
  }
  result.contents = "  "+Toplevel+"(\""+escape(result.contents)+"\");";
  return result;
}

Line expected_in_trace(list<Line>& hunk) {
  Line result;
  result.line_number = hunk.front().line_number;
  result.filename = hunk.front().filename;
  while (!hunk.empty() && !front(hunk).contents.empty() && front(hunk).contents.at(0) == '+') {
    hunk.front().contents.erase(0, 1);
    result.contents += hunk.front().contents+"";
    hunk.pop_front();
  }
  result.contents = "  CHECK_TRACE_CONTENTS(\""+escape(result.contents)+"\");";
  return result;
}

Line expected_not_in_trace(const Line& line) {
  Line result;
  result.line_number = line.line_number;
  result.filename = line.filename;
  result.contents = "  CHECK_TRACE_DOESNT_CONTAIN(\""+escape(line.contents.substr(1))+"\");";
  return result;
}

list<Line>::iterator find_substr(list<Line>& in, const string& pat) {
  for (list<Line>::iterator p = in.begin(); p != in.end(); ++p)
    if (p->contents.find(pat) != string::npos)
      return p;
  return in.end();
}

list<Line>::iterator find_substr(list<Line>& in, list<Line>::iterator p, const string& pat) {
  for (; p != in.end(); ++p)
    if (p->contents.find(pat) != string::npos)
      return p;
  return in.end();
}

list<Line>::iterator find_trim(list<Line>& in, const string& pat) {
  for (list<Line>::iterator p = in.begin(); p != in.end(); ++p)
    if (trim(p->contents) == pat)
      return p;
  return in.end();
}

string escape(string s) {
  s = replace_all(s, "\\", "\\\\");
  s = replace_all(s, "\"", "\\\"");
  s = replace_all(s, "", "\\n");
  return s;
}

string replace_all(string s, const string& a, const string& b) {
  for (size_t pos = s.find(a); pos != string::npos; pos = s.find(a, pos+b.size()))
    s = s.replace(pos, a.size(), b);
  return s;
}

bool any_line_starts_with(const list<Line>& lines, const string& pat) {
  for (list<Line>::const_iterator p = lines.begin(); p != lines.end(); ++p)
    if (starts_with(p->contents, pat)) return true;
  return false;
}

bool any_non_input_line(const list<Line>& lines) {
  for (list<Line>::const_iterator p = lines.begin(); p != lines.end(); ++p)
    if (!is_input(p->contents)) return true;
  return false;
}

// does s start with pat, after skipping whitespace?
// pat can't start with whitespace
bool starts_with(const string& s, const string& pat) {
  for (size_t pos = 0; pos < s.size(); ++pos)
    if (!isspace(s.at(pos)))
      return s.compare(pos, pat.size(), pat) == 0;
  return false;
}

string indent(const string& s) {
  for (size_t pos = 0; pos < s.size(); ++pos)
    if (!isspace(s.at(pos)))
      return s.substr(0, pos);
  return "";
}

string strip_indent(const string& s, size_t n) {
  if (s.empty()) return "";
  string::const_iterator curr = s.begin();
  while (curr != s.end() && n > 0 && isspace(*curr)) {
    ++curr;
    --n;
  }
  return string(curr, s.end());
}

string trim(const string& s) {
  string::const_iterator first = s.begin();
  while (first != s.end() && isspace(*first))
    ++first;
  if (first == s.end()) return "";

  string::const_iterator last = --s.end();
  while (last != s.begin() && isspace(*last))
    --last;
  ++last;
  return string(first, last);
}

const Line& front(const list<Line>& l) {
  assert(!l.empty());
  return l.front();
}
                                                                                                                                                                                                                                                                                                     


                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      


                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   








                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      






































































                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                       





                                                                                                                                                                                                                                                                     
                                                                                                                             
























                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                  
                                                                                                                                    
                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                   
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               






                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                             

























                                                                                                                                                                                                                                                                    
                                                                                                                             
























                                                                                                                                                                                                                                              

                                                                                                                                                                                            











































                                                                                                                                                                                                                                        
                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                         




                                                                                                                                             
                                                                                                                             








                                                                                                                                                       

                                                                                                                                                                                                                                                                                                                                                                                                            


                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                      





                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
                                                                                                                                                                                                                                                                                                                      
























                                                                                                                                                                                                                                             
                                                                                                                                                                                                                                                                                                     

                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     


                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          







                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                              














                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                   

                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            


                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 






                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                        








                                                                                                                                
                                                                                                                                                                                                                                                                                                       





                                                                                                                                   
                                                                                                                                                                                                                                                                                                                                                                                                              




























                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        









                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                        

                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                            


                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                              













                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                               

                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  


                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       


                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    






                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                              
















                                                                                                                                                                                                                                                                                                                                                                                                                       
                                                                                                                                                                                                                                                                                                                       

                                                                                                                                   
                                                                                                                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              


                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   







                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                              

































































                                                                                                                                                                                                                                                                                                                                               


       
                                     
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Mu - 072scheduler.cc</title>
<meta name="Generator" content="Vim/7.4">
<meta name="plugin-version" content="vim7.4_v2">
<meta name="syntax" content="cpp">
<meta name="settings" content="number_lines,use_css,pre_wrap,no_foldcolumn,expand_tabs,line_ids,prevent_copy=">
<meta name="colorscheme" content="minimal">
<style type="text/css">
<!--
pre { white-space: pre-wrap; font-family: monospace; color: #eeeeee; background-color: #080808; }
body { font-size: 12pt; font-family: monospace; color: #eeeeee; background-color: #080808; }
a { text-decoration: none; }
a:hover { text-decoration: underline; }
* { font-size: 12pt; font-size: 1em; }
.Constant { color: #00a0a0; }
.traceAbsent { color: #c00000; }
.Special { color: #c00000; }
.muRecipe { color: #ff8700; }
.SalientComment { color: #00ffff; }
.Comment { color: #9090ff; }
.Delimiter { color: #800080; }
.LineNr { color: #444444; }
.traceContains { color: #008000; }
.Normal { color: #eeeeee; background-color: #080808; padding-bottom: 1px; }
.Identifier { color: #c0a020; }
.cSpecial { color: #008000; }
-->
</style>

<script type='text/javascript'>
<!--

/* function to open any folds containing a jumped-to line before jumping to it */
function JumpToLine()
{
  var lineNum;
  lineNum = window.location.hash;
  lineNum = lineNum.substr(1); /* strip off '#' */

  if (lineNum.indexOf('L') == -1) {
    lineNum = 'L'+lineNum;
  }
  lineElem = document.getElementById(lineNum);
  /* Always jump to new location even if the line was hidden inside a fold, or
   * we corrected the raw number to a line ID.
   */
  if (lineElem) {
    lineElem.scrollIntoView(true);
  }
  return true;
}
if ('onhashchange' in window) {
  window.onhashchange = JumpToLine;
}

-->
</script>
</head>
<body onload='JumpToLine();'>
<pre id='vimCodeElement'>
<span id="L1" class="LineNr">  1 </span><span class="Comment">//: Run a second routine concurrently using 'start-running', without any</span>
<span id="L2" class="LineNr">  2 </span><span class="Comment">//: guarantees on how the operations in each are interleaved with each other.</span>
<span id="L3" class="LineNr">  3 </span>
<span id="L4" class="LineNr">  4 </span><span class="Delimiter">:(scenario scheduler)</span>
<span id="L5" class="LineNr">  5 </span><span class="muRecipe">def</span> f1 [
<span id="L6" class="LineNr">  6 </span>  start-running f2
<span id="L7" class="LineNr">  7 </span>  <span class="Comment"># wait for f2 to run</span>
<span id="L8" class="LineNr">  8 </span>  <span class="Delimiter">{</span>
<span id="L9" class="LineNr">  9 </span>    jump-unless <span class="Constant">1</span>:num<span class="Delimiter">,</span> -<span class="Constant">1</span>
<span id="L10" class="LineNr"> 10 </span>  <span class="Delimiter">}</span>
<span id="L11" class="LineNr"> 11 </span>]
<span id="L12" class="LineNr"> 12 </span><span class="muRecipe">def</span> f2 [
<span id="L13" class="LineNr"> 13 </span>  <span class="Constant">1</span>:num<span class="Special"> &lt;- </span>copy <span class="Constant">1</span>
<span id="L14" class="LineNr"> 14 </span>]
<span id="L15" class="LineNr"> 15 </span><span class="traceContains">+schedule: f1</span>
<span id="L16" class="LineNr"> 16 </span><span class="traceContains">+schedule: f2</span>
<span id="L17" class="LineNr"> 17 </span>
<span id="L18" class="LineNr"> 18 </span><span class="Comment">//: first, add a deadline to run(routine)</span>
<span id="L19" class="LineNr"> 19 </span><span class="Delimiter">:(before &quot;End Globals&quot;)</span>
<span id="L20" class="LineNr"> 20 </span><span class="Normal">int</span> Scheduling_interval = <span class="Constant">500</span><span class="Delimiter">;</span>
<span id="L21" class="LineNr"> 21 </span><span class="Delimiter">:(before &quot;End routine Fields&quot;)</span>
<span id="L22" class="LineNr"> 22 </span><span class="Normal">int</span> instructions_run_this_scheduling_slice<span class="Delimiter">;</span>
<span id="L23" class="LineNr"> 23 </span><span class="Delimiter">:(before &quot;End routine Constructor&quot;)</span>
<span id="L24" class="LineNr"> 24 </span>instructions_run_this_scheduling_slice = <span class="Constant">0</span><span class="Delimiter">;</span>
<span id="L25" class="LineNr"> 25 </span><span class="Delimiter">:(before &quot;Running One Instruction&quot;)</span>
<span id="L26" class="LineNr"> 26 </span> ++Current_routine<span class="Delimiter">-&gt;</span>instructions_run_this_scheduling_slice<span class="Delimiter">;</span>
<span id="L27" class="LineNr"> 27 </span><span class="Delimiter">:(replace{} &quot;bool should_continue_running(const routine* current_routine)&quot;)</span>
<span id="L28" class="LineNr"> 28 </span><span class="Normal">bool</span> <a href='072scheduler.cc.html#L28'>should_continue_running</a><span class="Delimiter">(</span><span class="Normal">const</span> routine* current_routine<span class="Delimiter">)</span> <span class="Delimiter">{</span>
<span id="L29" class="LineNr"> 29 </span>  assert<span class="Delimiter">(</span>current_routine == Current_routine<span class="Delimiter">);</span>  <span class="Comment">// argument passed in just to make caller readable above</span>
<span id="L30" class="LineNr"> 30 </span>  <span class="Identifier">return</span> Current_routine<span class="Delimiter">-&gt;</span>state == <a href='072scheduler.cc.html#L41'>RUNNING</a>
<span id="L31" class="LineNr"> 31 </span>      &amp;&amp; Current_routine<span class="Delimiter">-&gt;</span>instructions_run_this_scheduling_slice &lt; Scheduling_interval<span class="Delimiter">;</span>
<span id="L32" class="LineNr"> 32 </span><span class="Delimiter">}</span>
<span id="L33" class="LineNr"> 33 </span><span class="Delimiter">:(after &quot;stop_running_current_routine:&quot;)</span>
<span id="L34" class="LineNr"> 34 </span><span class="Comment">// Reset instructions_run_this_scheduling_slice</span>
<span id="L35" class="LineNr"> 35 </span>Current_routine<span class="Delimiter">-&gt;</span>instructions_run_this_scheduling_slice = <span class="Constant">0</span><span class="Delimiter">;</span>
<span id="L36" class="LineNr"> 36 </span>
<span id="L37" class="LineNr"> 37 </span><span class="Comment">//: now the rest of the scheduler is clean</span>
<span id="L38" class="LineNr"> 38 </span>
<span id="L39" class="LineNr"> 39 </span><span class="Delimiter">:(before &quot;struct routine&quot;)</span>
<span id="L40" class="LineNr"> 40 </span><span class="Normal">enum</span> <a href='072scheduler.cc.html#L40'>routine_state</a> <span class="Delimiter">{</span>
<span id="L41" class="LineNr"> 41 </span>  <a href='072scheduler.cc.html#L41'>RUNNING</a><span class="Delimiter">,</span>
<span id="L42" class="LineNr"> 42 </span>  <a href='072scheduler.cc.html#L42'>COMPLETED</a><span class="Delimiter">,</span>
<span id="L43" class="LineNr"> 43 </span>  <span class="Comment">// End routine States</span>
<span id="L44" class="LineNr"> 44 </span><span class="Delimiter">};</span>
<span id="L45" class="LineNr"> 45 </span><span class="Delimiter">:(before &quot;End routine Fields&quot;)</span>
<span id="L46" class="LineNr"> 46 </span><span class="Normal">enum</span> <a href='072scheduler.cc.html#L40'>routine_state</a> state<span class="Delimiter">;</span>
<span id="L47" class="LineNr"> 47 </span><span class="Delimiter">:(before &quot;End routine Constructor&quot;)</span>
<span id="L48" class="LineNr"> 48 </span>state = <a href='072scheduler.cc.html#L41'>RUNNING</a><span class="Delimiter">;</span>
<span id="L49" class="LineNr"> 49 </span>
<span id="L50" class="LineNr"> 50 </span><span class="Delimiter">:(before &quot;End Globals&quot;)</span>
<span id="L51" class="LineNr"> 51 </span>vector&lt;routine*&gt; Routines<span class="Delimiter">;</span>
<span id="L52" class="LineNr"> 52 </span><span class="Normal">int</span> Current_routine_index = <span class="Constant">0</span><span class="Delimiter">;</span>
<span id="L53" class="LineNr"> 53 </span><span class="Delimiter">:(before &quot;End Setup&quot;)</span>
<span id="L54" class="LineNr"> 54 </span>Scheduling_interval = <span class="Constant">500</span><span class="Delimiter">;</span>
<span id="L55" class="LineNr"> 55 </span>Routines<span class="Delimiter">.</span><a href='050scenario.cc.html#L60'>clear</a><span class="Delimiter">();</span>
<span id="L56" class="LineNr"> 56 </span><span class="Delimiter">:(replace{} &quot;void run(const <a href='010vm.cc.html#L14'>recipe_ordinal</a> r)&quot;)</span>
<span id="L57" class="LineNr"> 57 </span><span class="Normal">void</span> run<span class="Delimiter">(</span><span class="Normal">const</span> <a href='010vm.cc.html#L14'>recipe_ordinal</a> r<span class="Delimiter">)</span> <span class="Delimiter">{</span>
<span id="L58" class="LineNr"> 58 </span>  run<span class="Delimiter">(</span><span class="Normal">new</span> routine<span class="Delimiter">(</span>r<span class="Delimiter">));</span>
<span id="L59" class="LineNr"> 59 </span><span class="Delimiter">}</span>
<span id="L60" class="LineNr"> 60 </span>
<span id="L61" class="LineNr"> 61 </span><span class="Delimiter">:(code)</span>
<span id="L62" class="LineNr"> 62 </span><span class="Normal">void</span> run<span class="Delimiter">(</span>routine* rr<span class="Delimiter">)</span> <span class="Delimiter">{</span>
<span id="L63" class="LineNr"> 63 </span>  Routines<span class="Delimiter">.</span>push_back<span class="Delimiter">(</span>rr<span class="Delimiter">);</span>
<span id="L64" class="LineNr"> 64 </span>  Current_routine_index = <span class="Constant">0</span><span class="Delimiter">,</span> Current_routine = Routines<span class="Delimiter">.</span>at<span class="Delimiter">(</span><span class="Constant">0</span><span class="Delimiter">);</span>
<span id="L65" class="LineNr"> 65 </span>  <span class="Normal">while</span> <span class="Delimiter">(</span>!all_routines_done<span class="Delimiter">())</span> <span class="Delimiter">{</span>
<span id="L66" class="LineNr"> 66 </span>    <a href='072scheduler.cc.html#L91'>skip_to_next_routine</a><span class="Delimiter">();</span>
<span id="L67" class="LineNr"> 67 </span>    assert<span class="Delimiter">(</span>Current_routine<span class="Delimiter">);</span>
<span id="L68" class="LineNr"> 68 </span>    assert<span class="Delimiter">(</span>Current_routine<span class="Delimiter">-&gt;</span>state == <a href='072scheduler.cc.html#L41'>RUNNING</a><span class="Delimiter">);</span>
<span id="L69" class="LineNr"> 69 </span>    <a href='003trace.cc.html#L169'>trace</a><span class="Delimiter">(</span><span class="Constant">9990</span><span class="Delimiter">,</span> <span class="Constant">&quot;schedule&quot;</span><span class="Delimiter">)</span> &lt;&lt; <a href='072scheduler.cc.html#L103'>current_routine_label</a><span class="Delimiter">()</span> &lt;&lt; <a href='003trace.cc.html#L193'>end</a><span class="Delimiter">();</span>
<span id="L70" class="LineNr"> 70 </span>    run_current_routine<span class="Delimiter">();</span>
<span id="L71" class="LineNr"> 71 </span>    <span class="Comment">// Scheduler State Transitions</span>
<span id="L72" class="LineNr"> 72 </span>    <span class="Normal">if</span> <span class="Delimiter">(</span>Current_routine<span class="Delimiter">-&gt;</span>completed<span class="Delimiter">())</span>
<span id="L73" class="LineNr"> 73 </span>      Current_routine<span class="Delimiter">-&gt;</span>state = <a href='072scheduler.cc.html#L42'>COMPLETED</a><span class="Delimiter">;</span>
<span id="L74" class="LineNr"> 74 </span>    <span class="Comment">// End Scheduler State Transitions</span>
<span id="L75" class="LineNr"> 75 </span>
<span id="L76" class="LineNr"> 76 </span>    <span class="Comment">// Scheduler Cleanup</span>
<span id="L77" class="LineNr"> 77 </span>    <span class="Comment">// End Scheduler Cleanup</span>
<span id="L78" class="LineNr"> 78 </span>  <span class="Delimiter">}</span>
<span id="L79" class="LineNr"> 79 </span>  <span class="Comment">// End Run Routine</span>
<span id="L80" class="LineNr"> 80 </span><span class="Delimiter">}</span>
<span id="L81" class="LineNr"> 81 </span>
<span id="L82" class="LineNr"> 82 </span><span class="Normal">bool</span> <a href='072scheduler.cc.html#L82'>all_routines_done</a><span class="Delimiter">()</span> <span class="Delimiter">{</span>
<span id="L83" class="LineNr"> 83 </span>  <span class="Normal">for</span> <span class="Delimiter">(</span><span class="Normal">int</span> i = <span class="Constant">0</span><span class="Delimiter">;</span>  i &lt; <a href='001help.cc.html#L138'>SIZE</a><span class="Delimiter">(</span>Routines<span class="Delimiter">);</span>  ++i<span class="Delimiter">)</span> <span class="Delimiter">{</span>
<span id="L84" class="LineNr"> 84 </span>    <span class="Normal">if</span> <span class="Delimiter">(</span>Routines<span class="Delimiter">.</span>at<span class="Delimiter">(</span>i<span class="Delimiter">)-&gt;</span>state == <a href='072scheduler.cc.html#L41'>RUNNING</a><span class="Delimiter">)</span>
<span id="L85" class="LineNr"> 85 </span>      <span class="Identifier">return</span> <span class="Constant">false</span><span class="Delimiter">;</span>
<span id="L86" class="LineNr"> 86 </span>  <span class="Delimiter">}</span>
<span id="L87" class="LineNr"> 87 </span>  <span class="Identifier">return</span> <span class="Constant">true</span><span class="Delimiter">;</span>
<span id="L88" class="LineNr"> 88 </span><span class="Delimiter">}</span>
<span id="L89" class="LineNr"> 89 </span>
<span id="L90" class="LineNr"> 90 </span><span class="Comment">// skip Current_routine_index past non-RUNNING routines</span>
<span id="L91" class="LineNr"> 91 </span><span class="Normal">void</span> <a href='072scheduler.cc.html#L91'>skip_to_next_routine</a><span class="Delimiter">()</span> <span class="Delimiter">{</span>
<span id="L92" class="LineNr"> 92 </span>  assert<span class="Delimiter">(</span>!Routines<span class="Delimiter">.</span>empty<span class="Delimiter">());</span>
<span id="L93" class="LineNr"> 93 </span>  assert<span class="Delimiter">(</span>Current_routine_index &lt; <a href='001help.cc.html#L138'>SIZE</a><span class="Delimiter">(</span>Routines<span class="Delimiter">));</span>
<span id="L94" class="LineNr"> 94 </span>  <span class="Normal">for</span> <span class="Delimiter">(</span><span class="Normal">int</span> i = <span class="Delimiter">(</span>Current_routine_index+<span class="Constant">1</span><span class="Delimiter">)</span>%SIZE<span class="Delimiter">(</span>Routines<span class="Delimiter">);</span>  i != Current_routine_index<span class="Delimiter">;</span>  i = <span class="Delimiter">(</span>i+<span class="Constant">1</span><span class="Delimiter">)</span>%SIZE<span class="Delimiter">(</span>Routines<span class="Delimiter">))</span> <span class="Delimiter">{</span>
<span id="L95" class="LineNr"> 95 </span>    <span class="Normal">if</span> <span class="Delimiter">(</span>Routines<span class="Delimiter">.</span>at<span class="Delimiter">(</span>i<span class="Delimiter">)-&gt;</span>state == <a href='072scheduler.cc.html#L41'>RUNNING</a><span class="Delimiter">)</span> <span class="Delimiter">{</span>
<span id="L96" class="LineNr"> 96 </span>      Current_routine_index = i<span class="Delimiter">;</span>
<span id="L97" class="LineNr"> 97 </span>      Current_routine = Routines<span class="Delimiter">.</span>at<span class="Delimiter">(</span>i<span class="Delimiter">);</span>
<span id="L98" class="LineNr"> 98 </span>      <span class="Identifier">return</span><span class="Delimiter">;</span>
<span id="L99" class="LineNr"> 99 </span>    <span class="Delimiter">}</span>
<span id="L100" class="LineNr">100 </span>  <span class="Delimiter">}</span>
<span id="L101" class="LineNr">101 </span><span class="Delimiter">}</span>
<span id="L102" class="LineNr">102 </span>
<span id="L103" class="LineNr">103 </span>string <a href='072scheduler.cc.html#L103'>current_routine_label</a><span class="Delimiter">()</span> <span class="Delimiter">{</span>
<span id="L104" class="LineNr">104 </span>  <span class="Identifier">return</span> <a href='072scheduler.cc.html#L107'>routine_label</a><span class="Delimiter">(</span>Current_routine<span class="Delimiter">);</span>
<span id="L105" class="LineNr">105 </span><span class="Delimiter">}</span>
<span id="L106" class="LineNr">106 </span>
<span id="L107" class="LineNr">107 </span>string <a href='072scheduler.cc.html#L107'>routine_label</a><span class="Delimiter">(</span>routine* r<span class="Delimiter">)</span> <span class="Delimiter">{</span>
<span id="L108" class="LineNr">108 </span>  ostringstream result<span class="Delimiter">;</span>
<span id="L109" class="LineNr">109 </span>  <span class="Normal">const</span> call_stack&amp; calls = r<span class="Delimiter">-&gt;</span>calls<span class="Delimiter">;</span>
<span id="L110" class="LineNr">110 </span>  <span class="Normal">for</span> <span class="Delimiter">(</span>call_stack::const_iterator p = calls<span class="Delimiter">.</span>begin<span class="Delimiter">();</span>  p != calls<span class="Delimiter">.</span><a href='003trace.cc.html#L193'>end</a><span class="Delimiter">();</span>  ++p<span class="Delimiter">)</span> <span class="Delimiter">{</span>
<span id="L111" class="LineNr">111 </span>    <span class="Normal">if</span> <span class="Delimiter">(</span>p != calls<span class="Delimiter">.</span>begin<span class="Delimiter">())</span> result &lt;&lt; <span class="Constant">'/'</span><span class="Delimiter">;</span>
<span id="L112" class="LineNr">112 </span>    result &lt;&lt; get<span class="Delimiter">(</span>Recipe<span class="Delimiter">,</span> p<span class="Delimiter">-&gt;</span>running_recipe<span class="Delimiter">).</span>name<span class="Delimiter">;</span>
<span id="L113" class="LineNr">113 </span>  <span class="Delimiter">}</span>
<span id="L114" class="LineNr">114 </span>  <span class="Identifier">return</span> result<span class="Delimiter">.</span>str<span class="Delimiter">();</span>
<span id="L115" class="LineNr">115 </span><span class="Delimiter">}</span>
<span id="L116" class="LineNr">116 </span>
<span id="L117" class="LineNr">117 </span><span class="Delimiter">:(before &quot;End Teardown&quot;)</span>
<span id="L118" class="LineNr">118 </span><span class="Normal">for</span> <span class="Delimiter">(</span><span class="Normal">int</span> i = <span class="Constant">0</span><span class="Delimiter">;</span>  i &lt; <a href='001help.cc.html#L138'>SIZE</a><span class="Delimiter">(</span>Routines<span class="Delimiter">);</span>  ++i<span class="Delimiter">)</span>
<span id="L119" class="LineNr">119 </span>  <span class="Normal">delete</span> Routines<span class="Delimiter">.</span>at<span class="Delimiter">(</span>i<span class="Delimiter">);</span>
<span id="L120" class="LineNr">120 </span>Routines<span class="Delimiter">.</span><a href='050scenario.cc.html#L60'>clear</a><span class="Delimiter">();</span>
<span id="L121" class="LineNr">121 </span>Current_routine = <span class="Constant">NULL</span><span class="Delimiter">;</span>
<span id="L122" class="LineNr">122 </span>
<span id="L123" class="LineNr">123 </span><span class="Comment">//: special case for the very first routine</span>
<span id="L124" class="LineNr">124 </span><span class="Delimiter">:(replace{} &quot;void run_main(int argc, char* argv[])&quot;)</span>
<span id="L125" class="LineNr">125 </span><span class="Normal">void</span> <a href='072scheduler.cc.html#L125'>run_main</a><span class="Delimiter">(</span><span class="Normal">int</span> argc<span class="Delimiter">,</span> <span class="Normal">char</span>* argv[]<span class="Delimiter">)</span> <span class="Delimiter">{</span>
<span id="L126" class="LineNr">126 </span>  <a href='010vm.cc.html#L14'>recipe_ordinal</a> r = get<span class="Delimiter">(</span>Recipe_ordinal<span class="Delimiter">,</span> <span class="Constant">&quot;main&quot;</span><span class="Delimiter">);</span>
<span id="L127" class="LineNr">127 </span>  assert<span class="Delimiter">(</span>r<span class="Delimiter">);</span>
<span id="L128" class="LineNr">128 </span>  routine* main_routine = <span class="Normal">new</span> routine<span class="Delimiter">(</span>r<span class="Delimiter">);</span>
<span id="L129" class="LineNr">129 </span>  <span class="Comment">// pass in commandline args as ingredients to main</span>
<span id="L130" class="LineNr">130 </span>  <span class="Comment">// todo: test this</span>
<span id="L131" class="LineNr">131 </span>  Current_routine = main_routine<span class="Delimiter">;</span>
<span id="L132" class="LineNr">132 </span>  <span class="Normal">for</span> <span class="Delimiter">(</span><span class="Normal">int</span> i = <span class="Constant">1</span><span class="Delimiter">;</span>  i &lt; argc<span class="Delimiter">;</span>  ++i<span class="Delimiter">)</span> <span class="Delimiter">{</span>
<span id="L133" class="LineNr">133 </span>    vector&lt;<span class="Normal">double</span>&gt; arg<span class="Delimiter">;</span>
<span id="L134" class="LineNr">134 </span>    arg<span class="Delimiter">.</span>push_back<span class="Delimiter">(</span><a href='038new_text.cc.html#L38'>new_mu_text</a><span class="Delimiter">(</span>argv[i]<span class="Delimiter">));</span>
<span id="L135" class="LineNr">135 </span>    assert<span class="Delimiter">(</span>get<span class="Delimiter">(</span>Memory<span class="Delimiter">,</span> arg<span class="Delimiter">.</span>back<span class="Delimiter">())</span> == <span class="Constant">0</span><span class="Delimiter">);</span>
<span id="L136" class="LineNr">136 </span>    <a href='001help.cc.html#L218'>put</a><span class="Delimiter">(</span>Memory<span class="Delimiter">,</span> arg<span class="Delimiter">.</span>back<span class="Delimiter">(),</span> <span class="Constant">1</span><span class="Delimiter">);</span>  <span class="Comment">// update refcount</span>
<span id="L137" class="LineNr">137 </span>    current_call<span class="Delimiter">().</span>ingredient_atoms<span class="Delimiter">.</span>push_back<span class="Delimiter">(</span>arg<span class="Delimiter">);</span>
<span id="L138" class="LineNr">138 </span>  <span class="Delimiter">}</span>
<span id="L139" class="LineNr">139 </span>  run<span class="Delimiter">(</span>main_routine<span class="Delimiter">);</span>
<span id="L140" class="LineNr">140 </span><span class="Delimiter">}</span>
<span id="L141" class="LineNr">141 </span>
<span id="L142" class="LineNr">142 </span><span class="SalientComment">//:: To schedule new routines to run, call 'start-running'.</span>
<span id="L143" class="LineNr">143 </span>
<span id="L144" class="LineNr">144 </span><span class="Comment">//: 'start-running' will return a unique id for the routine that was created.</span>
<span id="L145" class="LineNr">145 </span><span class="Comment">//: routine id is a number, but don't do any arithmetic on it</span>
<span id="L146" class="LineNr">146 </span><span class="Delimiter">:(before &quot;End routine Fields&quot;)</span>
<span id="L147" class="LineNr">147 </span><span class="Normal">int</span> id<span class="Delimiter">;</span>
<span id="L148" class="LineNr">148 </span><span class="Delimiter">:(before &quot;End Globals&quot;)</span>
<span id="L149" class="LineNr">149 </span><span class="Normal">int</span> Next_routine_id = <span class="Constant">1</span><span class="Delimiter">;</span>
<span id="L150" class="LineNr">150 </span><span class="Delimiter">:(before &quot;End Setup&quot;)</span>
<span id="L151" class="LineNr">151 </span>Next_routine_id = <span class="Constant">1</span><span class="Delimiter">;</span>
<span id="L152" class="LineNr">152 </span><span class="Delimiter">:(before &quot;End routine Constructor&quot;)</span>
<span id="L153" class="LineNr">153 </span>id = Next_routine_id<span class="Delimiter">;</span>
<span id="L154" class="LineNr">154 </span><span class="traceContains">++Next_routine_id;</span>
<span id="L155" class="LineNr">155 </span>
<span id="L156" class="LineNr">156 </span><span class="Comment">//: routines save the routine that spawned them</span>
<span id="L157" class="LineNr">157 </span><span class="Delimiter">:(before &quot;End routine Fields&quot;)</span>
<span id="L158" class="LineNr">158 </span><span class="Comment">// todo: really should be routine_id, but that's less efficient.</span>
<span id="L159" class="LineNr">159 </span><span class="Normal">int</span> parent_index<span class="Delimiter">;</span>  <span class="Comment">// only &lt; 0 if there's no parent_index</span>
<span id="L160" class="LineNr">160 </span><span class="Delimiter">:(before &quot;End routine Constructor&quot;)</span>
<span id="L161" class="LineNr">161 </span>parent_index = -<span class="Constant">1</span><span class="Delimiter">;</span>
<span id="L162" class="LineNr">162 </span>
<span id="L163" class="LineNr">163 </span><span class="Delimiter">:(before &quot;End Primitive Recipe Declarations&quot;)</span>
<span id="L164" class="LineNr">164 </span>START_RUNNING<span class="Delimiter">,</span>
<span id="L165" class="LineNr">165 </span><span class="Delimiter">:(before &quot;End Primitive Recipe Numbers&quot;)</span>
<span id="L166" class="LineNr">166 </span><a href='001help.cc.html#L218'>put</a><span class="Delimiter">(</span>Recipe_ordinal<span class="Delimiter">,</span> <span class="Constant">&quot;start-running&quot;</span><span class="Delimiter">,</span> START_RUNNING<span class="Delimiter">);</span>
<span id="L167" class="LineNr">167 </span><span class="Delimiter">:(before &quot;End Primitive Recipe Checks&quot;)</span>
<span id="L168" class="LineNr">168 </span><span class="Normal">case</span> START_RUNNING: <span class="Delimiter">{</span>
<span id="L169" class="LineNr">169 </span>  <span class="Normal">if</span> <span class="Delimiter">(</span>inst<span class="Delimiter">.</span>ingredients<span class="Delimiter">.</span>empty<span class="Delimiter">())</span> <span class="Delimiter">{</span>
<span id="L170" class="LineNr">170 </span>    <a href='003trace.cc.html#L176'>raise</a> &lt;&lt; <a href='013update_operation.cc.html#L25'>maybe</a><span class="Delimiter">(</span>get<span class="Delimiter">(</span>Recipe<span class="Delimiter">,</span> r<span class="Delimiter">).</span>name<span class="Delimiter">)</span> &lt;&lt; <span class="Constant">&quot;'start-running' requires at least one ingredient: the <a href='010vm.cc.html#L19'>recipe</a> to start running</span><span class="cSpecial">\n</span><span class="Constant">&quot;</span> &lt;&lt; <a href='003trace.cc.html#L193'>end</a><span class="Delimiter">();</span>
<span id="L171" class="LineNr">171 </span>    <span class="Identifier">break</span><span class="Delimiter">;</span>
<span id="L172" class="LineNr">172 </span>  <span class="Delimiter">}</span>
<span id="L173" class="LineNr">173 </span>  <span class="Normal">if</span> <span class="Delimiter">(</span>!is_mu_recipe<span class="Delimiter">(</span>inst<span class="Delimiter">.</span>ingredients<span class="Delimiter">.</span>at<span class="Delimiter">(</span><span class="Constant">0</span><span class="Delimiter">)))</span> <span class="Delimiter">{</span>
<span id="L174" class="LineNr">174 </span>    <a href='003trace.cc.html#L176'>raise</a> &lt;&lt; <a href='013update_operation.cc.html#L25'>maybe</a><span class="Delimiter">(</span>get<span class="Delimiter">(</span>Recipe<span class="Delimiter">,</span> r<span class="Delimiter">).</span>name<span class="Delimiter">)</span> &lt;&lt; <span class="Constant">&quot;first ingredient of 'start-running' should be a <a href='010vm.cc.html#L19'>recipe</a>, but got '&quot;</span> &lt;&lt; to_string<span class="Delimiter">(</span>inst<span class="Delimiter">.</span>ingredients<span class="Delimiter">.</span>at<span class="Delimiter">(</span><span class="Constant">0</span><span class="Delimiter">))</span> &lt;&lt; <span class="Constant">&quot;'</span><span class="cSpecial">\n</span><span class="Constant">&quot;</span> &lt;&lt; <a href='003trace.cc.html#L193'>end</a><span class="Delimiter">();</span>
<span id="L175" class="LineNr">175 </span>    <span class="Identifier">break</span><span class="Delimiter">;</span>
<span id="L176" class="LineNr">176 </span>  <span class="Delimiter">}</span>
<span id="L177" class="LineNr">177 </span>  <span class="Identifier">break</span><span class="Delimiter">;</span>
<span id="L178" class="LineNr">178 </span><span class="Delimiter">}</span>
<span id="L179" class="LineNr">179 </span><span class="Delimiter">:(before &quot;End Primitive Recipe Implementations&quot;)</span>
<span id="L180" class="LineNr">180 </span><span class="Normal">case</span> START_RUNNING: <span class="Delimiter">{</span>
<span id="L181" class="LineNr">181 </span>  routine* new_routine = <span class="Normal">new</span> routine<span class="Delimiter">(</span>ingredients<span class="Delimiter">.</span>at<span class="Delimiter">(</span><span class="Constant">0</span><span class="Delimiter">).</span>at<span class="Delimiter">(</span><span class="Constant">0</span><span class="Delimiter">));</span>
<span id="L182" class="LineNr">182 </span>  new_routine<span class="Delimiter">-&gt;</span>parent_index = Current_routine_index<span class="Delimiter">;</span>
<span id="L183" class="LineNr">183 </span>  <span class="Comment">// populate ingredients</span>
<span id="L184" class="LineNr">184 </span>  <span class="Normal">for</span> <span class="Delimiter">(</span><span class="Normal">int</span> i = <span class="Constant">1</span><span class="Delimiter">;</span>  i &lt; <a href='001help.cc.html#L138'>SIZE</a><span class="Delimiter">(</span>current_instruction<span class="Delimiter">().</span>ingredients<span class="Delimiter">);</span>  ++i<span class="Delimiter">)</span> <span class="Delimiter">{</span>
<span id="L185" class="LineNr">185 </span>    new_routine<span class="Delimiter">-&gt;</span>calls<span class="Delimiter">.</span>front<span class="Delimiter">().</span>ingredient_atoms<span class="Delimiter">.</span>push_back<span class="Delimiter">(</span>ingredients<span class="Delimiter">.</span>at<span class="Delimiter">(</span>i<span class="Delimiter">));</span>
<span id="L186" class="LineNr">186 </span>    reagent<span class="Comment">/*</span><span class="Comment">copy</span><span class="Comment">*/</span> ingredient = current_instruction<span class="Delimiter">().</span>ingredients<span class="Delimiter">.</span>at<span class="Delimiter">(</span>i<span class="Delimiter">);</span>
<span id="L187" class="LineNr">187 </span>    canonize_type<span class="Delimiter">(</span>ingredient<span class="Delimiter">);</span>
<span id="L188" class="LineNr">188 </span>    new_routine<span class="Delimiter">-&gt;</span>calls<span class="Delimiter">.</span>front<span class="Delimiter">().</span>ingredients<span class="Delimiter">.</span>push_back<span class="Delimiter">(</span>ingredient<span class="Delimiter">);</span>
<span id="L189" class="LineNr">189 </span>    <span class="Comment">// End Populate start-running Ingredient</span>
<span id="L190" class="LineNr">190 </span>  <span class="Delimiter">}</span>
<span id="L191" class="LineNr">191 </span>  Routines<span class="Delimiter">.</span>push_back<span class="Delimiter">(</span>new_routine<span class="Delimiter">);</span>
<span id="L192" class="LineNr">192 </span>  products<span class="Delimiter">.</span>resize<span class="Delimiter">(</span><span class="Constant">1</span><span class="Delimiter">);</span>
<span id="L193" class="LineNr">193 </span>  products<span class="Delimiter">.</span>at<span class="Delimiter">(</span><span class="Constant">0</span><span class="Delimiter">).</span>push_back<span class="Delimiter">(</span>new_routine<span class="Delimiter">-&gt;</span>id<span class="Delimiter">);</span>
<span id="L194" class="LineNr">194 </span>  <span class="Identifier">break</span><span class="Delimiter">;</span>
<span id="L195" class="LineNr">195 </span><span class="Delimiter">}</span>
<span id="L196" class="LineNr">196 </span>
<span id="L197" class="LineNr">197 </span><span class="Delimiter">:(scenario scheduler_runs_single_routine)</span>
<span id="L198" class="LineNr">198 </span><span class="Special">% Scheduling_interval = 1;</span>
<span id="L199" class="LineNr">199 </span><span class="muRecipe">def</span> f1 [
<span id="L200" class="LineNr">200 </span>  <span class="Constant">1</span>:num<span class="Special"> &lt;- </span>copy <span class="Constant">0</span>
<span id="L201" class="LineNr">201 </span>  <span class="Constant">2</span>:num<span class="Special"> &lt;- </span>copy <span class="Constant">0</span>
<span id="L202" class="LineNr">202 </span>]
<span id="L203" class="LineNr">203 </span><span class="traceContains">+schedule: f1</span>
<span id="L204" class="LineNr">204 </span><span class="traceContains">+run: {1: &quot;number&quot;} &lt;- copy {0: &quot;literal&quot;}</span>
<span id="L205" class="LineNr">205 </span><span class="traceContains">+schedule: f1</span>
<span id="L206" class="LineNr">206 </span><span class="traceContains">+run: {2: &quot;number&quot;} &lt;- copy {0: &quot;literal&quot;}</span>
<span id="L207" class="LineNr">207 </span>
<span id="L208" class="LineNr">208 </span><span class="Delimiter">:(scenario scheduler_interleaves_routines)</span>
<span id="L209" class="LineNr">209 </span><span class="Special">% Scheduling_interval = 1;</span>
<span id="L210" class="LineNr">210 </span><span class="muRecipe">def</span> f1 [
<span id="L211" class="LineNr">211 </span>  start-running f2
<span id="L212" class="LineNr">212 </span>  <span class="Constant">1</span>:num<span class="Special"> &lt;- </span>copy <span class="Constant">0</span>
<span id="L213" class="LineNr">213 </span>  <span class="Constant">2</span>:num<span class="Special"> &lt;- </span>copy <span class="Constant">0</span>
<span id="L214" class="LineNr">214 </span>]
<span id="L215" class="LineNr">215 </span><span class="muRecipe">def</span> f2 [
<span id="L216" class="LineNr">216 </span>  <span class="Constant">3</span>:num<span class="Special"> &lt;- </span>copy <span class="Constant">0</span>
<span id="L217" class="LineNr">217 </span>  <span class="Constant">4</span>:num<span class="Special"> &lt;- </span>copy <span class="Constant">0</span>
<span id="L218" class="LineNr">218 </span>]
<span id="L219" class="LineNr">219 </span><span class="traceContains">+schedule: f1</span>
<span id="L220" class="LineNr">220 </span><span class="traceContains">+run: start-running {f2: &quot;recipe-literal&quot;}</span>
<span id="L221" class="LineNr">221 </span><span class="traceContains">+schedule: f2</span>
<span id="L222" class="LineNr">222 </span><span class="traceContains">+run: {3: &quot;number&quot;} &lt;- copy {0: &quot;literal&quot;}</span>
<span id="L223" class="LineNr">223 </span><span class="traceContains">+schedule: f1</span>
<span id="L224" class="LineNr">224 </span><span class="traceContains">+run: {1: &quot;number&quot;} &lt;- copy {0: &quot;literal&quot;}</span>
<span id="L225" class="LineNr">225 </span><span class="traceContains">+schedule: f2</span>
<span id="L226" class="LineNr">226 </span><span class="traceContains">+run: {4: &quot;number&quot;} &lt;- copy {0: &quot;literal&quot;}</span>
<span id="L227" class="LineNr">227 </span><span class="traceContains">+schedule: f1</span>
<span id="L228" class="LineNr">228 </span><span class="traceContains">+run: {2: &quot;number&quot;} &lt;- copy {0: &quot;literal&quot;}</span>
<span id="L229" class="LineNr">229 </span>
<span id="L230" class="LineNr">230 </span><span class="Delimiter">:(scenario start_running_takes_ingredients)</span>
<span id="L231" class="LineNr">231 </span><span class="muRecipe">def</span> f1 [
<span id="L232" class="LineNr">232 </span>  start-running f2<span class="Delimiter">,</span> <span class="Constant">3</span>
<span id="L233" class="LineNr">233 </span>  <span class="Comment"># wait for f2 to run</span>
<span id="L234" class="LineNr">234 </span>  <span class="Delimiter">{</span>
<span id="L235" class="LineNr">235 </span>    jump-unless <span class="Constant">1</span>:num<span class="Delimiter">,</span> -<span class="Constant">1</span>
<span id="L236" class="LineNr">236 </span>  <span class="Delimiter">}</span>
<span id="L237" class="LineNr">237 </span>]
<span id="L238" class="LineNr">238 </span><span class="muRecipe">def</span> f2 [
<span id="L239" class="LineNr">239 </span>  <span class="Constant">1</span>:num<span class="Special"> &lt;- </span>next-ingredient
<span id="L240" class="LineNr">240 </span>  <span class="Constant">2</span>:num<span class="Special"> &lt;- </span>add <span class="Constant">1</span>:num<span class="Delimiter">,</span> <span class="Constant">1</span>
<span id="L241" class="LineNr">241 </span>]
<span id="L242" class="LineNr">242 </span><span class="traceContains">+mem: storing 4 in location 2</span>
<span id="L243" class="LineNr">243 </span>
<span id="L244" class="LineNr">244 </span><span class="Comment">//: type-checking for 'start-running'</span>
<span id="L245" class="LineNr">245 </span>
<span id="L246" class="LineNr">246 </span><span class="Delimiter">:(scenario start_running_checks_types)</span>
<span id="L247" class="LineNr">247 </span><span class="Special">% Hide_errors = true;</span>
<span id="L248" class="LineNr">248 </span><span class="muRecipe">def</span> f1 [
<span id="L249" class="LineNr">249 </span>  start-running f2<span class="Delimiter">,</span> <span class="Constant">3</span>
<span id="L250" class="LineNr">250 </span>]
<span id="L251" class="LineNr">251 </span><span class="muRecipe">def</span> f2 n:&amp;:num [
<span id="L252" class="LineNr">252 </span>]
<span id="L253" class="LineNr">253 </span><span class="traceContains">+error: f1: ingredient 0 has the wrong type at 'start-running f2, 3'</span>
<span id="L254" class="LineNr">254 </span>
<span id="L255" class="LineNr">255 </span><span class="Comment">// 'start-running' only uses the ingredients of the callee, not its products</span>
<span id="L256" class="LineNr">256 </span><span class="Delimiter">:(before &quot;End <a href='071recipe.cc.html#L189'>is_indirect_call_with_ingredients</a> Special-cases&quot;)</span>
<span id="L257" class="LineNr">257 </span><span class="Normal">if</span> <span class="Delimiter">(</span>r == START_RUNNING<span class="Delimiter">)</span> <span class="Identifier">return</span> <span class="Constant">true</span><span class="Delimiter">;</span>
<span id="L258" class="LineNr">258 </span>
<span id="L259" class="LineNr">259 </span><span class="Comment">//: more complex: refcounting management when starting up new routines</span>
<span id="L260" class="LineNr">260 </span>
<span id="L261" class="LineNr">261 </span><span class="Delimiter">:(scenario start_running_immediately_updates_refcounts_of_ingredients)</span>
<span id="L262" class="LineNr">262 </span><span class="Special">% Scheduling_interval = 1;</span>
<span id="L263" class="LineNr">263 </span><span class="muRecipe">def</span> <a href='000organization.cc.html#L113'>main</a> [
<span id="L264" class="LineNr">264 </span>  local-scope
<span id="L265" class="LineNr">265 </span>  create-<span class="Normal">new</span>-routine
<span id="L266" class="LineNr">266 </span>  <span class="Comment"># padding to make sure we run new-routine before returning</span>
<span id="L267" class="LineNr">267 </span>  <span class="Normal">dummy</span>:num<span class="Special"> &lt;- </span>copy <span class="Constant">0</span>
<span id="L268" class="LineNr">268 </span>  <span class="Normal">dummy</span>:num<span class="Special"> &lt;- </span>copy <span class="Constant">0</span>
<span id="L269" class="LineNr">269 </span>]
<span id="L270" class="LineNr">270 </span><span class="muRecipe">def</span> create-<span class="Normal">new</span>-routine [
<span id="L271" class="LineNr">271 </span>  local-scope
<span id="L272" class="LineNr">272 </span>  <span class="Normal">n</span>:&amp;:num<span class="Special"> &lt;- </span><span class="Normal">new</span> <span class="Constant">number:type</span>
<span id="L273" class="LineNr">273 </span>  *n<span class="Special"> &lt;- </span>copy <span class="Constant">34</span>
<span id="L274" class="LineNr">274 </span>  start-running <span class="Normal">new</span>-routine<span class="Delimiter">,</span> n
<span id="L275" class="LineNr">275 </span>  <span class="Comment"># refcount of n decremented</span>
<span id="L276" class="LineNr">276 </span>]
<span id="L277" class="LineNr">277 </span><span class="muRecipe">def</span> <span class="Normal">new</span>-routine n:&amp;:num [
<span id="L278" class="LineNr">278 </span>  local-scope
<span id="L279" class="LineNr">279 </span>  load-ingredients
<span id="L280" class="LineNr">280 </span>  <span class="Constant">1</span>:num/<span class="Special">raw &lt;- </span>copy *n
<span id="L281" class="LineNr">281 </span>]
<span id="L282" class="LineNr">282 </span><span class="Comment"># check that n wasn't reclaimed when create-new-routine returned</span>
<span id="L283" class="LineNr">283 </span><span class="traceContains">+mem: storing 34 in location 1</span>
<span id="L284" class="LineNr">284 </span>
<span id="L285" class="LineNr">285 </span><span class="Comment">//: to support the previous scenario we'll increment refcounts for all call</span>
<span id="L286" class="LineNr">286 </span><span class="Comment">//: ingredients right at call time, and stop incrementing refcounts inside</span>
<span id="L287" class="LineNr">287 </span><span class="Comment">//: next-ingredient</span>
<span id="L288" class="LineNr">288 </span><span class="Delimiter">:(before &quot;End Populate Call Ingredient&quot;)</span>
<span id="L289" class="LineNr">289 </span><a href='036refcount.cc.html#L34'>increment_any_refcounts</a><span class="Delimiter">(</span>ingredient<span class="Delimiter">,</span> ingredients<span class="Delimiter">.</span>at<span class="Delimiter">(</span>i<span class="Delimiter">));</span>
<span id="L290" class="LineNr">290 </span><span class="Delimiter">:(before &quot;End Populate start-running Ingredient&quot;)</span>
<span id="L291" class="LineNr">291 </span><a href='036refcount.cc.html#L34'>increment_any_refcounts</a><span class="Delimiter">(</span>ingredient<span class="Delimiter">,</span> ingredients<span class="Delimiter">.</span>at<span class="Delimiter">(</span>i<span class="Delimiter">));</span>
<span id="L292" class="LineNr">292 </span><span class="Delimiter">:(before &quot;End <a href='043space.cc.html#L294'>should_update_refcounts_in_write_memory</a> Special-cases For Primitives&quot;)</span>
<span id="L293" class="LineNr">293 </span><span class="Normal">if</span> <span class="Delimiter">(</span>inst<span class="Delimiter">.</span>operation == NEXT_INGREDIENT || inst<span class="Delimiter">.</span>operation == NEXT_INGREDIENT_WITHOUT_TYPECHECKING<span class="Delimiter">)</span> <span class="Delimiter">{</span>
<span id="L294" class="LineNr">294 </span>  <span class="Normal">if</span> <span class="Delimiter">(</span><a href='044space_surround.cc.html#L52'>space_index</a><span class="Delimiter">(</span>inst<span class="Delimiter">.</span>products<span class="Delimiter">.</span>at<span class="Delimiter">(</span><span class="Constant">0</span><span class="Delimiter">))</span> &gt; <span class="Constant">0</span><span class="Delimiter">)</span> <span class="Identifier">return</span> <span class="Constant">true</span><span class="Delimiter">;</span>
<span id="L295" class="LineNr">295 </span>  <span class="Normal">if</span> <span class="Delimiter">(</span>has_property<span class="Delimiter">(</span>inst<span class="Delimiter">.</span>products<span class="Delimiter">.</span>at<span class="Delimiter">(</span><span class="Constant">0</span><span class="Delimiter">),</span> <span class="Constant">&quot;raw&quot;</span><span class="Delimiter">))</span> <span class="Identifier">return</span> <span class="Constant">true</span><span class="Delimiter">;</span>
<span id="L296" class="LineNr">296 </span>  <span class="Identifier">return</span> <span class="Constant">false</span><span class="Delimiter">;</span>
<span id="L297" class="LineNr">297 </span><span class="Delimiter">}</span>
<span id="L298" class="LineNr">298 </span>
<span id="L299" class="LineNr">299 </span><span class="Comment">// ensure this works with indirect calls using 'call' as well</span>
<span id="L300" class="LineNr">300 </span><span class="Delimiter">:(scenario start_running_immediately_updates_refcounts_of_ingredients_of_indirect_calls)</span>
<span id="L301" class="LineNr">301 </span><span class="Special">% Scheduling_interval = 1;</span>
<span id="L302" class="LineNr">302 </span><span class="muRecipe">def</span> <a href='000organization.cc.html#L113'>main</a> [
<span id="L303" class="LineNr">303 </span>  local-scope
<span id="L304" class="LineNr">304 </span>  <span class="Normal">n</span>:&amp;:num<span class="Special"> &lt;- </span><span class="Normal">new</span> <span class="Constant">number:type</span>
<span id="L305" class="LineNr">305 </span>  *n<span class="Special"> &lt;- </span>copy <span class="Constant">34</span>
<span id="L306" class="LineNr">306 </span>  call f1<span class="Delimiter">,</span> n
<span id="L307" class="LineNr">307 </span>  <span class="Constant">1</span>:num/<span class="Special">raw &lt;- </span>copy *n
<span id="L308" class="LineNr">308 </span>]
<span id="L309" class="LineNr">309 </span><span class="muRecipe">def</span> f1 n:&amp;:num [
<span id="L310" class="LineNr">310 </span>  local-scope
<span id="L311" class="LineNr">311 </span>  load-ingredients
<span id="L312" class="LineNr">312 </span>]
<span id="L313" class="LineNr">313 </span><span class="Comment"># check that n wasn't reclaimed when f1 returned</span>
<span id="L314" class="LineNr">314 </span><span class="traceContains">+mem: storing 34 in location 1</span>
<span id="L315" class="LineNr">315 </span>
<span id="L316" class="LineNr">316 </span><span class="Delimiter">:(scenario next_ingredient_never_leaks_refcounts)</span>
<span id="L317" class="LineNr">317 </span><span class="muRecipe">def</span> create-space n:&amp;:num<span class="muRecipe"> -&gt; </span><span class="Normal">default</span>-space:space [
<span id="L318" class="LineNr">318 </span>  <span class="Normal">default</span>-space<span class="Special"> &lt;- </span><span class="Normal">new</span> <span class="Constant">location:type</span><span class="Delimiter">,</span> <span class="Constant">2</span>
<span id="L319" class="LineNr">319 </span>  load-ingredients
<span id="L320" class="LineNr">320 </span>]
<span id="L321" class="LineNr">321 </span><span class="muRecipe">def</span> use-space [
<span id="L322" class="LineNr">322 </span>  local-scope
<span id="L323" class="LineNr">323 </span>  <span class="Constant">0</span>:space/names:create-space<span class="Special"> &lt;- </span>next-ingredient
<span id="L324" class="LineNr">324 </span>  <span class="Normal">n</span>:&amp;:num/space:<span class="Constant">1</span><span class="Special"> &lt;- </span>next-ingredient  <span class="Comment"># should decrement refcount</span>
<span id="L325" class="LineNr">325 </span>  *n/space:<span class="Constant">1</span><span class="Special"> &lt;- </span>copy <span class="Constant">34</span>
<span id="L326" class="LineNr">326 </span>  <span class="Normal">n2</span>:num<span class="Special"> &lt;- </span>add *n/space:<span class="Constant">1</span><span class="Delimiter">,</span> <span class="Constant">1</span>
<span id="L327" class="LineNr">327 </span>  <span class="Identifier">return</span> n2
<span id="L328" class="LineNr">328 </span>]
<span id="L329" class="LineNr">329 </span><span class="muRecipe">def</span> <a href='000organization.cc.html#L113'>main</a> [
<span id="L330" class="LineNr">330 </span>  local-scope
<span id="L331" class="LineNr">331 </span>  <span class="Normal">n</span>:&amp;:num<span class="Special"> &lt;- </span>copy <span class="Constant">12000</span>/unsafe  <span class="Comment"># pretend allocation with a known address</span>
<span id="L332" class="LineNr">332 </span>  *n<span class="Special"> &lt;- </span>copy <span class="Constant">23</span>
<span id="L333" class="LineNr">333 </span>  <span class="Normal">space</span>:space<span class="Special"> &lt;- </span>create-space n
<span id="L334" class="LineNr">334 </span>  <span class="Normal">n2</span>:&amp;:num<span class="Special"> &lt;- </span>copy <span class="Constant">13000</span>/unsafe
<span id="L335" class="LineNr">335 </span>  <span class="Normal">n3</span>:num<span class="Special"> &lt;- </span>use-space space<span class="Delimiter">,</span> n2
<span id="L336" class="LineNr">336 </span>]
<span id="L337" class="LineNr">337 </span><span class="traceContains">+run: {n: (&quot;address&quot; &quot;number&quot;), &quot;space&quot;: &quot;1&quot;} &lt;- next-ingredient</span>
<span id="L338" class="LineNr">338 </span><span class="traceContains">+mem: decrementing refcount of 12000: 2 -&gt; 1</span>
<span id="L339" class="LineNr">339 </span><span class="traceContains">+run: {n: (&quot;address&quot; &quot;number&quot;), &quot;space&quot;: &quot;1&quot;, &quot;lookup&quot;: ()} &lt;- copy {34: &quot;literal&quot;}</span>
<span id="L340" class="LineNr">340 </span>
<span id="L341" class="LineNr">341 </span><span class="Comment">//: back to testing 'start-running'</span>
<span id="L342" class="LineNr">342 </span>
<span id="L343" class="LineNr">343 </span><span class="Delimiter">:(scenario start_running_returns_routine_id)</span>
<span id="L344" class="LineNr">344 </span><span class="muRecipe">def</span> f1 [
<span id="L345" class="LineNr">345 </span>  <span class="Constant">1</span>:num<span class="Special"> &lt;- </span>start-running f2
<span id="L346" class="LineNr">346 </span>]
<span id="L347" class="LineNr">347 </span><span class="muRecipe">def</span> f2 [
<span id="L348" class="LineNr">348 </span>  <span class="Constant">12</span>:num<span class="Special"> &lt;- </span>copy <span class="Constant">44</span>
<span id="L349" class="LineNr">349 </span>]
<span id="L350" class="LineNr">350 </span><span class="traceContains">+mem: storing 2 in location 1</span>
<span id="L351" class="LineNr">351 </span>
<span id="L352" class="LineNr">352 </span><span class="Comment">//: this scenario will require some careful setup in escaped C++</span>
<span id="L353" class="LineNr">353 </span><span class="Comment">//: (straining our tangle capabilities to near-breaking point)</span>
<span id="L354" class="LineNr">354 </span><span class="Delimiter">:(scenario scheduler_skips_completed_routines)</span>
<span id="L355" class="LineNr">355 </span><span class="Special">% <a href='010vm.cc.html#L14'>recipe_ordinal</a> f1 = load(&quot;recipe f1 [\n1:num &lt;- copy 0\n]\n&quot;).front();</span>
<span id="L356" class="LineNr">356 </span><span class="Special">% <a href='010vm.cc.html#L14'>recipe_ordinal</a> f2 = load(&quot;recipe f2 [\n2:num &lt;- copy 0\n]\n&quot;).front();</span>
<span id="L357" class="LineNr">357 </span><span class="Special">% Routines.push_back(new routine(f1));  // f1 meant to run</span>
<span id="L358" class="LineNr">358 </span><span class="Special">% Routines.push_back(new routine(f2));</span>
<span id="L359" class="LineNr">359 </span><span class="Special">% Routines.back()-&gt;state = COMPLETED;  // f2 not meant to run</span>
<span id="L360" class="LineNr">360 </span><span class="Comment"># must have at least one routine without escaping</span>
<span id="L361" class="LineNr">361 </span><span class="muRecipe">def</span> f3 [
<span id="L362" class="LineNr">362 </span>  <span class="Constant">3</span>:num<span class="Special"> &lt;- </span>copy <span class="Constant">0</span>
<span id="L363" class="LineNr">363 </span>]
<span id="L364" class="LineNr">364 </span><span class="Comment"># by interleaving '+' lines with '-' lines, we allow f1 and f3 to run in any order</span>
<span id="L365" class="LineNr">365 </span><span class="traceContains">+schedule: f1</span>
<span id="L366" class="LineNr">366 </span><span class="traceContains">+mem: storing 0 in location 1</span>
<span id="L367" class="LineNr">367 </span><span class="traceAbsent">-schedule: f2</span>
<span id="L368" class="LineNr">368 </span><span class="traceAbsent">-mem: storing 0 in location 2</span>
<span id="L369" class="LineNr">369 </span><span class="traceContains">+schedule: f3</span>
<span id="L370" class="LineNr">370 </span><span class="traceContains">+mem: storing 0 in location 3</span>
<span id="L371" class="LineNr">371 </span>
<span id="L372" class="LineNr">372 </span><span class="Delimiter">:(scenario scheduler_starts_at_middle_of_routines)</span>
<span id="L373" class="LineNr">373 </span><span class="Special">% Routines.push_back(new routine(COPY));</span>
<span id="L374" class="LineNr">374 </span><span class="Special">% Routines.back()-&gt;state = COMPLETED;</span>
<span id="L375" class="LineNr">375 </span><span class="muRecipe">def</span> f1 [
<span id="L376" class="LineNr">376 </span>  <span class="Constant">1</span>:num<span class="Special"> &lt;- </span>copy <span class="Constant">0</span>
<span id="L377" class="LineNr">377 </span>  <span class="Constant">2</span>:num<span class="Special"> &lt;- </span>copy <span class="Constant">0</span>
<span id="L378" class="LineNr">378 </span>]
<span id="L379" class="LineNr">379 </span><span class="traceContains">+schedule: f1</span>
<span id="L380" class="LineNr">380 </span><span class="traceAbsent">-run: idle</span>
<span id="L381" class="LineNr">381 </span>
<span id="L382" class="LineNr">382 </span><span class="SalientComment">//:: Errors in a routine cause it to terminate.</span>
<span id="L383" class="LineNr">383 </span>
<span id="L384" class="LineNr">384 </span><span class="Delimiter">:(scenario scheduler_terminates_routines_after_errors)</span>
<span id="L385" class="LineNr">385 </span><span class="Special">% Hide_errors = true;</span>
<span id="L386" class="LineNr">386 </span><span class="Special">% Scheduling_interval = 2;</span>
<span id="L387" class="LineNr">387 </span><span class="muRecipe">def</span> f1 [
<span id="L388" class="LineNr">388 </span>  start-running f2
<span id="L389" class="LineNr">389 </span>  <span class="Constant">1</span>:num<span class="Special"> &lt;- </span>copy <span class="Constant">0</span>
<span id="L390" class="LineNr">390 </span>  <span class="Constant">2</span>:num<span class="Special"> &lt;- </span>copy <span class="Constant">0</span>
<span id="L391" class="LineNr">391 </span>]
<span id="L392" class="LineNr">392 </span><span class="muRecipe">def</span> f2 [
<span id="L393" class="LineNr">393 </span>  <span class="Comment"># divide by 0 twice</span>
<span id="L394" class="LineNr">394 </span>  <span class="Constant">3</span>:num<span class="Special"> &lt;- </span>divide-with-remainder <span class="Constant">4</span><span class="Delimiter">,</span> <span class="Constant">0</span>
<span id="L395" class="LineNr">395 </span>  <span class="Constant">4</span>:num<span class="Special"> &lt;- </span>divide-with-remainder <span class="Constant">4</span><span class="Delimiter">,</span> <span class="Constant">0</span>
<span id="L396" class="LineNr">396 </span>]
<span id="L397" class="LineNr">397 </span><span class="Comment"># f2 should stop after first divide by 0</span>
<span id="L398" class="LineNr">398 </span><span class="traceContains">+error: f2: divide by zero in '3:num &lt;- divide-with-remainder 4, 0'</span>
<span id="L399" class="LineNr">399 </span><span class="traceAbsent">-error: f2: divide by zero in '4:num &lt;- divide-with-remainder 4, 0'</span>
<span id="L400" class="LineNr">400 </span>
<span id="L401" class="LineNr">401 </span><span class="Delimiter">:(after &quot;operator&lt;&lt;(ostream&amp; os, <a href='001help.cc.html#L255'>unused</a> end)&quot;)</span>
<span id="L402" class="LineNr">402 </span>  <span class="Normal">if</span> <span class="Delimiter">(</span>Trace_stream &amp;&amp; Trace_stream<span class="Delimiter">-&gt;</span>curr_label == <span class="Constant">&quot;error&quot;</span> &amp;&amp; Current_routine<span class="Delimiter">)</span> <span class="Delimiter">{</span>
<span id="L403" class="LineNr">403 </span>    Current_routine<span class="Delimiter">-&gt;</span>state = <a href='072scheduler.cc.html#L42'>COMPLETED</a><span class="Delimiter">;</span>
<span id="L404" class="LineNr">404 </span>  <span class="Delimiter">}</span>
<span id="L405" class="LineNr">405 </span>
<span id="L406" class="LineNr">406 </span><span class="SalientComment">//:: Routines are marked completed when their parent completes.</span>
<span id="L407" class="LineNr">407 </span>
<span id="L408" class="LineNr">408 </span><span class="Delimiter">:(scenario scheduler_kills_orphans)</span>
<span id="L409" class="LineNr">409 </span><span class="muRecipe">def</span> <a href='000organization.cc.html#L113'>main</a> [
<span id="L410" class="LineNr">410 </span>  start-running f1
<span id="L411" class="LineNr">411 </span>  <span class="Comment"># f1 never actually runs because its parent completes without waiting for it</span>
<span id="L412" class="LineNr">412 </span>]
<span id="L413" class="LineNr">413 </span><span class="muRecipe">def</span> f1 [
<span id="L414" class="LineNr">414 </span>  <span class="Constant">1</span>:num<span class="Special"> &lt;- </span>copy <span class="Constant">0</span>
<span id="L415" class="LineNr">415 </span>]
<span id="L416" class="LineNr">416 </span><span class="traceAbsent">-schedule: f1</span>
<span id="L417" class="LineNr">417 </span>
<span id="L418" class="LineNr">418 </span><span class="Delimiter">:(before &quot;End Scheduler Cleanup&quot;)</span>
<span id="L419" class="LineNr">419 </span><span class="Normal">for</span> <span class="Delimiter">(</span><span class="Normal">int</span> i = <span class="Constant">0</span><span class="Delimiter">;</span>  i &lt; <a href='001help.cc.html#L138'>SIZE</a><span class="Delimiter">(</span>Routines<span class="Delimiter">);</span>  ++i<span class="Delimiter">)</span> <span class="Delimiter">{</span>
<span id="L420" class="LineNr">420 </span>  <span class="Normal">if</span> <span class="Delimiter">(</span>Routines<span class="Delimiter">.</span>at<span class="Delimiter">(</span>i<span class="Delimiter">)-&gt;</span>state == <a href='072scheduler.cc.html#L42'>COMPLETED</a><span class="Delimiter">)</span> <span class="Identifier">continue</span><span class="Delimiter">;</span>
<span id="L421" class="LineNr">421 </span>  <span class="Normal">if</span> <span class="Delimiter">(</span>Routines<span class="Delimiter">.</span>at<span class="Delimiter">(</span>i<span class="Delimiter">)-&gt;</span>parent_index &lt; <span class="Constant">0</span><span class="Delimiter">)</span> <span class="Identifier">continue</span><span class="Delimiter">;</span>  <span class="Comment">// root thread</span>
<span id="L422" class="LineNr">422 </span>  <span class="Comment">// structured concurrency: <a href="http://250bpm.com/blog:71">http://250bpm.com/blog:71</a></span>
<span id="L423" class="LineNr">423 </span>  <span class="Normal">if</span> <span class="Delimiter">(</span>has_completed_parent<span class="Delimiter">(</span>i<span class="Delimiter">))</span> <span class="Delimiter">{</span>
<span id="L424" class="LineNr">424 </span>    Routines<span class="Delimiter">.</span>at<span class="Delimiter">(</span>i<span class="Delimiter">)-&gt;</span>state = <a href='072scheduler.cc.html#L42'>COMPLETED</a><span class="Delimiter">;</span>
<span id="L425" class="LineNr">425 </span>  <span class="Delimiter">}</span>
<span id="L426" class="LineNr">426 </span><span class="Delimiter">}</span>
<span id="L427" class="LineNr">427 </span>
<span id="L428" class="LineNr">428 </span><span class="Delimiter">:(code)</span>
<span id="L429" class="LineNr">429 </span><span class="Normal">bool</span> has_completed_parent<span class="Delimiter">(</span><span class="Normal">int</span> routine_index<span class="Delimiter">)</span> <span class="Delimiter">{</span>
<span id="L430" class="LineNr">430 </span>  <span class="Normal">for</span> <span class="Delimiter">(</span><span class="Normal">int</span> j = routine_index<span class="Delimiter">;</span>  j &gt;= <span class="Constant">0</span><span class="Delimiter">;</span>  j = Routines<span class="Delimiter">.</span>at<span class="Delimiter">(</span>j<span class="Delimiter">)-&gt;</span>parent_index<span class="Delimiter">)</span> <span class="Delimiter">{</span>
<span id="L431" class="LineNr">431 </span>    <span class="Normal">if</span> <span class="Delimiter">(</span>Routines<span class="Delimiter">.</span>at<span class="Delimiter">(</span>j<span class="Delimiter">)-&gt;</span>state == <a href='072scheduler.cc.html#L42'>COMPLETED</a><span class="Delimiter">)</span>
<span id="L432" class="LineNr">432 </span>      <span class="Identifier">return</span> <span class="Constant">true</span><span class="Delimiter">;</span>
<span id="L433" class="LineNr">433 </span>  <span class="Delimiter">}</span>
<span id="L434" class="LineNr">434 </span>  <span class="Identifier">return</span> <span class="Constant">false</span><span class="Delimiter">;</span>
<span id="L435" class="LineNr">435 </span><span class="Delimiter">}</span>
<span id="L436" class="LineNr">436 </span>
<span id="L437" class="LineNr">437 </span><span class="SalientComment">//:: 'routine-state' can tell if a given routine id is running</span>
<span id="L438" class="LineNr">438 </span>
<span id="L439" class="LineNr">439 </span><span class="Delimiter">:(scenario routine_state_test)</span>
<span id="L440" class="LineNr">440 </span><span class="Special">% Scheduling_interval = 2;</span>
<span id="L441" class="LineNr">441 </span><span class="muRecipe">def</span> f1 [
<span id="L442" class="LineNr">442 </span>  <span class="Constant">1</span>:num/child-id<span class="Special"> &lt;- </span>start-running f2
<span id="L443" class="LineNr">443 </span>  <span class="Constant">12</span>:num<span class="Special"> &lt;- </span>copy <span class="Constant">0</span>  <span class="Comment"># race condition since we don't care about location 12</span>
<span id="L444" class="LineNr">444 </span>  <span class="Comment"># thanks to Scheduling_interval, f2's one instruction runs in between here and completes</span>
<span id="L445" class="LineNr">445 </span>  <span class="Constant">2</span>:num/state<span class="Special"> &lt;- </span>routine-state <span class="Constant">1</span>:num/child-id
<span id="L446" class="LineNr">446 </span>]
<span id="L447" class="LineNr">447 </span><span class="muRecipe">def</span> f2 [
<span id="L448" class="LineNr">448 </span>  <span class="Constant">12</span>:num<span class="Special"> &lt;- </span>copy <span class="Constant">0</span>
<span id="L449" class="LineNr">449 </span>  <span class="Comment"># trying to run a second instruction marks routine as completed</span>
<span id="L450" class="LineNr">450 </span>]
<span id="L451" class="LineNr">451 </span><span class="Comment"># recipe f2 should be in state COMPLETED</span>
<span id="L452" class="LineNr">452 </span><span class="traceContains">+mem: storing 1 in location 2</span>
<span id="L453" class="LineNr">453 </span>
<span id="L454" class="LineNr">454 </span><span class="Delimiter">:(before &quot;End Primitive Recipe Declarations&quot;)</span>
<span id="L455" class="LineNr">455 </span>ROUTINE_STATE<span class="Delimiter">,</span>
<span id="L456" class="LineNr">456 </span><span class="Delimiter">:(before &quot;End Primitive Recipe Numbers&quot;)</span>
<span id="L457" class="LineNr">457 </span><a href='001help.cc.html#L218'>put</a><span class="Delimiter">(</span>Recipe_ordinal<span class="Delimiter">,</span> <span class="Constant">&quot;routine-state&quot;</span><span class="Delimiter">,</span> ROUTINE_STATE<span class="Delimiter">);</span>
<span id="L458" class="LineNr">458 </span><span class="Delimiter">:(before &quot;End Primitive Recipe Checks&quot;)</span>
<span id="L459" class="LineNr">459 </span><span class="Normal">case</span> ROUTINE_STATE: <span class="Delimiter">{</span>
<span id="L460" class="LineNr">460 </span>  <span class="Normal">if</span> <span class="Delimiter">(</span><a href='001help.cc.html#L138'>SIZE</a><span class="Delimiter">(</span>inst<span class="Delimiter">.</span>ingredients<span class="Delimiter">)</span> != <span class="Constant">1</span><span class="Delimiter">)</span> <span class="Delimiter">{</span>
<span id="L461" class="LineNr">461 </span>    <a href='003trace.cc.html#L176'>raise</a> &lt;&lt; <a href='013update_operation.cc.html#L25'>maybe</a><span class="Delimiter">(</span>get<span class="Delimiter">(</span>Recipe<span class="Delimiter">,</span> r<span class="Delimiter">).</span>name<span class="Delimiter">)</span> &lt;&lt; <span class="Constant">&quot;'routine-state' requires exactly one ingredient, but got '&quot;</span> &lt;&lt; inst<span class="Delimiter">.</span>original_string &lt;&lt; <span class="Constant">&quot;'</span><span class="cSpecial">\n</span><span class="Constant">&quot;</span> &lt;&lt; <a href='003trace.cc.html#L193'>end</a><span class="Delimiter">();</span>
<span id="L462" class="LineNr">462 </span>    <span class="Identifier">break</span><span class="Delimiter">;</span>
<span id="L463" class="LineNr">463 </span>  <span class="Delimiter">}</span>
<span id="L464" class="LineNr">464 </span>  <span class="Normal">if</span> <span class="Delimiter">(</span>!is_mu_number<span class="Delimiter">(</span>inst<span class="Delimiter">.</span>ingredients<span class="Delimiter">.</span>at<span class="Delimiter">(</span><span class="Constant">0</span><span class="Delimiter">)))</span> <span class="Delimiter">{</span>
<span id="L465" class="LineNr">465 </span>    <a href='003trace.cc.html#L176'>raise</a> &lt;&lt; <a href='013update_operation.cc.html#L25'>maybe</a><span class="Delimiter">(</span>get<span class="Delimiter">(</span>Recipe<span class="Delimiter">,</span> r<span class="Delimiter">).</span>name<span class="Delimiter">)</span> &lt;&lt; <span class="Constant">&quot;first ingredient of 'routine-state' should be a routine id generated by 'start-running', but got '&quot;</span> &lt;&lt; inst<span class="Delimiter">.</span>ingredients<span class="Delimiter">.</span>at<span class="Delimiter">(</span><span class="Constant">0</span><span class="Delimiter">).</span>original_string &lt;&lt; <span class="Constant">&quot;'</span><span class="cSpecial">\n</span><span class="Constant">&quot;</span> &lt;&lt; <a href='003trace.cc.html#L193'>end</a><span class="Delimiter">();</span>
<span id="L466" class="LineNr">466 </span>    <span class="Identifier">break</span><span class="Delimiter">;</span>
<span id="L467" class="LineNr">467 </span>  <span class="Delimiter">}</span>
<span id="L468" class="LineNr">468 </span>  <span class="Identifier">break</span><span class="Delimiter">;</span>
<span id="L469" class="LineNr">469 </span><span class="Delimiter">}</span>
<span id="L470" class="LineNr">470 </span><span class="Delimiter">:(before &quot;End Primitive Recipe Implementations&quot;)</span>
<span id="L471" class="LineNr">471 </span><span class="Normal">case</span> ROUTINE_STATE: <span class="Delimiter">{</span>
<span id="L472" class="LineNr">472 </span>  <span class="Normal">int</span> id = ingredients<span class="Delimiter">.</span>at<span class="Delimiter">(</span><span class="Constant">0</span><span class="Delimiter">).</span>at<span class="Delimiter">(</span><span class="Constant">0</span><span class="Delimiter">);</span>
<span id="L473" class="LineNr">473 </span>  <span class="Normal">int</span> result = -<span class="Constant">1</span><span class="Delimiter">;</span>
<span id="L474" class="LineNr">474 </span>  <span class="Normal">for</span> <span class="Delimiter">(</span><span class="Normal">int</span> i = <span class="Constant">0</span><span class="Delimiter">;</span>  i &lt; <a href='001help.cc.html#L138'>SIZE</a><span class="Delimiter">(</span>Routines<span class="Delimiter">);</span>  ++i<span class="Delimiter">)</span> <span class="Delimiter">{</span>
<span id="L475" class="LineNr">475 </span>    <span class="Normal">if</span> <span class="Delimiter">(</span>Routines<span class="Delimiter">.</span>at<span class="Delimiter">(</span>i<span class="Delimiter">)-&gt;</span>id == id<span class="Delimiter">)</span> <span class="Delimiter">{</span>
<span id="L476" class="LineNr">476 </span>      result = Routines<span class="Delimiter">.</span>at<span class="Delimiter">(</span>i<span class="Delimiter">)-&gt;</span>state<span class="Delimiter">;</span>
<span id="L477" class="LineNr">477 </span>      <span class="Identifier">break</span><span class="Delimiter">;</span>
<span id="L478" class="LineNr">478 </span>    <span class="Delimiter">}</span>
<span id="L479" class="LineNr">479 </span>  <span class="Delimiter">}</span>
<span id="L480" class="LineNr">480 </span>  products<span class="Delimiter">.</span>resize<span class="Delimiter">(</span><span class="Constant">1</span><span class="Delimiter">);</span>
<span id="L481" class="LineNr">481 </span>  products<span class="Delimiter">.</span>at<span class="Delimiter">(</span><span class="Constant">0</span><span class="Delimiter">).</span>push_back<span class="Delimiter">(</span>result<span class="Delimiter">);</span>
<span id="L482" class="LineNr">482 </span>  <span class="Identifier">break</span><span class="Delimiter">;</span>
<span id="L483" class="LineNr">483 </span><span class="Delimiter">}</span>
<span id="L484" class="LineNr">484 </span>
<span id="L485" class="LineNr">485 </span><span class="SalientComment">//:: miscellaneous helpers</span>
<span id="L486" class="LineNr">486 </span>
<span id="L487" class="LineNr">487 </span><span class="Delimiter">:(before &quot;End Primitive Recipe Declarations&quot;)</span>
<span id="L488" class="LineNr">488 </span>STOP<span class="Delimiter">,</span>
<span id="L489" class="LineNr">489 </span><span class="Delimiter">:(before &quot;End Primitive Recipe Numbers&quot;)</span>
<span id="L490" class="LineNr">490 </span><a href='001help.cc.html#L218'>put</a><span class="Delimiter">(</span>Recipe_ordinal<span class="Delimiter">,</span> <span class="Constant">&quot;stop&quot;</span><span class="Delimiter">,</span> STOP<span class="Delimiter">);</span>
<span id="L491" class="LineNr">491 </span><span class="Delimiter">:(before &quot;End Primitive Recipe Checks&quot;)</span>
<span id="L492" class="LineNr">492 </span><span class="Normal">case</span> STOP: <span class="Delimiter">{</span>
<span id="L493" class="LineNr">493 </span>  <span class="Normal">if</span> <span class="Delimiter">(</span><a href='001help.cc.html#L138'>SIZE</a><span class="Delimiter">(</span>inst<span class="Delimiter">.</span>ingredients<span class="Delimiter">)</span> != <span class="Constant">1</span><span class="Delimiter">)</span> <span class="Delimiter">{</span>
<span id="L494" class="LineNr">494 </span>    <a href='003trace.cc.html#L176'>raise</a> &lt;&lt; <a href='013update_operation.cc.html#L25'>maybe</a><span class="Delimiter">(</span>get<span class="Delimiter">(</span>Recipe<span class="Delimiter">,</span> r<span class="Delimiter">).</span>name<span class="Delimiter">)</span> &lt;&lt; <span class="Constant">&quot;'stop' requires exactly one ingredient, but got '&quot;</span> &lt;&lt; inst<span class="Delimiter">.</span>original_string &lt;&lt; <span class="Constant">&quot;'</span><span class="cSpecial">\n</span><span class="Constant">&quot;</span> &lt;&lt; <a href='003trace.cc.html#L193'>end</a><span class="Delimiter">();</span>
<span id="L495" class="LineNr">495 </span>    <span class="Identifier">break</span><span class="Delimiter">;</span>
<span id="L496" class="LineNr">496 </span>  <span class="Delimiter">}</span>
<span id="L497" class="LineNr">497 </span>  <span class="Normal">if</span> <span class="Delimiter">(</span>!is_mu_number<span class="Delimiter">(</span>inst<span class="Delimiter">.</span>ingredients<span class="Delimiter">.</span>at<span class="Delimiter">(</span><span class="Constant">0</span><span class="Delimiter">)))</span> <span class="Delimiter">{</span>
<span id="L498" class="LineNr">498 </span>    <a href='003trace.cc.html#L176'>raise</a> &lt;&lt; <a href='013update_operation.cc.html#L25'>maybe</a><span class="Delimiter">(</span>get<span class="Delimiter">(</span>Recipe<span class="Delimiter">,</span> r<span class="Delimiter">).</span>name<span class="Delimiter">)</span> &lt;&lt; <span class="Constant">&quot;first ingredient of 'stop' should be a routine id generated by 'start-running', but got '&quot;</span> &lt;&lt; inst<span class="Delimiter">.</span>ingredients<span class="Delimiter">.</span>at<span class="Delimiter">(</span><span class="Constant">0</span><span class="Delimiter">).</span>original_string &lt;&lt; <span class="Constant">&quot;'</span><span class="cSpecial">\n</span><span class="Constant">&quot;</span> &lt;&lt; <a href='003trace.cc.html#L193'>end</a><span class="Delimiter">();</span>
<span id="L499" class="LineNr">499 </span>    <span class="Identifier">break</span><span class="Delimiter">;</span>
<span id="L500" class="LineNr">500 </span>  <span class="Delimiter">}</span>
<span id="L501" class="LineNr">501 </span>  <span class="Identifier">break</span><span class="Delimiter">;</span>
<span id="L502" class="LineNr">502 </span><span class="Delimiter">}</span>
<span id="L503" class="LineNr">503 </span><span class="Delimiter">:(before &quot;End Primitive Recipe Implementations&quot;)</span>
<span id="L504" class="LineNr">504 </span><span class="Normal">case</span> STOP: <span class="Delimiter">{</span>
<span id="L505" class="LineNr">505 </span>  <span class="Normal">int</span> id = ingredients<span class="Delimiter">.</span>at<span class="Delimiter">(</span><span class="Constant">0</span><span class="Delimiter">).</span>at<span class="Delimiter">(</span><span class="Constant">0</span><span class="Delimiter">);</span>
<span id="L506" class="LineNr">506 </span>  <span class="Normal">for</span> <span class="Delimiter">(</span><span class="Normal">int</span> i = <span class="Constant">0</span><span class="Delimiter">;</span>  i &lt; <a href='001help.cc.html#L138'>SIZE</a><span class="Delimiter">(</span>Routines<span class="Delimiter">);</span>  ++i<span class="Delimiter">)</span> <span class="Delimiter">{</span>
<span id="L507" class="LineNr">507 </span>    <span class="Normal">if</span> <span class="Delimiter">(</span>Routines<span class="Delimiter">.</span>at<span class="Delimiter">(</span>i<span class="Delimiter">)-&gt;</span>id == id<span class="Delimiter">)</span> <span class="Delimiter">{</span>
<span id="L508" class="LineNr">508 </span>      Routines<span class="Delimiter">.</span>at<span class="Delimiter">(</span>i<span class="Delimiter">)-&gt;</span>state = <a href='072scheduler.cc.html#L42'>COMPLETED</a><span class="Delimiter">;</span>
<span id="L509" class="LineNr">509 </span>      <span class="Identifier">break</span><span class="Delimiter">;</span>
<span id="L510" class="LineNr">510 </span>    <span class="Delimiter">}</span>
<span id="L511" class="LineNr">511 </span>  <span class="Delimiter">}</span>
<span id="L512" class="LineNr">512 </span>  <span class="Identifier">break</span><span class="Delimiter">;</span>
<span id="L513" class="LineNr">513 </span><span class="Delimiter">}</span>
<span id="L514" class="LineNr">514 </span>
<span id="L515" class="LineNr">515 </span><span class="Delimiter">:(before &quot;End Primitive Recipe Declarations&quot;)</span>
<span id="L516" class="LineNr">516 </span>_DUMP_ROUTINES<span class="Delimiter">,</span>
<span id="L517" class="LineNr">517 </span><span class="Delimiter">:(before &quot;End Primitive Recipe Numbers&quot;)</span>
<span id="L518" class="LineNr">518 </span><a href='001help.cc.html#L218'>put</a><span class="Delimiter">(</span>Recipe_ordinal<span class="Delimiter">,</span> <span class="Constant">&quot;$dump-routines&quot;</span><span class="Delimiter">,</span> _DUMP_ROUTINES<span class="Delimiter">);</span>
<span id="L519" class="LineNr">519 </span><span class="Delimiter">:(before &quot;End Primitive Recipe Checks&quot;)</span>
<span id="L520" class="LineNr">520 </span><span class="Normal">case</span> _DUMP_ROUTINES: <span class="Delimiter">{</span>
<span id="L521" class="LineNr">521 </span>  <span class="Identifier">break</span><span class="Delimiter">;</span>
<span id="L522" class="LineNr">522 </span><span class="Delimiter">}</span>
<span id="L523" class="LineNr">523 </span><span class="Delimiter">:(before &quot;End Primitive Recipe Implementations&quot;)</span>
<span id="L524" class="LineNr">524 </span><span class="Normal">case</span> _DUMP_ROUTINES: <span class="Delimiter">{</span>
<span id="L525" class="LineNr">525 </span>  <span class="Normal">for</span> <span class="Delimiter">(</span><span class="Normal">int</span> i = <span class="Constant">0</span><span class="Delimiter">;</span>  i &lt; <a href='001help.cc.html#L138'>SIZE</a><span class="Delimiter">(</span>Routines<span class="Delimiter">);</span>  ++i<span class="Delimiter">)</span> <span class="Delimiter">{</span>
<span id="L526" class="LineNr">526 </span>    cerr &lt;&lt; i &lt;&lt; <span class="Constant">&quot;: &quot;</span> &lt;&lt; Routines<span class="Delimiter">.</span>at<span class="Delimiter">(</span>i<span class="Delimiter">)-&gt;</span>id &lt;&lt; <span class="Constant">' '</span> &lt;&lt; Routines<span class="Delimiter">.</span>at<span class="Delimiter">(</span>i<span class="Delimiter">)-&gt;</span>state &lt;&lt; <span class="Constant">' '</span> &lt;&lt; Routines<span class="Delimiter">.</span>at<span class="Delimiter">(</span>i<span class="Delimiter">)-&gt;</span>parent_index &lt;&lt; <span class="cSpecial">'\n'</span><span class="Delimiter">;</span>
<span id="L527" class="LineNr">527 </span>  <span class="Delimiter">}</span>
<span id="L528" class="LineNr">528 </span>  <span class="Identifier">break</span><span class="Delimiter">;</span>
<span id="L529" class="LineNr">529 </span><span class="Delimiter">}</span>
<span id="L530" class="LineNr">530 </span>
<span id="L531" class="LineNr">531 </span><span class="Comment">//: support for stopping routines after some number of cycles</span>
<span id="L532" class="LineNr">532 </span>
<span id="L533" class="LineNr">533 </span><span class="Delimiter">:(scenario routine_discontinues_past_limit)</span>
<span id="L534" class="LineNr">534 </span><span class="Special">% Scheduling_interval = 2;</span>
<span id="L535" class="LineNr">535 </span><span class="muRecipe">def</span> f1 [
<span id="L536" class="LineNr">536 </span>  <span class="Constant">1</span>:num/child-id<span class="Special"> &lt;- </span>start-running f2
<span id="L537" class="LineNr">537 </span>  limit-time <span class="Constant">1</span>:num/child-id<span class="Delimiter">,</span> <span class="Constant">10</span>
<span id="L538" class="LineNr">538 </span>  <span class="Comment"># padding loop just to make sure f2 has time to completed</span>
<span id="L539" class="LineNr">539 </span>  <span class="Constant">2</span>:num<span class="Special"> &lt;- </span>copy <span class="Constant">20</span>
<span id="L540" class="LineNr">540 </span>  <span class="Constant">2</span>:num<span class="Special"> &lt;- </span>subtract <span class="Constant">2</span>:num<span class="Delimiter">,</span> <span class="Constant">1</span>
<span id="L541" class="LineNr">541 </span>  jump-<span class="Normal">if</span> <span class="Constant">2</span>:num<span class="Delimiter">,</span> <span class="Constant">-2:offset</span>
<span id="L542" class="LineNr">542 </span>]
<span id="L543" class="LineNr">543 </span><span class="muRecipe">def</span> f2 [
<span id="L544" class="LineNr">544 </span>  jump <span class="Constant">-1:offset</span>  <span class="Comment"># run forever</span>
<span id="L545" class="LineNr">545 </span>  $print [should never get here]<span class="Delimiter">,</span> <span class="Constant">10</span>/newline
<span id="L546" class="LineNr">546 </span>]
<span id="L547" class="LineNr">547 </span><span class="Comment"># f2 terminates</span>
<span id="L548" class="LineNr">548 </span><span class="traceContains">+schedule: discontinuing routine 2</span>
<span id="L549" class="LineNr">549 </span>
<span id="L550" class="LineNr">550 </span><span class="Delimiter">:(before &quot;End routine States&quot;)</span>
<span id="L551" class="LineNr">551 </span>DISCONTINUED<span class="Delimiter">,</span>
<span id="L552" class="LineNr">552 </span><span class="Delimiter">:(before &quot;End Scheduler State Transitions&quot;)</span>
<span id="L553" class="LineNr">553 </span><span class="Normal">if</span> <span class="Delimiter">(</span>Current_routine<span class="Delimiter">-&gt;</span>limit &gt;= <span class="Constant">0</span><span class="Delimiter">)</span> <span class="Delimiter">{</span>
<span id="L554" class="LineNr">554 </span>  <span class="Normal">if</span> <span class="Delimiter">(</span>Current_routine<span class="Delimiter">-&gt;</span>limit &lt;= Scheduling_interval<span class="Delimiter">)</span> <span class="Delimiter">{</span>
<span id="L555" class="LineNr">555 </span>    <a href='003trace.cc.html#L169'>trace</a><span class="Delimiter">(</span><span class="Constant">9999</span><span class="Delimiter">,</span> <span class="Constant">&quot;schedule&quot;</span><span class="Delimiter">)</span> &lt;&lt; <span class="Constant">&quot;discontinuing routine &quot;</span> &lt;&lt; Current_routine<span class="Delimiter">-&gt;</span>id &lt;&lt; <a href='003trace.cc.html#L193'>end</a><span class="Delimiter">();</span>
<span id="L556" class="LineNr">556 </span>    Current_routine<span class="Delimiter">-&gt;</span>state = DISCONTINUED<span class="Delimiter">;</span>
<span id="L557" class="LineNr">557 </span>    Current_routine<span class="Delimiter">-&gt;</span>limit = <span class="Constant">0</span><span class="Delimiter">;</span>
<span id="L558" class="LineNr">558 </span>  <span class="Delimiter">}</span>
<span id="L559" class="LineNr">559 </span>  <span class="Normal">else</span> <span class="Delimiter">{</span>
<span id="L560" class="LineNr">560 </span>    Current_routine<span class="Delimiter">-&gt;</span>limit -= Scheduling_interval<span class="Delimiter">;</span>
<span id="L561" class="LineNr">561 </span>  <span class="Delimiter">}</span>
<span id="L562" class="LineNr">562 </span><span class="Delimiter">}</span>
<span id="L563" class="LineNr">563 </span>
<span id="L564" class="LineNr">564 </span><span class="Delimiter">:(before &quot;End Test Teardown&quot;)</span>
<span id="L565" class="LineNr">565 </span><span class="Normal">if</span> <span class="Delimiter">(</span>Passed &amp;&amp; any_routines_with_error<span class="Delimiter">())</span>
<span id="L566" class="LineNr">566 </span>  <a href='003trace.cc.html#L176'>raise</a> &lt;&lt; <span class="Constant">&quot;some routines died with errors</span><span class="cSpecial">\n</span><span class="Constant">&quot;</span> &lt;&lt; <a href='003trace.cc.html#L193'>end</a><span class="Delimiter">();</span>
<span id="L567" class="LineNr">567 </span><span class="Delimiter">:(before &quot;End Mu Test Teardown&quot;)</span>
<span id="L568" class="LineNr">568 </span><span class="Normal">if</span> <span class="Delimiter">(</span>Passed &amp;&amp; any_routines_with_error<span class="Delimiter">())</span>
<span id="L569" class="LineNr">569 </span>  <a href='003trace.cc.html#L176'>raise</a> &lt;&lt; Current_scenario<span class="Delimiter">-&gt;</span>name &lt;&lt; <span class="Constant">&quot;: some routines died with errors</span><span class="cSpecial">\n</span><span class="Constant">&quot;</span> &lt;&lt; <a href='003trace.cc.html#L193'>end</a><span class="Delimiter">();</span>
<span id="L570" class="LineNr">570 </span>
<span id="L571" class="LineNr">571 </span><span class="Delimiter">:(code)</span>
<span id="L572" class="LineNr">572 </span><span class="Normal">bool</span> any_routines_with_error<span class="Delimiter">()</span> <span class="Delimiter">{</span>
<span id="L573" class="LineNr">573 </span>  <span class="Normal">for</span> <span class="Delimiter">(</span><span class="Normal">int</span> i = <span class="Constant">0</span><span class="Delimiter">;</span>  i &lt; <a href='001help.cc.html#L138'>SIZE</a><span class="Delimiter">(</span>Routines<span class="Delimiter">);</span>  ++i<span class="Delimiter">)</span> <span class="Delimiter">{</span>
<span id="L574" class="LineNr">574 </span>    <span class="Normal">if</span> <span class="Delimiter">(</span>Routines<span class="Delimiter">.</span>at<span class="Delimiter">(</span>i<span class="Delimiter">)-&gt;</span>state == DISCONTINUED<span class="Delimiter">)</span>
<span id="L575" class="LineNr">575 </span>      <span class="Identifier">return</span> <span class="Constant">true</span><span class="Delimiter">;</span>
<span id="L576" class="LineNr">576 </span>  <span class="Delimiter">}</span>
<span id="L577" class="LineNr">577 </span>  <span class="Identifier">return</span> <span class="Constant">false</span><span class="Delimiter">;</span>
<span id="L578" class="LineNr">578 </span><span class="Delimiter">}</span>
<span id="L579" class="LineNr">579 </span>
<span id="L580" class="LineNr">580 </span><span class="Delimiter">:(before &quot;End routine Fields&quot;)</span>
<span id="L581" class="LineNr">581 </span><span class="Normal">int</span> limit<span class="Delimiter">;</span>
<span id="L582" class="LineNr">582 </span><span class="Delimiter">:(before &quot;End routine Constructor&quot;)</span>
<span id="L583" class="LineNr">583 </span>limit = -<span class="Constant">1</span><span class="Delimiter">;</span>  <span class="Comment">/*</span><span class="Comment"> no limit </span><span class="Comment">*/</span>
<span id="L584" class="LineNr">584 </span>
<span id="L585" class="LineNr">585 </span><span class="Delimiter">:(before &quot;End Primitive Recipe Declarations&quot;)</span>
<span id="L586" class="LineNr">586 </span>LIMIT_TIME<span class="Delimiter">,</span>
<span id="L587" class="LineNr">587 </span><span class="Delimiter">:(before &quot;End Primitive Recipe Numbers&quot;)</span>
<span id="L588" class="LineNr">588 </span><a href='001help.cc.html#L218'>put</a><span class="Delimiter">(</span>Recipe_ordinal<span class="Delimiter">,</span> <span class="Constant">&quot;limit-time&quot;</span><span class="Delimiter">,</span> LIMIT_TIME<span class="Delimiter">);</span>
<span id="L589" class="LineNr">589 </span><span class="Delimiter">:(before &quot;End Primitive Recipe Checks&quot;)</span>
<span id="L590" class="LineNr">590 </span><span class="Normal">case</span> LIMIT_TIME: <span class="Delimiter">{</span>
<span id="L591" class="LineNr">591 </span>  <span class="Normal">if</span> <span class="Delimiter">(</span><a href='001help.cc.html#L138'>SIZE</a><span class="Delimiter">(</span>inst<span class="Delimiter">.</span>ingredients<span class="Delimiter">)</span> != <span class="Constant">2</span><span class="Delimiter">)</span> <span class="Delimiter">{</span>
<span id="L592" class="LineNr">592 </span>    <a href='003trace.cc.html#L176'>raise</a> &lt;&lt; <a href='013update_operation.cc.html#L25'>maybe</a><span class="Delimiter">(</span>get<span class="Delimiter">(</span>Recipe<span class="Delimiter">,</span> r<span class="Delimiter">).</span>name<span class="Delimiter">)</span> &lt;&lt; <span class="Constant">&quot;'limit-time' requires exactly two ingredient, but got '&quot;</span> &lt;&lt; inst<span class="Delimiter">.</span>original_string &lt;&lt; <span class="Constant">&quot;'</span><span class="cSpecial">\n</span><span class="Constant">&quot;</span> &lt;&lt; <a href='003trace.cc.html#L193'>end</a><span class="Delimiter">();</span>
<span id="L593" class="LineNr">593 </span>    <span class="Identifier">break</span><span class="Delimiter">;</span>
<span id="L594" class="LineNr">594 </span>  <span class="Delimiter">}</span>
<span id="L595" class="LineNr">595 </span>  <span class="Normal">if</span> <span class="Delimiter">(</span>!is_mu_number<span class="Delimiter">(</span>inst<span class="Delimiter">.</span>ingredients<span class="Delimiter">.</span>at<span class="Delimiter">(</span><span class="Constant">0</span><span class="Delimiter">)))</span> <span class="Delimiter">{</span>
<span id="L596" class="LineNr">596 </span>    <a href='003trace.cc.html#L176'>raise</a> &lt;&lt; <a href='013update_operation.cc.html#L25'>maybe</a><span class="Delimiter">(</span>get<span class="Delimiter">(</span>Recipe<span class="Delimiter">,</span> r<span class="Delimiter">).</span>name<span class="Delimiter">)</span> &lt;&lt; <span class="Constant">&quot;first ingredient of 'limit-time' should be a routine id generated by 'start-running', but got '&quot;</span> &lt;&lt; inst<span class="Delimiter">.</span>ingredients<span class="Delimiter">.</span>at<span class="Delimiter">(</span><span class="Constant">0</span><span class="Delimiter">).</span>original_string &lt;&lt; <span class="Constant">&quot;'</span><span class="cSpecial">\n</span><span class="Constant">&quot;</span> &lt;&lt; <a href='003trace.cc.html#L193'>end</a><span class="Delimiter">();</span>
<span id="L597" class="LineNr">597 </span>    <span class="Identifier">break</span><span class="Delimiter">;</span>
<span id="L598" class="LineNr">598 </span>  <span class="Delimiter">}</span>
<span id="L599" class="LineNr">599 </span>  <span class="Normal">if</span> <span class="Delimiter">(</span>!is_mu_number<span class="Delimiter">(</span>inst<span class="Delimiter">.</span>ingredients<span class="Delimiter">.</span>at<span class="Delimiter">(</span><span class="Constant">1</span><span class="Delimiter">)))</span> <span class="Delimiter">{</span>
<span id="L600" class="LineNr">600 </span>    <a href='003trace.cc.html#L176'>raise</a> &lt;&lt; <a href='013update_operation.cc.html#L25'>maybe</a><span class="Delimiter">(</span>get<span class="Delimiter">(</span>Recipe<span class="Delimiter">,</span> r<span class="Delimiter">).</span>name<span class="Delimiter">)</span> &lt;&lt; <span class="Constant">&quot;second ingredient of 'limit-time' should be a number (of instructions to run for), but got '&quot;</span> &lt;&lt; inst<span class="Delimiter">.</span>ingredients<span class="Delimiter">.</span>at<span class="Delimiter">(</span><span class="Constant">1</span><span class="Delimiter">).</span>original_string &lt;&lt; <span class="Constant">&quot;'</span><span class="cSpecial">\n</span><span class="Constant">&quot;</span> &lt;&lt; <a href='003trace.cc.html#L193'>end</a><span class="Delimiter">();</span>
<span id="L601" class="LineNr">601 </span>    <span class="Identifier">break</span><span class="Delimiter">;</span>
<span id="L602" class="LineNr">602 </span>  <span class="Delimiter">}</span>
<span id="L603" class="LineNr">603 </span>  <span class="Identifier">break</span><span class="Delimiter">;</span>
<span id="L604" class="LineNr">604 </span><span class="Delimiter">}</span>
<span id="L605" class="LineNr">605 </span><span class="Delimiter">:(before &quot;End Primitive Recipe Implementations&quot;)</span>
<span id="L606" class="LineNr">606 </span><span class="Normal">case</span> LIMIT_TIME: <span class="Delimiter">{</span>
<span id="L607" class="LineNr">607 </span>  <span class="Normal">int</span> id = ingredients<span class="Delimiter">.</span>at<span class="Delimiter">(</span><span class="Constant">0</span><span class="Delimiter">).</span>at<span class="Delimiter">(</span><span class="Constant">0</span><span class="Delimiter">);</span>
<span id="L608" class="LineNr">608 </span>  <span class="Normal">for</span> <span class="Delimiter">(</span><span class="Normal">int</span> i = <span class="Constant">0</span><span class="Delimiter">;</span>  i &lt; <a href='001help.cc.html#L138'>SIZE</a><span class="Delimiter">(</span>Routines<span class="Delimiter">);</span>  ++i<span class="Delimiter">)</span> <span class="Delimiter">{</span>
<span id="L609" class="LineNr">609 </span>    <span class="Normal">if</span> <span class="Delimiter">(</span>Routines<span class="Delimiter">.</span>at<span class="Delimiter">(</span>i<span class="Delimiter">)-&gt;</span>id == id<span class="Delimiter">)</span> <span class="Delimiter">{</span>
<span id="L610" class="LineNr">610 </span>      Routines<span class="Delimiter">.</span>at<span class="Delimiter">(</span>i<span class="Delimiter">)-&gt;</span>limit = ingredients<span class="Delimiter">.</span>at<span class="Delimiter">(</span><span class="Constant">1</span><span class="Delimiter">).</span>at<span class="Delimiter">(</span><span class="Constant">0</span><span class="Delimiter">);</span>
<span id="L611" class="LineNr">611 </span>      <span class="Identifier">break</span><span class="Delimiter">;</span>
<span id="L612" class="LineNr">612 </span>    <span class="Delimiter">}</span>
<span id="L613" class="LineNr">613 </span>  <span class="Delimiter">}</span>
<span id="L614" class="LineNr">614 </span>  <span class="Identifier">break</span><span class="Delimiter">;</span>
<span id="L615" class="LineNr">615 </span><span class="Delimiter">}</span>
<span id="L616" class="LineNr">616 </span>
<span id="L617" class="LineNr">617 </span><span class="Delimiter">:(before &quot;End routine Fields&quot;)</span>
<span id="L618" class="LineNr">618 </span><span class="Normal">int</span> instructions_run<span class="Delimiter">;</span>
<span id="L619" class="LineNr">619 </span><span class="Delimiter">:(before &quot;End routine Constructor&quot;)</span>
<span id="L620" class="LineNr">620 </span>instructions_run = <span class="Constant">0</span><span class="Delimiter">;</span>
<span id="L621" class="LineNr">621 </span><span class="Delimiter">:(before &quot;Reset instructions_run_this_scheduling_slice&quot;)</span>
<span id="L622" class="LineNr">622 </span>Current_routine<span class="Delimiter">-&gt;</span>instructions_run += Current_routine<span class="Delimiter">-&gt;</span>instructions_run_this_scheduling_slice<span class="Delimiter">;</span>
<span id="L623" class="LineNr">623 </span><span class="Delimiter">:(before &quot;End Primitive Recipe Declarations&quot;)</span>
<span id="L624" class="LineNr">624 </span>NUMBER_OF_INSTRUCTIONS<span class="Delimiter">,</span>
<span id="L625" class="LineNr">625 </span><span class="Delimiter">:(before &quot;End Primitive Recipe Numbers&quot;)</span>
<span id="L626" class="LineNr">626 </span><a href='001help.cc.html#L218'>put</a><span class="Delimiter">(</span>Recipe_ordinal<span class="Delimiter">,</span> <span class="Constant">&quot;number-of-instructions&quot;</span><span class="Delimiter">,</span> NUMBER_OF_INSTRUCTIONS<span class="Delimiter">);</span>
<span id="L627" class="LineNr">627 </span><span class="Delimiter">:(before &quot;End Primitive Recipe Checks&quot;)</span>
<span id="L628" class="LineNr">628 </span><span class="Normal">case</span> NUMBER_OF_INSTRUCTIONS: <span class="Delimiter">{</span>
<span id="L629" class="LineNr">629 </span>  <span class="Normal">if</span> <span class="Delimiter">(</span><a href='001help.cc.html#L138'>SIZE</a><span class="Delimiter">(</span>inst<span class="Delimiter">.</span>ingredients<span class="Delimiter">)</span> != <span class="Constant">1</span><span class="Delimiter">)</span> <span class="Delimiter">{</span>
<span id="L630" class="LineNr">630 </span>    <a href='003trace.cc.html#L176'>raise</a> &lt;&lt; <a href='013update_operation.cc.html#L25'>maybe</a><span class="Delimiter">(</span>get<span class="Delimiter">(</span>Recipe<span class="Delimiter">,</span> r<span class="Delimiter">).</span>name<span class="Delimiter">)</span> &lt;&lt; <span class="Constant">&quot;'number-of-instructions' requires exactly one ingredient, but got '&quot;</span> &lt;&lt; inst<span class="Delimiter">.</span>original_string &lt;&lt; <span class="Constant">&quot;'</span><span class="cSpecial">\n</span><span class="Constant">&quot;</span> &lt;&lt; <a href='003trace.cc.html#L193'>end</a><span class="Delimiter">();</span>
<span id="L631" class="LineNr">631 </span>    <span class="Identifier">break</span><span class="Delimiter">;</span>
<span id="L632" class="LineNr">632 </span>  <span class="Delimiter">}</span>
<span id="L633" class="LineNr">633 </span>  <span class="Normal">if</span> <span class="Delimiter">(</span>!is_mu_number<span class="Delimiter">(</span>inst<span class="Delimiter">.</span>ingredients<span class="Delimiter">.</span>at<span class="Delimiter">(</span><span class="Constant">0</span><span class="Delimiter">)))</span> <span class="Delimiter">{</span>
<span id="L634" class="LineNr">634 </span>    <a href='003trace.cc.html#L176'>raise</a> &lt;&lt; <a href='013update_operation.cc.html#L25'>maybe</a><span class="Delimiter">(</span>get<span class="Delimiter">(</span>Recipe<span class="Delimiter">,</span> r<span class="Delimiter">).</span>name<span class="Delimiter">)</span> &lt;&lt; <span class="Constant">&quot;first ingredient of 'number-of-instructions' should be a routine id generated by 'start-running', but got '&quot;</span> &lt;&lt; inst<span class="Delimiter">.</span>ingredients<span class="Delimiter">.</span>at<span class="Delimiter">(</span><span class="Constant">0</span><span class="Delimiter">).</span>original_string &lt;&lt; <span class="Constant">&quot;'</span><span class="cSpecial">\n</span><span class="Constant">&quot;</span> &lt;&lt; <a href='003trace.cc.html#L193'>end</a><span class="Delimiter">();</span>
<span id="L635" class="LineNr">635 </span>    <span class="Identifier">break</span><span class="Delimiter">;</span>
<span id="L636" class="LineNr">636 </span>  <span class="Delimiter">}</span>
<span id="L637" class="LineNr">637 </span>  <span class="Identifier">break</span><span class="Delimiter">;</span>
<span id="L638" class="LineNr">638 </span><span class="Delimiter">}</span>
<span id="L639" class="LineNr">639 </span><span class="Delimiter">:(before &quot;End Primitive Recipe Implementations&quot;)</span>
<span id="L640" class="LineNr">640 </span><span class="Normal">case</span> NUMBER_OF_INSTRUCTIONS: <span class="Delimiter">{</span>
<span id="L641" class="LineNr">641 </span>  <span class="Normal">int</span> id = ingredients<span class="Delimiter">.</span>at<span class="Delimiter">(</span><span class="Constant">0</span><span class="Delimiter">).</span>at<span class="Delimiter">(</span><span class="Constant">0</span><span class="Delimiter">);</span>
<span id="L642" class="LineNr">642 </span>  <span class="Normal">int</span> result = -<span class="Constant">1</span><span class="Delimiter">;</span>
<span id="L643" class="LineNr">643 </span>  <span class="Normal">for</span> <span class="Delimiter">(</span><span class="Normal">int</span> i = <span class="Constant">0</span><span class="Delimiter">;</span>  i &lt; <a href='001help.cc.html#L138'>SIZE</a><span class="Delimiter">(</span>Routines<span class="Delimiter">);</span>  ++i<span class="Delimiter">)</span> <span class="Delimiter">{</span>
<span id="L644" class="LineNr">644 </span>    <span class="Normal">if</span> <span class="Delimiter">(</span>Routines<span class="Delimiter">.</span>at<span class="Delimiter">(</span>i<span class="Delimiter">)-&gt;</span>id == id<span class="Delimiter">)</span> <span class="Delimiter">{</span>
<span id="L645" class="LineNr">645 </span>      result = Routines<span class="Delimiter">.</span>at<span class="Delimiter">(</span>i<span class="Delimiter">)-&gt;</span>instructions_run<span class="Delimiter">;</span>
<span id="L646" class="LineNr">646 </span>      <span class="Identifier">break</span><span class="Delimiter">;</span>
<span id="L647" class="LineNr">647 </span>    <span class="Delimiter">}</span>
<span id="L648" class="LineNr">648 </span>  <span class="Delimiter">}</span>
<span id="L649" class="LineNr">649 </span>  products<span class="Delimiter">.</span>resize<span class="Delimiter">(</span><span class="Constant">1</span><span class="Delimiter">);</span>
<span id="L650" class="LineNr">650 </span>  products<span class="Delimiter">.</span>at<span class="Delimiter">(</span><span class="Constant">0</span><span class="Delimiter">).</span>push_back<span class="Delimiter">(</span>result<span class="Delimiter">);</span>
<span id="L651" class="LineNr">651 </span>  <span class="Identifier">break</span><span class="Delimiter">;</span>
<span id="L652" class="LineNr">652 </span><span class="Delimiter">}</span>
<span id="L653" class="LineNr">653 </span>
<span id="L654" class="LineNr">654 </span><span class="Delimiter">:(scenario number_of_instructions)</span>
<span id="L655" class="LineNr">655 </span><span class="muRecipe">def</span> f1 [
<span id="L656" class="LineNr">656 </span>  <span class="Constant">10</span>:num/child-id<span class="Special"> &lt;- </span>start-running f2
<span id="L657" class="LineNr">657 </span>  <span class="Delimiter">{</span>
<span id="L658" class="LineNr">658 </span>    loop-unless <span class="Constant">20</span>:num
<span id="L659" class="LineNr">659 </span>  <span class="Delimiter">}</span>
<span id="L660" class="LineNr">660 </span>  <span class="Constant">11</span>:num<span class="Special"> &lt;- </span>number-of-instructions <span class="Constant">10</span>:num
<span id="L661" class="LineNr">661 </span>]
<span id="L662" class="LineNr">662 </span><span class="muRecipe">def</span> f2 [
<span id="L663" class="LineNr">663 </span>  <span class="Comment"># 2 instructions worth of work</span>
<span id="L664" class="LineNr">664 </span>  <span class="Constant">1</span>:num<span class="Special"> &lt;- </span>copy <span class="Constant">34</span>
<span id="L665" class="LineNr">665 </span>  <span class="Constant">20</span>:num<span class="Special"> &lt;- </span>copy <span class="Constant">1</span>
<span id="L666" class="LineNr">666 </span>]
<span id="L667" class="LineNr">667 </span><span class="Comment"># f2 runs an extra instruction for the implicit return added by the</span>
<span id="L668" class="LineNr">668 </span><span class="Comment"># fill_in_return_ingredients transform</span>
<span id="L669" class="LineNr">669 </span><span class="traceContains">+mem: storing 3 in location 11</span>
<span id="L670" class="LineNr">670 </span>
<span id="L671" class="LineNr">671 </span><span class="Delimiter">:(scenario number_of_instructions_across_multiple_scheduling_intervals)</span>
<span id="L672" class="LineNr">672 </span><span class="Special">% Scheduling_interval = 1;</span>
<span id="L673" class="LineNr">673 </span><span class="muRecipe">def</span> f1 [
<span id="L674" class="LineNr">674 </span>  <span class="Constant">10</span>:num/child-id<span class="Special"> &lt;- </span>start-running f2
<span id="L675" class="LineNr">675 </span>  <span class="Delimiter">{</span>
<span id="L676" class="LineNr">676 </span>    loop-unless <span class="Constant">20</span>:num
<span id="L677" class="LineNr">677 </span>  <span class="Delimiter">}</span>
<span id="L678" class="LineNr">678 </span>  <span class="Constant">11</span>:num<span class="Special"> &lt;- </span>number-of-instructions <span class="Constant">10</span>:num
<span id="L679" class="LineNr">679 </span>]
<span id="L680" class="LineNr">680 </span><span class="muRecipe">def</span> f2 [
<span id="L681" class="LineNr">681 </span>  <span class="Comment"># 4 instructions worth of work</span>
<span id="L682" class="LineNr">682 </span>  <span class="Constant">1</span>:num<span class="Special"> &lt;- </span>copy <span class="Constant">34</span>
<span id="L683" class="LineNr">683 </span>  <span class="Constant">2</span>:num<span class="Special"> &lt;- </span>copy <span class="Constant">1</span>
<span id="L684" class="LineNr">684 </span>  <span class="Constant">2</span>:num<span class="Special"> &lt;- </span>copy <span class="Constant">3</span>
<span id="L685" class="LineNr">685 </span>  <span class="Constant">20</span>:num<span class="Special"> &lt;- </span>copy <span class="Constant">1</span>
<span id="L686" class="LineNr">686 </span>]
<span id="L687" class="LineNr">687 </span><span class="Comment"># f2 runs an extra instruction for the implicit return added by the</span>
<span id="L688" class="LineNr">688 </span><span class="Comment"># fill_in_return_ingredients transform</span>
<span id="L689" class="LineNr">689 </span><span class="traceContains">+mem: storing 5 in location 11</span>
<span id="L690" class="LineNr">690 </span>
<span id="L691" class="LineNr">691 </span><span class="SalientComment">//:: make sure that each routine gets a different alloc to start</span>
<span id="L692" class="LineNr">692 </span>
<span id="L693" class="LineNr">693 </span><span class="Delimiter">:(scenario new_concurrent)</span>
<span id="L694" class="LineNr">694 </span><span class="muRecipe">def</span> f1 [
<span id="L695" class="LineNr">695 </span>  start-running f2
<span id="L696" class="LineNr">696 </span>  <span class="Constant">1</span>:&amp;:num/<span class="Special">raw &lt;- </span><span class="Normal">new</span> <span class="Constant">number:type</span>
<span id="L697" class="LineNr">697 </span>  <span class="Comment"># wait for f2 to complete</span>
<span id="L698" class="LineNr">698 </span>  <span class="Delimiter">{</span>
<span id="L699" class="LineNr">699 </span>    loop-unless <span class="Constant">4</span>:num/<span class="Special">raw</span>
<span id="L700" class="LineNr">700 </span>  <span class="Delimiter">}</span>
<span id="L701" class="LineNr">701 </span>]
<span id="L702" class="LineNr">702 </span><span class="muRecipe">def</span> f2 [
<span id="L703" class="LineNr">703 </span>  <span class="Constant">2</span>:&amp;:num/<span class="Special">raw &lt;- </span><span class="Normal">new</span> <span class="Constant">number:type</span>
<span id="L704" class="LineNr">704 </span>  <span class="Comment"># hack: assumes scheduler implementation</span>
<span id="L705" class="LineNr">705 </span>  <span class="Constant">3</span>:<span class="Normal">bool</span>/<span class="Special">raw &lt;- </span>equal <span class="Constant">1</span>:&amp;:num/<span class="Special">raw</span><span class="Delimiter">,</span> <span class="Constant">2</span>:&amp;:num/<span class="Special">raw</span>
<span id="L706" class="LineNr">706 </span>  <span class="Comment"># signal f2 complete</span>
<span id="L707" class="LineNr">707 </span>  <span class="Constant">4</span>:num/<span class="Special">raw &lt;- </span>copy <span class="Constant">1</span>
<span id="L708" class="LineNr">708 </span>]
<span id="L709" class="LineNr">709 </span><span class="traceContains">+mem: storing 0 in location 3</span>
</pre>
</body>
</html>
<!-- vim: set foldmethod=manual : -->