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
|
(* M2LangDump.mod provides support routines for the -flang-dump.
Copyright (C) 2024-2025 Free Software Foundation, Inc.
Contributed by Gaius Mulley <gaiusmod2@gmail.com>.
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/>. *)
IMPLEMENTATION MODULE M2LangDump ;
FROM SYSTEM IMPORT ADDRESS ;
FROM DynamicStrings IMPORT String, Length, InitString, Mark, Slice, EqualArray,
InitStringCharStar, ConCatChar, ConCat, KillString,
Dup, string, char, Index, ReverseIndex, RIndex, Equal,
PushAllocation, PopAllocationExemption ;
FROM SymbolTable IMPORT NulSym,
GetSymName, GetLibName,
GetScope, GetModuleScope, GetMainModule, GetDeclaredMod,
GetLocalSym, FinalSymbol,
IsInnerModule,
IsVar,
IsProcedure,
IsModule, IsDefImp,
IsExportQualified, IsExportUnQualified,
IsExported, IsPublic, IsExtern, IsMonoName,
IsDefinitionForC ;
FROM M2Options IMPORT GetM2DumpFilter, GetDumpDir, GetDumpQuadFilename,
GetDumpDeclFilename, GetDumpGimpleFilename ;
FROM M2AsmUtil IMPORT GetFullSymName ;
FROM M2GCCDeclare IMPORT IncludeDumpSymbol ;
FROM FormatStrings IMPORT Sprintf0, Sprintf1 ;
FROM NameKey IMPORT Name, GetKey, MakeKey, makekey, KeyToCharStar, NulName ;
FROM SymbolConversion IMPORT Gcc2Mod, Mod2Gcc, GccKnowsAbout ;
FROM M2AsmUtil IMPORT GetFullScopeAsmName ;
FROM M2LexBuf IMPORT FindFileNameFromToken ;
FROM M2Printf IMPORT fprintf0, fprintf1, printf0, printf1, printf2 ;
FROM M2Error IMPORT InternalError ;
FROM M2Batch IMPORT Get ;
FROM m2misc IMPORT warning_m2_dump_filter ;
FROM StrLib IMPORT StrLen ;
FROM libc IMPORT printf ;
IMPORT FIO, SFIO, DynamicStrings, StdIO ;
CONST
Debugging = FALSE ;
VAR
outputFile : FIO.File ;
declActive,
quadActive,
mustClose : BOOLEAN ;
NoOfQuadDumps,
NoOfDeclDumps: CARDINAL ;
(*
Assert - call InternalError is NOT value.
*)
PROCEDURE Assert (value: BOOLEAN) ;
BEGIN
IF NOT value
THEN
InternalError ('assert failed in M2LangDump')
END
END Assert ;
(*
DumpWrite - writes a single ch to the dump output.
*)
PROCEDURE DumpWrite (ch: CHAR) ;
BEGIN
FIO.WriteChar (outputFile, ch)
END DumpWrite ;
(*
CloseDump - close the dump file and pop the default write procedure.
*)
PROCEDURE CloseDump ;
BEGIN
IF mustClose
THEN
FIO.Close (outputFile) ;
mustClose := FALSE
ELSE
FIO.FlushBuffer (outputFile)
END ;
StdIO.PopOutput ;
outputFile := FIO.StdOut ;
END CloseDump ;
(*
OpenDump - open filename as a dump file. The filename '-' is treated as stdout.
It pushes a write procedure to StdIO.
*)
PROCEDURE OpenDump (filename: String; no: CARDINAL) ;
BEGIN
IF DynamicStrings.EqualArray (filename, '-')
THEN
mustClose := FALSE ;
outputFile := FIO.StdOut
ELSE
filename := Sprintf1 (filename, no) ;
outputFile := SFIO.OpenToWrite (filename) ;
mustClose := FIO.IsNoError (outputFile)
END ;
filename := KillString (filename) ;
StdIO.PushOutput (DumpWrite)
END OpenDump ;
(*
CloseDumpDecl - close the dump output file.
*)
PROCEDURE CloseDumpDecl ;
BEGIN
IF declActive
THEN
CloseDump ;
declActive := FALSE
END
END CloseDumpDecl ;
(*
AddRuleTextDump - filter on the textual name given to GCC.
*)
PROCEDURE AddRuleTextDump (rule: String) ;
VAR
sym : CARDINAL ;
key : Name ;
seenMatch: BOOLEAN ;
BEGIN
sym := 1 ;
seenMatch := FALSE ;
key := makekey (string (rule)) ;
WHILE sym <= FinalSymbol () DO
IF IsProcedure (sym) AND (key = GetFullSymName (sym))
THEN
IncludeDumpSymbol (sym) ;
seenMatch := TRUE
END ;
INC (sym)
END ;
CheckRuleMatch (seenMatch, rule)
END AddRuleTextDump ;
(*
AddRuleScopeQualidentDump -
*)
PROCEDURE AddRuleScopeQualidentDump (rule: String; dot: INTEGER; modsym: CARDINAL) ;
VAR
modstr,
idstr : String ;
start : INTEGER ;
sym : CARDINAL ;
BEGIN
start := dot + 1 ;
dot := Index (rule, '.', start) ;
WHILE dot > 0 DO
modstr := Slice (rule, start, dot) ;
modsym := GetLocalSym (modsym, makekey (string (modstr))) ;
IF (modsym # NulSym) AND IsModule (modsym)
THEN
start := dot + 1 ;
dot := Index (rule, '.', start)
ELSE
modstr := KillString (modstr) ;
RETURN
END
END ;
idstr := Slice (rule, start, 0) ;
sym := GetLocalSym (modsym, makekey (string (idstr))) ;
IF sym = NulSym
THEN
CheckRuleMatch (FALSE, rule)
ELSE
IncludeDumpSymbol (sym)
END
END AddRuleScopeQualidentDump ;
(*
AddRuleScopeDump -
*)
PROCEDURE AddRuleScopeDump (rule: String) ;
VAR
modsym: CARDINAL ;
libstr,
modstr: String ;
start,
dot : INTEGER ;
BEGIN
dot := Index (rule, '.', 0) ;
Assert (dot # -1) ;
libstr := NIL ;
modstr := Slice (rule, 0, dot) ;
modsym := Get (makekey (string (modstr))) ;
IF modsym = NulSym
THEN
libstr := modstr ;
start := dot + 1 ;
dot := Index (rule, '.', start) ;
IF dot > 0
THEN
modstr := Slice (rule, start, dot) ;
modsym := Get (makekey (string (modstr))) ;
IF (modsym # NulSym) AND (makekey (string (libstr)) = GetLibName (modsym))
THEN
AddRuleScopeQualidentDump (rule, dot, modsym)
END
END
ELSE
AddRuleScopeQualidentDump (rule, dot, modsym)
END
END AddRuleScopeDump ;
(*
GenQualidentSymString - returns the qualified sym string (including
any nested procedure and modules).
*)
PROCEDURE GenQualidentSymString (sym: CARDINAL) : String ;
VAR
identstr,
qualidentstr: String ;
BEGIN
qualidentstr := InitStringCharStar (KeyToCharStar (GetSymName (sym))) ;
WHILE GetScope (sym) # NulSym DO
sym := GetScope (sym) ;
identstr := InitStringCharStar (KeyToCharStar (GetSymName (sym))) ;
identstr := ConCatChar (identstr, '.') ;
qualidentstr := ConCat (identstr, Mark (qualidentstr))
END ;
RETURN qualidentstr
END GenQualidentSymString ;
(*
IdentQualidentMatch - return TRUE if sym name matches symstr.
*)
PROCEDURE IdentQualidentMatch (sym: CARDINAL; symstr: String) : BOOLEAN ;
VAR
success : BOOLEAN ;
qualidentstr: String ;
BEGIN
qualidentstr := GenQualidentSymString (sym) ;
success := Equal (qualidentstr, symstr) ;
qualidentstr := KillString (qualidentstr) ;
RETURN success
END IdentQualidentMatch ;
(*
IsRuleFilenameMatch - return TRUE if rule matches sym.
*)
PROCEDURE IsRuleFilenameMatch (rule: String; sym: CARDINAL) : BOOLEAN ;
VAR
fname,
modstr,
symstr,
filename: String ;
tokenno : CARDINAL ;
dot,
colon : INTEGER ;
success : BOOLEAN ;
BEGIN
tokenno := GetDeclaredMod (sym) ;
filename := FindFileNameFromToken (tokenno, 0) ;
fname := NIL ;
symstr := NIL ;
modstr := NIL ;
success := FALSE ;
colon := Index (rule, ':', 0) ;
IF colon > 0
THEN
fname := Slice (rule, 0, colon) ;
IF Equal (fname, filename)
THEN
IF INTEGER (Length (rule)) > colon
THEN
symstr := Slice (rule, colon + 1, 0) ;
dot := ReverseIndex (symstr, '.', -1) ;
IF dot >= 0
THEN
success := IdentQualidentMatch (sym, symstr)
ELSE
success := GetSymName (sym) = makekey (string (symstr))
END
END
END
END ;
fname := KillString (fname) ;
modstr := KillString (modstr) ;
symstr := KillString (symstr) ;
RETURN success
END IsRuleFilenameMatch ;
(*
CheckRuleMatch - issue a warning if seenMatch is FALSE and this is the first time
the rule is matched.
*)
PROCEDURE CheckRuleMatch (seenMatch: BOOLEAN; rule: String) ;
VAR
message: String ;
BEGIN
IF (NoOfDeclDumps = 1) AND (NOT seenMatch)
THEN
message := InitString ("no symbol matching: %qs has been found when applying the dump filter") ;
warning_m2_dump_filter (string (message), string (rule));
END
END CheckRuleMatch ;
(*
AddRuleFilenameDump -
*)
PROCEDURE AddRuleFilenameDump (rule: String) ;
VAR
sym : CARDINAL ;
seenMatch: BOOLEAN ;
BEGIN
sym := 1 ;
seenMatch := FALSE ;
WHILE sym <= FinalSymbol () DO
IF IsProcedure (sym) AND IsRuleFilenameMatch (rule, sym)
THEN
IncludeDumpSymbol (sym) ;
seenMatch := TRUE
END ;
INC (sym)
END ;
CheckRuleMatch (seenMatch, rule)
END AddRuleFilenameDump ;
(*
AddRuleSymToDump - call appropriate sub rule. FileName if : present.
Scope if . present otherwise assume a text rule.
*)
PROCEDURE AddRuleSymToDump (rule: String) ;
BEGIN
IF Index (rule, ':', 0) # -1
THEN
(* Filename and scope rule. *)
AddRuleFilenameDump (rule)
ELSIF Index (rule, '.', 0) # -1
THEN
(* Modula-2 scoping tests. *)
AddRuleScopeDump (rule)
ELSE
(* Text decl tests. *)
AddRuleTextDump (rule)
END
END AddRuleSymToDump ;
(*
AddFilterListToDumpWatch -
*)
PROCEDURE AddFilterListToDumpWatch (filter: ADDRESS) ;
VAR
rule,
full : String ;
start,
i : INTEGER ;
BEGIN
full := InitStringCharStar (filter) ;
start := 0 ;
REPEAT
i := Index (full, ',', start) ;
IF i = -1
THEN
rule := Slice (full, start, 0)
ELSE
rule := Slice (full, start, i)
END ;
AddRuleSymToDump (rule) ;
rule := KillString (rule) ;
start := i+1 ;
UNTIL i = -1 ;
full := KillString (full) ;
END AddFilterListToDumpWatch ;
(*
CreateDumpTitle - creates the underlined title.
*)
PROCEDURE CreateDumpTitle (title: ARRAY OF CHAR) ;
VAR
len,
text,
i : CARDINAL ;
s : String ;
BEGIN
s := Sprintf0 (Mark (InitString (title))) ;
s := KillString (SFIO.WriteS (GetDumpFile (), s)) ;
len := StrLen (title) ;
i := 0 ;
text := 0 ;
WHILE i < len DO
IF title[i] = '\'
THEN
INC (i, 2)
ELSE
INC (i) ;
INC (text)
END
END ;
s := DynamicStrings.Mult (Mark (InitString ('=')), text) ;
s := KillString (SFIO.WriteS (GetDumpFile (), s)) ;
fprintf0 (GetDumpFile (), '\n');
END CreateDumpTitle ;
(*
CreateDumpDecl - create the dump file for a decl dump.
*)
PROCEDURE CreateDumpDecl (title: ARRAY OF CHAR) ;
BEGIN
IF GetM2DumpFilter () # NIL
THEN
Assert (NOT declActive) ;
Assert (NOT quadActive) ;
declActive := TRUE ;
INC (NoOfDeclDumps) ;
OpenDump (MakeDeclTemplate (), NoOfDeclDumps) ;
CreateDumpTitle (title) ;
AddFilterListToDumpWatch (GetM2DumpFilter ())
END
END CreateDumpDecl ;
(*
CloseDumpQuad - close the dump output file.
*)
PROCEDURE CloseDumpQuad ;
BEGIN
CloseDump ;
quadActive := FALSE
END CloseDumpQuad ;
(*
CreateDumpQuad - create the dump file for a quad dump.
*)
PROCEDURE CreateDumpQuad (title: ARRAY OF CHAR) ;
BEGIN
Assert (NOT declActive) ;
Assert (NOT quadActive) ;
quadActive := TRUE ;
INC (NoOfQuadDumps) ;
OpenDump (MakeQuadTemplate (), NoOfQuadDumps) ;
CreateDumpTitle (title)
END CreateDumpQuad ;
(*
GetDumpFile - return the dump output file.
*)
PROCEDURE GetDumpFile () : File ;
BEGIN
RETURN outputFile
END GetDumpFile ;
(*
IsDumpRequiredTree - return TRUE if the gcc tree should be dumped.
*)
PROCEDURE IsDumpRequiredTree (gcctree: tree; default: BOOLEAN) : BOOLEAN ;
VAR
sym: CARDINAL ;
BEGIN
sym := Gcc2Mod (gcctree) ;
IF sym = NulSym
THEN
RETURN default
ELSE
RETURN IsDumpRequired (sym, default)
END
END IsDumpRequiredTree ;
(*
IsDumpRequired - return TRUE if symbol sym should be dumped
according to the rules of the filter.
No filter specified will always return default.
The filter is a comma separated list. Each element
of the list can specify a symbol three ways.
Firstly by DECL name for example: m2pim_NumberIO_HexToStr
Secondly by qualified scope: [pathname.]NumberIO.HexToStr
Thirdly by filename and scope: NumberIO.mod:HexToStr
*)
PROCEDURE IsDumpRequired (sym: CARDINAL; default: BOOLEAN) : BOOLEAN ;
VAR
filter: String ;
BEGIN
filter := GetM2DumpFilter () ;
IF filter = NIL
THEN
RETURN default
ELSE
RETURN Match (filter, sym)
END
END IsDumpRequired ;
(*
Match - return TRUE if sym matches any of the filter rules.
*)
PROCEDURE Match (filter: ADDRESS; sym: CARDINAL) : BOOLEAN ;
VAR
result: BOOLEAN ;
rule,
full : String ;
start,
i : INTEGER ;
BEGIN
full := InitStringCharStar (filter) ;
start := 0 ;
REPEAT
i := Index (full, ',', start) ;
IF i = -1
THEN
rule := Slice (full, start, 0)
ELSE
rule := Slice (full, start, i)
END ;
result := MatchRule (rule, sym) ;
rule := KillString (rule) ;
IF result
THEN
full := KillString (full) ;
RETURN TRUE
END ;
start := i+1 ;
UNTIL i = -1 ;
full := KillString (full) ;
RETURN FALSE
END Match ;
(*
MatchRule - return TRUE if rule matches sym.
*)
PROCEDURE MatchRule (rule: String; sym: CARDINAL) : BOOLEAN ;
BEGIN
IF Index (rule, ':', 0) # -1
THEN
(* Filename and scope qualification tests. *)
RETURN MatchRuleFilenameScope (rule, sym)
ELSIF Index (rule, '.', 0) # -1
THEN
(* Modula-2 scoping tests. *)
RETURN MatchRuleScope (rule, sym)
ELSE
(* Text decl tests. *)
RETURN MatchRuleText (rule, sym)
END
END MatchRule ;
(*
MatchRuleFilenameScope - returns TRUE if rule contains filename.ext:qualident
and it matches sym.
*)
PROCEDURE MatchRuleFilenameScope (rule: String; sym: CARDINAL) : BOOLEAN ;
VAR
rulefile,
symfile,
subrule : String ;
BEGIN
rulefile := Slice (rule, 0, Index (rule, ':', 0)) ;
(* Do not deallocate symfile. *)
symfile := FindFileNameFromToken (GetDeclaredMod (sym), 0) ;
IF TextMatch (rulefile, symfile)
THEN
subrule := Slice (rule, Index (rule, ':', 0) + 1, 0) ;
IF MatchRuleScope (subrule, sym)
THEN
subrule := KillString (subrule) ;
RETURN TRUE
END
END ;
rulefile := KillString (rulefile) ;
RETURN FALSE
END MatchRuleFilenameScope ;
(*
MatchRuleScope - returns TRUE if rule contains a [libname.]qualified.ident
and it matches sym.
*)
PROCEDURE MatchRuleScope (rule: String; sym: CARDINAL) : BOOLEAN ;
VAR
i : INTEGER ;
name: Name ;
BEGIN
IF Debugging
THEN
name := GetSymName (sym) ;
printf2 ("MatchRuleScope (%s, %a)\n", rule, name)
END ;
(* Compare qualident right to left. *)
i := RIndex (rule, '.', 0) ;
IF i = -1
THEN
(* No qualification, just the ident. *)
RETURN MatchRuleIdent (rule, sym)
ELSE
RETURN MatchRuleQualident (rule, Slice (rule, i+1, 0), i, sym)
END
END MatchRuleScope ;
(*
MatchRuleQualident - returns TRUE if rule matches qualified sym.
PostCondition: subrule will be deallocated upon exit.
TRUE is returned if rule matches qualified sym.
*)
PROCEDURE MatchRuleQualident (rule, subrule: String; i: INTEGER; sym: CARDINAL) : BOOLEAN ;
VAR
scope: CARDINAL ;
BEGIN
IF TextCompareName (subrule, GetSymName (sym))
THEN
IF NOT QualifiedScope (rule, sym, i, scope)
THEN
RETURN FALSE
END ;
IF OptionalLibname (rule, sym, i, scope)
THEN
RETURN TRUE
END
END ;
subrule := KillString (subrule) ;
IF Debugging
THEN
printf0 ("MatchRuleQualident FALSE\n")
END ;
RETURN FALSE
END MatchRuleQualident ;
(*
QualifiedScope - PostCondition: true is returned is rule matches a qualified sym.
i is -1 if no more qualifications or libname is found.
scope will be the set to the last outer scope seen.
*)
PROCEDURE QualifiedScope (rule: String; sym: CARDINAL; VAR i: INTEGER; VAR scope: CARDINAL) : BOOLEAN ;
VAR
subrule: String ;
j : INTEGER ;
name : Name ;
BEGIN
IF Debugging
THEN
name := GetSymName (sym) ;
printf2 ("seen ident name, QualifiedScope (rule = %s, %a)\n", rule, name)
END ;
scope := sym ;
subrule := NIL ;
REPEAT
j := i ;
scope := GetScope (scope) ;
i := ReverseIndex (rule, '.', j - 1) ;
IF Debugging
THEN
printf2 (" reverseindex (rule = %s, '.', j = %d)\n", rule, j);
printf1 (" returns i = %d\n", i)
END ;
IF scope # NulSym
THEN
subrule := KillString (subrule) ;
subrule := Slice (rule, i + 1, j) ;
IF Debugging
THEN
name := GetSymName (scope) ;
printf2 ("QualifiedScope (subrule = %s, %a)\n", subrule, name)
END ;
IF NOT TextCompareName (subrule, GetSymName (scope))
THEN
subrule := KillString (subrule) ;
IF Debugging
THEN
printf0 ("QualifiedScope FALSE\n")
END ;
RETURN FALSE
END
END
UNTIL (i <= 0) OR IsDefImp (scope) OR IsModule (scope) ;
subrule := KillString (subrule) ;
RETURN TRUE
END QualifiedScope ;
(*
OptionalLibname - returns TRUE if rule[0..dot] matches syms libname or
if there is no libname the scope is a module or defimp
symbol.
*)
PROCEDURE OptionalLibname (rule: String; sym: CARDINAL;
dot: INTEGER; scope: CARDINAL) : BOOLEAN ;
VAR
subrule: String ;
BEGIN
IF dot > 0
THEN
(* Check for optional libname. *)
subrule := Slice (rule, 0, dot) ;
IF Debugging
THEN
printf2 ("checking for optional libname (subrule = %s, '.', dot = %d)\n",
rule, dot)
END ;
IF TextCompareName (subrule, GetLibName (GetModuleScope (sym)))
THEN
subrule := KillString (subrule) ;
IF Debugging
THEN
printf0 ("OptionalLibname TRUE\n")
END ;
RETURN TRUE
END ;
subrule := KillString (subrule)
ELSIF (scope # NulSym) AND (IsModule (scope) OR IsDefImp (scope))
THEN
IF Debugging
THEN
printf0 ("OptionalLibname TRUE\n")
END ;
RETURN TRUE
END ;
RETURN FALSE
END OptionalLibname ;
(*
MatchRuleIdent - return TRUE if ident sym matches rule.
The ident must be in a module or defimp scope.
*)
PROCEDURE MatchRuleIdent (rule: String; sym: CARDINAL) : BOOLEAN ;
VAR
scope: CARDINAL ;
BEGIN
IF TextCompareName (rule, GetSymName (sym))
THEN
scope := GetScope (sym) ;
RETURN IsModule (scope) OR IsDefImp (scope)
END ;
RETURN FALSE
END MatchRuleIdent ;
(*
MatchRuleText - returns TRUE if rule matches sym.
*)
PROCEDURE MatchRuleText (rule: String; sym: CARDINAL) : BOOLEAN ;
BEGIN
RETURN TextCompareName (rule, GetFullScopeAsmName (sym))
END MatchRuleText ;
(*
TextCompareName - return TRUE if rule matches name.
*)
PROCEDURE TextCompareName (rule: String; name: Name) : BOOLEAN ;
VAR
result: BOOLEAN ;
text : String ;
BEGIN
text := InitStringCharStar (KeyToCharStar (name)) ;
result := TextMatch (rule, text) ;
text := KillString (text) ;
RETURN result
END TextCompareName ;
(*
TextMatch - returns TRUE if rule matches text. Currently this
is a simple string compare, but could be extended
to implement regexp (seen in the rule).
*)
PROCEDURE TextMatch (rule, text: String) : BOOLEAN ;
BEGIN
IF Debugging
THEN
printf2 ("TextMatch (%s, %s)\n", rule, text)
END ;
RETURN Equal (rule, text)
END TextMatch ;
(*
CreateTemplate - create and return a template filename with extension.
If the user has specified "-" then "-" is returned otherwise
a template is formed from "dumpdir + filename + .%03dl.extension".
*)
PROCEDURE CreateTemplate (filename, extension: String) : String ;
BEGIN
IF filename = NIL
THEN
(* User has not specified a file. *)
IF GetDumpDir () = NIL
THEN
filename := InitStringCharStar (KeyToCharStar (GetSymName (GetMainModule ())))
ELSE
filename := Dup (GetDumpDir ()) ;
filename := ConCat (filename, Mark (InitStringCharStar (KeyToCharStar (GetSymName (GetMainModule ())))))
END ;
filename := ConCat (filename, Mark (InitString ('.mod')))
ELSE
(* We need to duplicate the filename to create a new string before ConCat
is used later on. *)
filename := Dup (filename)
END ;
IF NOT EqualArray (filename, '-')
THEN
filename := ConCat (ConCat (filename, InitString ('.%03dl.')), extension)
END ;
RETURN filename
END CreateTemplate ;
(*
MakeQuadTemplate - return a template for the quad dump file.
*)
PROCEDURE MakeQuadTemplate () : String ;
BEGIN
RETURN CreateTemplate (GetDumpQuadFilename (), InitString ('quad'))
END MakeQuadTemplate ;
(*
MakeDeclTemplate - return a template for the decl dump file.
*)
PROCEDURE MakeDeclTemplate () : String ;
BEGIN
RETURN CreateTemplate (GetDumpDeclFilename (), InitString ('decl'))
END MakeDeclTemplate ;
(*
MakeGimpleTemplate - return a template for the gimple dump file and assign
len to the max number of characters required to complete
a template (including a nul terminator).
*)
PROCEDURE MakeGimpleTemplate (VAR len: CARDINAL) : String ;
VAR
filename: String ;
BEGIN
filename := CreateTemplate (GetDumpGimpleFilename (), InitString ('gimple')) ;
len := Length (filename) ; (* This is a short cut based on '%03d' format
specifier used above. *)
RETURN filename
END MakeGimpleTemplate ;
(*
Init - initialize the module global variables.
*)
PROCEDURE Init ;
BEGIN
NoOfQuadDumps := 0 ;
NoOfDeclDumps := 0 ;
declActive := FALSE ;
quadActive := FALSE ;
mustClose := FALSE ;
outputFile := FIO.StdOut
END Init ;
BEGIN
Init
END M2LangDump.
|