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
|
(* m2expr.def definition module for m2expr.cc.
Copyright (C) 2011-2025 Free Software Foundation, Inc.
Contributed by Gaius Mulley <gaius.mulley@southwales.ac.uk>.
This file is part of GNU Modula-2.
GNU Modula-2 is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
GNU Modula-2 is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Modula-2; see the file COPYING3. If not see
<http://www.gnu.org/licenses/>. *)
DEFINITION MODULE FOR "C" m2expr ;
FROM gcctypes IMPORT location_t, tree ;
FROM CDataTypes IMPORT CharStar, ConstCharStar ;
TYPE
BuildBinCheckProcedure = PROCEDURE (location_t, tree, tree, tree, tree, tree) : tree ;
BuildBinProcedure = PROCEDURE (location_t, tree, tree, BOOLEAN) : tree ;
BuildUnaryProcedure = PROCEDURE (location_t, tree, BOOLEAN) : tree ;
BuildUnaryCheckProcedure = PROCEDURE (location_t, tree, tree, tree, tree) : tree ;
BuildExprProcedure = PROCEDURE (location_t, tree, tree) : tree ;
BuildSetProcedure = PROCEDURE (location_t, tree, tree, tree, tree, BOOLEAN) ;
BuildUnarySetProcedure = PROCEDURE (location_t, tree, BOOLEAN) ;
BuildUnarySetFunction = PROCEDURE (location_t, tree, BOOLEAN) : tree ;
(*
init - initialize this module.
*)
PROCEDURE init (location: location_t) ;
(*
CSTIntToString - return an integer string using base 10 and no padding.
The string returned will have been malloc'd.
*)
PROCEDURE CSTIntToString (t: tree) : CharStar ;
(*
CSTIntToChar - return the CHAR representation of tree t.
*)
PROCEDURE CSTIntToChar (t: tree) : CHAR ;
PROCEDURE CheckConstStrZtypeRange (location: location_t;
str: CharStar; base: CARDINAL) : BOOLEAN ;
(*
CompareTrees - returns -1 if e1 < e2, 0 if e1 == e2, and 1 if e1 > e2.
*)
PROCEDURE CompareTrees (e1: tree; e2: tree) : INTEGER ;
PROCEDURE GetPointerOne (location: location_t) : tree ;
PROCEDURE GetPointerZero (location: location_t) : tree ;
PROCEDURE GetWordOne (location: location_t) : tree ;
PROCEDURE GetWordZero (location: location_t) : tree ;
PROCEDURE GetIntegerOne (location: location_t) : tree ;
PROCEDURE GetIntegerZero (location: location_t) : tree ;
PROCEDURE GetCardinalOne (location: location_t) : tree ;
PROCEDURE GetCardinalZero (location: location_t) : tree ;
PROCEDURE GetSizeOfInBits (type: tree) : tree ;
PROCEDURE GetSizeOf (location: location_t; type: tree) : tree ;
(*
BuildLogicalRotate - builds the ISO Modula-2 ROTATE operator
for a fundamental data type.
*)
PROCEDURE BuildLogicalRotate (location: location_t; op1: tree; op2: tree; op3: tree; nBits: tree; needconvert: BOOLEAN) ;
(*
BuildLRRn - builds and returns tree (op1 rotate right by op2 bits)
it rotates a set of size, nBits.
*)
PROCEDURE BuildLRRn (location: location_t; op1: tree; op2: tree; nBits: tree; needconvert: BOOLEAN) : tree ;
(*
BuildLRLn - builds and returns tree (op1 rotate left by op2 bits)
it rotates a set of size, nBits.
*)
PROCEDURE BuildLRLn (location: location_t; op1: tree; op2: tree; nBits: tree; needconvert: BOOLEAN) : tree ;
PROCEDURE BuildMask (location: location_t; nBits: tree; needconvert: BOOLEAN) : tree ;
(*
BuildMult - builds a multiplication tree.
*)
PROCEDURE BuildMult (location: location_t; op1: tree; op2: tree; needconvert: BOOLEAN) : tree ;
(*
BuildMultCheck - builds a multiplication tree after checking for overflow.
*)
PROCEDURE BuildMultCheck (location: location_t; op1, op2, lowest, min, max: tree) : tree ;
(*
BuildLRR - builds and returns tree (op1 rotate right by op2 bits)
*)
PROCEDURE BuildLRR (location: location_t; op1: tree; op2: tree; needconvert: BOOLEAN) : tree ;
(*
BuildLRL - builds and returns tree (op1 rotate left by op2 bits)
*)
PROCEDURE BuildLRL (location: location_t; op1: tree; op2: tree; needconvert: BOOLEAN) : tree ;
(*
BuildLogicalShift - builds the ISO Modula-2 SHIFT operator
for a fundamental data type.
*)
PROCEDURE BuildLogicalShift (location: location_t; op1: tree; op2: tree; op3: tree; nBits: tree; needconvert: BOOLEAN) ;
(*
BuildLSR - builds and returns tree (op1 >> op2)
*)
PROCEDURE BuildLSR (location: location_t; op1: tree; op2: tree; needconvert: BOOLEAN) : tree ;
(*
BuildLSL - builds and returns tree (op1 << op2)
*)
PROCEDURE BuildLSL (location: location_t; op1: tree; op2: tree; needconvert: BOOLEAN) : tree ;
(*
BuildDivM2 - build and return ((op2 < 0) : (op1 divtrunc op2) ? (op1 divfloor op2))
when -fiso, -fpim4 or -fpositive-mod-floor-div is present else
return op1 div trunc op2
*)
PROCEDURE BuildDivM2 (location: location_t; op1, op2: tree; needsconvert: BOOLEAN) : tree ;
(*
BuildDivM2Check - build and return ((op2 < 0) : (op1 divtrunc op2) ? (op1 divfloor op2))
when -fiso, -fpim4 or -fpositive-mod-floor-div is present else
return op1 div trunc op2. Use the checking div equivalents.
*)
PROCEDURE BuildDivM2Check (location: location_t; op1, op2, lowest, min, max: tree) : tree ;
(*
BuildModM2 - build and return ((op2 < 0) : (op1 divtrunc op2) ? (op1 divfloor op2))
when -fiso, -fpim4 or -fpositive-mod-floor-div is present else
return op1 div trunc op2
*)
PROCEDURE BuildModM2 (location: location_t; op1, op2: tree; needsconvert: BOOLEAN) : tree ;
(*
BuildModM2Check - if iso or pim4 then build and return ((op2 < 0) : (op1
modceil op2) ? (op1 modfloor op2)) otherwise use modtrunc.
Use the checking mod equivalents.
build and return ((op2 < 0) : (op1 divtrunc op2) ? (op1 divfloor op2))
when -fiso, -fpim4 or -fpositive-mod-floor-div is present else
return op1 div trunc op2. Use the checking div equivalents.
*)
PROCEDURE BuildModM2Check (location: location_t; op1, op2, lowest, min, max: tree) : tree ;
(*
BuildModFloor - builds a modulus tree.
*)
PROCEDURE BuildModFloor (location: location_t; op1: tree; op2: tree; needconvert: BOOLEAN) : tree ;
(*
BuildDivCeil - builds a division tree.
*)
PROCEDURE BuildDivCeil (location: location_t; op1: tree; op2: tree; needconvert: BOOLEAN) : tree ;
(*
BuildModCeil - builds a modulus tree.
*)
PROCEDURE BuildModCeil (location: location_t; op1: tree; op2: tree; needconvert: BOOLEAN) : tree ;
(*
BuildDivFloor - builds a division tree.
*)
PROCEDURE BuildDivFloor (location: location_t; op1: tree; op2: tree; needconvert: BOOLEAN) : tree ;
(*
BuildModTrunc - builds a modulus tree.
*)
PROCEDURE BuildModTrunc (location: location_t; op1: tree; op2: tree; needconvert: BOOLEAN) : tree ;
(*
BuildDivTrunc - builds a division tree.
*)
PROCEDURE BuildDivTrunc (location: location_t; op1: tree; op2: tree; needconvert: BOOLEAN) : tree ;
(*
BuildDivTruncCheck - builds a division tree after checking for overflow.
*)
PROCEDURE BuildDivTruncCheck (location: location_t; op1, op2, lowest, min, max: tree) : tree ;
(*
BuildRDiv - builds a division tree (this should only be used for REAL and COMPLEX
types and NEVER for integer based types).
*)
PROCEDURE BuildRDiv (location: location_t; op1, op2: tree; needconvert: BOOLEAN) : tree ;
(*
BuildSubCheck - builds a subtraction tree after checking for overflow.
*)
PROCEDURE BuildSubCheck (location: location_t; op1, op2, lowest, min, max: tree) : tree ;
(*
BuildAddCheck - builds an addition tree after checking for overflow.
*)
PROCEDURE BuildAddCheck (location: location_t; op1, op2, lowest, min, max: tree) : tree ;
(*
BuildSub - builds a subtraction tree.
*)
PROCEDURE BuildSub (location: location_t; op1: tree; op2: tree; needconvert: BOOLEAN) : tree ;
(*
BuildAdd - builds an addition tree.
*)
PROCEDURE BuildAdd (location: location_t; op1: tree; op2: tree; needconvert: BOOLEAN) : tree ;
(*
FoldAndStrip - return expression, t, after it has been folded (if possible).
*)
PROCEDURE FoldAndStrip (t: tree) : tree ;
(*
StringLength - returns an unsigned int which is the length
of, string.
*)
PROCEDURE StringLength (string: tree) : CARDINAL ;
(*
TreeOverflow - returns TRUE if the contant expression, t, has
caused an overflow. No error message or warning
is emitted and no modification is made to, t.
*)
PROCEDURE TreeOverflow (t: tree) : BOOLEAN ;
(*
RemoveOverflow - if tree, t, is a constant expression it removes
any overflow flag and returns, t.
*)
PROCEDURE RemoveOverflow (t: tree) : tree ;
(*
BuildCoerce - returns a tree containing the expression, expr, after
it has been coersed to, type.
*)
PROCEDURE BuildCoerce (location: location_t; des: tree; type: tree; expr: tree) : tree ;
(*
BuildTrunc - returns an integer expression from a REAL or LONGREAL op1.
*)
PROCEDURE BuildTrunc (op1: tree) : tree ;
(*
BuildNegate - builds a negate expression and returns the tree.
*)
PROCEDURE BuildNegate (location: location_t; op1: tree; needconvert: BOOLEAN) : tree ;
(*
BuildNegateCheck - builds a negate expression and returns the tree.
*)
PROCEDURE BuildNegateCheck (location: location_t; arg, lowest, min, max: tree) : tree ;
(*
BuildSetNegate - builds a set negate expression and returns the tree.
*)
PROCEDURE BuildSetNegate (location: location_t; op1: tree; needconvert: BOOLEAN) : tree ;
(*
BuildTBitSize - returns the minimum number of bits to represent, type.
*)
PROCEDURE BuildTBitSize (location: location_t; type: tree) : tree ;
(*
BuildSize - builds a SIZE function expression and returns the tree.
*)
PROCEDURE BuildSize (location: location_t; op1: tree; needconvert: BOOLEAN) : tree ;
(*
BuildAddr - builds an expression which calculates the address of
op1 and returns the tree.
*)
PROCEDURE BuildAddr (location: location_t; op1: tree; needconvert: BOOLEAN) : tree ;
(*
BuildOffset1 - builds an expression containing the number of bytes the field
is offset from the start of the record structure.
This function is the same as the above, except that it
derives the record from the field and then calls BuildOffset.
The expression is returned.
*)
PROCEDURE BuildOffset1 (location: location_t; field: tree; needconvert: BOOLEAN) : tree ;
(*
BuildOffset - builds an expression containing the number of bytes the field
is offset from the start of the record structure.
The expression is returned.
*)
PROCEDURE BuildOffset (location: location_t; record: tree; field: tree; needconvert: BOOLEAN) : tree ;
(*
BuildLogicalOrAddress - build a logical or expressions and return the tree.
*)
PROCEDURE BuildLogicalOrAddress (location: location_t; op1: tree; op2: tree; needconvert: BOOLEAN) : tree ;
(*
BuildLogicalOr - build a logical or expressions and return the tree.
*)
PROCEDURE BuildLogicalOr (location: location_t; op1: tree; op2: tree; needconvert: BOOLEAN) : tree ;
(*
BuildLogicalAnd - build a logical and expression and return the tree.
*)
PROCEDURE BuildLogicalAnd (location: location_t; op1: tree; op2: tree; needconvert: BOOLEAN) : tree ;
PROCEDURE BuildSymmetricDifference (location: location_t; op1: tree; op2: tree; needconvert: BOOLEAN) : tree ;
(*
BuildLogicalDifference - build a logical difference expression and
return the tree.
(op1 and (not op2))
*)
PROCEDURE BuildLogicalDifference (location: location_t; op1: tree; op2: tree; needconvert: BOOLEAN) : tree ;
(*
BuildLessThan - return a tree which computes <
*)
PROCEDURE BuildLessThan (location: location_t; op1: tree; op2: tree) : tree ;
(*
BuildGreaterThan - return a tree which computes >
*)
PROCEDURE BuildGreaterThan (location: location_t; op1: tree; op2: tree) : tree ;
(*
BuildLessThanOrEqual - return a tree which computes <
*)
PROCEDURE BuildLessThanOrEqual (location: location_t; op1: tree; op2: tree) : tree ;
(*
BuildGreaterThanOrEqual - return a tree which computes >=
*)
PROCEDURE BuildGreaterThanOrEqual (location: location_t; op1: tree; op2: tree) : tree ;
(*
BuildEqualTo - return a tree which computes =
*)
PROCEDURE BuildEqualTo (location: location_t; op1: tree; op2: tree) : tree ;
PROCEDURE BuildNotEqualTo (location: location_t; op1: tree; op2: tree) : tree ;
(*
BuildIsSuperset - return a tree which computes: op1 & op2 == op2
*)
PROCEDURE BuildIsSuperset (location: location_t; op1: tree; op2: tree) : tree ;
(*
BuildIsNotSuperset - return a tree which computes: op1 & op2 != op2
*)
PROCEDURE BuildIsNotSuperset (location: location_t; op1: tree; op2: tree) : tree ;
(*
BuildIsSubset - return a tree which computes: op1 & op2 == op1
*)
PROCEDURE BuildIsSubset (location: location_t; op1: tree; op2: tree) : tree ;
(*
BuildIsNotSubset - return a tree which computes: op1 & op2 != op1
*)
PROCEDURE BuildIsNotSubset (location: location_t; op1: tree; op2: tree) : tree ;
(*
BuildIfConstInVar - generates: if constel in varset then goto label.
*)
PROCEDURE BuildIfConstInVar (location: location_t; type: tree; varset: tree; constel: tree; is_lvalue: BOOLEAN; fieldno: INTEGER; label: CharStar) ;
PROCEDURE BuildIfNotConstInVar (location: location_t; type: tree; varset: tree; constel: tree; is_lvalue: BOOLEAN; fieldno: INTEGER; label: CharStar) ;
(*
BuildIfVarInVar - generates: if varel in varset then goto label
*)
PROCEDURE BuildIfVarInVar (location: location_t; type: tree; varset: tree; varel: tree; is_lvalue: BOOLEAN; low: tree; high: tree; label: CharStar) ;
(*
BuildIfNotVarInVar - generates: if not (varel in varset) then goto label
*)
PROCEDURE BuildIfNotVarInVar (location: location_t; type: tree; varset: tree; varel: tree; is_lvalue: BOOLEAN; low: tree; high: tree; label: CharStar) ;
(*
BuildForeachWordInSetDoIfExpr - foreach word in set, type, compute the expression, expr, and if true
goto label.
*)
PROCEDURE BuildForeachWordInSetDoIfExpr (location: location_t;
type, op1, op2: tree;
is_op1lvalue, is_op2lvalue,
is_op1const, isop2const: BOOLEAN;
expr: BuildExprProcedure; label: CharStar) ;
(*
BuildIfInRangeGoto - if var is in the range low..high then goto label
*)
PROCEDURE BuildIfInRangeGoto (location: location_t; var: tree; low: tree; high: tree; label: CharStar) ;
(*
BuildIfNotInRangeGoto - if var is not in the range low..high then goto label
*)
PROCEDURE BuildIfNotInRangeGoto (location: location_t; var: tree; low: tree; high: tree; label: CharStar) ;
(*
BuildArray - returns a tree which accesses array[index]
given, lowIndice.
*)
PROCEDURE BuildArray (location: location_t; type: tree; array: tree; index: tree; lowIndice: tree) : tree ;
(*
BuildComponentRef - build a component reference tree which accesses record.field.
If field does not belong to record it calls
BuildComponentRef on the penultimate field.
*)
PROCEDURE BuildComponentRef (location: location_t; record: tree; field: tree) : tree ;
(*
BuildIndirect - build: ( *target) given that the object to be copied is of, type.
*)
PROCEDURE BuildIndirect (location: location_t; target: tree; type: tree) : tree ;
(*
IsTrue - returns TRUE if, t, is known to be TRUE.
*)
PROCEDURE IsTrue (t: tree) : BOOLEAN ;
(*
IsFalse - returns FALSE if, t, is known to be FALSE.
*)
PROCEDURE IsFalse (t: tree) : BOOLEAN ;
(*
GetCstInteger - return the integer value of the cst tree.
*)
PROCEDURE GetCstInteger (cst: tree) : INTEGER ;
(*
AreConstantsEqual - maps onto tree.c (tree_int_cst_equal). It returns
TRUE if the value of e1 is the same as e2.
*)
PROCEDURE AreConstantsEqual (e1: tree; e2: tree) : BOOLEAN ;
(*
AreRealOrComplexConstantsEqual - returns TRUE if constants,
e1 and e2 are equal according
to IEEE rules. This does not
perform bit equivalence for
example IEEE states that
-0 == 0 and NaN != NaN.
*)
PROCEDURE AreRealOrComplexConstantsEqual (e1: tree; e2: tree) : BOOLEAN ;
(*
DetermineSign - returns -1 if e<0
0 if e==0
1 if e>0
an unsigned constant will never return -1
*)
PROCEDURE DetermineSign (e: tree) : INTEGER ;
(*
BuildCap - builds the Modula-2 function CAP(t) and returns
the result in a gcc tree.
*)
PROCEDURE BuildCap (location: location_t; t: tree) : tree ;
(*
BuildAbs - builds the Modula-2 function ABS(t) and returns
the result in a gcc tree.
*)
PROCEDURE BuildAbs (location: location_t; t: tree) : tree ;
(*
BuildRe - builds an expression for the function RE.
*)
PROCEDURE BuildRe (op1: tree) : tree ;
(*
BuildIm - builds an expression for the function IM.
*)
PROCEDURE BuildIm (op1: tree) : tree ;
(*
BuildCmplx - builds an expression for the function CMPLX.
*)
PROCEDURE BuildCmplx (location: location_t; type: tree; real: tree; imag: tree) : tree ;
(*
BuildBinaryForeachWordDo - provides the large set operators. Each word
(or less) of the set can be calculated by binop.
This procedure runs along each word of the
large set invoking the binop.
*)
PROCEDURE BuildBinaryForeachWordDo (location: location_t;
type, op1, op2, op3: tree;
binop: BuildBinProcedure;
is_op1lvalue,
is_op2lvalue,
is_op3lvalue,
is_op1_const,
is_op2_const,
is_op3_const: BOOLEAN) ;
(*
BuildBinarySetDo - if the size of the set is <= TSIZE(WORD) then
op1 := binop(op2, op3)
else
call m2rtsprocedure(op1, op2, op3)
*)
PROCEDURE BuildBinarySetDo (location: location_t;
settype, op1, op2, op3: tree;
binop: BuildSetProcedure;
is_op1lvalue, is_op2lvalue, is_op3lvalue: BOOLEAN;
nBits, unbounded: tree;
varproc, leftproc, rightproc: tree) ;
(*
ConstantExpressionWarning - issue a warning if the constant has overflowed.
*)
PROCEDURE ConstantExpressionWarning (value: tree) ;
(*
BuildAddAddress - returns an expression op1+op2 where op1 is a pointer type
and op2 is not a pointer type.
*)
PROCEDURE BuildAddAddress (location: location_t; op1, op2: tree) : tree ;
(*
calcNbits - return the smallest number of bits required to
represent: min..max.
*)
PROCEDURE calcNbits (location: location_t; min, max: tree) : tree ;
(*
OverflowZType - return TRUE if str exceeds the ZTYPE range.
*)
PROCEDURE OverflowZType (location: location_t;
str: ConstCharStar; base: CARDINAL;
issueError: BOOLEAN) : BOOLEAN ;
(*
BuildCondIfExpression - returns a tree containing
(condition) ? (left) : right.
*)
PROCEDURE BuildCondIfExpression (condition, type, left, right: tree) : tree ;
(*
BuildSystemTBitSize - return the minimum number of bits to represent type.
This function is called when evaluating
SYSTEM.TBITSIZE.
*)
PROCEDURE BuildSystemTBitSize (location: location_t; type: tree) : tree ;
END m2expr.
|