-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathExpressionHandler.java
More file actions
652 lines (562 loc) · 24.9 KB
/
Copy pathExpressionHandler.java
File metadata and controls
652 lines (562 loc) · 24.9 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
package cod.interpreter.handler;
import cod.ast.node.*;
import cod.debug.DebugSystem;
import cod.error.InternalError;
import cod.error.ProgramError;
import cod.math.AutoStackingNumber;
import cod.interpreter.context.ExecutionContext;
import cod.interpreter.InterpreterVisitor;
import cod.range.NaturalArray;
import cod.range.RangeObjects;
import java.util.*;
public class ExpressionHandler {
private final TypeHandler typeSystem;
private final InterpreterVisitor dispatcher;
public ExpressionHandler(TypeHandler typeSystem, InterpreterVisitor dispatcher) {
if (typeSystem == null) {
throw new InternalError("ExpressionHandler constructed with null typeSystem");
}
if (dispatcher == null) {
throw new InternalError("ExpressionHandler constructed with null dispatcher");
}
this.typeSystem = typeSystem;
this.dispatcher = dispatcher;
}
// === Core Expression Evaluation ===
public Object handleBinaryOp(BinaryOp node, ExecutionContext ctx) {
String timer = startPerfTimer(DebugSystem.Level.TRACE, "expression.handleBinaryOp");
try {
if (node == null) {
throw new InternalError("handleBinaryOp called with null node");
}
if (ctx == null) {
throw new InternalError("handleBinaryOp called with null context");
}
try {
Object left = dispatcher.dispatch(node.left);
Object right = dispatcher.dispatch(node.right);
Object result = null;
switch (node.op) {
case "+":
case "+=":
if (typeSystem.unwrap(left) instanceof TypeHandler.PointerValue
|| typeSystem.unwrap(right) instanceof TypeHandler.PointerValue) {
return handlePointerArithmetic(left, right, true, ctx);
}
if (left instanceof String || right instanceof String ||
left instanceof TextLiteral || right instanceof TextLiteral) {
// === FIX: Force materialization before string conversion ===
Object unwrappedLeft = typeSystem.unwrap(left);
Object unwrappedRight = typeSystem.unwrap(right);
if (unwrappedLeft instanceof NaturalArray) {
NaturalArray arr = (NaturalArray) unwrappedLeft;
if (arr.hasPendingUpdates()) {
arr.commitUpdates();
}
}
if (unwrappedRight instanceof NaturalArray) {
NaturalArray arr = (NaturalArray) unwrappedRight;
if (arr.hasPendingUpdates()) {
arr.commitUpdates();
}
}
result = String.valueOf(unwrappedLeft) + String.valueOf(unwrappedRight);
} else {
result = typeSystem.addNumbers(left, right);
}
break;
case "*":
case "*=":
result = typeSystem.multiplyNumbers(left, right);
break;
case "-":
case "-=":
if (typeSystem.unwrap(left) instanceof TypeHandler.PointerValue
|| typeSystem.unwrap(right) instanceof TypeHandler.PointerValue) {
return handlePointerArithmetic(left, right, false, ctx);
}
result = typeSystem.subtractNumbers(left, right);
break;
case "/":
case "/=":
result = typeSystem.divideNumbers(left, right);
break;
case "%":
result = typeSystem.modulusNumbers(left, right);
break;
case ">":
result = typeSystem.compare(left, right) > 0;
break;
case "<":
result = typeSystem.compare(left, right) < 0;
break;
case ">=":
result = typeSystem.compare(left, right) >= 0;
break;
case "<=":
result = typeSystem.compare(left, right) <= 0;
break;
case "=":
result = right;
break;
case "==":
result = typeSystem.areEqual(left, right);
break;
case "!=":
result = !typeSystem.areEqual(left, right);
break;
case "is":
return handleIsOperator(left, right);
default:
throw new ProgramError("Unknown operator: " + node.op);
}
return result;
} catch (ProgramError e) {
throw e;
} catch (Exception e) {
throw new InternalError("Binary operation failed: " + node.op, e);
}
} finally {
stopPerfTimer(timer);
}
}
public Object handleUnaryOp(Unary node, ExecutionContext ctx) {
if (node == null) {
throw new InternalError("handleUnaryOp called with null node");
}
if (ctx == null) {
throw new InternalError("handleUnaryOp called with null context");
}
try {
if ("&".equals(node.op)) {
ensureUnsafeContext(ctx, "Address-of operator '&'");
if (!(node.operand instanceof IndexAccess)) {
throw new ProgramError("Address-of operator '&' requires an index expression like '&buffer[0]'");
}
return createPointerFromIndexAccess((IndexAccess) node.operand, ctx);
}
Object operand = dispatcher.dispatch(node.operand);
switch (node.op) {
case "-":
return typeSystem.negateNumber(operand);
case "+":
return operand;
case "!":
return !typeSystem.isTruthy(operand);
case "*":
ensureUnsafeContext(ctx, "Pointer dereference '*'");
return dereferencePointer(operand);
default:
throw new ProgramError("Unknown unary operator: " + node.op);
}
} catch (ProgramError e) {
throw e;
} catch (Exception e) {
throw new InternalError("Unary operation failed: " + node.op, e);
}
}
private void ensureUnsafeContext(ExecutionContext ctx, String featureName) {
boolean unsafe = ctx.isUnsafeExecutionContext()
|| (ctx.currentClass != null && ctx.currentClass.isUnsafe);
if (!unsafe) {
throw new ProgramError(featureName + " is only available inside unsafe class/method contexts");
}
}
private TypeHandler.PointerValue createPointerFromIndexAccess(IndexAccess access, ExecutionContext ctx) {
Object container = dispatcher.dispatch(access.array);
container = typeSystem.unwrap(container);
Object indexObj = dispatcher.dispatch(access.index);
indexObj = typeSystem.unwrap(indexObj);
if (container instanceof NaturalArray) {
long idx = toLongIndex(indexObj);
NaturalArray arr = (NaturalArray) container;
if (idx < 0 || idx >= arr.size()) {
throw new ProgramError("Pointer address index out of bounds: " + idx);
}
return new TypeHandler.PointerValue(arr, idx, arr.getElementType());
}
if (container instanceof List) {
long idx = toLongIndex(indexObj);
List<?> list = (List<?>) container;
if (idx < 0 || idx >= list.size()) {
throw new ProgramError("Pointer address index out of bounds: " + idx);
}
String pointedType = "any";
Object pointedValue = list.get((int) idx);
if (pointedValue != null) {
pointedType = typeSystem.getConcreteType(typeSystem.unwrap(pointedValue));
}
return new TypeHandler.PointerValue(list, idx, pointedType);
}
throw new ProgramError("Address-of operator '&' only supports array/list index targets");
}
private Object dereferencePointer(Object pointerObj) {
Object unwrapped = typeSystem.unwrap(pointerObj);
if (!(unwrapped instanceof TypeHandler.PointerValue)) {
throw new ProgramError("Dereference '*' expects a pointer value");
}
TypeHandler.PointerValue pointer = (TypeHandler.PointerValue) unwrapped;
if (pointer.container instanceof NaturalArray) {
return ((NaturalArray) pointer.container).get(pointer.index);
}
if (pointer.container instanceof List) {
List<?> list = (List<?>) pointer.container;
int idx = Math.toIntExact(pointer.index);
if (idx < 0 || idx >= list.size()) {
throw new ProgramError("Pointer dereference out of bounds: " + idx);
}
return list.get(idx);
}
throw new ProgramError("Unsupported pointer target");
}
private Object handlePointerArithmetic(Object left, Object right, boolean addition, ExecutionContext ctx) {
ensureUnsafeContext(ctx, "Pointer arithmetic");
Object leftUnwrapped = typeSystem.unwrap(left);
Object rightUnwrapped = typeSystem.unwrap(right);
TypeHandler.PointerValue pointer;
long offset;
if (leftUnwrapped instanceof TypeHandler.PointerValue && !(rightUnwrapped instanceof TypeHandler.PointerValue)) {
pointer = (TypeHandler.PointerValue) leftUnwrapped;
offset = toLongIndex(rightUnwrapped);
} else if (rightUnwrapped instanceof TypeHandler.PointerValue && !(leftUnwrapped instanceof TypeHandler.PointerValue) && addition) {
pointer = (TypeHandler.PointerValue) rightUnwrapped;
offset = toLongIndex(leftUnwrapped);
} else {
throw new ProgramError("Pointer arithmetic expects pointer +/- integer");
}
long nextIndex = addition ? pointer.index + offset : pointer.index - offset;
if (pointer.container instanceof NaturalArray) {
NaturalArray arr = (NaturalArray) pointer.container;
if (nextIndex < 0 || nextIndex >= arr.size()) {
throw new ProgramError("Pointer arithmetic out of bounds: " + nextIndex);
}
} else if (pointer.container instanceof List) {
int size = ((List<?>) pointer.container).size();
if (nextIndex < 0 || nextIndex >= size) {
throw new ProgramError("Pointer arithmetic out of bounds: " + nextIndex);
}
}
return new TypeHandler.PointerValue(pointer.container, nextIndex, pointer.pointedType);
}
public Object handleTypeCast(TypeCast node, ExecutionContext ctx) {
if (node == null) {
throw new InternalError("handleTypeCast called with null node");
}
if (ctx == null) {
throw new InternalError("handleTypeCast called with null context");
}
try {
Object val = dispatcher.dispatch(node.expression);
if (!typeSystem.validateType(node.targetType, val)) {
return typeSystem.convertType(val, node.targetType);
}
return val;
} catch (ProgramError e) {
throw e;
} catch (Exception e) {
throw new InternalError("Type cast failed to " + node.targetType, e);
}
}
public Object handleBooleanChain(BooleanChain node, ExecutionContext ctx) {
if (node == null) {
throw new InternalError("handleBooleanChain called with null node");
}
if (ctx == null) {
throw new InternalError("handleBooleanChain called with null context");
}
try {
boolean isAll = node.isAll;
for (Expr expr : node.expressions) {
Object result = dispatcher.dispatch(expr);
result = typeSystem.unwrap(result);
boolean isTruthy = typeSystem.isTruthy(result);
if (isAll) {
if (!isTruthy) return false;
} else {
if (isTruthy) return true;
}
}
return isAll;
} catch (ProgramError e) {
throw e;
} catch (Exception e) {
throw new InternalError("Boolean chain evaluation failed", e);
}
}
public Object handleChainedComparison(ChainedComparison node, ExecutionContext ctx) {
if (node == null) {
throw new InternalError("handleChainedComparison called with null node");
}
if (ctx == null) {
throw new InternalError("handleChainedComparison called with null context");
}
try {
// Evaluate all expressions first
List<Object> values = new ArrayList<Object>();
for (Expr expr : node.expressions) {
Object value = dispatcher.dispatch(expr);
values.add(typeSystem.unwrap(value));
}
for (int i = 0; i < node.operators.size(); i++) {
String op = node.operators.get(i);
Object left = values.get(i);
Object right = values.get(i + 1);
boolean comparisonResult;
switch (op) {
case "==":
comparisonResult = typeSystem.areEqual(left, right);
break;
case "!=":
comparisonResult = !typeSystem.areEqual(left, right);
break;
case ">":
comparisonResult = typeSystem.compare(left, right) > 0;
break;
case "<":
comparisonResult = typeSystem.compare(left, right) < 0;
break;
case ">=":
comparisonResult = typeSystem.compare(left, right) >= 0;
break;
case "<=":
comparisonResult = typeSystem.compare(left, right) <= 0;
break;
default:
throw new ProgramError("Unknown comparison operator in chain: " + op);
}
if (!comparisonResult) {
return false;
}
}
return true;
} catch (ProgramError e) {
throw e;
} catch (Exception e) {
throw new InternalError("Chained comparison evaluation failed", e);
}
}
public Object handleEqualityChain(EqualityChain node, ExecutionContext ctx) {
if (node == null) {
throw new InternalError("handleEqualityChain called with null node");
}
if (ctx == null) {
throw new InternalError("handleEqualityChain called with null context");
}
try {
Object leftValue = dispatcher.dispatch(node.left);
leftValue = typeSystem.unwrap(leftValue);
for (Expr arg : node.chainArguments) {
Object rightValue = dispatcher.dispatch(arg);
rightValue = typeSystem.unwrap(rightValue);
boolean comparisonResult;
switch (node.operator) {
case "==":
comparisonResult = typeSystem.areEqual(leftValue, rightValue);
break;
case "!=":
comparisonResult = !typeSystem.areEqual(leftValue, rightValue);
break;
case ">":
comparisonResult = typeSystem.compare(leftValue, rightValue) > 0;
break;
case "<":
comparisonResult = typeSystem.compare(leftValue, rightValue) < 0;
break;
case ">=":
comparisonResult = typeSystem.compare(leftValue, rightValue) >= 0;
break;
case "<=":
comparisonResult = typeSystem.compare(leftValue, rightValue) <= 0;
break;
default:
throw new ProgramError(
"Unknown comparison operator in equality chain: " + node.operator);
}
if (node.isAllChain) {
if (!comparisonResult) {
return false;
}
} else {
if (comparisonResult) {
return true;
}
}
}
return node.isAllChain;
} catch (ProgramError e) {
throw e;
} catch (Exception e) {
throw new InternalError("Equality chain evaluation failed", e);
}
}
// === Type/Value Conversion ===
public long toLong(Object obj) {
try {
if (obj instanceof AutoStackingNumber) {
return ((AutoStackingNumber) obj).longValue();
}
if (obj instanceof IntLiteral) {
return ((IntLiteral) obj).value.longValue();
}
if (obj instanceof Integer) return ((Integer) obj).longValue();
if (obj instanceof Long) return (Long) obj;
throw new ProgramError("Cannot convert to long: " +
(obj != null ? obj.getClass().getSimpleName() + " with value " + obj : "null"));
} catch (ProgramError e) {
throw e;
} catch (Exception e) {
throw new InternalError("Long conversion failed", e);
}
}
public long toLongIndex(Object indexObj) {
if (indexObj == null) {
throw new ProgramError("Array index cannot be null");
}
try {
if (indexObj instanceof AutoStackingNumber) {
AutoStackingNumber num = (AutoStackingNumber) indexObj;
try {
return num.longValue();
} catch (ArithmeticException e) {
throw new ProgramError(
"Array index must be an exact integer, got: " + num);
}
}
if (indexObj instanceof IntLiteral) {
return ((IntLiteral) indexObj).value.longValue();
}
if (indexObj instanceof Integer) {
return ((Integer) indexObj).longValue();
}
if (indexObj instanceof Long) {
return (Long) indexObj;
}
if (indexObj instanceof Double || indexObj instanceof Float) {
double d = ((Number) indexObj).doubleValue();
if (d != Math.floor(d)) {
throw new ProgramError("Array index must be integer, got: Double (" + d + ")");
}
return (long) d;
}
if (RangeObjects.isRangeSpec(indexObj)) {
throw new ProgramError("Cannot use range as index for single element access");
}
if (RangeObjects.isMultiRangeSpec(indexObj)) {
throw new ProgramError("Cannot use multi-range as index for single element access");
}
throw new ProgramError(
"Array index must be integer, got: " +
(indexObj != null ? indexObj.getClass().getSimpleName() : "null"));
} catch (ProgramError e) {
throw e;
} catch (Exception e) {
throw new InternalError("Index conversion failed", e);
}
}
public int toIntIndex(Object indexObj) {
if (indexObj == null) {
throw new ProgramError("Array index cannot be null");
}
try {
if (indexObj instanceof AutoStackingNumber) {
return (int) ((AutoStackingNumber) indexObj).longValue();
}
if (indexObj instanceof IntLiteral) {
long val = ((IntLiteral) indexObj).value.longValue();
if (val > Integer.MAX_VALUE || val < Integer.MIN_VALUE) {
throw new ProgramError("Index out of range for integer array: " + val);
}
return (int) val;
}
if (indexObj instanceof Integer) return (Integer) indexObj;
if (indexObj instanceof Long) {
long val = (Long) indexObj;
if (val > Integer.MAX_VALUE || val < Integer.MIN_VALUE) {
throw new ProgramError("Long index " + val + " cannot fit in int");
}
return (int) val;
}
throw new ProgramError("Array index must be integer, got: " +
(indexObj != null ? indexObj.getClass().getSimpleName() : "null"));
} catch (ProgramError e) {
throw e;
} catch (Exception e) {
throw new InternalError("Int index conversion failed", e);
}
}
public long calculateStep(Object range) {
if (range == null) {
throw new InternalError("calculateStep called with null range");
}
try {
Object step = RangeObjects.getStep(range);
Object startObj = RangeObjects.getStart(range);
Object endObj = RangeObjects.getEnd(range);
if (step != null) {
return toLongIndex(step);
}
long start = toLongIndex(startObj);
long end = toLongIndex(endObj);
if (start == end) return 1L;
return (start < end) ? 1L : -1L;
} catch (ProgramError e) {
throw e;
} catch (Exception e) {
throw new InternalError("Step calculation failed", e);
}
}
// === Type Checking ===
private Object handleIsOperator(Object leftValue, Object rightValue) {
try {
leftValue = typeSystem.unwrap(leftValue);
rightValue = typeSystem.unwrap(rightValue);
if (rightValue instanceof TypeHandler.Value) {
TypeHandler.Value typeVal = (TypeHandler.Value) rightValue;
if (typeVal.isTypeValue()) {
return typeVal.matches(leftValue);
}
}
if (rightValue instanceof String) {
String typeString = (String) rightValue;
if (typeSystem.isTypeLiteral(typeString)) {
String leftType = typeSystem.getConcreteType(leftValue);
return typeString.equals(leftType);
}
if (typeString.startsWith("[") || typeString.startsWith("(") || typeString.contains("|")) {
return typeSystem.validateType(typeString, leftValue);
}
}
if (rightValue instanceof TextLiteral) {
String typeString = ((TextLiteral) rightValue).value;
if (typeSystem.isTypeLiteral(typeString)) {
String leftType = typeSystem.getConcreteType(leftValue);
return typeString.equals(leftType);
}
if (typeString.startsWith("[") || typeString.startsWith("(") || typeString.contains("|")) {
return typeSystem.validateType(typeString, leftValue);
}
}
return typeSystem.areEqual(leftValue, rightValue);
} catch (ProgramError e) {
throw e;
} catch (Exception e) {
throw new InternalError("'is' operator evaluation failed", e);
}
}
private static boolean isTimerEnabled(DebugSystem.Level level) {
DebugSystem.Level current = DebugSystem.getLevel();
return current != DebugSystem.Level.OFF && current.getLevel() >= level.getLevel();
}
private static String startPerfTimer(DebugSystem.Level level, String operation) {
if (!isTimerEnabled(level)) {
return null;
}
DebugSystem.startTimer(level, operation);
return operation;
}
private static void stopPerfTimer(String timerName) {
if (timerName != null) {
DebugSystem.stopTimer(timerName);
}
}
}