summary refs log tree commit diff stats
path: root/nim/evals.pas
blob: b7edc43edc47287a46b23e3b82aeaa4b8db97c53 (plain) (blame)
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
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
//
//
//           The Nimrod Compiler
//        (c) Copyright 2009 Andreas Rumpf
//
//    See the file "copying.txt", included in this
//    distribution, for details about the copyright.
//
unit evals;

// This file implements the evaluator for Nimrod code.
// The evaluator is very slow, but simple. Since this
// is used mainly for evaluating macros and some other
// stuff at compile time, performance is not that
// important.

interface

{$include 'config.inc'}

uses
  sysutils, nsystem, charsets, strutils, magicsys,
  lists, options, ast, astalgo, trees, treetab, nimsets,
  msgs, nos, condsyms, idents, rnimsyn, types, passes, semfold;

type
  PStackFrame = ^TStackFrame;
  TStackFrame = record
    mapping: TIdNodeTable; // mapping from symbols to nodes
    prc: PSym;             // current prc; proc that is evaluated
    call: PNode;
    next: PStackFrame;     // for stacking
    params: TNodeSeq;      // parameters passed to the proc
  end;
  
  TEvalContext = object(passes.TPassContext)
    module: PSym;
    tos: PStackFrame; // top of stack
    lastException: PNode;
    optEval: bool; // evaluation done for optimization purposes
  end;
  PEvalContext = ^TEvalContext;

function newStackFrame(): PStackFrame;
procedure pushStackFrame(c: PEvalContext; t: PStackFrame);
procedure popStackFrame(c: PEvalContext);

function newEvalContext(module: PSym; const filename: string;
                        optEval: bool): PEvalContext;

function eval(c: PEvalContext; n: PNode): PNode; 
// eval never returns nil! This simplifies the code a lot and
// makes it faster too.

function evalConstExpr(module: PSym; e: PNode): PNode;

function evalPass(): TPass;

implementation

const
  evalMaxIterations = 10000000; // max iterations of all loops
  evalMaxRecDepth = 100000;     // max recursion depth for evaluation

var
  emptyNode: PNode;

function newStackFrame(): PStackFrame;
begin
  new(result);
{@ignore}
  fillChar(result^, sizeof(result^), 0);
{@emit}
  initIdNodeTable(result.mapping);
{@emit result.params := @[];}
end;

function newEvalContext(module: PSym; const filename: string;
                        optEval: bool): PEvalContext;
begin
  new(result);
{@ignore}
  fillChar(result^, sizeof(result^), 0);
{@emit}
  result.module := module;
  result.optEval := optEval;
end;

procedure pushStackFrame(c: PEvalContext; t: PStackFrame);
begin
  t.next := c.tos;
  c.tos := t;
end;

procedure popStackFrame(c: PEvalContext);
begin
  if (c.tos = nil) then InternalError('popStackFrame');
  c.tos := c.tos.next;
end;

function evalAux(c: PEvalContext; n: PNode): PNode; forward;

procedure stackTraceAux(x: PStackFrame);
begin
  if x <> nil then begin
    stackTraceAux(x.next);
    messageOut(format('file: $1, line: $2', [toFilename(x.call.info),
                    toString(toLineNumber(x.call.info))]));
  end
end;

procedure stackTrace(c: PEvalContext; n: PNode; msg: TMsgKind;
                     const arg: string = '');
begin
  messageOut('stack trace: (most recent call last)');
  stackTraceAux(c.tos);
  liMessage(n.info, msg, arg);
end;

function isSpecial(n: PNode): bool;
begin
  result := (n.kind = nkExceptBranch) or (n.kind = nkEmpty)
end;

function evalIf(c: PEvalContext; n: PNode): PNode;
var
  i, len: int;
begin
  i := 0;
  len := sonsLen(n);
  while (i < len) and (sonsLen(n.sons[i]) >= 2) do begin
    result := evalAux(c, n.sons[i].sons[0]);
    if isSpecial(result) then exit;
    if (result.kind = nkIntLit) and (result.intVal <> 0) then begin
      result := evalAux(c, n.sons[i].sons[1]);
      exit
    end;
    inc(i)
  end;
  if (i < len) and (sonsLen(n.sons[i]) < 2) then // eval else-part
    result := evalAux(c, n.sons[i].sons[0])
  else
    result := emptyNode
end;

function evalCase(c: PEvalContext; n: PNode): PNode;
var
  i, j: int;
  res: PNode;
begin
  result := evalAux(c, n.sons[0]);
  if isSpecial(result) then exit;
  res := result;
  result := emptyNode;
  for i := 1 to sonsLen(n)-1 do begin
    if n.sons[i].kind = nkOfBranch then begin
      for j := 0 to sonsLen(n.sons[i])-2 do begin
        if overlap(res, n.sons[i].sons[j]) then begin
          result := evalAux(c, lastSon(n.sons[i]));
          exit
        end
      end
    end
    else begin
      result := evalAux(c, lastSon(n.sons[i]));
    end
  end;
end;

var
  gWhileCounter: int;  // Use a counter to prevent endless loops!
                       // We make this counter global, because otherwise
                       // nested loops could make the compiler extremely slow.
  gNestedEvals: int;   // count the recursive calls to ``evalAux`` to prevent
                       // endless recursion

function evalWhile(c: PEvalContext; n: PNode): PNode;
begin
  while true do begin
    result := evalAux(c, n.sons[0]);
    if isSpecial(result) then exit;
    if getOrdValue(result) = 0 then break;
    result := evalAux(c, n.sons[1]);
    case result.kind of
      nkBreakStmt: begin
        if result.sons[0] = nil then begin
          result := emptyNode; // consume ``break`` token
          break
        end
      end;
      nkExceptBranch, nkReturnToken, nkEmpty: break;
      else begin end
    end;
    dec(gWhileCounter);
    if gWhileCounter <= 0 then begin
      stackTrace(c, n, errTooManyIterations);
      break;
    end
  end
