about summary refs log tree commit diff stats
path: root/039debug.cc
Commit message (Collapse)AuthorAgeFilesLines
* 6123 - runtime helper for initializing arraysKartik Agaram2020-03-111-0/+26
| | | | | | | | | | | | | I built this in 3 phases: a) create a helper in the bootstrap VM to render the state of the stack. b) interactively arrive at the right function (tools/stack_array.subx) c) pull the final solution into the standard library (093stack_allocate.subx) As the final layer says, this may not be the fastest approach for most (or indeed any) Mu programs. Perhaps it's better on balance for the compiler to just emit n/4 `push` instructions. (I'm sure this solution can be optimized further.)
* 5866Kartik Agaram2020-01-021-1/+3
| | | | | | | | Stop requiring '--debug' in 'bootstrap run'. Now it's smart enough to turn on when needed. This creates some small chance of reading stale debug info for the wrong binary, but in practice that hasn't been an issue.
* 5865Kartik Agaram2020-01-021-4/+4
| | | | Give the bootstrap C++ program a less salient name.
* 5822Kartik Agaram2019-12-221-2/+2
|
* 5485 - promote SubX to top-levelKartik Agaram2019-07-271-0/+147
mit/shell/cell.mu?h=hlt&id=770cac9412f95e0b305712239a86ff388467a1e1'>770cac94 ^
b0096cd6 ^
ba5f5565 ^
7e9e65ee ^
210c4837 ^
124be197 ^
210c4837 ^







03178cde ^
89b7ea80 ^












a71ff238 ^













b0096cd6 ^









124be197 ^
03178cde ^





0749772b ^
89b7ea80 ^


e4fc67ee ^
89b7ea80 ^
e4fc67ee ^
89b7ea80 ^



















97df52bf ^
0749772b ^


89b7ea80 ^













e4fc67ee ^
1d724f92 ^



e4fc67ee ^



















97cffa20 ^








f5ece045 ^
97cffa20 ^



97df52bf ^
97cffa20 ^
f5ece045 ^
97cffa20 ^
400574f9 ^












a509279a ^
770cac94 ^
a509279a ^


a509279a ^


770cac94 ^
c11ea744 ^
770cac94 ^



97df52bf ^
770cac94 ^


1afc0211 ^












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