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
468
469
470
471
472
473
474
|
# File 'lib/milk_tea/core/c_backend/format_helpers.rb', line 6
def emit_format_helpers
helpers = used_format_helpers
lines = []
if helpers['mt_format_str_make']
lines.concat([
"static mt_str mt_format_str_make(uintptr_t len) {",
"#{INDENT}char* data = (char*)malloc((size_t)(len + 1));",
"#{INDENT}if (data == NULL) mt_fatal(\"format string allocation failed\");",
"#{INDENT}data[len] = '\\0';",
"#{INDENT}return (mt_str){ .data = data, .len = len };",
"}",
])
end
if helpers['mt_format_str_release']
lines << "" unless lines.empty?
lines.concat([
"static void mt_format_str_release(mt_str value) {",
"#{INDENT}free(value.data);",
"}",
])
end
if helpers['mt_format_check_capacity']
lines << "" unless lines.empty?
lines.concat([
"static void mt_format_check_capacity(mt_str target, uintptr_t offset, uintptr_t len) {",
"#{INDENT}if (offset > target.len || len > target.len - offset) mt_fatal(\"format string append exceeds capacity\");",
"}",
])
end
if helpers['mt_format_append_bytes']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_append_bytes(mt_str target, uintptr_t offset, const char* data, uintptr_t len) {",
"#{INDENT}mt_format_check_capacity(target, offset, len);",
"#{INDENT}if (len > 0) memcpy(target.data + offset, data, (size_t)len);",
"#{INDENT}offset += len;",
"#{INDENT}target.data[offset] = '\\0';",
"#{INDENT}return offset;",
"}",
])
end
if helpers['mt_format_cstr_len']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_cstr_len(const char* value) {",
"#{INDENT}return (uintptr_t)strlen(value);",
"}",
])
end
if helpers['mt_format_bool_len']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_bool_len(bool value) {",
"#{INDENT}return value ? 4 : 5;",
"}",
])
end
if helpers['mt_format_ptr_uint_len']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_ptr_uint_len(uintptr_t value) {",
"#{INDENT}uintptr_t len = 1;",
"#{INDENT}while (value >= 10) {",
"#{INDENT * 2}value /= 10;",
"#{INDENT * 2}len += 1;",
"#{INDENT}}",
"#{INDENT}return len;",
"}",
])
end
if helpers['mt_format_ulong_len']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_ulong_len(uint64_t value) {",
"#{INDENT}uintptr_t len = 1;",
"#{INDENT}while (value >= 10) {",
"#{INDENT * 2}value /= 10;",
"#{INDENT * 2}len += 1;",
"#{INDENT}}",
"#{INDENT}return len;",
"}",
])
end
if helpers['mt_format_ulong_hex_len']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_ulong_hex_len(uint64_t value) {",
"#{INDENT}int written = snprintf(NULL, 0, \"%llx\", (unsigned long long)value);",
"#{INDENT}if (written < 0) mt_fatal(\"format string could not measure unsigned hex\");",
"#{INDENT}return (uintptr_t)written;",
"}",
])
end
if helpers['mt_format_uint_len']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_uint_len(uint32_t value) {",
"#{INDENT}return mt_format_ptr_uint_len((uintptr_t)value);",
"}",
])
end
if helpers['mt_format_long_len']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_long_len(int64_t value) {",
"#{INDENT}if (value < 0) return 1 + mt_format_ulong_len(((uint64_t)(-(value + 1))) + 1);",
"#{INDENT}return mt_format_ulong_len((uint64_t)value);",
"}",
])
end
if helpers['mt_format_long_hex_len']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_long_hex_len(int64_t value) {",
"#{INDENT}if (value < 0) return 1 + mt_format_ulong_hex_len(((uint64_t)(-(value + 1))) + 1);",
"#{INDENT}return mt_format_ulong_hex_len((uint64_t)value);",
"}",
])
end
if helpers['mt_format_ulong_oct_len']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_ulong_oct_len(uint64_t value) {",
"#{INDENT}int written = snprintf(NULL, 0, \"%llo\", (unsigned long long)value);",
"#{INDENT}if (written < 0) mt_fatal(\"format string could not measure unsigned octal\");",
"#{INDENT}return (uintptr_t)written;",
"}",
])
end
if helpers['mt_format_long_oct_len']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_long_oct_len(int64_t value) {",
"#{INDENT}if (value < 0) return 1 + mt_format_ulong_oct_len(((uint64_t)(-(value + 1))) + 1);",
"#{INDENT}return mt_format_ulong_oct_len((uint64_t)value);",
"}",
])
end
if helpers['mt_format_ulong_bin_len']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_ulong_bin_len(uint64_t value) {",
"#{INDENT}uintptr_t len = 1;",
"#{INDENT}while (value >= 2) {",
"#{INDENT * 2}value >>= 1;",
"#{INDENT * 2}len += 1;",
"#{INDENT}}",
"#{INDENT}return len;",
"}",
])
end
if helpers['mt_format_long_bin_len']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_long_bin_len(int64_t value) {",
"#{INDENT}if (value < 0) return 1 + mt_format_ulong_bin_len(((uint64_t)(-(value + 1))) + 1);",
"#{INDENT}return mt_format_ulong_bin_len((uint64_t)value);",
"}",
])
end
if helpers['mt_format_int_len']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_int_len(int32_t value) {",
"#{INDENT}if (value < 0) return 1 + mt_format_ptr_uint_len((uintptr_t)(-((int64_t)value)));",
"#{INDENT}return mt_format_ptr_uint_len((uintptr_t)value);",
"}",
])
end
if helpers['mt_format_float_len']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_float_len(float value) {",
"#{INDENT}int written = snprintf(NULL, 0, \"%g\", (double)value);",
"#{INDENT}if (written < 0) mt_fatal(\"format string could not measure float\");",
"#{INDENT}return (uintptr_t)written;",
"}",
])
end
if helpers['mt_format_double_len']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_double_len(double value) {",
"#{INDENT}int written = snprintf(NULL, 0, \"%g\", value);",
"#{INDENT}if (written < 0) mt_fatal(\"format string could not measure double\");",
"#{INDENT}return (uintptr_t)written;",
"}",
])
end
if helpers['mt_format_double_precision_len']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_double_precision_len(double value, int32_t precision) {",
"#{INDENT}int written = snprintf(NULL, 0, \"%.*f\", precision, value);",
"#{INDENT}if (written < 0) mt_fatal(\"format string could not measure double precision\");",
"#{INDENT}return (uintptr_t)written;",
"}",
])
end
if helpers['mt_format_append_str']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_append_str(mt_str target, uintptr_t offset, mt_str value) {",
"#{INDENT}return mt_format_append_bytes(target, offset, value.data, value.len);",
"}",
])
end
if helpers['mt_format_append_cstr']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_append_cstr(mt_str target, uintptr_t offset, const char* value) {",
"#{INDENT}uintptr_t len = mt_format_cstr_len(value);",
"#{INDENT}return mt_format_append_bytes(target, offset, value, len);",
"}",
])
end
if helpers['mt_format_append_bool']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_append_bool(mt_str target, uintptr_t offset, bool value) {",
"#{INDENT}return value ? mt_format_append_bytes(target, offset, \"true\", 4) : mt_format_append_bytes(target, offset, \"false\", 5);",
"}",
])
end
if helpers['mt_format_append_ptr_uint']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_append_ptr_uint(mt_str target, uintptr_t offset, uintptr_t value) {",
"#{INDENT}uintptr_t len = mt_format_ptr_uint_len(value);",
"#{INDENT}uintptr_t index = offset + len;",
"#{INDENT}mt_format_check_capacity(target, offset, len);",
"#{INDENT}target.data[index] = '\\0';",
"#{INDENT}do {",
"#{INDENT * 2}index -= 1;",
"#{INDENT * 2}target.data[index] = (char)('0' + (value % 10));",
"#{INDENT * 2}value /= 10;",
"#{INDENT}} while (index > offset);",
"#{INDENT}return offset + len;",
"}",
])
end
if helpers['mt_format_append_ulong']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_append_ulong(mt_str target, uintptr_t offset, uint64_t value) {",
"#{INDENT}uintptr_t len = mt_format_ulong_len(value);",
"#{INDENT}uintptr_t index = offset + len;",
"#{INDENT}mt_format_check_capacity(target, offset, len);",
"#{INDENT}target.data[index] = '\\0';",
"#{INDENT}do {",
"#{INDENT * 2}index -= 1;",
"#{INDENT * 2}target.data[index] = (char)('0' + (value % 10));",
"#{INDENT * 2}value /= 10;",
"#{INDENT}} while (index > offset);",
"#{INDENT}return offset + len;",
"}",
])
end
if helpers['mt_format_append_uint']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_append_uint(mt_str target, uintptr_t offset, uint32_t value) {",
"#{INDENT}return mt_format_append_ptr_uint(target, offset, (uintptr_t)value);",
"}",
])
end
if helpers['mt_format_append_long']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_append_long(mt_str target, uintptr_t offset, int64_t value) {",
"#{INDENT}if (value < 0) {",
"#{INDENT * 2}offset = mt_format_append_bytes(target, offset, \"-\", 1);",
"#{INDENT * 2}return mt_format_append_ulong(target, offset, ((uint64_t)(-(value + 1))) + 1);",
"#{INDENT}}",
"#{INDENT}return mt_format_append_ulong(target, offset, (uint64_t)value);",
"}",
])
end
if helpers['mt_format_append_ulong_hex']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_append_ulong_hex(mt_str target, uintptr_t offset, uint64_t value) {",
"#{INDENT}uintptr_t len = mt_format_ulong_hex_len(value);",
"#{INDENT}mt_format_check_capacity(target, offset, len);",
"#{INDENT}int written = snprintf(target.data + offset, (size_t)(target.len - offset + 1), \"%llx\", (unsigned long long)value);",
"#{INDENT}if (written < 0 || (uintptr_t)written != len) mt_fatal(\"format string could not format unsigned hex\");",
"#{INDENT}return offset + len;",
"}",
])
end
if helpers['mt_format_append_ulong_hex_upper']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_append_ulong_hex_upper(mt_str target, uintptr_t offset, uint64_t value) {",
"#{INDENT}uintptr_t len = mt_format_ulong_hex_len(value);",
"#{INDENT}mt_format_check_capacity(target, offset, len);",
"#{INDENT}int written = snprintf(target.data + offset, (size_t)(target.len - offset + 1), \"%llX\", (unsigned long long)value);",
"#{INDENT}if (written < 0 || (uintptr_t)written != len) mt_fatal(\"format string could not format unsigned hex\");",
"#{INDENT}return offset + len;",
"}",
])
end
if helpers['mt_format_append_long_hex']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_append_long_hex(mt_str target, uintptr_t offset, int64_t value) {",
"#{INDENT}if (value < 0) {",
"#{INDENT * 2}offset = mt_format_append_bytes(target, offset, \"-\", 1);",
"#{INDENT * 2}return mt_format_append_ulong_hex(target, offset, ((uint64_t)(-(value + 1))) + 1);",
"#{INDENT}}",
"#{INDENT}return mt_format_append_ulong_hex(target, offset, (uint64_t)value);",
"}",
])
end
if helpers['mt_format_append_long_hex_upper']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_append_long_hex_upper(mt_str target, uintptr_t offset, int64_t value) {",
"#{INDENT}if (value < 0) {",
"#{INDENT * 2}offset = mt_format_append_bytes(target, offset, \"-\", 1);",
"#{INDENT * 2}return mt_format_append_ulong_hex_upper(target, offset, ((uint64_t)(-(value + 1))) + 1);",
"#{INDENT}}",
"#{INDENT}return mt_format_append_ulong_hex_upper(target, offset, (uint64_t)value);",
"}",
])
end
if helpers['mt_format_append_ulong_oct']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_append_ulong_oct(mt_str target, uintptr_t offset, uint64_t value) {",
"#{INDENT}uintptr_t len = mt_format_ulong_oct_len(value);",
"#{INDENT}mt_format_check_capacity(target, offset, len);",
"#{INDENT}int written = snprintf(target.data + offset, (size_t)(target.len - offset + 1), \"%llo\", (unsigned long long)value);",
"#{INDENT}if (written < 0 || (uintptr_t)written != len) mt_fatal(\"format string could not format unsigned octal\");",
"#{INDENT}return offset + len;",
"}",
])
end
if helpers['mt_format_append_long_oct']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_append_long_oct(mt_str target, uintptr_t offset, int64_t value) {",
"#{INDENT}if (value < 0) {",
"#{INDENT * 2}offset = mt_format_append_bytes(target, offset, \"-\", 1);",
"#{INDENT * 2}return mt_format_append_ulong_oct(target, offset, ((uint64_t)(-(value + 1))) + 1);",
"#{INDENT}}",
"#{INDENT}return mt_format_append_ulong_oct(target, offset, (uint64_t)value);",
"}",
])
end
if helpers['mt_format_append_ulong_bin']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_append_ulong_bin(mt_str target, uintptr_t offset, uint64_t value) {",
"#{INDENT}uintptr_t len = mt_format_ulong_bin_len(value);",
"#{INDENT}uintptr_t index = offset + len;",
"#{INDENT}mt_format_check_capacity(target, offset, len);",
"#{INDENT}target.data[index] = '\\0';",
"#{INDENT}do {",
"#{INDENT * 2}index -= 1;",
"#{INDENT * 2}target.data[index] = (char)('0' + (value & 1));",
"#{INDENT * 2}value >>= 1;",
"#{INDENT}} while (index > offset);",
"#{INDENT}return offset + len;",
"}",
])
end
if helpers['mt_format_append_long_bin']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_append_long_bin(mt_str target, uintptr_t offset, int64_t value) {",
"#{INDENT}if (value < 0) {",
"#{INDENT * 2}offset = mt_format_append_bytes(target, offset, \"-\", 1);",
"#{INDENT * 2}return mt_format_append_ulong_bin(target, offset, ((uint64_t)(-(value + 1))) + 1);",
"#{INDENT}}",
"#{INDENT}return mt_format_append_ulong_bin(target, offset, (uint64_t)value);",
"}",
])
end
if helpers['mt_format_append_int']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_append_int(mt_str target, uintptr_t offset, int32_t value) {",
"#{INDENT}if (value < 0) {",
"#{INDENT * 2}offset = mt_format_append_bytes(target, offset, \"-\", 1);",
"#{INDENT * 2}return mt_format_append_ptr_uint(target, offset, (uintptr_t)(-((int64_t)value)));",
"#{INDENT}}",
"#{INDENT}return mt_format_append_ptr_uint(target, offset, (uintptr_t)value);",
"}",
])
end
if helpers['mt_format_append_float']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_append_float(mt_str target, uintptr_t offset, float value) {",
"#{INDENT}uintptr_t len = mt_format_float_len(value);",
"#{INDENT}mt_format_check_capacity(target, offset, len);",
"#{INDENT}int written = snprintf(target.data + offset, (size_t)(target.len - offset + 1), \"%g\", (double)value);",
"#{INDENT}if (written < 0 || (uintptr_t)written != len) mt_fatal(\"format string could not format float\");",
"#{INDENT}return offset + len;",
"}",
])
end
if helpers['mt_format_append_double']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_append_double(mt_str target, uintptr_t offset, double value) {",
"#{INDENT}uintptr_t len = mt_format_double_len(value);",
"#{INDENT}mt_format_check_capacity(target, offset, len);",
"#{INDENT}int written = snprintf(target.data + offset, (size_t)(target.len - offset + 1), \"%g\", value);",
"#{INDENT}if (written < 0 || (uintptr_t)written != len) mt_fatal(\"format string could not format double\");",
"#{INDENT}return offset + len;",
"}",
])
end
if helpers['mt_format_append_double_precision']
lines << "" unless lines.empty?
lines.concat([
"static uintptr_t mt_format_append_double_precision(mt_str target, uintptr_t offset, double value, int32_t precision) {",
"#{INDENT}uintptr_t len = mt_format_double_precision_len(value, precision);",
"#{INDENT}mt_format_check_capacity(target, offset, len);",
"#{INDENT}int written = snprintf(target.data + offset, (size_t)(target.len - offset + 1), \"%.*f\", precision, value);",
"#{INDENT}if (written < 0 || (uintptr_t)written != len) mt_fatal(\"format string could not format double precision\");",
"#{INDENT}return offset + len;",
"}",
])
end
lines
end
|