end;

function evalBlock(c: PEvalContext; n: PNode): PNode;
begin
  result := evalAux(c, n.sons[1]);
  if result.kind = nkBreakStmt then begin
    if result.sons[0] <> nil then begin
      assert(result.sons[0].kind = nkSym);
      if n.sons[0] <> nil then begin
        assert(n.sons[0].kind = nkSym);
        if result.sons[0].sym.id = n.sons[0].sym.id then
          result := emptyNode
      end
    end
    else
      result := emptyNode // consume ``break`` token
  end
end;

function evalFinally(c: PEvalContext; n, exc: PNode): PNode;
var
  finallyNode: PNode;
begin
  finallyNode := lastSon(n);
  if finallyNode.kind = nkFinally then begin
    result := evalAux(c, finallyNode);
    if result.kind <> nkExceptBranch then
      result := exc
  end
  else
    result := exc
end;

function evalTry(c: PEvalContext; n: PNode): PNode;
var
  exc: PNode;
  i, j, len, blen: int;
begin
  result := evalAux(c, n.sons[0]);
  case result.kind of
    nkBreakStmt, nkReturnToken: begin end;
    nkExceptBranch: begin
      if sonsLen(result) >= 1 then begin
        // creating a nkExceptBranch without sons means that it could not be
        // evaluated
        exc := result;
        i := 1;
        len := sonsLen(n);
        while (i < len) and (n.sons[i].kind = nkExceptBranch) do begin
          blen := sonsLen(n.sons[i]);
          if blen = 1 then begin
            // general except section:
            result := evalAux(c, n.sons[i].sons[0]);
            exc := result;
            break
          end
          else begin
            for j := 0 to blen-2 do begin
              assert(n.sons[i].sons[j].kind = nkType);
              if exc.typ.id = n.sons[i].sons[j].typ.id then begin
                result := evalAux(c, n.sons[i].sons[blen-1]);
                exc := result;
                break
              end
            end
          end;
          inc(i);
        end;
        result := evalFinally(c, n, exc);
      end
    end
    else
      result := evalFinally(c, n, emptyNode);
  end
end;

function getNullValue(typ: PType; const info: TLineInfo): PNode;
var
  i: int;
  t: PType;
begin
  t := skipTypes(typ, abstractRange);
  result := emptyNode;
  case t.kind of
    tyBool, tyChar, tyInt..tyInt64: result := newNodeIT(nkIntLit, info, t);
    tyFloat..tyFloat128: result := newNodeIt(nkFloatLit, info, t);
    tyVar, tyPointer, tyPtr, tyRef, tyCString, tySequence, tyString, tyExpr,
    tyStmt, tyTypeDesc:
      result := newNodeIT(nkNilLit, info, t);
    tyObject: begin
      result := newNodeIT(nkPar, info, t);
      internalError(info, 'init to implement');
      // XXX
    end;
    tyArray, tyArrayConstr: begin
      result := newNodeIT(nkBracket, info, t);
      for i := 0 to int(lengthOrd(t))-1 do
        addSon(result, getNullValue(elemType(t), info));
    end;
    tyTuple: begin
      result := newNodeIT(nkPar, info, t);
      for i := 0 to sonsLen(t)-1 do
        addSon(result, getNullValue(t.sons[i], info));
    end;
    else InternalError('getNullValue')
  end
end;

function evalVar(c: PEvalContext; n: PNode): PNode;
var
  i: int;
  v: PSym;
  a: PNode;
begin
  for i := 0 to sonsLen(n)-1 do begin
    a := n.sons[i];
    if a.kind = nkCommentStmt then continue;
    assert(a.kind = nkIdentDefs);
    assert(a.sons[0].kind = nkSym);
    v := a.sons[0].sym;
    if a.sons[2] <> nil then begin
      result := evalAux(c, a.sons[2]);
      if isSpecial(result) then exit;
    end
    else
      result := getNullValue(a.sons[0].typ, a.sons[0].info);
    IdNodeTablePut(c.tos.mapping, v, result);
  end;
  result := emptyNode;
end;

function evalCall(c: PEvalContext; n: PNode): PNode;
var
  d: PStackFrame;
  prc: PNode;
  i: int;
begin
  result := evalAux(c, n.sons[0]);
  if isSpecial(result) then exit;
  prc := result;
  // bind the actual params to the local parameter
  // of a new binding
  d := newStackFrame();
  d.call := n;
  if prc.kind = nkSym then begin
    d.prc := prc.sym;
    if not (prc.sym.kind in [skProc, skConverter]) then
      InternalError(n.info, 'evalCall');
  end;
  setLength(d.params, sonsLen(n));
  for i := 1 to sonsLen(n)-1 do begin
    result := evalAux(c, n.sons[i]);
    if isSpecial(result) then exit;
    d.params[i] := result;
  end;
  if n.typ <> nil then d.params[0] := getNullValue(n.typ, n.info);
  pushStackFrame(c, d);
  result := evalAux(c, prc);
  if isSpecial(result) then exit;
  if n.typ <> nil then result := d.params[0];
  popStackFrame(c);
end;

function evalVariable(c: PStackFrame; sym: PSym): PNode;
// We need to return a node to the actual value,
// which can be modified.
var
  x: PStackFrame;
begin
  x := c;
  while x <> nil do begin
    if sfResult in sym.flags then begin
      result := x.params[0];
      if result = nil then result := emptyNode;
      exit
    end;
    result := IdNodeTableGet(x.mapping, sym);
    if result <> nil then exit;
    x := x.next
  end;
  result := emptyNode;
end;

function evalArrayAccess(c: PEvalContext; n: PNode): PNode;
var
  x: PNode;
  idx: biggestInt;
