7ab1d3687e14a22c0fbdc0d14163812e86980515
[gcc.git] / gcc / ada / gnat1drv.adb
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- G N A T 1 D R V --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2007, Free Software Foundation, Inc. --
10 -- --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING3. If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license. --
20 -- --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
23 -- --
24 ------------------------------------------------------------------------------
25
26 with Atree; use Atree;
27 with Back_End; use Back_End;
28 with Comperr;
29 with Csets; use Csets;
30 with Debug; use Debug;
31 with Elists;
32 with Errout; use Errout;
33 with Fmap;
34 with Fname; use Fname;
35 with Fname.UF; use Fname.UF;
36 with Frontend;
37 with Gnatvsn; use Gnatvsn;
38 with Hostparm;
39 with Inline;
40 with Lib; use Lib;
41 with Lib.Writ; use Lib.Writ;
42 with Lib.Xref;
43 with Namet; use Namet;
44 with Nlists;
45 with Opt; use Opt;
46 with Osint; use Osint;
47 with Output; use Output;
48 with Prepcomp;
49 with Repinfo; use Repinfo;
50 with Restrict;
51 with Rtsfind;
52 with Sem;
53 with Sem_Ch8;
54 with Sem_Ch12;
55 with Sem_Ch13;
56 with Sem_Elim;
57 with Sem_Eval;
58 with Sem_Type;
59 with Sinfo; use Sinfo;
60 with Sinput.L; use Sinput.L;
61 with Snames;
62 with Sprint; use Sprint;
63 with Stringt;
64 with Targparm; use Targparm;
65 with Tree_Gen;
66 with Treepr; use Treepr;
67 with Ttypes;
68 with Types; use Types;
69 with Uintp; use Uintp;
70 with Uname; use Uname;
71 with Urealp;
72 with Usage;
73
74 with System.Assertions;
75
76 procedure Gnat1drv is
77 Main_Unit_Node : Node_Id;
78 -- Compilation unit node for main unit
79
80 Main_Kind : Node_Kind;
81 -- Kind of main compilation unit node
82
83 Back_End_Mode : Back_End.Back_End_Mode_Type;
84 -- Record back end mode
85
86 procedure Check_Bad_Body;
87 -- Called to check if the unit we are compiling has a bad body
88
89 procedure Check_Rep_Info;
90 -- Called when we are not generating code, to check if -gnatR was requested
91 -- and if so, explain that we will not be honoring the request.
92
93 --------------------
94 -- Check_Bad_Body --
95 --------------------
96
97 procedure Check_Bad_Body is
98 Sname : Unit_Name_Type;
99 Src_Ind : Source_File_Index;
100 Fname : File_Name_Type;
101
102 procedure Bad_Body_Error (Msg : String);
103 -- Issue message for bad body found
104
105 --------------------
106 -- Bad_Body_Error --
107 --------------------
108
109 procedure Bad_Body_Error (Msg : String) is
110 begin
111 Error_Msg_N (Msg, Main_Unit_Node);
112 Error_Msg_File_1 := Fname;
113 Error_Msg_N ("remove incorrect body in file{!", Main_Unit_Node);
114 end Bad_Body_Error;
115
116 -- Start of processing for Check_Bad_Body
117
118 begin
119 -- Nothing to do if we are only checking syntax, because we don't know
120 -- enough to know if we require or forbid a body in this case.
121
122 if Operating_Mode = Check_Syntax then
123 return;
124 end if;
125
126 -- Check for body not allowed
127
128 if (Main_Kind = N_Package_Declaration
129 and then not Body_Required (Main_Unit_Node))
130 or else (Main_Kind = N_Generic_Package_Declaration
131 and then not Body_Required (Main_Unit_Node))
132 or else Main_Kind = N_Package_Renaming_Declaration
133 or else Main_Kind = N_Subprogram_Renaming_Declaration
134 or else Nkind (Original_Node (Unit (Main_Unit_Node)))
135 in N_Generic_Instantiation
136 then
137 Sname := Unit_Name (Main_Unit);
138
139 -- If we do not already have a body name, then get the body name
140 -- (but how can we have a body name here ???)
141
142 if not Is_Body_Name (Sname) then
143 Sname := Get_Body_Name (Sname);
144 end if;
145
146 Fname := Get_File_Name (Sname, Subunit => False);
147 Src_Ind := Load_Source_File (Fname);
148
149 -- Case where body is present and it is not a subunit. Exclude
150 -- the subunit case, because it has nothing to do with the
151 -- package we are compiling. It is illegal for a child unit and a
152 -- subunit with the same expanded name (RM 10.2(9)) to appear
153 -- together in a partition, but there is nothing to stop a
154 -- compilation environment from having both, and the test here
155 -- simply allows that. If there is an attempt to include both in
156 -- a partition, this is diagnosed at bind time. In Ada 83 mode
157 -- this is not a warning case.
158
159 -- Note: if weird file names are being used, we can have
160 -- situation where the file name that supposedly contains body,
161 -- in fact contains a spec, or we can't tell what it contains.
162 -- Skip the error message in these cases.
163
164 -- Also ignore body that is nothing but pragma No_Body; (that's the
165 -- whole point of this pragma, to be used this way and to cause the
166 -- body file to be ignored in this context).
167
168 if Src_Ind /= No_Source_File
169 and then Get_Expected_Unit_Type (Fname) = Expect_Body
170 and then not Source_File_Is_Subunit (Src_Ind)
171 and then not Source_File_Is_No_Body (Src_Ind)
172 then
173 Errout.Finalize (Last_Call => False);
174
175 Error_Msg_Unit_1 := Sname;
176
177 -- Ada 83 case of a package body being ignored. This is not an
178 -- error as far as the Ada 83 RM is concerned, but it is almost
179 -- certainly not what is wanted so output a warning. Give this
180 -- message only if there were no errors, since otherwise it may
181 -- be incorrect (we may have misinterpreted a junk spec as not
182 -- needing a body when it really does).
183
184 if Main_Kind = N_Package_Declaration
185 and then Ada_Version = Ada_83
186 and then Operating_Mode = Generate_Code
187 and then Distribution_Stub_Mode /= Generate_Caller_Stub_Body
188 and then not Compilation_Errors
189 then
190 Error_Msg_N
191 ("package $$ does not require a body?", Main_Unit_Node);
192 Error_Msg_File_1 := Fname;
193 Error_Msg_N ("body in file{? will be ignored", Main_Unit_Node);
194
195 -- Ada 95 cases of a body file present when no body is
196 -- permitted. This we consider to be an error.
197
198 else
199 -- For generic instantiations, we never allow a body
200
201 if Nkind (Original_Node (Unit (Main_Unit_Node)))
202 in N_Generic_Instantiation
203 then
204 Bad_Body_Error
205 ("generic instantiation for $$ does not allow a body");
206
207 -- A library unit that is a renaming never allows a body
208
209 elsif Main_Kind in N_Renaming_Declaration then
210 Bad_Body_Error
211 ("renaming declaration for $$ does not allow a body!");
212
213 -- Remaining cases are packages and generic packages. Here
214 -- we only do the test if there are no previous errors,
215 -- because if there are errors, they may lead us to
216 -- incorrectly believe that a package does not allow a body
217 -- when in fact it does.
218
219 elsif not Compilation_Errors then
220 if Main_Kind = N_Package_Declaration then
221 Bad_Body_Error
222 ("package $$ does not allow a body!");
223
224 elsif Main_Kind = N_Generic_Package_Declaration then
225 Bad_Body_Error
226 ("generic package $$ does not allow a body!");
227 end if;
228 end if;
229
230 end if;
231 end if;
232 end if;
233 end Check_Bad_Body;
234
235 --------------------
236 -- Check_Rep_Info --
237 --------------------
238
239 procedure Check_Rep_Info is
240 begin
241 if List_Representation_Info /= 0
242 or else List_Representation_Info_Mechanisms
243 then
244 Write_Eol;
245 Write_Str
246 ("cannot generate representation information, no code generated");
247 Write_Eol;
248 Write_Eol;
249 end if;
250 end Check_Rep_Info;
251
252 -- Start of processing for Gnat1drv
253
254 begin
255 -- This inner block is set up to catch assertion errors and constraint
256 -- errors. Since the code for handling these errors can cause another
257 -- exception to be raised (namely Unrecoverable_Error), we need two
258 -- nested blocks, so that the outer one handles unrecoverable error.
259
260 begin
261 -- Lib.Initialize need to be called before Scan_Compiler_Arguments,
262 -- because it initializes a table filled by Scan_Compiler_Arguments.
263
264 Osint.Initialize;
265 Fmap.Reset_Tables;
266 Lib.Initialize;
267 Lib.Xref.Initialize;
268 Scan_Compiler_Arguments;
269 Osint.Add_Default_Search_Dirs;
270
271 Nlists.Initialize;
272 Sinput.Initialize;
273 Sem.Initialize;
274 Csets.Initialize;
275 Uintp.Initialize;
276 Urealp.Initialize;
277 Errout.Initialize;
278 Namet.Initialize;
279 Snames.Initialize;
280 Stringt.Initialize;
281 Inline.Initialize;
282 Sem_Ch8.Initialize;
283 Sem_Ch12.Initialize;
284 Sem_Ch13.Initialize;
285 Sem_Elim.Initialize;
286 Sem_Eval.Initialize;
287 Sem_Type.Init_Interp_Tables;
288
289 -- Acquire target parameters from system.ads (source of package System)
290
291 declare
292 use Sinput;
293
294 S : Source_File_Index;
295 N : File_Name_Type;
296
297 begin
298 Name_Buffer (1 .. 10) := "system.ads";
299 Name_Len := 10;
300 N := Name_Find;
301 S := Load_Source_File (N);
302
303 if S = No_Source_File then
304 Write_Line
305 ("fatal error, run-time library not installed correctly");
306 Write_Line
307 ("cannot locate file system.ads");
308 raise Unrecoverable_Error;
309
310 -- Remember source index of system.ads (which was read successfully)
311
312 else
313 System_Source_File_Index := S;
314 end if;
315
316 Targparm.Get_Target_Parameters
317 (System_Text => Source_Text (S),
318 Source_First => Source_First (S),
319 Source_Last => Source_Last (S));
320
321 -- Acquire configuration pragma information from Targparm
322
323 Restrict.Restrictions := Targparm.Restrictions_On_Target;
324 end;
325
326 -- Set Configurable_Run_Time mode if system.ads flag set
327
328 if Targparm.Configurable_Run_Time_On_Target or Debug_Flag_YY then
329 Configurable_Run_Time_Mode := True;
330 end if;
331
332 -- Set -gnatR3m mode if debug flag A set
333
334 if Debug_Flag_AA then
335 Back_Annotate_Rep_Info := True;
336 List_Representation_Info := 1;
337 List_Representation_Info_Mechanisms := True;
338 end if;
339
340 -- Disable static allocation of dispatch tables if -gnatd.t or if layout
341 -- is enabled. The front end's layout phase currently treats types that
342 -- have discriminant-dependent arrays as not being static even when a
343 -- discriminant constraint on the type is static, and this leads to
344 -- problems with subtypes of type Ada.Tags.Dispatch_Table_Wrapper. ???
345
346 if Debug_Flag_Dot_T or else Frontend_Layout_On_Target then
347 Static_Dispatch_Tables := False;
348 end if;
349
350 -- Output copyright notice if full list mode unless we have a list
351 -- file, in which case we defer this so that it is output in the file
352
353 if (Verbose_Mode or else (Full_List and then Full_List_File_Name = null))
354 and then not Debug_Flag_7
355 then
356 Write_Eol;
357 Write_Str ("GNAT ");
358 Write_Str (Gnat_Version_String);
359 Write_Eol;
360 Write_Str ("Copyright 1992-" &
361 Current_Year &
362 ", Free Software Foundation, Inc.");
363 Write_Eol;
364 end if;
365
366 -- Before we do anything else, adjust certain global values for
367 -- debug switches which modify their normal natural settings.
368
369 if Debug_Flag_8 then
370 Ttypes.Bytes_Big_Endian := not Ttypes.Bytes_Big_Endian;
371 end if;
372
373 if Debug_Flag_M then
374 Targparm.OpenVMS_On_Target := True;
375 Hostparm.OpenVMS := True;
376 end if;
377
378 if Debug_Flag_FF then
379 Targparm.Frontend_Layout_On_Target := True;
380 end if;
381
382 -- We take the default exception mechanism into account
383
384 if Targparm.ZCX_By_Default_On_Target then
385 if Targparm.GCC_ZCX_Support_On_Target then
386 Exception_Mechanism := Back_End_Exceptions;
387 else
388 Osint.Fail
389 ("Zero Cost Exceptions not supported on this target");
390 end if;
391 end if;
392
393 -- Set proper status for overflow checks. We turn on overflow checks
394 -- if -gnatp was not specified, and either -gnato is set or the back
395 -- end takes care of overflow checks. Otherwise we suppress overflow
396 -- checks by default (since front end checks are expensive).
397
398 if not Opt.Suppress_Checks
399 and then (Opt.Enable_Overflow_Checks
400 or else
401 (Targparm.Backend_Divide_Checks_On_Target
402 and
403 Targparm.Backend_Overflow_Checks_On_Target))
404 then
405 Suppress_Options (Overflow_Check) := False;
406 else
407 Suppress_Options (Overflow_Check) := True;
408 end if;
409
410 -- Check we do not have more than one source file, this happens only in
411 -- the case where the driver is called directly, it cannot happen when
412 -- gnat1 is invoked from gcc in the normal case.
413
414 if Osint.Number_Of_Files /= 1 then
415 Usage;
416 Write_Eol;
417 Osint.Fail ("you must provide one source file");
418
419 elsif Usage_Requested then
420 Usage;
421 end if;
422
423 Original_Operating_Mode := Operating_Mode;
424 Frontend;
425
426 -- Exit with errors if the main source could not be parsed
427
428 if Sinput.Main_Source_File = No_Source_File then
429 Errout.Finalize (Last_Call => True);
430 Errout.Output_Messages;
431 Exit_Program (E_Errors);
432 end if;
433
434 Main_Unit_Node := Cunit (Main_Unit);
435 Main_Kind := Nkind (Unit (Main_Unit_Node));
436 Check_Bad_Body;
437
438 -- Exit if compilation errors detected
439
440 Errout.Finalize (Last_Call => False);
441
442 if Compilation_Errors then
443 Treepr.Tree_Dump;
444 Sem_Ch13.Validate_Unchecked_Conversions;
445 Errout.Output_Messages;
446 Namet.Finalize;
447
448 -- Generate ALI file if specially requested
449
450 if Opt.Force_ALI_Tree_File then
451 Write_ALI (Object => False);
452 Tree_Gen;
453 end if;
454
455 Errout.Finalize (Last_Call => True);
456 Exit_Program (E_Errors);
457 end if;
458
459 -- Set Generate_Code on main unit and its spec. We do this even if are
460 -- not generating code, since Lib-Writ uses this to determine which
461 -- units get written in the ali file.
462
463 Set_Generate_Code (Main_Unit);
464
465 -- If we have a corresponding spec, then we need object
466 -- code for the spec unit as well
467
468 if Nkind (Unit (Main_Unit_Node)) in N_Unit_Body
469 and then not Acts_As_Spec (Main_Unit_Node)
470 then
471 Set_Generate_Code
472 (Get_Cunit_Unit_Number (Library_Unit (Main_Unit_Node)));
473 end if;
474
475 -- Case of no code required to be generated, exit indicating no error
476
477 if Original_Operating_Mode = Check_Syntax then
478 Treepr.Tree_Dump;
479 Errout.Finalize (Last_Call => True);
480 Errout.Output_Messages;
481 Tree_Gen;
482 Namet.Finalize;
483 Check_Rep_Info;
484
485 -- Use a goto instead of calling Exit_Program so that finalization
486 -- occurs normally.
487
488 goto End_Of_Program;
489
490 elsif Original_Operating_Mode = Check_Semantics then
491 Back_End_Mode := Declarations_Only;
492
493 -- All remaining cases are cases in which the user requested that code
494 -- be generated (i.e. no -gnatc or -gnats switch was used). Check if
495 -- we can in fact satisfy this request.
496
497 -- Cannot generate code if someone has turned off code generation for
498 -- any reason at all. We will try to figure out a reason below.
499
500 elsif Operating_Mode /= Generate_Code then
501 Back_End_Mode := Skip;
502
503 -- We can generate code for a subprogram body unless there were missing
504 -- subunits. Note that we always generate code for all generic units (a
505 -- change from some previous versions of GNAT).
506
507 elsif Main_Kind = N_Subprogram_Body
508 and then not Subunits_Missing
509 then
510 Back_End_Mode := Generate_Object;
511
512 -- We can generate code for a package body unless there are subunits
513 -- missing (note that we always generate code for generic units, which
514 -- is a change from some earlier versions of GNAT).
515
516 elsif Main_Kind = N_Package_Body
517 and then not Subunits_Missing
518 then
519 Back_End_Mode := Generate_Object;
520
521 -- We can generate code for a package declaration or a subprogram
522 -- declaration only if it does not required a body.
523
524 elsif (Main_Kind = N_Package_Declaration
525 or else
526 Main_Kind = N_Subprogram_Declaration)
527 and then
528 (not Body_Required (Main_Unit_Node)
529 or else
530 Distribution_Stub_Mode = Generate_Caller_Stub_Body)
531 then
532 Back_End_Mode := Generate_Object;
533
534 -- We can generate code for a generic package declaration of a generic
535 -- subprogram declaration only if does not require a body.
536
537 elsif (Main_Kind = N_Generic_Package_Declaration
538 or else
539 Main_Kind = N_Generic_Subprogram_Declaration)
540 and then not Body_Required (Main_Unit_Node)
541 then
542 Back_End_Mode := Generate_Object;
543
544 -- Compilation units that are renamings do not require bodies,
545 -- so we can generate code for them.
546
547 elsif Main_Kind = N_Package_Renaming_Declaration
548 or else Main_Kind = N_Subprogram_Renaming_Declaration
549 then
550 Back_End_Mode := Generate_Object;
551
552 -- Compilation units that are generic renamings do not require bodies
553 -- so we can generate code for them.
554
555 elsif Main_Kind in N_Generic_Renaming_Declaration then
556 Back_End_Mode := Generate_Object;
557
558 -- In all other cases (specs which have bodies, generics, and bodies
559 -- where subunits are missing), we cannot generate code and we generate
560 -- a warning message. Note that generic instantiations are gone at this
561 -- stage since they have been replaced by their instances.
562
563 else
564 Back_End_Mode := Skip;
565 end if;
566
567 -- At this stage Call_Back_End is set to indicate if the backend should
568 -- be called to generate code. If it is not set, then code generation
569 -- has been turned off, even though code was requested by the original
570 -- command. This is not an error from the user point of view, but it is
571 -- an error from the point of view of the gcc driver, so we must exit
572 -- with an error status.
573
574 -- We generate an informative message (from the gcc point of view, it
575 -- is an error message, but from the users point of view this is not an
576 -- error, just a consequence of compiling something that cannot
577 -- generate code).
578
579 if Back_End_Mode = Skip then
580 Write_Str ("cannot generate code for ");
581 Write_Str ("file ");
582 Write_Name (Unit_File_Name (Main_Unit));
583
584 if Subunits_Missing then
585 Write_Str (" (missing subunits)");
586 Write_Eol;
587 Write_Str ("to check parent unit");
588
589 elsif Main_Kind = N_Subunit then
590 Write_Str (" (subunit)");
591 Write_Eol;
592 Write_Str ("to check subunit");
593
594 elsif Main_Kind = N_Subprogram_Declaration then
595 Write_Str (" (subprogram spec)");
596 Write_Eol;
597 Write_Str ("to check subprogram spec");
598
599 -- Generic package body in GNAT implementation mode
600
601 elsif Main_Kind = N_Package_Body and then GNAT_Mode then
602 Write_Str (" (predefined generic)");
603 Write_Eol;
604 Write_Str ("to check predefined generic");
605
606 -- Only other case is a package spec
607
608 else
609 Write_Str (" (package spec)");
610 Write_Eol;
611 Write_Str ("to check package spec");
612 end if;
613
614 Write_Str (" for errors, use ");
615
616 if Hostparm.OpenVMS then
617 Write_Str ("/NOLOAD");
618 else
619 Write_Str ("-gnatc");
620 end if;
621
622 Write_Eol;
623
624 Sem_Ch13.Validate_Unchecked_Conversions;
625 Errout.Finalize (Last_Call => True);
626 Errout.Output_Messages;
627 Treepr.Tree_Dump;
628 Tree_Gen;
629 Write_ALI (Object => False);
630 Namet.Finalize;
631 Check_Rep_Info;
632
633 -- Exit program with error indication, to kill object file
634
635 Exit_Program (E_No_Code);
636 end if;
637
638 -- In -gnatc mode, we only do annotation if -gnatt or -gnatR is also
639 -- set as indicated by Back_Annotate_Rep_Info being set to True.
640
641 -- We don't call for annotations on a subunit, because to process those
642 -- the back-end requires that the parent(s) be properly compiled.
643
644 -- Annotation is suppressed for targets where front-end layout is
645 -- enabled, because the front end determines representations.
646
647 -- Annotation is also suppressed in the case of compiling for
648 -- a VM, since representations are largely symbolic there.
649
650 if Back_End_Mode = Declarations_Only
651 and then (not Back_Annotate_Rep_Info
652 or else Main_Kind = N_Subunit
653 or else Targparm.Frontend_Layout_On_Target
654 or else Targparm.VM_Target /= No_VM)
655 then
656 Sem_Ch13.Validate_Unchecked_Conversions;
657 Errout.Finalize (Last_Call => True);
658 Errout.Output_Messages;
659 Write_ALI (Object => False);
660 Tree_Dump;
661 Tree_Gen;
662 Namet.Finalize;
663 Check_Rep_Info;
664 return;
665 end if;
666
667 -- Ensure that we properly register a dependency on system.ads, since
668 -- even if we do not semantically depend on this, Targparm has read
669 -- system parameters from the system.ads file.
670
671 Lib.Writ.Ensure_System_Dependency;
672
673 -- Add dependencies, if any, on preprocessing data file and on
674 -- preprocessing definition file(s).
675
676 Prepcomp.Add_Dependencies;
677
678 -- Back end needs to explicitly unlock tables it needs to touch
679
680 Atree.Lock;
681 Elists.Lock;
682 Fname.UF.Lock;
683 Inline.Lock;
684 Lib.Lock;
685 Nlists.Lock;
686 Sem.Lock;
687 Sinput.Lock;
688 Namet.Lock;
689 Stringt.Lock;
690
691 -- Here we call the back end to generate the output code
692
693 Generating_Code := True;
694 Back_End.Call_Back_End (Back_End_Mode);
695
696 -- Once the backend is complete, we unlock the names table. This call
697 -- allows a few extra entries, needed for example for the file name for
698 -- the library file output.
699
700 Namet.Unlock;
701
702 -- Validate unchecked conversions (using the values for size and
703 -- alignment annotated by the backend where possible).
704
705 Sem_Ch13.Validate_Unchecked_Conversions;
706
707 -- Now we complete output of errors, rep info and the tree info. These
708 -- are delayed till now, since it is perfectly possible for gigi to
709 -- generate errors, modify the tree (in particular by setting flags
710 -- indicating that elaboration is required, and also to back annotate
711 -- representation information for List_Rep_Info.
712
713 Errout.Finalize (Last_Call => True);
714 Errout.Output_Messages;
715 List_Rep_Info;
716
717 -- Only write the library if the backend did not generate any error
718 -- messages. Otherwise signal errors to the driver program so that
719 -- there will be no attempt to generate an object file.
720
721 if Compilation_Errors then
722 Treepr.Tree_Dump;
723 Exit_Program (E_Errors);
724 end if;
725
726 Write_ALI (Object => (Back_End_Mode = Generate_Object));
727
728 -- Generate the ASIS tree after writing the ALI file, since in ASIS
729 -- mode, Write_ALI may in fact result in further tree decoration from
730 -- the original tree file. Note that we dump the tree just before
731 -- generating it, so that the dump will exactly reflect what is written
732 -- out.
733
734 Treepr.Tree_Dump;
735 Tree_Gen;
736
737 -- Finalize name table and we are all done
738
739 Namet.Finalize;
740
741 exception
742 -- Handle fatal internal compiler errors
743
744 when Rtsfind.RE_Not_Available =>
745 Comperr.Compiler_Abort ("RE_Not_Available");
746
747 when System.Assertions.Assert_Failure =>
748 Comperr.Compiler_Abort ("Assert_Failure");
749
750 when Constraint_Error =>
751 Comperr.Compiler_Abort ("Constraint_Error");
752
753 when Program_Error =>
754 Comperr.Compiler_Abort ("Program_Error");
755
756 when Storage_Error =>
757
758 -- Assume this is a bug. If it is real, the message will in any case
759 -- say Storage_Error, giving a strong hint!
760
761 Comperr.Compiler_Abort ("Storage_Error");
762 end;
763
764 <<End_Of_Program>>
765 null;
766
767 -- The outer exception handles an unrecoverable error
768
769 exception
770 when Unrecoverable_Error =>
771 Errout.Finalize (Last_Call => True);
772 Errout.Output_Messages;
773
774 Set_Standard_Error;
775 Write_Str ("compilation abandoned");
776 Write_Eol;
777
778 Set_Standard_Output;
779 Source_Dump;
780 Tree_Dump;
781 Exit_Program (E_Errors);
782
783 end Gnat1drv;