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
|
(* M2RTS.mod implements access to the exception handlers.
Copyright (C) 2010-2023 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.
Under Section 7 of GPL version 3, you are granted additional
permissions described in the GCC Runtime Library Exception, version
3.1, as published by the Free Software Foundation.
You should have received a copy of the GNU General Public License and
a copy of the GCC Runtime Library Exception along with this program;
see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
<http://www.gnu.org/licenses/>. *)
IMPLEMENTATION MODULE M2RTS ;
FROM libc IMPORT abort, exit, write, getenv, printf, strlen ;
(* FROM Builtins IMPORT strncmp, strcmp ; not available during bootstrap. *)
FROM NumberIO IMPORT CardToStr ;
FROM StrLib IMPORT StrCopy, StrLen, StrEqual ;
FROM SYSTEM IMPORT ADDRESS, ADR ;
FROM ASCII IMPORT nl, nul ;
FROM Storage IMPORT ALLOCATE ;
IMPORT RTExceptions ;
IMPORT M2EXCEPTION ;
IMPORT M2Dependent ;
CONST
stderrFd = 2 ;
TYPE
PtrToChar = POINTER TO CHAR ;
ProcedureChain = POINTER TO RECORD
p : PROC ;
prev,
next: ProcedureChain ;
END ;
ProcedureList = RECORD
head, tail: ProcedureChain
END ;
VAR
InitialProc,
TerminateProc : ProcedureList ;
ExitValue : INTEGER ;
isTerminating,
isHalting,
Initialized,
CallExit : BOOLEAN ;
(*
ConstructModules - resolve dependencies and then call each
module constructor in turn.
*)
PROCEDURE ConstructModules (applicationmodule: ADDRESS;
argc: INTEGER; argv, envp: ADDRESS) ;
BEGIN
M2Dependent.ConstructModules (applicationmodule, argc, argv, envp)
END ConstructModules ;
(*
DeconstructModules - resolve dependencies and then call each
module constructor in turn.
*)
PROCEDURE DeconstructModules (applicationmodule: ADDRESS;
argc: INTEGER; argv, envp: ADDRESS) ;
BEGIN
M2Dependent.DeconstructModules (applicationmodule, argc, argv, envp)
END DeconstructModules ;
(*
RegisterModule - adds module name to the list of outstanding
modules which need to have their dependencies
explored to determine initialization order.
*)
PROCEDURE RegisterModule (name: ADDRESS;
init, fini: ArgCVEnvP;
dependencies: PROC) ;
BEGIN
M2Dependent.RegisterModule (name, init, fini, dependencies)
END RegisterModule ;
(*
RequestDependant - used to specify that modulename is dependant upon
module dependantmodule.
*)
PROCEDURE RequestDependant (modulename, dependantmodule: ADDRESS) ;
BEGIN
M2Dependent.RequestDependant (modulename, dependantmodule)
END RequestDependant ;
(*
ExecuteReverse - execute the procedure associated with procptr
and then proceed to try and execute all previous
procedures in the chain.
*)
PROCEDURE ExecuteReverse (procptr: ProcedureChain) ;
BEGIN
WHILE procptr # NIL DO
procptr^.p ; (* Invoke the procedure. *)
procptr := procptr^.prev
END
END ExecuteReverse ;
(*
ExecuteTerminationProcedures - calls each installed termination procedure
in reverse order.
*)
PROCEDURE ExecuteTerminationProcedures ;
BEGIN
ExecuteReverse (TerminateProc.tail)
END ExecuteTerminationProcedures ;
(*
ExecuteInitialProcedures - executes the initial procedures installed by
InstallInitialProcedure.
*)
PROCEDURE ExecuteInitialProcedures ;
BEGIN
ExecuteReverse (InitialProc.tail)
END ExecuteInitialProcedures ;
(*
AppendProc - append proc to the end of the procedure list
defined by proclist.
*)
PROCEDURE AppendProc (VAR proclist: ProcedureList; proc: PROC) : BOOLEAN ;
VAR
pdes: ProcedureChain ;
BEGIN
NEW (pdes) ;
WITH pdes^ DO
p := proc ;
prev := proclist.tail ;
next := NIL
END ;
IF proclist.head = NIL
THEN
proclist.head := pdes
END ;
proclist.tail := pdes ;
RETURN TRUE
END AppendProc ;
(*
InstallTerminationProcedure - installs a procedure, p, which will
be called when the procedure
ExecuteTerminationProcedures
is invoked. It returns TRUE if the
procedure is installed.
*)
PROCEDURE InstallTerminationProcedure (p: PROC) : BOOLEAN ;
BEGIN
RETURN AppendProc (TerminateProc, p)
END InstallTerminationProcedure ;
(*
InstallInitialProcedure - installs a procedure to be executed just
before the BEGIN code section of the
main program module.
*)
PROCEDURE InstallInitialProcedure (p: PROC) : BOOLEAN ;
BEGIN
RETURN AppendProc (InitialProc, p)
END InstallInitialProcedure ;
(*
HALT - terminate the current program. The procedure
ExecuteTerminationProcedures
is called before the program is stopped. The parameter
exitcode is optional. If the parameter is not supplied
HALT will call libc 'abort', otherwise it will exit with
the code supplied. Supplying a parameter to HALT has the
same effect as calling ExitOnHalt with the same code and
then calling HALT with no parameter.
*)
PROCEDURE HALT ([exitcode: INTEGER = -1]) <* noreturn *> ;
BEGIN
IF exitcode#-1
THEN
CallExit := TRUE ;
ExitValue := exitcode
END ;
IF isHalting
THEN
(* double HALT found *)
exit(-1)
ELSE
isHalting := TRUE ;
ExecuteTerminationProcedures ;
END ;
IF CallExit
THEN
exit(ExitValue)
ELSE
abort
END
END HALT ;
(*
Terminate - provides compatibility for pim. It call exit with
the exitcode provided in a prior call to ExitOnHalt
(or zero if ExitOnHalt was never called). It does
not call ExecuteTerminationProcedures.
*)
PROCEDURE Terminate <* noreturn *> ;
BEGIN
exit (ExitValue)
END Terminate ;
(*
ErrorString - writes a string to stderr.
*)
PROCEDURE ErrorString (a: ARRAY OF CHAR) ;
VAR
n: INTEGER ;
BEGIN
n := write (stderrFd, ADR (a), StrLen (a))
END ErrorString ;
(*
ErrorStringC - writes a string to stderr.
*)
PROCEDURE ErrorStringC (str: ADDRESS) ;
VAR
len: INTEGER ;
BEGIN
len := write (stderrFd, str, strlen (str))
END ErrorStringC ;
(*
ErrorMessage - emits an error message to stderr and then calls exit (1).
*)
PROCEDURE ErrorMessage (message: ARRAY OF CHAR;
filename: ARRAY OF CHAR;
line: CARDINAL;
function: ARRAY OF CHAR) <* noreturn *> ;
VAR
buffer: ARRAY [0..10] OF CHAR ;
BEGIN
ErrorString (filename) ; ErrorString(':') ;
CardToStr (line, 0, buffer) ;
ErrorString (buffer) ; ErrorString(':') ;
IF NOT StrEqual (function, '')
THEN
ErrorString ('in ') ;
ErrorString (function) ;
ErrorString (' has caused ') ;
END ;
ErrorString (message) ;
buffer[0] := nl ; buffer[1] := nul ;
ErrorString (buffer) ;
exit (1)
END ErrorMessage ;
(*
ErrorMessageC - emits an error message to stderr and then calls exit (1).
*)
PROCEDURE ErrorMessageC (message, filename: ADDRESS;
line: CARDINAL;
function: ADDRESS) <* noreturn *> ;
VAR
buffer: ARRAY [0..10] OF CHAR ;
BEGIN
ErrorStringC (filename) ; ErrorString (':') ;
CardToStr (line, 0, buffer) ;
ErrorString (buffer) ; ErrorString(':') ;
IF strlen (function) > 0
THEN
ErrorString ('in ') ;
ErrorStringC (function) ;
ErrorString (' has caused ') ;
END ;
ErrorStringC (message) ;
buffer[0] := nl ; buffer[1] := nul ;
ErrorString (buffer) ;
exit (1)
END ErrorMessageC ;
(*
HaltC - provides a more user friendly version of HALT, which takes
four parameters to aid debugging. It writes an error message
to stderr and calls exit (1).
*)
PROCEDURE HaltC (filename: ADDRESS; line: CARDINAL;
function, description: ADDRESS) ;
BEGIN
ErrorMessageC (description, filename, line, function)
END HaltC ;
(*
Halt - provides a more user friendly version of HALT, which takes
four parameters to aid debugging. It writes an error message
to stderr and calls exit (1).
*)
PROCEDURE Halt (filename: ARRAY OF CHAR; line: CARDINAL;
function: ARRAY OF CHAR; description: ARRAY OF CHAR) ;
BEGIN
ErrorMessage (description, filename, line, function)
END Halt ;
(*
IsTerminating - Returns true if any coroutine has started program termination
and false otherwise.
*)
PROCEDURE IsTerminating () : BOOLEAN ;
BEGIN
RETURN isTerminating
END IsTerminating ;
(*
HasHalted - Returns true if a call to HALT has been made and false
otherwise.
*)
PROCEDURE HasHalted () : BOOLEAN ;
BEGIN
RETURN isHalting
END HasHalted ;
(*
ErrorCharStar -
*)
PROCEDURE ErrorCharStar (a: ADDRESS) ;
VAR
p: POINTER TO CHAR ;
n: INTEGER ;
BEGIN
p := a ;
n := 0 ;
WHILE (p#NIL) AND (p^#nul) DO
INC(n) ;
INC(p)
END ;
IF n>0
THEN
n := write(2, a, n)
END
END ErrorCharStar ;
(*
ErrorMessageColumn - emits an error message to the stderr
*)
PROCEDURE ErrorMessageColumn (filename, scope, message: ADDRESS;
line, column: CARDINAL) ;
VAR
LineNo: ARRAY [0..10] OF CHAR ;
BEGIN
ErrorCharStar(filename) ; ErrorString(':') ;
CardToStr(line, 0, LineNo) ;
ErrorString(LineNo) ; ErrorString(':') ;
CardToStr(column, 0, LineNo) ;
ErrorString(LineNo) ; ErrorString(':') ;
ErrorCharStar(scope) ; ErrorString(':') ;
ErrorCharStar(message) ;
LineNo[0] := nl ; LineNo[1] := nul ;
ErrorString(LineNo) ;
exit(1)
END ErrorMessageColumn ;
(*
ExitOnHalt - if HALT is executed then call exit with the exit code, e.
*)
PROCEDURE ExitOnHalt (e: INTEGER) ;
BEGIN
ExitValue := e ;
CallExit := TRUE
END ExitOnHalt ;
(*
Length - returns the length of a string, a. This is called whenever
the user calls LENGTH and the parameter cannot be calculated
at compile time.
*)
PROCEDURE Length (a: ARRAY OF CHAR) : CARDINAL ;
VAR
l, h: CARDINAL ;
BEGIN
l := 0 ;
h := HIGH(a) ;
WHILE (l<=h) AND (a[l]#nul) DO
INC(l)
END ;
RETURN( l )
END Length ;
(*
The following are the runtime exception handler routines.
*)
PROCEDURE AssignmentException (filename: ADDRESS; line, column: CARDINAL; scope, message: ADDRESS) ;
BEGIN
RTExceptions.Raise (ORD (M2EXCEPTION.rangeException),
filename, line, column, scope, message)
END AssignmentException ;
PROCEDURE ReturnException (filename: ADDRESS; line, column: CARDINAL; scope, message: ADDRESS) ;
BEGIN
RTExceptions.Raise (ORD (M2EXCEPTION.rangeException),
filename, line, column, scope, message)
END ReturnException ;
PROCEDURE IncException (filename: ADDRESS; line, column: CARDINAL; scope, message: ADDRESS) ;
BEGIN
RTExceptions.Raise (ORD (M2EXCEPTION.rangeException),
filename, line, column, scope, message)
END IncException ;
PROCEDURE DecException (filename: ADDRESS; line, column: CARDINAL; scope, message: ADDRESS) ;
BEGIN
RTExceptions.Raise (ORD (M2EXCEPTION.rangeException),
filename, line, column, scope, message)
END DecException ;
PROCEDURE InclException (filename: ADDRESS; line, column: CARDINAL; scope, message: ADDRESS) ;
BEGIN
RTExceptions.Raise (ORD (M2EXCEPTION.rangeException),
filename, line, column, scope, message)
END InclException ;
PROCEDURE ExclException (filename: ADDRESS; line, column: CARDINAL; scope, message: ADDRESS) ;
BEGIN
RTExceptions.Raise (ORD (M2EXCEPTION.rangeException),
filename, line, column, scope, message)
END ExclException ;
PROCEDURE ShiftException (filename: ADDRESS; line, column: CARDINAL; scope, message: ADDRESS) ;
BEGIN
RTExceptions.Raise (ORD (M2EXCEPTION.rangeException),
filename, line, column, scope, message)
END ShiftException ;
PROCEDURE RotateException (filename: ADDRESS; line, column: CARDINAL; scope, message: ADDRESS) ;
BEGIN
RTExceptions.Raise (ORD (M2EXCEPTION.rangeException),
filename, line, column, scope, message)
END RotateException ;
PROCEDURE StaticArraySubscriptException (filename: ADDRESS; line, column: CARDINAL; scope, message: ADDRESS) ;
BEGIN
RTExceptions.Raise(ORD (M2EXCEPTION.indexException),
filename, line, column, scope, message)
END StaticArraySubscriptException ;
PROCEDURE DynamicArraySubscriptException (filename: ADDRESS; line, column: CARDINAL; scope, message: ADDRESS) ;
BEGIN
RTExceptions.Raise (ORD (M2EXCEPTION.indexException),
filename, line, column, scope, message)
END DynamicArraySubscriptException ;
PROCEDURE ForLoopBeginException (filename: ADDRESS; line, column: CARDINAL; scope, message: ADDRESS) ;
BEGIN
RTExceptions.Raise (ORD (M2EXCEPTION.rangeException),
filename, line, column, scope, message)
END ForLoopBeginException ;
PROCEDURE ForLoopToException (filename: ADDRESS; line, column: CARDINAL; scope, message: ADDRESS) ;
BEGIN
RTExceptions.Raise (ORD (M2EXCEPTION.rangeException),
filename, line, column, scope, message)
END ForLoopToException ;
PROCEDURE ForLoopEndException (filename: ADDRESS; line, column: CARDINAL; scope, message: ADDRESS) ;
BEGIN
RTExceptions.Raise (ORD (M2EXCEPTION.rangeException),
filename, line, column, scope, message)
END ForLoopEndException ;
PROCEDURE PointerNilException (filename: ADDRESS; line, column: CARDINAL; scope, message: ADDRESS) ;
BEGIN
RTExceptions.Raise (ORD (M2EXCEPTION.invalidLocation),
filename, line, column, scope, message)
END PointerNilException ;
PROCEDURE NoReturnException (filename: ADDRESS; line, column: CARDINAL; scope, message: ADDRESS) ;
BEGIN
RTExceptions.Raise (ORD (M2EXCEPTION.functionException),
filename, line, column, scope, message)
END NoReturnException ;
PROCEDURE CaseException (filename: ADDRESS; line, column: CARDINAL; scope, message: ADDRESS) ;
BEGIN
RTExceptions.Raise (ORD (M2EXCEPTION.caseSelectException),
filename, line, column, scope, message)
END CaseException ;
PROCEDURE WholeNonPosDivException (filename: ADDRESS; line, column: CARDINAL; scope, message: ADDRESS) ;
BEGIN
RTExceptions.Raise (ORD (M2EXCEPTION.wholeDivException),
filename, line, column, scope, message)
END WholeNonPosDivException ;
PROCEDURE WholeNonPosModException (filename: ADDRESS; line, column: CARDINAL; scope, message: ADDRESS) ;
BEGIN
RTExceptions.Raise (ORD (M2EXCEPTION.wholeDivException),
filename, line, column, scope, message)
END WholeNonPosModException ;
PROCEDURE WholeZeroDivException (filename: ADDRESS; line, column: CARDINAL; scope, message: ADDRESS) ;
BEGIN
RTExceptions.Raise (ORD (M2EXCEPTION.wholeDivException),
filename, line, column, scope, message)
END WholeZeroDivException ;
PROCEDURE WholeZeroRemException (filename: ADDRESS; line, column: CARDINAL; scope, message: ADDRESS) ;
BEGIN
RTExceptions.Raise (ORD (M2EXCEPTION.wholeDivException),
filename, line, column, scope, message)
END WholeZeroRemException ;
PROCEDURE WholeValueException (filename: ADDRESS; line, column: CARDINAL; scope, message: ADDRESS) ;
BEGIN
RTExceptions.Raise (ORD (M2EXCEPTION.wholeValueException),
filename, line, column, scope, message)
END WholeValueException ;
PROCEDURE RealValueException (filename: ADDRESS; line, column: CARDINAL; scope, message: ADDRESS) ;
BEGIN
RTExceptions.Raise (ORD (M2EXCEPTION.realValueException),
filename, line, column, scope, message)
END RealValueException ;
PROCEDURE ParameterException (filename: ADDRESS; line, column: CARDINAL; scope, message: ADDRESS) ;
BEGIN
RTExceptions.Raise (ORD (M2EXCEPTION.rangeException),
filename, line, column, scope, message)
END ParameterException ;
PROCEDURE NoException (filename: ADDRESS; line, column: CARDINAL; scope, message: ADDRESS) ;
BEGIN
RTExceptions.Raise (ORD (M2EXCEPTION.exException),
filename, line, column, scope, message)
END NoException ;
(*
InitProcList - initialize the head and tail pointers to NIL.
*)
PROCEDURE InitProcList (VAR p: ProcedureList) ;
BEGIN
p.head := NIL ;
p.tail := NIL
END InitProcList ;
(*
Init -
*)
PROCEDURE Init ;
BEGIN
InitProcList (InitialProc) ;
InitProcList (TerminateProc) ;
ExitValue := 0 ;
isHalting := FALSE ;
CallExit := FALSE ; (* default by calling abort *)
isTerminating := FALSE
END Init ;
(*
CheckInitialized - checks to see if this module has been initialized
and if it has not it calls Init. We need this
approach as this module is called by module ctors
before we reach main.
*)
PROCEDURE CheckInitialized ;
BEGIN
IF NOT Initialized
THEN
Initialized := TRUE ;
Init
END
END CheckInitialized ;
BEGIN
(* Initialized := FALSE ; is achieved though setting the bss section to zero. *)
CheckInitialized
END M2RTS.
|