begin
  result := evalAux(c, n.sons[0]);
  if isSpecial(result) then exit;
  x := result;
  result := evalAux(c, n.sons[1]);
  if isSpecial(result) then exit;
  idx := getOrdValue(result);
  result := emptyNode;
  case x.kind of
    nkBracket, nkPar, nkMetaNode: begin
      if (idx >= 0) and (idx < sonsLen(x)) then
        result := x.sons[int(idx)]
      else
        stackTrace(c, n, errIndexOutOfBounds);
    end;
    nkStrLit..nkTripleStrLit: begin
      result := newNodeIT(nkCharLit, x.info, getSysType(tyChar));
      if (idx >= 0) and (idx < length(x.strVal)) then
        result.intVal := ord(x.strVal[int(idx)+strStart])
      else if idx = length(x.strVal) then begin end
      else
        stackTrace(c, n, errIndexOutOfBounds);
    end;
    else
      stackTrace(c, n, errNilAccess);
  end
end;

function evalFieldAccess(c: PEvalContext; n: PNode): PNode;
// a real field access; proc calls have already been
// transformed
// XXX: field checks!
var
  x: PNode;
  field: PSym;
  i: int;
begin
  result := evalAux(c, n.sons[0]);
  if isSpecial(result) then exit;
  x := result;
  if x.kind <> nkPar then InternalError(n.info, 'evalFieldAccess');
  field := n.sons[1].sym;
  for i := 0 to sonsLen(n)-1 do begin
    if x.sons[i].kind <> nkExprColonExpr then
      InternalError(n.info, 'evalFieldAccess');
    if x.sons[i].sons[0].sym.name.id = field.id then begin
      result := x.sons[i].sons[1]; exit
    end
  end;
  stackTrace(c, n, errFieldXNotFound, field.name.s);
  result := emptyNode;
end;

function evalAsgn(c: PEvalContext; n: PNode): PNode;
var
  x: PNode;
  i: int;
begin
  result := evalAux(c, n.sons[0]);
  if isSpecial(result) then exit;
  x := result;
  result := evalAux(c, n.sons[1]);
  if isSpecial(result) then exit;
  x.kind := result.kind;
  x.typ := result.typ;
  case x.kind of
    nkCharLit..nkInt64Lit: x.intVal := result.intVal;
    nkFloatLit..nkFloat64Lit: x.floatVal := result.floatVal;
    nkStrLit..nkTripleStrLit: begin
      x.strVal := result.strVal;
    end
    else begin
      if not (x.kind in [nkEmpty..nkNilLit]) then begin
        discardSons(x);
        for i := 0 to sonsLen(result)-1 do addSon(x, result.sons[i]);
      end
    end
  end;
  result := emptyNode
end;

function evalSwap(c: PEvalContext; n: PNode): PNode;
var
  x: PNode;
  i: int;
  tmpi: biggestInt;
  tmpf: biggestFloat;
  tmps: string;
  tmpn: PNode;
begin
  result := evalAux(c, n.sons[0]);
  if isSpecial(result) then exit;
  x := result;
  result := evalAux(c, n.sons[1]);
  if isSpecial(result) then exit;
  if (x.kind <> result.kind) then
    stackTrace(c, n, errCannotInterpretNodeX, nodeKindToStr[n.kind])
  else begin
    case x.kind of
      nkCharLit..nkInt64Lit: begin
        tmpi := x.intVal;
        x.intVal := result.intVal;
        result.intVal := tmpi
      end;
      nkFloatLit..nkFloat64Lit: begin
        tmpf := x.floatVal;
        x.floatVal := result.floatVal;
        result.floatVal := tmpf;
      end;
      nkStrLit..nkTripleStrLit: begin
        tmps := x.strVal;
        x.strVal := result.strVal;
        result.strVal := tmps;
      end
      else begin
        tmpn := copyTree(x);
        discardSons(x);
        for i := 0 to sonsLen(result)-1 do
          addSon(x, result.sons[i]);
        discardSons(result);
        for i := 0 to sonsLen(tmpn)-1 do
          addSon(result, tmpn.sons[i]);
      end
    end
  end;
  result := emptyNode
end;

function evalSym(c: PEvalContext; n: PNode): PNode;
begin
  case n.sym.kind of
    skProc, skConverter, skMacro: result := n.sym.ast.sons[codePos];
    skVar, skForVar, skTemp: result := evalVariable(c.tos, n.sym);
    skParam: result := c.tos.params[n.sym.position+1];
    skConst: result := n.sym.ast;
    else begin
      stackTrace(c, n, errCannotInterpretNodeX, symKindToStr[n.sym.kind]);
      result := emptyNode
    end
  end;
  if result = nil then 
    stackTrace(c, n, errCannotInterpretNodeX, n.sym.name.s);
end;

function evalIncDec(c: PEvalContext; n: PNode; sign: biggestInt): PNode;
var
  a, b: PNode;
begin
  result := evalAux(c, n.sons[1]);
  if isSpecial(result) then exit;
  a := result;
  result := evalAux(c, n.sons[2]);
  if isSpecial(result) then exit;
  b := result;
  case a.kind of
    nkCharLit..nkInt64Lit: a.intval := a.intVal + sign * getOrdValue(b);
    else internalError(n.info, 'evalIncDec');
  end;
  result := emptyNode
end;

function getStrValue(n: PNode): string;
begin
  case n.kind of
    nkStrLit..nkTripleStrLit: result := n.strVal;
    else begin InternalError(n.info, 'getStrValue'); result := '' end;
  end
end;

function evalEcho(c: PEvalContext; n: PNode): PNode;
var
  i: int;
begin
  for i := 1 to sonsLen(n)-1 do begin
    result := evalAux(c, n.sons[i]);
    if isSpecial(result) then exit;
    Write(output, getStrValue(result));
  end;
  writeln(output, '');
  result := emptyNode
end;

function evalExit(c: PEvalContext; n: PNode): PNode;
begin
  result := evalAux(c, n.sons[1]);
  if isSpecial(result) then exit;
  liMessage(n.info, hintQuitCalled);
  halt(int(getOrdValue(result)));
