about summary refs log tree commit diff stats
path: root/arc/.traces/convert-braces-label-increments-offset
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-08-16 14:30:19 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-08-16 14:39:38 -0700
commit7a29cf544e73fbd516b2e6118c093fd5df81a274 (patch)
tree9a0f9b566d1d1199f72d9f6839de69c6205aa430 /arc/.traces/convert-braces-label-increments-offset
parent6a218cff3ae7e7d5a77da493d1ba42c6be95a2fc (diff)
downloadmu-7a29cf544e73fbd516b2e6118c093fd5df81a274.tar.gz
3197
Replace an integer with a boolean across two layers of function calls.

It has long been one of the ugliest consequences of my approach with
layers that functions might need to be introduced with unnecessary
arguments simply because we have no clean way to add parameters to a
function definition after the fact -- or to add the default argument
corresponding to that parameter in calls. This problem is exacerbated by
the redundant argument having to be passed in through multiple layers of
functions. In this instance:

In layer 20 we define write_memory with an argument called
'saving_instruction_products' which isn't used yet.

In layer 36 we reveal that we use this argument in a call to
should_update_refcounts_in_write_memory() -- where it is again not used
yet.

Layer 43 finally clarifies what we're shooting for:

  a) In general when we need to update some memory, we always want to
  update refcounts.

  b) The only exception is when we're reclaiming locals in a function
  that set up its stack frame using 'local-scope' (signalling that it
  wants immediate reclamation). At that point we avoid decrementing
  refcounts of 'escaping' addresses that are being returned, and we also
  avoid incrementing refcounts of products in the caller instruction.
  The latter case is basically why we need this boolean and its dance
  across 3 layers.

In summary, write_memory() needs to update refcounts except if:
  we're writing products for an instruction,
  the instruction is not a primitive, and
  the (callee) recipe for the instruction starts with 'local-scope'.
Diffstat (limited to 'arc/.traces/convert-braces-label-increments-offset')
0 files changed, 0 insertions, 0 deletions
;id=8923d6f658d09de800164b8fc6514475f49307b4'>^
310308ce ^
20d1c905 ^




310308ce ^
20d1c905 ^


af16d897 ^
20d1c905 ^



af16d897 ^







20d1c905 ^
363be37f ^
af16d897 ^




ef49f4c6 ^

af16d897 ^
ef49f4c6 ^


af16d897 ^

310308ce ^
ef49f4c6 ^








20d1c905 ^
ef49f4c6 ^
20d1c905 ^
20d1c905 ^

310308ce ^


















20d1c905 ^

bc643692 ^
20d1c905 ^
bc643692 ^
20d1c905 ^

bc643692 ^
20d1c905 ^

bc643692 ^
20d1c905 ^










bc643692 ^
20d1c905 ^

bc643692 ^
20d1c905 ^

bc643692 ^
20d1c905 ^

bc643692 ^
20d1c905 ^

bc643692 ^
20d1c905 ^

bc643692 ^
20d1c905 ^














bc643692 ^
20d1c905 ^
bc643692 ^
20d1c905 ^

bc643692 ^
20d1c905 ^

bc643692 ^
20d1c905 ^

bc643692 ^
20d1c905 ^

bc643692 ^
20d1c905 ^














bc643692 ^
20d1c905 ^
bc643692 ^
20d1c905 ^

bc643692 ^

20d1c905 ^

bc643692 ^

20d1c905 ^












ef49f4c6 ^
20d1c905 ^
ef49f4c6 ^




20d1c905 ^
ef49f4c6 ^
20d1c905 ^

ef49f4c6 ^
20d1c905 ^

ef49f4c6 ^
20d1c905 ^
ef49f4c6 ^

20d1c905 ^
ef49f4c6 ^




20d1c905 ^
ef49f4c6 ^

20d1c905 ^
ef49f4c6 ^
af16d897 ^


















































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