-
Notifications
You must be signed in to change notification settings - Fork 0
/
tct3drv.h
2341 lines (1917 loc) · 66.6 KB
/
tct3drv.h
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
/* $Header: d:/cvsroot/tads/tads3/TCT3DRV.H,v 1.4 1999/07/11 00:46:57 MJRoberts Exp $ */
/*
* Copyright (c) 1999, 2002 Michael J. Roberts. All Rights Reserved.
*
* Please see the accompanying license file, LICENSE.TXT, for information
* on using and copying this software.
*/
/*
Name
tct3drv.h - derived final T3-specific parse node classes
Function
Notes
Modified
05/10/99 MJRoberts - Creation
*/
#ifndef TCT3DRV_H
#define TCT3DRV_H
#include <assert.h>
/* include our T3-specific intermediate classes */
#include "tct3int.h"
/* include the target-independent derived classes */
#include "tcpndrv.h"
/* ------------------------------------------------------------------------ */
/*
* "self"
*/
class CTPNSelf: public CTPNSelfBase
{
public:
/* generate code */
void gen_code(int discard, int for_condition);
/* generate a member expression */
void gen_code_member(int discard,
class CTcPrsNode *prop_expr, int prop_is_expr,
int argc, int varargs,
struct CTcNamedArgs *named_args);
/* get the object value for a '.' expression */
vm_obj_id_t gen_code_obj_predot(int *is_self);
};
/* ------------------------------------------------------------------------ */
/*
* "replaced"
*/
class CTPNReplaced: public CTPNReplacedBase
{
public:
/* generate code */
void gen_code(int discard, int for_condition);
/* generate a function call expression */
void gen_code_call(int discard, int argc, int varargs,
struct CTcNamedArgs *named_args);
};
/* ------------------------------------------------------------------------ */
/*
* "targetprop"
*/
class CTPNTargetprop: public CTPNTargetpropBase
{
public:
/* generate code */
void gen_code(int discard, int for_condition);
};
/* ------------------------------------------------------------------------ */
/*
* "targetobj"
*/
class CTPNTargetobj: public CTPNTargetobjBase
{
public:
/* generate code */
void gen_code(int discard, int for_condition);
};
/* ------------------------------------------------------------------------ */
/*
* "definingobj"
*/
class CTPNDefiningobj: public CTPNDefiningobjBase
{
public:
/* generate code */
void gen_code(int discard, int for_condition);
};
/* ------------------------------------------------------------------------ */
/*
* "invokee"
*/
class CTPNInvokee: public CTPNInvokeeBase
{
public:
/* generate code */
void gen_code(int discard, int for_condition);
};
/* ------------------------------------------------------------------------ */
/*
* "inherited"
*/
class CTPNInh: public CTPNInhBase
{
public:
/* generate code */
void gen_code(int discard, int for_condition);
/* generate a member expression */
void gen_code_member(int discard,
class CTcPrsNode *prop_expr, int prop_is_expr,
int argc, int varargs,
struct CTcNamedArgs *named_args);
protected:
/* generate a multi-method inherited() call */
void gen_code_mminh(CTcSymFunc *func, int discard,
class CTcPrsNode *prop_expr, int prop_is_expr,
int argc, int varargs, struct CTcNamedArgs *named_args);
};
/*
* "inherited" with explicit superclass
*/
class CTPNInhClass: public CTPNInhClassBase
{
public:
CTPNInhClass(const char *sym, size_t len)
: CTPNInhClassBase(sym, len) { }
/* generate code */
void gen_code(int discard, int for_condition);
/* generate a member expression */
void gen_code_member(int discard,
class CTcPrsNode *prop_expr, int prop_is_expr,
int argc, int varargs,
struct CTcNamedArgs *named_args);
};
/*
* "delegated"
*/
class CTPNDelegated: public CTPNDelegatedBase
{
public:
CTPNDelegated(CTcPrsNode *delegatee)
: CTPNDelegatedBase(delegatee) { }
/* generate code */
void gen_code(int discard, int for_condition);
/* generate a member expression */
void gen_code_member(int discard,
class CTcPrsNode *prop_expr, int prop_is_expr,
int argc, int varargs,
struct CTcNamedArgs *named_args);
};
/* ------------------------------------------------------------------------ */
/*
* "argcount" node
*/
class CTPNArgc: public CTPNArgcBase
{
public:
void gen_code(int discard, int for_condition);
};
/* ------------------------------------------------------------------------ */
/*
* constant node
*/
class CTPNConst: public CTPNConstBase
{
public:
CTPNConst(const CTcConstVal *val) : CTPNConstBase(val) { }
/* generate code for the constant */
void gen_code(int discard, int for_condition);
/* generate code for operator 'new' applied to this expression */
void gen_code_new(int discard, int argc, int varargs,
struct CTcNamedArgs *named_args,
int from_call, int is_transient);
/* generate code for assigning to this expression */
int gen_code_asi(int discard, int phase, tc_asitype_t typ, const char *op,
CTcPrsNode *rhs,
int ignore_errors, int xplicit, void **ctx);
/* evaluate a property ID */
vm_prop_id_t gen_code_propid(int check_only, int is_expr);
/* generate a member expression */
void gen_code_member(int discard,
class CTcPrsNode *prop_expr, int prop_is_expr,
int argc, int varargs,
struct CTcNamedArgs *named_args);
/* generate a function call expression */
void gen_code_call(int discard, int argc, int varargs,
struct CTcNamedArgs *named_args);
/* get the object value for a '.' expression */
vm_obj_id_t gen_code_obj_predot(int *is_self);
/* generate code to push an integer constant */
static void s_gen_code_int(long intval);
/* generate code to push a string constant */
static void s_gen_code_str(const CTcConstVal *val);
static void s_gen_code_str(const char *str, size_t len);
/* generate code to push a symbol's name as a string constant */
static void s_gen_code_str(const class CTcSymbol *sym);
/*
* generate code to push a string, using the correct code for the
* current compilation mode (static vs dynamic)
*/
static void s_gen_code_str_by_mode(const class CTcSymbol *sym);
};
/*
* Debugger constant node
*/
class CTPNDebugConst: public CTPNConst
{
public:
CTPNDebugConst(CTcConstVal *val) : CTPNConst(val) { }
/* debugger constants aren't actual constants - they require code gen */
CTcConstVal *get_const_val() { return 0; }
/* generate code for the constant */
void gen_code(int discard, int for_condition);
/* generate a constant string */
static void s_gen_code_str(const char *str, size_t len);
};
/* ------------------------------------------------------------------------ */
/*
* Unary Operators
*/
/* bitwise NOT */
CTPNUnary_def(CTPNBNot);
/* arithmetic positive */
CTPNUnary_def(CTPNPos);
/* arithmetic negative */
CTPNUnary_def(CTPNNeg);
/* pre-increment */
CTPNUnary_side_def(CTPNPreInc);
void CTPNPreInc_gen_code(class CTcPrsNode *sub, int discard);
/* pre-decrement */
CTPNUnary_side_def(CTPNPreDec);
/* post-increment */
CTPNUnary_side_def(CTPNPostInc);
/* post-decrement */
CTPNUnary_side_def(CTPNPostDec);
/* delete */
CTPNUnary_side_def(CTPNDelete);
/* boolean-ize */
CTPNUnary_def(CTPNBoolize);
/* ------------------------------------------------------------------------ */
/*
* NEW operator
*/
class CTPNNew: public CTPNUnary
{
public:
CTPNNew(class CTcPrsNode *sub, int is_transient)
: CTPNUnary(sub)
{
/* remember 'transient' status */
transient_ = is_transient;
}
/* generate code */
void gen_code(int discard, int for_condition);
/* note that we have side effects */
virtual int has_side_effects() const { return TRUE; }
protected:
/* flag: it's a 'new transient' operator */
int transient_;
};
/* ------------------------------------------------------------------------ */
/*
* NOT operator
*/
class CTPNNot: public CTPNNotBase
{
public:
CTPNNot(CTcPrsNode *sub) : CTPNNotBase(sub) { }
/* generate code */
void gen_code(int discard, int for_condition);
};
/* ------------------------------------------------------------------------ */
/*
* Binary Operators
*/
class CTPNComma: public CTPNCommaBase
{
public:
CTPNComma(class CTcPrsNode *lhs, class CTcPrsNode *rhs)
: CTPNCommaBase(lhs, rhs) { }
/* generate code */
void gen_code(int discard, int for_condition);
};
/* bitwise OR */
CTPNBin_def(CTPNBOr);
/* bitwise AND */
CTPNBin_def(CTPNBAnd);
/* bitwise XOR */
CTPNBin_def(CTPNBXor);
/* greater than */
CTPNBin_cmp_def(CTPNGt);
/* greater or equal */
CTPNBin_cmp_def(CTPNGe);
/* less than */
CTPNBin_cmp_def(CTPNLt);
/* less or equal */
CTPNBin_cmp_def(CTPNLe);
/* bit shift left */
CTPNBin_def(CTPNShl);
/* arithmetic shift right */
CTPNBin_def(CTPNAShr);
/* logical shift right */
CTPNBin_def(CTPNLShr);
/* multiply */
CTPNBin_def(CTPNMul);
/* divide */
CTPNBin_def(CTPNDiv);
/* modulo */
CTPNBin_def(CTPNMod);
/* ------------------------------------------------------------------------ */
/*
* Addition
*/
class CTPNAdd: public CTPNAddBase
{
public:
CTPNAdd(class CTcPrsNode *left, class CTcPrsNode *right)
: CTPNAddBase(left, right) { }
/* generate code */
void gen_code(int discard, int for_condition);
};
/* ------------------------------------------------------------------------ */
/*
* Subtraction
*/
class CTPNSub: public CTPNSubBase
{
public:
CTPNSub(class CTcPrsNode *left, class CTcPrsNode *right)
: CTPNSubBase(left, right) { }
/* generate code */
void gen_code(int discard, int for_condition);
};
/* ------------------------------------------------------------------------ */
/*
* Equality Comparison
*/
class CTPNEq: public CTPNEqBase
{
public:
CTPNEq(class CTcPrsNode *left, class CTcPrsNode *right)
: CTPNEqBase(left, right) { }
/* generate code */
void gen_code(int discard, int for_condition);
};
/* ------------------------------------------------------------------------ */
/*
* Inequality Comparison
*/
class CTPNNe: public CTPNNeBase
{
public:
CTPNNe(class CTcPrsNode *left, class CTcPrsNode *right)
: CTPNNeBase(left, right) { }
/* generate code */
void gen_code(int discard, int for_condition);
};
/* ------------------------------------------------------------------------ */
/*
* 'is in'
*/
class CTPNIsIn: public CTPNIsInBase
{
public:
CTPNIsIn(class CTcPrsNode *left, class CTPNArglist *right)
: CTPNIsInBase(left, right) { }
/* generate code */
void gen_code(int discard, int for_condition);
};
/* ------------------------------------------------------------------------ */
/*
* 'not in'
*/
class CTPNNotIn: public CTPNNotInBase
{
public:
CTPNNotIn(class CTcPrsNode *left, class CTPNArglist *right)
: CTPNNotInBase(left, right) { }
/* generate code */
void gen_code(int discard, int for_condition);
};
/* ------------------------------------------------------------------------ */
/*
* Logical AND (short-circuit logic)
*/
class CTPNAnd: public CTPNAndBase
{
public:
CTPNAnd(class CTcPrsNode *left, class CTcPrsNode *right)
: CTPNAndBase(left, right) { }
/* generate code */
void gen_code(int discard, int for_condition);
/* generate a condition */
virtual void gen_code_cond(struct CTcCodeLabel *then_label,
struct CTcCodeLabel *else_label);
};
/* ------------------------------------------------------------------------ */
/*
* Logical OR (short-circuit logic)
*/
class CTPNOr: public CTPNOrBase
{
public:
CTPNOr(class CTcPrsNode *left, class CTcPrsNode *right)
: CTPNOrBase(left, right) { }
/* generate code */
void gen_code(int discard, int for_condition);
/* generate a condition */
virtual void gen_code_cond(struct CTcCodeLabel *then_label,
struct CTcCodeLabel *else_label);
};
/* ------------------------------------------------------------------------ */
/*
* Assignment Operators
*/
/* simple assignment */
class CTPNAsi: public CTPNAsiBase
{
public:
CTPNAsi(class CTcPrsNode *left, class CTcPrsNode *right)
: CTPNAsiBase(left, right) { }
/* generate code */
void gen_code(int discard, int for_condition);
};
/* add and assign */
CTPNBin_side_def(CTPNAddAsi);
void CTPNAddAsi_gen_code(class CTcPrsNode *left, class CTcPrsNode *right,
int discard);
/* subtract and assign */
CTPNBin_side_def(CTPNSubAsi);
/* multiple and assign */
CTPNBin_side_def(CTPNMulAsi);
/* divide and assign */
CTPNBin_side_def(CTPNDivAsi);
/* modulo and assign */
CTPNBin_side_def(CTPNModAsi);
/* bitwise AND and assign */
CTPNBin_side_def(CTPNBAndAsi);
/* bitwise OR and assign */
CTPNBin_side_def(CTPNBOrAsi);
/* bitwise XOR and assign */
CTPNBin_side_def(CTPNBXorAsi);
/* bit shift left and assign */
CTPNBin_side_def(CTPNShlAsi);
/* arithmetic shift right and assign */
CTPNBin_side_def(CTPNAShrAsi);
/* logical shift right and assign */
CTPNBin_side_def(CTPNLShrAsi);
/* ------------------------------------------------------------------------ */
/*
* Array/list Subscript
*/
class CTPNSubscript: public CTPNSubscriptBase
{
public:
CTPNSubscript(CTcPrsNode *lhs, CTcPrsNode *rhs)
: CTPNSubscriptBase(lhs, rhs) { }
/* generate code */
void gen_code(int discard, int for_condition);
/* generate code to assign a value to the symbol */
int gen_code_asi(int discard, int phase, tc_asitype_t typ, const char *op,
CTcPrsNode *rhs,
int ignore_errors, int xplicit, void **ctx);
};
/* ------------------------------------------------------------------------ */
/*
* Address-of Operator
*/
class CTPNAddr: public CTPNAddrBase
{
public:
CTPNAddr(CTcPrsNode *sub)
: CTPNAddrBase(sub) { }
/* generate code */
void gen_code(int discard, int for_condition)
{
/*
* if we're not discarding the value, tell the subnode to
* generate its address; if the value is being discarded, do
* nothing, since taking an address has no side effects
*/
if (!discard)
sub_->gen_code_addr();
}
/* generate a member expression */
void gen_code_member(int discard,
class CTcPrsNode *prop_expr, int prop_is_expr,
int argc, int varargs,
struct CTcNamedArgs *named_args)
{
/*
* let the subnode do the work, since "&obj" is the same as
* "obj" in any context
*/
sub_->gen_code_member(discard, prop_expr, prop_is_expr,
argc, varargs, named_args);
}
/* evaluate a property ID */
vm_prop_id_t gen_code_propid(int check_only, int is_expr)
{
/*
* let the subexpression handle it, so that we treat "x.&prop"
* the same as "x.prop"
*/
return sub_->gen_code_propid(check_only, is_expr);
}
/* get the object value for a '.' expression */
vm_obj_id_t gen_code_obj_predot(int *is_self)
{
/*
* let the subexpression handle it, since "x.&prop" is the same
* as "x.prop"
*/
return sub_->gen_code_obj_predot(is_self);
}
};
/* ------------------------------------------------------------------------ */
/*
* If-nil operator ??
*/
class CTPNIfnil: public CTPNIfnilBase
{
public:
CTPNIfnil(class CTcPrsNode *first, class CTcPrsNode *second)
: CTPNIfnilBase(first, second) { }
/* generate code for the conditional */
void gen_code(int discard, int for_condition);
};
/* ------------------------------------------------------------------------ */
/*
* Conditional Operator
*/
class CTPNIf: public CTPNIfBase
{
public:
CTPNIf(class CTcPrsNode *first, class CTcPrsNode *second,
class CTcPrsNode *third)
: CTPNIfBase(first, second, third) { }
/* generate code for the conditional */
void gen_code(int discard, int for_condition);
};
/* ------------------------------------------------------------------------ */
/*
* Symbol node
*/
class CTPNSym: public CTPNSymBase
{
public:
CTPNSym(const char *sym, size_t len)
: CTPNSymBase(sym, len) { }
/* generate code for the symbol evaluated as an rvalue */
void gen_code(int discard, int for_condition);
/* generate code to assign a value to the symbol */
int gen_code_asi(int discard, int phase, tc_asitype_t typ, const char *op,
CTcPrsNode *rhs,
int ignore_errors, int xplicit, void **ctx);
/* generate code to take the address of the symbol */
void gen_code_addr();
/* generate code to call the symbol */
void gen_code_call(int discard, int argc, int varargs,
struct CTcNamedArgs *named_args);
/* generate code for operator 'new' applied to this expression */
void gen_code_new(int discard, int argc, int varargs,
struct CTcNamedArgs *named_args,
int from_call, int is_transient);
/* evaluate a property ID */
vm_prop_id_t gen_code_propid(int check_only, int is_expr);
/* generate a member expression */
void gen_code_member(int discard,
class CTcPrsNode *prop_expr, int prop_is_expr,
int argc, int varargs,
struct CTcNamedArgs *named_args);
/* get the object value for a '.' expression */
vm_obj_id_t gen_code_obj_predot(int *is_self);
};
/* ------------------------------------------------------------------------ */
/*
* Resolved symbol
*/
class CTPNSymResolved: public CTPNSymResolvedBase
{
public:
CTPNSymResolved(CTcSymbol *sym)
: CTPNSymResolvedBase(sym) { }
/* generate code for the symbol evaluated as an rvalue */
void gen_code(int discard, int for_condition);
/* generate code to assign a value to the symbol */
int gen_code_asi(int discard, int phase, tc_asitype_t typ, const char *op,
CTcPrsNode *rhs,
int ignore_errors, int xplicit, void **ctx);
/* generate code to take the address of the symbol */
void gen_code_addr();
/* generate code to call the symbol */
void gen_code_call(int discard, int argc, int varargs,
struct CTcNamedArgs *named_args);
/* generate code for operator 'new' applied to this expression */
void gen_code_new(int discard, int argc, int varargs,
struct CTcNamedArgs *named_args,
int from_call, int is_transient);
/* evaluate a property ID */
vm_prop_id_t gen_code_propid(int check_only, int is_expr);
/* generate a member expression */
void gen_code_member(int discard,
class CTcPrsNode *prop_expr, int prop_is_expr,
int argc, int varargs,
struct CTcNamedArgs *named_args);
/* get the object value for a '.' expression */
vm_obj_id_t gen_code_obj_predot(int *is_self);
};
/* ------------------------------------------------------------------------ */
/*
* Resolved debugger local variable symbol
*/
class CTPNSymDebugLocal: public CTPNSymDebugLocalBase
{
public:
CTPNSymDebugLocal(const struct tcprsdbg_sym_info *info)
: CTPNSymDebugLocalBase(info)
{
}
/* generate code */
void gen_code(int discard, int for_condition);
/* generate code for assigning into this node */
int gen_code_asi(int discard, int phase, tc_asitype_t typ, const char *op,
class CTcPrsNode *rhs,
int ignore_errors, int xplicit, void **ctx);
};
/* ------------------------------------------------------------------------ */
/*
* double-quoted string expression
*/
class CTPNDstr: public CTPNDstrBase
{
public:
CTPNDstr(const char *str, size_t len)
: CTPNDstrBase(str, len) { }
void gen_code(int discard, int for_condition);
};
/*
* debug version of string
*/
class CTPNDebugDstr: public CTPNDstr
{
public:
CTPNDebugDstr(const char *str, size_t len)
: CTPNDstr(str, len) { }
void gen_code(int discard, int for_condition);
};
/*
* double-quoted string embedding
*/
class CTPNDstrEmbed: public CTPNDstrEmbedBase
{
public:
CTPNDstrEmbed(CTcPrsNode *sub);
void gen_code(int discard, int for_condition);
};
/* ------------------------------------------------------------------------ */
/*
* Embedded <<one of>> list in a string
*/
class CTPNStrOneOf: public CTPNStrOneOfBase
{
public:
CTPNStrOneOf(int dstr, class CTPNList *lst, class CTcSymObj *state_obj)
: CTPNStrOneOfBase(dstr, lst, state_obj) { }
void gen_code(int discard, int for_condition);
};
/* ------------------------------------------------------------------------ */
/*
* Argument List
*/
class CTPNArglist: public CTPNArglistBase
{
public:
CTPNArglist(int argc, class CTPNArg *list_head)
: CTPNArglistBase(argc, list_head) { }
void gen_code(int, int)
{
/*
* this isn't used - we always generate explicitly via
* gen_code_arglist()
*/
assert(FALSE);
}
/* generate code for an argument list */
void gen_code_arglist(int *varargs, struct CTcNamedArgs &named_args);
};
/*
* Argument List Entry
*/
class CTPNArg: public CTPNArgBase
{
public:
CTPNArg(CTcPrsNode *expr)
: CTPNArgBase(expr) { }
void gen_code(int discard, int for_condition);
};
/* ------------------------------------------------------------------------ */
/*
* Function/method call
*/
class CTPNCall: public CTPNCallBase
{
public:
CTPNCall(CTcPrsNode *func, class CTPNArglist *arglist);
/* generate code */
void gen_code(int discard, int for_condition);
/* generate code for operator 'new' applied to this expression */
void gen_code_new(int discard, int argc, int varargs,
struct CTcNamedArgs *named_args,
int from_call, int is_transient);
/* generate code for a call to 'rand' */
int gen_code_rand(int discard, int for_condition);
};
/* ------------------------------------------------------------------------ */
/*
* Member expression with no arguments
*/
class CTPNMember: public CTPNMemberBase
{
public:
CTPNMember(CTcPrsNode *lhs, CTcPrsNode *rhs, int rhs_is_expr)
: CTPNMemberBase(lhs, rhs, rhs_is_expr) { }
/* generate code */
void gen_code(int discard, int for_condition);
/* generate code to assign a value to the symbol */
int gen_code_asi(int discard, int phase, tc_asitype_t typ, const char *op,
CTcPrsNode *rhs,
int ignore_errors, int xplicit, void **ctx);
};
/*
* Member evaluation with argument list
*/
class CTPNMemArg: public CTPNMemArgBase
{
public:
CTPNMemArg(CTcPrsNode *obj_expr, CTcPrsNode *prop_expr, int prop_is_expr,
class CTPNArglist *arglist)
: CTPNMemArgBase(obj_expr, prop_expr, prop_is_expr, arglist) { }
void gen_code(int discard, int for_condition);
};
/* ------------------------------------------------------------------------ */
/*
* List
*/
class CTPNList: public CTPNListBase
{
public:
void gen_code(int discard, int for_condition);
};
/*
* List Element
*/
class CTPNListEle: public CTPNListEleBase
{
public:
CTPNListEle(CTcPrsNode *expr)
: CTPNListEleBase(expr) { }
void gen_code(int discard, int for_condition);
};
/* ------------------------------------------------------------------------ */
/*
* Derived T3-specific symbol classes
*/
/*
* undefined symbol
*/
class CTcSymUndef: public CTcSymUndefBase
{
public:
CTcSymUndef(const char *str, size_t len, int copy)
: CTcSymUndefBase(str, len, copy) { }
/*
* generate code to evaluate the symbol; since it's undefined, this
* doesn't generate any code at all
*/
virtual void gen_code(int) { }
/*
* Generate code to assign to the symbol. The symbol is undefined,
* so we can't generate any code; but we'll indicate to the caller
* that the assignment is fully processed anyway, since there's no
* need for the caller to try generating any code either.
*/
virtual int gen_code_asi(int, int phase, tc_asitype_t, const char *,
class CTcPrsNode *, int, int, void **)
{
return TRUE;
}
/*
* Generate code for taking the address of the symbol. The symbol
* has no address, so this generates no code.
*/
virtual void gen_code_addr() { }
/*
* generate code to call the symbol - we can't generate any code for
* this, but don't bother issuing an error since we will have shown
* an error for the undefined symbol in the first place
*/
virtual void gen_code_call(int, int, int, struct CTcNamedArgs *) { }
/*
* generate code for operator 'new' applied to this expression - we
* can't generate any code, but suppress errors as usual
*/
void gen_code_new(int, int, int, struct CTcNamedArgs *, int) { }
/* generate a member expression */
void gen_code_member(int, class CTcPrsNode *, int, int, int,
struct CTcNamedArgs *) { }