end;

function evalOr(c: PEvalContext; n: PNode): PNode;
begin
  result := evalAux(c, n.sons[1]);
  if isSpecial(result) then exit;
  if result.kind <> nkIntLit then InternalError(n.info, 'evalOr');
  if result.intVal = 0 then result := evalAux(c, n.sons[2])
end;

function evalAnd(c: PEvalContext; n: PNode): PNode;
begin
  result := evalAux(c, n.sons[1]);
  if isSpecial(result) then exit;
  if result.kind <> nkIntLit then InternalError(n.info, 'evalAnd');
  if result.intVal <> 0 then result := evalAux(c, n.sons[2])
end;

function evalNoOpt(c: PEvalContext; n: PNode): PNode;
begin
  result := newNodeI(nkExceptBranch, n.info);
  // creating a nkExceptBranch without sons means that it could not be
  // evaluated
end;

function evalNew(c: PEvalContext; n: PNode): PNode;
var
  t: PType;
begin
  if c.optEval then 
    result := evalNoOpt(c, n)
  else begin
    t := skipTypes(n.sons[1].typ, abstractVar);
    result := newNodeIT(nkRefTy, n.info, t);
    addSon(result, getNullValue(t.sons[0], n.info));
  end
end;

function evalDeref(c: PEvalContext; n: PNode): PNode;
begin
  result := evalAux(c, n.sons[0]);
  if isSpecial(result) then exit;
  case result.kind of
    nkNilLit: stackTrace(c, n, errNilAccess);
    nkRefTy: result := result.sons[0];
    else InternalError(n.info, 'evalDeref ' + nodeKindToStr[result.kind]);
  end;
end;

function evalAddr(c: PEvalContext; n: PNode): PNode;
var
  a: PNode;
  t: PType;
begin
  result := evalAux(c, n.sons[0]);
  if isSpecial(result) then exit;
  a := result;
  t := newType(tyPtr, c.module);
  addSon(t, a.typ);
  result := newNodeIT(nkRefTy, n.info, t);
  addSon(result, a);
end;

function evalConv(c: PEvalContext; n: PNode): PNode;
begin
  // hm, I cannot think of any conversions that need to be handled here...
  result := evalAux(c, n.sons[1]);
  result.typ := n.typ;
end;

function evalCheckedFieldAccess(c: PEvalContext; n: PNode): PNode;
begin
  result := evalAux(c, n.sons[0]);
end;

function evalUpConv(c: PEvalContext; n: PNode): PNode;
var
  dest, src: PType;
begin
  result := evalAux(c, n.sons[0]);
  if isSpecial(result) then exit;
  dest := skipTypes(n.typ, abstractPtrs);
  src := skipTypes(result.typ, abstractPtrs);
  if inheritanceDiff(src, dest) > 0 then
    stackTrace(c, n, errInvalidConversionFromTypeX, typeToString(src));
end;

function evalRangeChck(c: PEvalContext; n: PNode): PNode;
var
  x, a, b: PNode;
begin
  result := evalAux(c, n.sons[0]);
  if isSpecial(result) then exit;
  x := result;
  result := evalAux(c, n.sons[1]);
  if isSpecial(result) then exit;
  a := result;
  result := evalAux(c, n.sons[2]);
  if isSpecial(result) then exit;
  b := result;

  if leValueConv(a, x) and leValueConv(x, b) then begin
    result := x; // a <= x and x <= b
    result.typ := n.typ
  end
  else
    stackTrace(c, n, errGenerated,
      format(msgKindToString(errIllegalConvFromXtoY),
        [typeToString(n.sons[0].typ), typeToString(n.typ)]));
end;

function evalConvStrToCStr(c: PEvalContext; n: PNode): PNode;
begin
  result := evalAux(c, n.sons[0]);
  if isSpecial(result) then exit;
  result.typ := n.typ;
end;

function evalConvCStrToStr(c: PEvalContext; n: PNode): PNode;
begin
  result := evalAux(c, n.sons[0]);
  if isSpecial(result) then exit;
  result.typ := n.typ;
end;

function evalRaise(c: PEvalContext; n: PNode): PNode;
var
  a: PNode;
begin
  if n.sons[0] <> nil then begin
    result := evalAux(c, n.sons[0]);
    if isSpecial(result) then exit;
    a := result;
    result := newNodeIT(nkExceptBranch, n.info, a.typ);
    addSon(result, a);
    c.lastException := result;
  end
  else if c.lastException <> nil then
    result := c.lastException
  else begin
    stackTrace(c, n, errExceptionAlreadyHandled);
    result := newNodeIT(nkExceptBranch, n.info, nil);
    addSon(result, nil);
  end
end;

function evalReturn(c: PEvalContext; n: PNode): PNode;
begin
  if n.sons[0] <> nil then begin
    result := evalAsgn(c, n.sons[0]);
    if isSpecial(result) then exit;
  end;
  result := newNodeIT(nkReturnToken, n.info, nil);
end;

function evalProc(c: PEvalContext; n: PNode): PNode;
var
  v: PSym;
begin
  if n.sons[genericParamsPos] = nil then begin
    if (resultPos < sonsLen(n)) and (n.sons[resultPos] <> nil) then begin
      v := n.sons[resultPos].sym;
      result := getNullValue(v.typ, n.info);
      IdNodeTablePut(c.tos.mapping, v, result);
    end;
    result := evalAux(c, n.sons[codePos]);
    if result.kind = nkReturnToken then
      result := IdNodeTableGet(c.tos.mapping, v);
  end
  else
    result := emptyNode
end;

function evalHigh(c: PEvalContext; n: PNode): PNode;
begin
  result := evalAux(c, n.sons[1]);
  if isSpecial(result) then exit;
  case skipTypes(n.sons[1].typ, abstractVar).kind of
    tyOpenArray, tySequence:
      result := newIntNodeT(sonsLen(result), n);
    tyString:
      result := newIntNodeT(length(result.strVal)-1, n);
    else InternalError(n.info, 'evalHigh')
  end
