743520ee79953b6400c1929947c56fd901fc0b95
[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 Sem_Ch13.Validate_Address_Clauses;
446 Errout.Output_Messages;
447 Namet.Finalize;
448
449 -- Generate ALI file if specially requested
450
451 if Opt.Force_ALI_Tree_File then
452 Write_ALI (Object => False);
453 Tree_Gen;
454 end if;
455
456 Errout.Finalize (Last_Call => True);
457 Exit_Program (E_Errors);
458 end if;
459
460 -- Set Generate_Code on main unit and its spec. We do this even if are
461 -- not generating code, since Lib-Writ uses this to determine which
462 -- units get written in the ali file.
463
464 Set_Generate_Code (Main_Unit);
465
466 -- If we have a corresponding spec, then we need object
467 -- code for the spec unit as well
468
469 if Nkind (Unit (Main_Unit_Node)) in N_Unit_Body
470 and then not Acts_As_Spec (Main_Unit_Node)
471 then
472 Set_Generate_Code
473 (Get_Cunit_Unit_Number (Library_Unit (Main_Unit_Node)));
474 end if;
475
476 -- Case of no code required to be generated, exit indicating no error
477
478 if Original_Operating_Mode = Check_Syntax then
479 Treepr.Tree_Dump;
480 Errout.Finalize (Last_Call => True);
481 Errout.Output_Messages;
482 Tree_Gen;
483 Namet.Finalize;
484 Check_Rep_Info;
485
486 -- Use a goto instead of calling Exit_Program so that finalization
487 -- occurs normally.
488
489 goto End_Of_Program;
490
491 elsif Original_Operating_Mode = Check_Semantics then
492 Back_End_Mode := Declarations_Only;
493
494 -- All remaining cases are cases in which the user requested that code
495 -- be generated (i.e. no -gnatc or -gnats switch was used). Check if
496 -- we can in fact satisfy this request.
497
498 -- Cannot generate code if someone has turned off code generation for
499 -- any reason at all. We will try to figure out a reason below.
500
501 elsif Operating_Mode /= Generate_Code then
502 Back_End_Mode := Skip;
503
504 -- We can generate code for a subprogram body unless there were missing
505 -- subunits. Note that we always generate code for all generic units (a
506 -- change from some previous versions of GNAT).
507
508 elsif Main_Kind = N_Subprogram_Body
509 and then not Subunits_Missing
510 then
511 Back_End_Mode := Generate_Object;
512
513 -- We can generate code for a package body unless there are subunits
514 -- missing (note that we always generate code for generic units, which
515 -- is a change from some earlier versions of GNAT).
516
517 elsif Main_Kind = N_Package_Body
518 and then not Subunits_Missing
519 then
520 Back_End_Mode := Generate_Object;
521
522 -- We can generate code for a package declaration or a subprogram
523 -- declaration only if it does not required a body.
524
525 elsif (Main_Kind = N_Package_Declaration
526 or else
527 Main_Kind = N_Subprogram_Declaration)
528 and then
529 (not Body_Required (Main_Unit_Node)
530 or else
531 Distribution_Stub_Mode = Generate_Caller_Stub_Body)
532 then
533 Back_End_Mode := Generate_Object;
534
535 -- We can generate code for a generic package declaration of a generic
536 -- subprogram declaration only if does not require a body.
537
538 elsif (Main_Kind = N_Generic_Package_Declaration
539 or else
540 Main_Kind = N_Generic_Subprogram_Declaration)
541 and then not Body_Required (Main_Unit_Node)
542 then
543 Back_End_Mode := Generate_Object;
544
545 -- Compilation units that are renamings do not require bodies,
546 -- so we can generate code for them.
547
548 elsif Main_Kind = N_Package_Renaming_Declaration
549 or else Main_Kind = N_Subprogram_Renaming_Declaration
550 then
551 Back_End_Mode := Generate_Object;
552
553 -- Compilation units that are generic renamings do not require bodies
554 -- so we can generate code for them.
555
556 elsif Main_Kind in N_Generic_Renaming_Declaration then
557 Back_End_Mode := Generate_Object;
558
559 -- In all other cases (specs which have bodies, generics, and bodies
560 -- where subunits are missing), we cannot generate code and we generate
561 -- a warning message. Note that generic instantiations are gone at this
562 -- stage since they have been replaced by their instances.
563
564 else
565 Back_End_Mode := Skip;
566 end if;
567
568 -- At this stage Call_Back_End is set to indicate if the backend should
569 -- be called to generate code. If it is not set, then code generation
570 -- has been turned off, even though code was requested by the original
571 -- command. This is not an error from the user point of view, but it is
572 -- an error from the point of view of the gcc driver, so we must exit
573 -- with an error status.
574
575 -- We generate an informative message (from the gcc point of view, it
576 -- is an error message, but from the users point of view this is not an
577 -- error, just a consequence of compiling something that cannot
578 -- generate code).
579
580 if Back_End_Mode = Skip then
581 Write_Str ("cannot generate code for ");
582 Write_Str ("file ");
583 Write_Name (Unit_File_Name (Main_Unit));
584
585 if Subunits_Missing then
586 Write_Str (" (missing subunits)");
587 Write_Eol;
588 Write_Str ("to check parent unit");
589
590 elsif Main_Kind = N_Subunit then
591 Write_Str (" (subunit)");
592 Write_Eol;
593 Write_Str ("to check subunit");
594
595 elsif Main_Kind = N_Subprogram_Declaration then
596 Write_Str (" (subprogram spec)");
597 Write_Eol;
598 Write_Str ("to check subprogram spec");
599
600 -- Generic package body in GNAT implementation mode
601
602 elsif Main_Kind = N_Package_Body and then GNAT_Mode then
603 Write_Str (" (predefined generic)");
604 Write_Eol;
605 Write_Str ("to check predefined generic");
606
607 -- Only other case is a package spec
608
609 else
610 Write_Str (" (package spec)");
611 Write_Eol;
612 Write_Str ("to check package spec");
613 end if;
614
615 Write_Str (" for errors, use ");
616
617 if Hostparm.OpenVMS then
618 Write_Str ("/NOLOAD");
619 else
620 Write_Str ("-gnatc");
621 end if;
622
623 Write_Eol;
624
625 Sem_Ch13.Validate_Unchecked_Conversions;
626 Sem_Ch13.Validate_Address_Clauses;
627 Errout.Finalize (Last_Call => True);
628 Errout.Output_Messages;
629 Treepr.Tree_Dump;
630 Tree_Gen;
631 Write_ALI (Object => False);
632 Namet.Finalize;
633 Check_Rep_Info;
634
635 -- Exit program with error indication, to kill object file
636
637 Exit_Program (E_No_Code);
638 end if;
639
640 -- In -gnatc mode, we only do annotation if -gnatt or -gnatR is also
641 -- set as indicated by Back_Annotate_Rep_Info being set to True.
642
643 -- We don't call for annotations on a subunit, because to process those
644 -- the back-end requires that the parent(s) be properly compiled.
645
646 -- Annotation is suppressed for targets where front-end layout is
647 -- enabled, because the front end determines representations.
648
649 -- Annotation is also suppressed in the case of compiling for
650 -- a VM, since representations are largely symbolic there.
651
652 if Back_End_Mode = Declarations_Only
653 and then (not Back_Annotate_Rep_Info
654 or else Main_Kind = N_Subunit
655 or else Targparm.Frontend_Layout_On_Target
656 or else Targparm.VM_Target /= No_VM)
657 then
658 Sem_Ch13.Validate_Unchecked_Conversions;
659 Sem_Ch13.Validate_Address_Clauses;
660 Errout.Finalize (Last_Call => True);
661 Errout.Output_Messages;
662 Write_ALI (Object => False);
663 Tree_Dump;
664 Tree_Gen;
665 Namet.Finalize;
666 Check_Rep_Info;
667 return;
668 end if;
669
670 -- Ensure that we properly register a dependency on system.ads, since
671 -- even if we do not semantically depend on this, Targparm has read
672 -- system parameters from the system.ads file.
673
674 Lib.Writ.Ensure_System_Dependency;
675
676 -- Add dependencies, if any, on preprocessing data file and on
677 -- preprocessing definition file(s).
678
679 Prepcomp.Add_Dependencies;
680
681 -- Back end needs to explicitly unlock tables it needs to touch
682
683 Atree.Lock;
684 Elists.Lock;
685 Fname.UF.Lock;
686 Inline.Lock;
687 Lib.Lock;
688 Nlists.Lock;
689 Sem.Lock;
690 Sinput.Lock;
691 Namet.Lock;
692 Stringt.Lock;
693
694 -- Here we call the back end to generate the output code
695
696 Generating_Code := True;
697 Back_End.Call_Back_End (Back_End_Mode);
698
699 -- Once the backend is complete, we unlock the names table. This call
700 -- allows a few extra entries, needed for example for the file name for
701 -- the library file output.
702
703 Namet.Unlock;
704
705 -- Validate unchecked conversions (using the values for size and
706 -- alignment annotated by the backend where possible).
707
708 Sem_Ch13.Validate_Unchecked_Conversions;
709
710 -- Validate address clauses (again using alignment values annotated
711 -- by the backend where possible).
712
713 Sem_Ch13.Validate_Address_Clauses;
714
715 -- Now we complete output of errors, rep info and the tree info. These
716 -- are delayed till now, since it is perfectly possible for gigi to
717 -- generate errors, modify the tree (in particular by setting flags
718 -- indicating that elaboration is required, and also to back annotate
719 -- representation information for List_Rep_Info.
720
721 Errout.Finalize (Last_Call => True);
722 Errout.Output_Messages;
723 List_Rep_Info;
724
725 -- Only write the library if the backend did not generate any error
726 -- messages. Otherwise signal errors to the driver program so that
727 -- there will be no attempt to generate an object file.
728
729 if Compilation_Errors then
730 Treepr.Tree_Dump;
731 Exit_Program (E_Errors);
732 end if;
733
734 Write_ALI (Object => (Back_End_Mode = Generate_Object));
735
736 -- Generate the ASIS tree after writing the ALI file, since in ASIS
737 -- mode, Write_ALI may in fact result in further tree decoration from
738 -- the original tree file. Note that we dump the tree just before
739 -- generating it, so that the dump will exactly reflect what is written
740 -- out.
741
742 Treepr.Tree_Dump;
743 Tree_Gen;
744
745 -- Finalize name table and we are all done
746
747 Namet.Finalize;
748
749 exception
750 -- Handle fatal internal compiler errors
751
752 when Rtsfind.RE_Not_Available =>
753 Comperr.Compiler_Abort ("RE_Not_Available");
754
755 when System.Assertions.Assert_Failure =>
756 Comperr.Compiler_Abort ("Assert_Failure");
757
758 when Constraint_Error =>
759 Comperr.Compiler_Abort ("Constraint_Error");
760
761 when Program_Error =>
762 Comperr.Compiler_Abort ("Program_Error");
763
764 when Storage_Error =>
765
766 -- Assume this is a bug. If it is real, the message will in any case
767 -- say Storage_Error, giving a strong hint!
768
769 Comperr.Compiler_Abort ("Storage_Error");
770 end;
771
772 <<End_Of_Program>>
773 null;
774
775 -- The outer exception handles an unrecoverable error
776
777 exception
778 when Unrecoverable_Error =>
779 Errout.Finalize (Last_Call => True);
780 Errout.Output_Messages;
781
782 Set_Standard_Error;
783 Write_Str ("compilation abandoned");
784 Write_Eol;
785
786 Set_Standard_Output;
787 Source_Dump;
788 Tree_Dump;
789 Exit_Program (E_Errors);
790
791 end Gnat1drv;