-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstring-methods.ts
More file actions
735 lines (622 loc) · 23.7 KB
/
string-methods.ts
File metadata and controls
735 lines (622 loc) · 23.7 KB
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
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
import {
Expression,
MethodCallNode,
MemberAccessNode,
VariableNode,
RegexNode,
} from "../../../ast/types.js";
import type { MethodCallGeneratorContext } from "../method-calls.js";
interface ExprBase {
type: string;
}
function convertToI32(ctx: MethodCallGeneratorContext, value: string): string {
const vt = ctx.getVariableType(value);
if (vt === "i64") {
const temp = ctx.nextTemp();
ctx.emit(`${temp} = trunc i64 ${value} to i32`);
return temp;
}
const dbl = ctx.ensureDouble(value);
const temp = ctx.nextTemp();
ctx.emit(`${temp} = fptosi double ${dbl} to i32`);
return temp;
}
export function handleSubstr(
ctx: MethodCallGeneratorContext,
expr: MethodCallNode,
params: string[],
): string {
const strPtr = ctx.generateExpression(expr.object, params);
if (expr.args.length < 1 || expr.args.length > 2) {
return ctx.emitError(`substr() expects 1 or 2 arguments, got ${expr.args.length}`, expr.loc);
}
const startIndexDouble = ctx.generateExpression(expr.args[0], params);
const startIndex = convertToI32(ctx, startIndexDouble);
const length =
expr.args.length === 2 ? convertToI32(ctx, ctx.generateExpression(expr.args[1], params)) : null;
return ctx.stringGen.doGenerateSubstr(strPtr, startIndex, length);
}
export function handleSubstring(
ctx: MethodCallGeneratorContext,
expr: MethodCallNode,
params: string[],
): string {
const strPtr = ctx.generateExpression(expr.object, params);
if (expr.args.length < 1 || expr.args.length > 2) {
return ctx.emitError(`substring() expects 1 or 2 arguments, got ${expr.args.length}`, expr.loc);
}
const startIndexDouble = ctx.generateExpression(expr.args[0], params);
const startIndex = convertToI32(ctx, startIndexDouble);
let length: string | null = null;
if (expr.args.length === 2) {
const endIndexDouble = ctx.generateExpression(expr.args[1], params);
const endIndex = convertToI32(ctx, endIndexDouble);
length = ctx.nextTemp();
ctx.emit(`${length} = sub i32 ${endIndex}, ${startIndex}`);
}
return ctx.stringGen.doGenerateSubstr(strPtr, startIndex, length);
}
export function handleConcat(
ctx: MethodCallGeneratorContext,
expr: MethodCallNode,
params: string[],
): string {
const strPtr = ctx.generateExpression(expr.object, params);
const ptrType = ctx.getVariableType(strPtr);
if (
ptrType &&
(ptrType === "%Array*" ||
ptrType === "%StringArray*" ||
ptrType === "%ObjectArray*" ||
ptrType.endsWith("Array*"))
) {
const exprObjBase = expr.object as ExprBase;
let details = `Expression type: ${exprObjBase.type}`;
if (exprObjBase.type === "member_access") {
const memberExpr = expr.object as MemberAccessNode;
const objBase = memberExpr.object as ExprBase;
details += `, property: ${memberExpr.property}`;
details += `, object base type: ${objBase.type}`;
if (objBase.type === "variable") {
const varName = (memberExpr.object as VariableNode).name;
const isClass = ctx.symbolTable.isClass(varName);
const symbolType = ctx.symbolTable.getType(varName);
const interfaceType = ctx.symbolTable.getInterfaceType(varName);
details += `, variable: ${varName}, isClass: ${isClass}`;
details += `, symbolType: ${symbolType}, interfaceType: ${interfaceType}`;
if (isClass) {
const className = ctx.symbolTable.getClassName(varName);
details += `, className: ${className}`;
}
}
}
throw new Error(
`concat() was dispatched to string handler but received an array type '${ptrType}'.\n` +
` This indicates isArrayExpression/isStringArrayExpression/isObjectArrayExpression failed to detect the array.\n` +
` ${details}\n` +
` Check type tracking for this expression.`,
);
}
if (expr.args.length < 1) {
return ctx.emitError(`concat() expects at least 1 argument, got ${expr.args.length}`, expr.loc);
}
let result = strPtr;
for (let _mci = 0; _mci < expr.args.length; _mci++) {
const arg = expr.args[_mci];
const argStr = ctx.generateExpression(arg, params);
result = ctx.stringGen.doGenerateStringConcatDirect(result, argStr);
}
return result;
}
export function handleRepeat(
ctx: MethodCallGeneratorContext,
expr: MethodCallNode,
params: string[],
): string {
const strPtr = ctx.generateExpression(expr.object, params);
if (expr.args.length !== 1) {
return ctx.emitError(`repeat() expects 1 argument, got ${expr.args.length}`, expr.loc);
}
const countDouble = ctx.generateExpression(expr.args[0], params);
const count = convertToI32(ctx, countDouble);
return ctx.stringGen.doGenerateRepeat(strPtr, count);
}
export function handlePadStart(
ctx: MethodCallGeneratorContext,
expr: MethodCallNode,
params: string[],
): string {
const strPtr = ctx.generateExpression(expr.object, params);
if (expr.args.length < 1 || expr.args.length > 2) {
return ctx.emitError(`padStart() expects 1 or 2 arguments, got ${expr.args.length}`, expr.loc);
}
const targetLengthDouble = ctx.generateExpression(expr.args[0], params);
const targetLength = convertToI32(ctx, targetLengthDouble);
const padString =
expr.args.length === 2
? ctx.generateExpression(expr.args[1], params)
: ctx.stringGen.doCreateStringConstant(" ");
return ctx.stringGen.doGeneratePadStart(strPtr, targetLength, padString);
}
export function handlePadEnd(
ctx: MethodCallGeneratorContext,
expr: MethodCallNode,
params: string[],
): string {
const strPtr = ctx.generateExpression(expr.object, params);
if (expr.args.length < 1 || expr.args.length > 2) {
return ctx.emitError(`padEnd() expects 1 or 2 arguments, got ${expr.args.length}`, expr.loc);
}
const targetLengthDouble = ctx.generateExpression(expr.args[0], params);
const targetLength = convertToI32(ctx, targetLengthDouble);
const padString =
expr.args.length === 2
? ctx.generateExpression(expr.args[1], params)
: ctx.stringGen.doCreateStringConstant(" ");
return ctx.stringGen.doGeneratePadEnd(strPtr, targetLength, padString);
}
export function handleSplit(
ctx: MethodCallGeneratorContext,
expr: MethodCallNode,
params: string[],
): string {
const strPtr = ctx.generateExpression(expr.object, params);
if (expr.args.length !== 1) {
return ctx.emitError(`split() expects 1 argument, got ${expr.args.length}`, expr.loc);
}
const delimiter = ctx.generateExpression(expr.args[0], params);
return ctx.stringGen.doGenerateSplit(strPtr, delimiter);
}
export function handleStartsWith(
ctx: MethodCallGeneratorContext,
expr: MethodCallNode,
params: string[],
): string {
let strPtr = ctx.generateExpression(expr.object, params);
if (expr.args.length < 1 || expr.args.length > 2) {
return ctx.emitError(`startsWith() expects 1-2 arguments, got ${expr.args.length}`, expr.loc);
}
if (expr.args.length === 2) {
const position = ctx.generateExpression(expr.args[1], params);
const posI32 = convertToI32(ctx, position);
const posI64 = ctx.nextTemp();
ctx.emit(`${posI64} = sext i32 ${posI32} to i64`);
const offsetPtr = ctx.nextTemp();
ctx.emit(`${offsetPtr} = getelementptr inbounds i8, i8* ${strPtr}, i64 ${posI64}`);
strPtr = offsetPtr;
}
const prefix = ctx.generateExpression(expr.args[0], params);
return ctx.stringGen.doGenerateStartsWith(strPtr, prefix);
}
export function handleEndsWith(
ctx: MethodCallGeneratorContext,
expr: MethodCallNode,
params: string[],
): string {
const strPtr = ctx.generateExpression(expr.object, params);
if (expr.args.length !== 1) {
return ctx.emitError(`endsWith() expects 1 argument, got ${expr.args.length}`, expr.loc);
}
const suffix = ctx.generateExpression(expr.args[0], params);
return ctx.stringGen.doGenerateEndsWith(strPtr, suffix);
}
export function handleTrim(
ctx: MethodCallGeneratorContext,
expr: MethodCallNode,
params: string[],
): string {
const strPtr = ctx.generateExpression(expr.object, params);
if (expr.args.length !== 0) {
return ctx.emitError(`trim() expects 0 arguments, got ${expr.args.length}`, expr.loc);
}
return ctx.stringGen.doGenerateTrim(strPtr);
}
export function handleTrimStart(
ctx: MethodCallGeneratorContext,
expr: MethodCallNode,
params: string[],
): string {
const strPtr = ctx.generateExpression(expr.object, params);
if (expr.args.length !== 0) {
return ctx.emitError(`trimStart() expects 0 arguments, got ${expr.args.length}`, expr.loc);
}
return ctx.stringGen.doGenerateTrimStart(strPtr);
}
export function handleTrimEnd(
ctx: MethodCallGeneratorContext,
expr: MethodCallNode,
params: string[],
): string {
const strPtr = ctx.generateExpression(expr.object, params);
if (expr.args.length !== 0) {
return ctx.emitError(`trimEnd() expects 0 arguments, got ${expr.args.length}`, expr.loc);
}
return ctx.stringGen.doGenerateTrimEnd(strPtr);
}
export function handleIndexOf(
ctx: MethodCallGeneratorContext,
expr: MethodCallNode,
params: string[],
): string {
const strPtr = ctx.generateExpression(expr.object, params);
if (expr.args.length !== 1) {
return ctx.emitError(`indexOf() expects 1 argument, got ${expr.args.length}`, expr.loc);
}
const substring = ctx.generateExpression(expr.args[0], params);
return ctx.stringGen.doGenerateIndexOf(strPtr, substring);
}
export function handleLastIndexOf(
ctx: MethodCallGeneratorContext,
expr: MethodCallNode,
params: string[],
): string {
const strPtr = ctx.generateExpression(expr.object, params);
if (expr.args.length !== 1) {
return ctx.emitError(`lastIndexOf() expects 1 argument, got ${expr.args.length}`, expr.loc);
}
const substring = ctx.generateExpression(expr.args[0], params);
return ctx.stringGen.doGenerateLastIndexOf(strPtr, substring);
}
export function handleStringArrayIndexOf(
ctx: MethodCallGeneratorContext,
expr: MethodCallNode,
params: string[],
): string {
const arrayPtr = ctx.generateExpression(expr.object, params);
if (expr.args.length < 1 || expr.args.length > 2) {
return ctx.emitError(`indexOf() expects 1 or 2 arguments, got ${expr.args.length}`, expr.loc);
}
const searchValue = ctx.generateExpression(expr.args[0], params);
// Optional fromIndex (2nd arg) — defaults to 0
let fromIndex = "0";
if (expr.args.length === 2) {
const fromRaw = ctx.generateExpression(expr.args[1], params);
fromIndex = convertToI32(ctx, fromRaw);
}
const checkLabel = ctx.nextLabel("indexof_check");
const bodyLabel = ctx.nextLabel("indexof_body");
const foundLabel = ctx.nextLabel("indexof_found");
const notfoundLabel = ctx.nextLabel("indexof_notfound");
const endLabel = ctx.nextLabel("indexof_end");
const arrIsNull = ctx.emitIcmp("eq", "%StringArray*", arrayPtr, "null");
ctx.emitBrCond(arrIsNull, notfoundLabel, `${checkLabel}_arrvalid`);
ctx.emitLabel(`${checkLabel}_arrvalid`);
const lenPtr = ctx.nextTemp();
ctx.emit(
`${lenPtr} = getelementptr inbounds %StringArray, %StringArray* ${arrayPtr}, i32 0, i32 1`,
);
const length = ctx.emitLoad("i32", lenPtr);
const dataPtrField = ctx.nextTemp();
ctx.emit(
`${dataPtrField} = getelementptr inbounds %StringArray, %StringArray* ${arrayPtr}, i32 0, i32 0`,
);
const dataPtr = ctx.emitLoad("i8**", dataPtrField);
const dataPtrIsNull = ctx.emitIcmp("eq", "i8**", dataPtr, "null");
ctx.emitBrCond(dataPtrIsNull, notfoundLabel, `${checkLabel}_start`);
ctx.emitLabel(`${checkLabel}_start`);
const counterPtr = ctx.nextTemp();
ctx.emit(`${counterPtr} = alloca i32`);
ctx.emitStore("i32", fromIndex, counterPtr);
ctx.emitBr(checkLabel);
ctx.emitLabel(checkLabel);
const counter = ctx.emitLoad("i32", counterPtr);
const cond = ctx.emitIcmp("slt", "i32", counter, length);
ctx.emitBrCond(cond, bodyLabel, notfoundLabel);
ctx.emitLabel(bodyLabel);
const counter64 = ctx.nextTemp();
ctx.emit(`${counter64} = sext i32 ${counter} to i64`);
const elemPtr = ctx.emitGep("i8*", dataPtr, `i64 ${counter64}`);
const elem = ctx.emitLoad("i8*", elemPtr);
const elemIsNull = ctx.emitIcmp("eq", "i8*", elem, "null");
ctx.emitBrCond(elemIsNull, `${checkLabel}_next`, `${checkLabel}_cmp`);
ctx.emitLabel(`${checkLabel}_cmp`);
const cmpResult = ctx.emitCall("i32", "@strcmp", `i8* ${elem}, i8* ${searchValue}`);
const isMatch = ctx.emitIcmp("eq", "i32", cmpResult, "0");
ctx.emitBrCond(isMatch, foundLabel, `${checkLabel}_next`);
ctx.emitLabel(`${checkLabel}_next`);
const nextCounter = ctx.nextTemp();
ctx.emit(`${nextCounter} = add i32 ${counter}, 1`);
ctx.emitStore("i32", nextCounter, counterPtr);
ctx.emitBr(checkLabel);
ctx.emitLabel(foundLabel);
const foundIndex = ctx.emitLoad("i32", counterPtr);
ctx.emitBr(endLabel);
ctx.emitLabel(notfoundLabel);
ctx.emitBr(endLabel);
ctx.emitLabel(endLabel);
const resultI32 = ctx.nextTemp();
ctx.emit(`${resultI32} = phi i32 [ ${foundIndex}, %${foundLabel} ], [ -1, %${notfoundLabel} ]`);
const result = ctx.nextTemp();
ctx.emit(`${result} = sitofp i32 ${resultI32} to double`);
ctx.setVariableType(result, "double");
return result;
}
export function handleStringArrayIncludes(
ctx: MethodCallGeneratorContext,
expr: MethodCallNode,
params: string[],
): string {
const indexResult = handleStringArrayIndexOf(ctx, expr, params);
const cmp = ctx.nextTemp();
ctx.emit(`${cmp} = fcmp oge double ${indexResult}, 0.0`);
const cmpI32 = ctx.nextTemp();
ctx.emit(`${cmpI32} = zext i1 ${cmp} to i32`);
const result = ctx.nextTemp();
ctx.emit(`${result} = sitofp i32 ${cmpI32} to double`);
ctx.setVariableType(result, "double");
return result;
}
export function handleStringIncludes(
ctx: MethodCallGeneratorContext,
expr: MethodCallNode,
params: string[],
): string {
const strPtr = ctx.generateExpression(expr.object, params);
const ptrType = ctx.getVariableType(strPtr);
if (
ptrType &&
(ptrType === "%Array*" ||
ptrType === "%StringArray*" ||
ptrType === "%ObjectArray*" ||
ptrType.endsWith("Array*"))
) {
throw new Error(
`includes() was dispatched to string handler but received an array type '${ptrType}'.\n` +
` This indicates isArrayExpression/isStringArrayExpression failed to detect the array.\n` +
` Expression type: ${expr.object.type}\n` +
` Check type tracking for this expression.`,
);
}
if (!ptrType || ptrType === "unknown") {
const exprObjBase = expr.object as ExprBase;
let details = `Expression type: ${exprObjBase.type}`;
if (exprObjBase.type === "variable") {
details += `, variable: ${(expr.object as VariableNode).name}`;
} else if (exprObjBase.type === "method_call") {
const mc = expr.object as MethodCallNode;
details += `, method: ${mc.method}`;
}
throw new Error(
`includes() called on expression with unknown type.\n` +
` Result register: ${strPtr}, type: ${ptrType || "undefined"}\n` +
` ${details}\n` +
` If this is an array, isArrayExpression/isStringArrayExpression is not detecting it.\n` +
` Fix type tracking to ensure proper dispatch.`,
);
}
if (expr.args.length !== 1) {
return ctx.emitError(`includes() expects 1 argument, got ${expr.args.length}`, expr.loc);
}
const substring = ctx.generateExpression(expr.args[0], params);
return ctx.stringGen.doGenerateIncludes(strPtr, substring);
}
export function handleSlice(
ctx: MethodCallGeneratorContext,
expr: MethodCallNode,
params: string[],
): string {
const strPtr = ctx.generateExpression(expr.object, params);
const ptrType = ctx.getVariableType(strPtr);
if (
ptrType &&
(ptrType === "%Array*" ||
ptrType === "%StringArray*" ||
ptrType === "%ObjectArray*" ||
ptrType.endsWith("Array*"))
) {
throw new Error(
`slice() was dispatched to string handler but received an array type '${ptrType}'.\n` +
` This indicates isArrayExpression/isStringArrayExpression/isObjectArrayExpression failed to detect the array.\n` +
` Expression type: ${expr.object.type}\n` +
` Check type tracking for this expression.`,
);
}
if (!ptrType || ptrType === "unknown") {
const exprObjBase = expr.object as ExprBase;
let details = `Expression type: ${exprObjBase.type}`;
if (exprObjBase.type === "variable") {
details += `, variable: ${(expr.object as VariableNode).name}`;
} else if (exprObjBase.type === "method_call") {
const mc = expr.object as MethodCallNode;
details += `, method: ${mc.method}`;
}
throw new Error(
`slice() called on expression with unknown type.\n` +
` Result register: ${strPtr}, type: ${ptrType || "undefined"}\n` +
` ${details}\n` +
` If this is an array, isArrayExpression/isStringArrayExpression/isObjectArrayExpression is not detecting it.\n` +
` Fix type tracking to ensure proper dispatch.`,
);
}
if (expr.args.length > 2) {
return ctx.emitError(`slice() expects 0-2 arguments, got ${expr.args.length}`, expr.loc);
}
let startDouble: string;
if (expr.args.length >= 1) {
startDouble = ctx.generateExpression(expr.args[0], params);
} else {
startDouble = "0.0";
}
const startI32 = convertToI32(ctx, startDouble);
let endI32: string | null = null;
if (expr.args.length === 2) {
const endDouble = ctx.generateExpression(expr.args[1], params);
endI32 = convertToI32(ctx, endDouble);
}
return ctx.stringGen.doGenerateSlice(strPtr, startI32, endI32);
}
export function handleReplace(
ctx: MethodCallGeneratorContext,
expr: MethodCallNode,
params: string[],
): string {
const strPtr = ctx.generateExpression(expr.object, params);
if (expr.args.length !== 2) {
return ctx.emitError(`replace() expects 2 arguments, got ${expr.args.length}`, expr.loc);
}
const searchArg = expr.args[0];
const replaceArg = expr.args[1];
if (searchArg.type === "regex") {
const regexNode = searchArg as RegexNode;
const isGlobal = regexNode.flags.indexOf("g") !== -1;
const searchStr = ctx.stringGen.doGenerateGlobalString(regexNode.pattern);
const replaceStr = ctx.generateExpression(replaceArg, params);
if (isGlobal) {
return ctx.stringGen.doGenerateReplaceAll(strPtr, searchStr, replaceStr);
} else {
return ctx.stringGen.doGenerateReplace(strPtr, searchStr, replaceStr);
}
}
const searchStr = ctx.generateExpression(searchArg, params);
const replaceStr = ctx.generateExpression(replaceArg, params);
return ctx.stringGen.doGenerateReplace(strPtr, searchStr, replaceStr);
}
export function handleReplaceAll(
ctx: MethodCallGeneratorContext,
expr: MethodCallNode,
params: string[],
): string {
const strPtr = ctx.generateExpression(expr.object, params);
if (expr.args.length !== 2) {
return ctx.emitError(`replaceAll() expects 2 arguments, got ${expr.args.length}`, expr.loc);
}
const searchStr = ctx.generateExpression(expr.args[0], params);
const replaceStr = ctx.generateExpression(expr.args[1], params);
return ctx.stringGen.doGenerateReplaceAll(strPtr, searchStr, replaceStr);
}
export function handleNumberIsFinite(
ctx: MethodCallGeneratorContext,
expr: MethodCallNode,
params: string[],
): string {
const value = ctx.generateExpression(expr.args[0], params);
const dblValue = ctx.ensureDouble(value);
const isOrdered = ctx.nextTemp();
ctx.emit(`${isOrdered} = fcmp ord double ${dblValue}, 0.0`);
const posInf = ctx.nextTemp();
ctx.emit(`${posInf} = fcmp one double ${dblValue}, 0x7FF0000000000000`);
const negInf = ctx.nextTemp();
ctx.emit(`${negInf} = fcmp one double ${dblValue}, 0xFFF0000000000000`);
const notInf = ctx.nextTemp();
ctx.emit(`${notInf} = and i1 ${posInf}, ${negInf}`);
const isFinite = ctx.nextTemp();
ctx.emit(`${isFinite} = and i1 ${isOrdered}, ${notInf}`);
const result = ctx.nextTemp();
ctx.emit(`${result} = uitofp i1 ${isFinite} to double`);
return result;
}
export function handleNumberIsNaN(
ctx: MethodCallGeneratorContext,
expr: MethodCallNode,
params: string[],
): string {
const value = ctx.generateExpression(expr.args[0], params);
const dblValue = ctx.ensureDouble(value);
const isNaN = ctx.nextTemp();
ctx.emit(`${isNaN} = fcmp uno double ${dblValue}, ${dblValue}`);
const result = ctx.nextTemp();
ctx.emit(`${result} = uitofp i1 ${isNaN} to double`);
return result;
}
export function handleNumberIsInteger(
ctx: MethodCallGeneratorContext,
expr: MethodCallNode,
params: string[],
): string {
const value = ctx.generateExpression(expr.args[0], params);
const dblValue = ctx.ensureDouble(value);
const truncated = ctx.emitCall("double", "@llvm.trunc.f64", `double ${dblValue}`);
const isInt = ctx.nextTemp();
ctx.emit(`${isInt} = fcmp oeq double ${dblValue}, ${truncated}`);
const result = ctx.nextTemp();
ctx.emit(`${result} = uitofp i1 ${isInt} to double`);
return result;
}
export function handleNumberToString(
ctx: MethodCallGeneratorContext,
expr: MethodCallNode,
params: string[],
): string {
const numValue = ctx.generateExpression(expr.object, params);
return ctx.stringGen.doConvertNumberToString(numValue);
}
export function handleNumberToFixed(
ctx: MethodCallGeneratorContext,
expr: MethodCallNode,
params: string[],
): string {
if (expr.args.length < 1) {
return ctx.emitError("toFixed() requires 1 argument (digits)", expr.loc);
}
const numValue = ctx.generateExpression(expr.object, params);
const precisionValue = ctx.generateExpression(expr.args[0], params);
return ctx.stringGen.doConvertNumberToFixed(numValue, precisionValue);
}
export function handleCharAt(
ctx: MethodCallGeneratorContext,
expr: MethodCallNode,
params: string[],
): string {
const strPtr = ctx.generateExpression(expr.object, params);
if (expr.args.length !== 1) {
return ctx.emitError("charAt() expects 1 argument, got " + expr.args.length, expr.loc);
}
const indexDouble = ctx.generateExpression(expr.args[0], params);
const indexI32 = convertToI32(ctx, indexDouble);
return ctx.stringGen.doGenerateCharAt(strPtr, indexI32);
}
export function handleCharCodeAt(
ctx: MethodCallGeneratorContext,
expr: MethodCallNode,
params: string[],
): string {
const strPtr = ctx.generateExpression(expr.object, params);
if (expr.args.length !== 1) {
return ctx.emitError("charCodeAt() expects 1 argument, got " + expr.args.length, expr.loc);
}
const indexDouble = ctx.generateExpression(expr.args[0], params);
const indexI32 = convertToI32(ctx, indexDouble);
return ctx.stringGen.doGenerateCharCodeAt(strPtr, indexI32);
}
export function handleToUpperCase(
ctx: MethodCallGeneratorContext,
expr: MethodCallNode,
params: string[],
): string {
const strPtr = ctx.generateExpression(expr.object, params);
return ctx.stringGen.doGenerateToUpperCase(strPtr);
}
export function handleToLowerCase(
ctx: MethodCallGeneratorContext,
expr: MethodCallNode,
params: string[],
): string {
const strPtr = ctx.generateExpression(expr.object, params);
return ctx.stringGen.doGenerateToLowerCase(strPtr);
}
export function handleMatch(
ctx: MethodCallGeneratorContext,
expr: MethodCallNode,
params: string[],
): string {
const strPtr = ctx.generateExpression(expr.object, params);
if (expr.args.length !== 1) {
return ctx.emitError("match() expects 1 argument (a regex), got " + expr.args.length, expr.loc);
}
const regexArg = expr.args[0];
if (regexArg.type === "regex") {
const regexNode = regexArg as RegexNode;
const pattern = regexNode.pattern;
const flags = regexNode.flags || "";
let numGroups = 0;
for (let gi = 0; gi < pattern.length; gi++) {
if (pattern[gi] === "(") {
numGroups = numGroups + 1;
}
}
const regexPtr = ctx.regexGen.generateRegexCompile(pattern, flags);
return ctx.regexGen.generateRegexMatch(regexPtr, strPtr, numGroups);
}
const regexPtr = ctx.generateExpression(regexArg, params);
return ctx.regexGen.generateRegexMatch(regexPtr, strPtr, 9);
}