end;

function evalIs(c: PEvalContext; n: PNode): PNode;
begin
  result := evalAux(c, n.sons[1]);
  if isSpecial(result) then exit;
  result := newIntNodeT(ord(inheritanceDiff(result.typ, n.sons[2].typ) >= 0), n)
end;

function evalSetLengthStr(c: PEvalContext; n: PNode): PNode;
var
  a, b: PNode;
  oldLen, newLen: int;
begin
  result := evalAux(c, n.sons[1]);
  if isSpecial(result) then exit;
  a := result;
  result := evalAux(c, n.sons[2]);
  if isSpecial(result) then exit;
  b := result;
  case a.kind of
    nkStrLit..nkTripleStrLit: begin
    {@ignore}
      oldLen := length(a.strVal);
    {@emit}
      newLen := int(getOrdValue(b));
      setLength(a.strVal, newLen);
    {@ignore}
      FillChar(a.strVal[oldLen+1], newLen-oldLen, 0);
    {@emit}
    end
    else InternalError(n.info, 'evalSetLengthStr')
  end;
  result := emptyNode
end;

function evalSetLengthSeq(c: PEvalContext; n: PNode): PNode;
var
  a, b: PNode;
  newLen, oldLen, i: int;
begin
  result := evalAux(c, n.sons[1]);
  if isSpecial(result) then exit;
  a := result;
  result := evalAux(c, n.sons[2]);
  if isSpecial(result) then exit;
  b := result;
  if a.kind <> nkBracket then InternalError(n.info, 'evalSetLengthSeq');
  newLen := int(getOrdValue(b));
  oldLen := sonsLen(a);
  setLength(a.sons, newLen);
  for i := oldLen to newLen-1 do
    a.sons[i] := getNullValue(skipTypes(n.sons[1].typ, abstractVar), n.info);
  result := emptyNode
end;

function evalNewSeq(c: PEvalContext; n: PNode): PNode;
var
  a, b: PNode;
  t: PType;
  i: int;
begin
  result := evalAux(c, n.sons[1]);
  if isSpecial(result) then exit;
  a := result;
  result := evalAux(c, n.sons[2]);
  if isSpecial(result) then exit;
  b := result;

  t := skipTypes(n.sons[1].typ, abstractVar);
  if a.kind = nkEmpty then InternalError(n.info, 'first parameter is empty');
  a.kind := nkBracket;
  a.info := n.info;
  a.typ := t;
  for i := 0 to int(getOrdValue(b))-1 do
    addSon(a, getNullValue(t.sons[0], n.info));
  result := emptyNode
end;

function evalAssert(c: PEvalContext; n: PNode): PNode;
begin
  result := evalAux(c, n.sons[1]);
  if isSpecial(result) then exit;
  if getOrdValue(result) <> 0 then
    result := emptyNode
  else
    stackTrace(c, n, errAssertionFailed)
end;

function evalIncl(c: PEvalContext; n: PNode): PNode;
var
  a, b: PNode;
begin
  result := evalAux(c, n.sons[1]);
  if isSpecial(result) then exit;
  a := result;
  result := evalAux(c, n.sons[2]);
  if isSpecial(result) then exit;
  b := result;
  if not inSet(a, b) then addSon(a, copyTree(b));
  result := emptyNode;
end;

function evalExcl(c: PEvalContext; n: PNode): PNode;
var
  a, b, r: PNode;
  i: int;
begin
  result := evalAux(c, n.sons[1]);
  if isSpecial(result) then exit;
  a := result;
  result := evalAux(c, n.sons[2]);
  if isSpecial(result) then exit;
  b := newNodeIT(nkCurly, n.info, n.sons[1].typ);
  addSon(b, result);
  r := diffSets(a, b);
  discardSons(a);
  for i := 0 to sonsLen(r)-1 do addSon(a, r.sons[i]);
  result := emptyNode;
end;

function evalAppendStrCh(c: PEvalContext; n: PNode): PNode;
var
  a, b: PNode;
begin
  result := evalAux(c, n.sons[1]);
  if isSpecial(result) then exit;
  a := result;
  result := evalAux(c, n.sons[2]);
  if isSpecial(result) then exit;
  b := result;
  case a.kind of
    nkStrLit..nkTripleStrLit: addChar(a.strVal, chr(int(getOrdValue(b))));
    else InternalError(n.info, 'evalAppendStrCh');
  end;
  result := emptyNode;
end;

function evalConStrStr(c: PEvalContext; n: PNode): PNode;
// we cannot use ``evalOp`` for this as we can here have more than 2 arguments
var
  a: PNode;
  i: int;
begin
  result := evalAux(c, n.sons[1]);
  if isSpecial(result) then exit;
  a := result;
  for i := 2 to sonsLen(n)-1 do begin
    result := evalAux(c, n.sons[i]);
    if isSpecial(result) then exit;
    a.strVal := getStrValue(a) +{&} getStrValue(result);
  end;
  result := a;
end;

function evalAppendStrStr(c: PEvalContext; n: PNode): PNode;
var
  a, b: PNode;
begin
  result := evalAux(c, n.sons[1]);
  if isSpecial(result) then exit;
  a := result;
  result := evalAux(c, n.sons[2]);
  if isSpecial(result) then exit;
  b := result;
  case a.kind of
    nkStrLit..nkTripleStrLit: a.strVal := a.strVal +{&} getStrValue(b);
    else InternalError(n.info, 'evalAppendStrStr');
  end;
  result := emptyNode;
end;

function evalAppendSeqElem(c: PEvalContext; n: PNode): PNode;
var
  a, b: PNode;
