blob: 27ac8ce6a1dab8d959559cfc739b8a5ed7b86f9c (
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
|
//: Recipe to look at elements of containers.
:(before "End Primitive Recipe Declarations")
_PRINT,
:(before "End Primitive Recipe Numbers")
Recipe_number["$print"] = _PRINT;
:(before "End Primitive Recipe Implementations")
case _PRINT: {
if (isa_literal(current_instruction().ingredients[0])) {
trace("run") << "$print: " << current_instruction().ingredients[0].name;
cout << current_instruction().ingredients[0].name;
break;
}
vector<long long int> result(read_memory(current_instruction().ingredients[0]));
for (index_t i = 0; i < result.size(); ++i) {
trace("run") << "$print: " << result[i];
if (i > 0) cout << " ";
cout << result[i];
}
break;
}
:(before "End Primitive Recipe Declarations")
_START_TRACING,
:(before "End Primitive Recipe Numbers")
Recipe_number["$start-tracing"] = _START_TRACING;
:(before "End Primitive Recipe Implementations")
case _START_TRACING: {
Trace_stream->dump_layer = "all";
//? cout << Trace_stream << ": " << Trace_stream->dump_layer << '\n'; //? 1
break;
}
:(before "End Primitive Recipe Declarations")
_STOP_TRACING,
:(before "End Primitive Recipe Numbers")
Recipe_number["$stop-tracing"] = _STOP_TRACING;
:(before "End Primitive Recipe Implementations")
case _STOP_TRACING: {
Trace_stream->dump_layer = "";
break;
}
:(before "End Primitive Recipe Declarations")
_EXIT,
:(before "End Primitive Recipe Numbers")
Recipe_number["$exit"] = _EXIT;
:(before "End Primitive Recipe Implementations")
case _EXIT: {
exit(0);
break;
}
|