begin
  result := evalAux(c, n.sons[1]);
  if isSpecial(result) then exit;
  a := result;
  result := evalAux(c, n.sons[2]);
  if isSpecial(result) then exit;
  b := result;
  if a.kind = nkBracket then addSon(a, copyTree(b))
  else InternalError(n.info, 'evalAppendSeqElem');
  result := emptyNode;
end;

function evalRepr(c: PEvalContext; n: PNode): PNode;
begin
  result := evalAux(c, n.sons[1]);
  if isSpecial(result) then exit;
  result := newStrNodeT(renderTree(result, {@set}[renderNoComments]), n);
end;

function isEmpty(n: PNode): bool;
begin
  result := (n <> nil) and (n.kind = nkEmpty)
end;

function evalMagicOrCall(c: PEvalContext; n: PNode): PNode;
var
  m: TMagic;
  a, b, cc: PNode;
  k: biggestInt;
  i: int;
begin
  m := getMagic(n);
  case m of
    mNone: result := evalCall(c, n);
    mIs: result := evalIs(c, n);
    mSizeOf: internalError(n.info, 'sizeof() should have been evaluated');
    mHigh: result := evalHigh(c, n);
    mAssert: result := evalAssert(c, n);
    mExit: result := evalExit(c, n);
    mNew, mNewFinalize: result := evalNew(c, n);
    mNewSeq: result := evalNewSeq(c, n);
    mSwap: result := evalSwap(c, n);
    mInc: result := evalIncDec(c, n, 1);
    ast.mDec: result := evalIncDec(c, n, -1);
    mEcho: result := evalEcho(c, n);
    mSetLengthStr: result := evalSetLengthStr(c, n);
    mSetLengthSeq: result := evalSetLengthSeq(c, n);
    mIncl: result := evalIncl(c, n);
    mExcl: result := evalExcl(c, n);
    mAnd: result := evalAnd(c, n);
    mOr: result := evalOr(c, n);

    mAppendStrCh: result := evalAppendStrCh(c, n);
    mAppendStrStr: result := evalAppendStrStr(c, n);
    mAppendSeqElem: result := evalAppendSeqElem(c, n);

    mNLen: begin
      result := evalAux(c, n.sons[1]);
      if isSpecial(result) then exit;
      a := result;
      result := newNodeIT(nkIntLit, n.info, n.typ);
      case a.kind of
        nkEmpty..nkNilLit: begin end;
        else result.intVal := sonsLen(a);
      end
    end;
    mNChild: begin
      result := evalAux(c, n.sons[1]);
      if isSpecial(result) then exit;
      a := result;
      result := evalAux(c, n.sons[2]);
      if isSpecial(result) then exit;
      k := getOrdValue(result);
      if not (a.kind in [nkEmpty..nkNilLit]) and (k >= 0) 
      and (k < sonsLen(a)) then begin
        result := a.sons[int(k)];
        if result = nil then result := newNode(nkEmpty)
      end
      else begin
        stackTrace(c, n, errIndexOutOfBounds);
        result := emptyNode
      end;
    end;
    mNSetChild: begin
      result := evalAux(c, n.sons[1]);
      if isSpecial(result) then exit;
      a := result;
      result := evalAux(c, n.sons[2]);
      if isSpecial(result) then exit;
      b := result;
      result := evalAux(c, n.sons[3]);
      if isSpecial(result) then exit;
      k := getOrdValue(b);
      if (k >= 0) and (k < sonsLen(a))
      and not (a.kind in [nkEmpty..nkNilLit]) then begin
        if result.kind = nkEmpty then a.sons[int(k)] := nil
        else a.sons[int(k)] := result
      end
      else
        stackTrace(c, n, errIndexOutOfBounds);
      result := emptyNode;
    end;
    mNAdd: begin
      result := evalAux(c, n.sons[1]);
      if isSpecial(result) then exit;
      a := result;
      result := evalAux(c, n.sons[2]);
      if isSpecial(result) then exit;
      addSon(a, result);
      result := emptyNode
    end;
    mNAddMultiple: begin
      result := evalAux(c, n.sons[1]);
      if isSpecial(result) then exit;
      a := result;
      result := evalAux(c, n.sons[2]);
      if isSpecial(result) then exit;
      for i := 0 to sonsLen(result)-1 do addSon(a, result.sons[i]);
      result := emptyNode
    end;
    mNDel: begin
      result := evalAux(c, n.sons[1]);
      if isSpecial(result) then exit;
      a := result;
      result := evalAux(c, n.sons[2]);
      if isSpecial(result) then exit;
      b := result;
      result := evalAux(c, n.sons[3]);
      if isSpecial(result) then exit;
      for i := 0 to int(getOrdValue(result))-1 do
        delSon(a, int(getOrdValue(b)));
      result := emptyNode;
    end;
    mNKind: begin
      result := evalAux(c, n.sons[1]);
      if isSpecial(result) then exit;
      a := result;
      result := newNodeIT(nkIntLit, n.info, n.typ);
      result.intVal := ord(a.kind);
    end;
    mNIntVal: begin
      result := evalAux(c, n.sons[1]);
      if isSpecial(result) then exit;
      a := result;
      result := newNodeIT(nkIntLit, n.info, n.typ);
      case a.kind of
        nkCharLit..nkInt64Lit: result.intVal := a.intVal;
        else InternalError(n.info, 'no int value')
      end
    end;
    mNFloatVal: begin
      result := evalAux(c, n.sons[1]);
      if isSpecial(result) then exit;
      a := result;
      result := newNodeIT(nkFloatLit, n.info, n.typ);
      case a.kind of
        nkFloatLit..nkFloat64Lit: result.floatVal := a.floatVal;
        else InternalError(n.info, 'no float value')
      end
    end;
    mNSymbol: begin
      result := evalAux(c, n.sons[1]);
      if isSpecial(result) then exit;
      if result.kind <> nkSym then InternalError(n.info, 'no symbol')
    end;
    mNIdent: begin
      result := evalAux(c, n.sons[1]);
      if isSpecial(result) then exit;
      if result.kind <> nkIdent then InternalError(n.info, 'no symbol')
    end;
    mNGetType: result := evalAux(c, n.sons[1]);
    mNStrVal: begin
      result := evalAux(c, n.sons[1]);
      if isSpecial(result) then exit;
      a := result;
      result := newNodeIT(nkStrLit, n.info, n.typ);
      case a.kind of
        nkStrLit..nkTripleStrLit: result.strVal := a.strVal;
        else InternalError(n.info, 'no string value')
      end
    end;
    mNSetIntVal: begin
      result := evalAux(c, n.sons[1]);
      if isSpecial(result) then exit;
      a := result;
      result := evalAux(c, n.sons[2]);
      if isSpecial(result) then exit;
      a.intVal := result.intVal; // XXX: exception handling?
      result := emptyNode
    end;
    mNSetFloatVal: begin
      result := evalAux(c, n.sons[1]);
      if isSpecial(result) then exit;
      a := result;
      result := evalAux(c, n.sons[2]);
      if isSpecial(result) then exit;
      a.floatVal := result.floatVal; // XXX: exception handling?
      result := emptyNode
    end;
    mNSetSymbol: begin
      result := evalAux(c, n.sons[1]);
      if isSpecial(result) then exit;
      a := result;
      result := evalAux(c, n.sons[2]);
      if isSpecial(result) then exit;
      a.sym := result.sym; // XXX: exception handling?
      result := emptyNode
    end;
    mNSetIdent: begin
      result := evalAux(c, n.sons[1]);
      if isSpecial(result) then exit;
      a := result;
      result := evalAux(c, n.sons[2]);
      if isSpecial(result) then exit;
      a.ident := result.ident; // XXX: exception handling?
      result := emptyNode
    end;
    mNSetType: begin
      result := evalAux(c, n.sons[1]);
      if isSpecial(result) then exit;
      a := result;
      result := evalAux(c, n.sons[2]);
      if isSpecial(result) then exit;
      a.typ := result.typ; // XXX: exception handling?
      result := emptyNode
    end;
    mNSetStrVal: begin
      result := evalAux(c, n.sons[1]);
      if isSpecial(result) then exit;
      a := result;
      result := evalAux(c, n.sons[2]);
      if isSpecial(result) then exit;
      a.strVal := result.strVal; // XXX: exception handling?
      result := emptyNode
    end;
    mNNewNimNode: begin
      result := evalAux(c, n.sons[1]);
      if isSpecial(result) then exit;
      k := getOrdValue(result);
      result := evalAux(c, n.sons[2]);
      if isSpecial(result) then exit;
      a := result;
      if (k < 0) or (k > ord(high(TNodeKind))) then
        internalError(n.info, 'request to create a NimNode with invalid kind');
      if a.kind = nkNilLit then
        result := newNodeI(TNodeKind(int(k)), n.info)
      else
        result := newNodeI(TNodeKind(int(k)), a.info)
    end;
    mNCopyNimNode: begin
      result := evalAux(c, n.sons[1]);
      if isSpecial(result) then exit;
      result := copyNode(result);
    end;
    mNCopyNimTree: begin
      result := evalAux(c, n.sons[1]);
      if isSpecial(result) then exit;
      result := copyTree(result);
    end;
    mStrToIdent: begin
      result := evalAux(c, n.sons[1]);
      if isSpecial(result) then exit;
      if not (result.kind in [nkStrLit..nkTripleStrLit]) then
        InternalError(n.info, 'no string node');
      a := result;
      result := newNodeIT(nkIdent, n.info, n.typ);
      result.ident := getIdent(a.strVal);
    end;
    mIdentToStr: begin
      result := evalAux(c, n.sons[1]);
      if isSpecial(result) then exit;
      if result.kind <> nkIdent then
        InternalError(n.info, 'no ident node');
      a := result;
      result := newNodeIT(nkStrLit, n.info, n.typ);
      result.strVal := a.ident.s;
    end;
    mEqIdent: begin
      result := evalAux(c, n.sons[1]);
      if isSpecial(result) then exit;
      a := result;
      result := evalAux(c, n.sons[2]);
      if isSpecial(result) then exit;
      b := result;
      result := newNodeIT(nkIntLit, n.info, n.typ);
      if (a.kind = nkIdent) and (b.kind = nkIdent) then
        if a.ident.id = b.ident.id then result.intVal := 1
    end;
    mEqNimrodNode: begin
      result := evalAux(c, n.sons[1]);
      if isSpecial(result) then exit;
      a := result;
      result := evalAux(c, n.sons[2]);
      if isSpecial(result) then exit;
      b := result;
      result := newNodeIT(nkIntLit, n.info, n.typ);
      if (a = b) 
      or (b.kind in [nkNilLit, nkEmpty]) 
      and (a.kind in [nkNilLit, nkEmpty]) then
        result.intVal := 1
    end;
    mNHint: begin
      result := evalAux(c, n.sons[1]);
      if isSpecial(result) then exit;
      liMessage(n.info, hintUser, getStrValue(result));
      result := emptyNode
    end;
    mNWarning: begin
      result := evalAux(c, n.sons[1]);
      if isSpecial(result) then exit;
      liMessage(n.info, warnUser, getStrValue(result));
      result := emptyNode
    end;
    mNError: begin
      result := evalAux(c, n.sons[1]);
      if isSpecial(result) then exit;
      stackTrace(c, n, errUser, getStrValue(result));
      result := emptyNode
    end;
    mConStrStr: result := evalConStrStr(c, n);
    mRepr: result := evalRepr(c, n);
    mNewString: begin
      result := evalAux(c, n.sons[1]);
      if isSpecial(result) then exit;
      a := result;
      result := newNodeIT(nkStrLit, n.info, n.typ);
      result.strVal := newString(int(getOrdValue(a)));
    end;
    else begin
      result := evalAux(c, n.sons[1]);
      if isSpecial(result) then exit;
      a := result;
      b := nil;
      cc := nil;
      if sonsLen(n) > 2 then begin
        result := evalAux(c, n.sons[2]);
        if isSpecial(result) then exit;
        b := result;
        if sonsLen(n) > 3 then begin
          result := evalAux(c, n.sons[3]);
          if isSpecial(result) then exit;
          cc := result;
        end
      end;
      if isEmpty(a) or isEmpty(b) or isEmpty(cc) then
        result := emptyNode
      else
        result := evalOp(m, n, a, b, cc);
    end
  end
end;

function evalAux(c: PEvalContext; n: PNode): PNode;
var
  i: int;
  a: PNode;
begin
  result := emptyNode;
  dec(gNestedEvals);
  if gNestedEvals <= 0 then stackTrace(c, n, errTooManyIterations);
  case n.kind of // atoms:
    nkEmpty: result := n;
    nkSym: result := evalSym(c, n);
    nkType..pred(nkNilLit): result := copyNode(n);
    nkNilLit: result := n; // end of atoms

    nkCall, nkHiddenCallConv, nkMacroStmt, nkCommand, nkCallStrLit: 
      result := evalMagicOrCall(c, n);
    nkCurly, nkBracket, nkRange: begin
      a := copyNode(n);
      for i := 0 to sonsLen(n)-1 do begin
        result := evalAux(c, n.sons[i]);
        if isSpecial(result) then exit;        
        addSon(a, result);
      end;
      result := a
    end;
    nkPar: begin
      a := copyTree(n);
      for i := 0 to sonsLen(n)-1 do begin
        result := evalAux(c, n.sons[i].sons[1]);
        if isSpecial(result) then exit;
        a.sons[i].sons[1] := result;
      end;
      result := a
    end;
    nkBracketExpr: result := evalArrayAccess(c, n);
    nkDotExpr: result := evalFieldAccess(c, n);
    nkDerefExpr, nkHiddenDeref: result := evalDeref(c, n);
    nkAddr, nkHiddenAddr: result := evalAddr(c, n);
    nkHiddenStdConv, nkHiddenSubConv, nkConv: result := evalConv(c, n);
    nkAsgn, nkFastAsgn: result := evalAsgn(c, n);
    nkWhenStmt, nkIfStmt, nkIfExpr: result := evalIf(c, n);
    nkWhileStmt: result := evalWhile(c, n);
    nkCaseStmt: result := evalCase(c, n);
    nkVarSection: result := evalVar(c, n);
    nkTryStmt: result := evalTry(c, n);
    nkRaiseStmt: result := evalRaise(c, n);
    nkReturnStmt: result := evalReturn(c, n);
    nkBreakStmt, nkReturnToken: result := n;
    nkBlockExpr, nkBlockStmt: result := evalBlock(c, n);
    nkDiscardStmt: result := evalAux(c, n.sons[0]);
    nkCheckedFieldExpr: result := evalCheckedFieldAccess(c, n);
    nkObjDownConv: result := evalAux(c, n.sons[0]);
    nkObjUpConv: result := evalUpConv(c, n);
    nkChckRangeF, nkChckRange64, nkChckRange: result := evalRangeChck(c, n);
    nkStringToCString: result := evalConvStrToCStr(c, n);
    nkCStringToString: result := evalConvCStrToStr(c, n);
    nkPassAsOpenArray: result := evalAux(c, n.sons[0]);

    nkStmtListExpr, nkStmtList, nkModule: begin
      for i := 0 to sonsLen(n)-1 do begin
        result := evalAux(c, n.sons[i]);
        case result.kind of
          nkExceptBranch, nkReturnToken, nkBreakStmt: break;
          else begin end
        end
      end
    end;
    nkProcDef, nkMethodDef, nkMacroDef, nkCommentStmt, nkPragma, nkTypeSection,
    nkTemplateDef, nkConstSection, nkIteratorDef, nkConverterDef,
    nkIncludeStmt, nkImportStmt, nkFromStmt: begin end;
    nkIdentDefs, nkCast, nkYieldStmt, nkAsmStmt, nkForStmt, nkPragmaExpr,
    nkLambda, nkContinueStmt, nkIdent:
      stackTrace(c, n, errCannotInterpretNodeX, nodeKindToStr[n.kind]);
    else InternalError(n.info, 'evalAux: ' + nodekindToStr[n.kind]);
  end;
  if result = nil then
    InternalError(n.info, 'evalAux: returned nil ' + nodekindToStr[n.kind]);
  inc(gNestedEvals);
end;

function eval(c: PEvalContext; n: PNode): PNode;
begin
  gWhileCounter := evalMaxIterations;
  gNestedEvals := evalMaxRecDepth;
  result := evalAux(c, n);
  if (result.kind = nkExceptBranch) and (sonsLen(result) >= 1) then
    stackTrace(c, n, errUnhandledExceptionX, typeToString(result.typ));
end;

function evalConstExpr(module: PSym; e: PNode): PNode;
var
  p: PEvalContext;
  s: PStackFrame;
begin
  p := newEvalContext(module, '', true);
  s := newStackFrame();
  s.call := e;
  pushStackFrame(p, s);
  result := eval(p, e);
  if (result <> nil) and (result.kind = nkExceptBranch) then 
    result := nil;
  popStackFrame(p);
end;

function myOpen(module: PSym; const filename: string): PPassContext;
var
  c: PEvalContext;
begin
  c := newEvalContext(module, filename, false);
  pushStackFrame(c, newStackFrame());
  result := c;
end;

function myProcess(c: PPassContext; n: PNode): PNode;
begin
  result := eval(PEvalContext(c), n);
end;

function evalPass(): TPass;
begin
  initPass(result);
  result.open := myOpen;
  result.close := myProcess;
  result.process := myProcess;
end;

initialization
  emptyNode := newNode(nkEmpty);
end.