]> gcc.gnu.org Git - gcc.git/blob - gcc/ada/frontend.adb
ada: Move warnings switches
[gcc.git] / gcc / ada / frontend.adb
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- F R O N T E N D --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2022, 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 System.Strings; use System.Strings;
27
28 with Atree; use Atree;
29 with Checks;
30 with CStand;
31 with Debug; use Debug;
32 with Elists;
33 with Exp_Ch6;
34 with Exp_Dbug;
35 with Exp_Unst;
36 with Fmap;
37 with Fname.UF;
38 with Ghost; use Ghost;
39 with Inline; use Inline;
40 with Lib; use Lib;
41 with Lib.Load; use Lib.Load;
42 with Live; use Live;
43 with Namet; use Namet;
44 with Nlists; use Nlists;
45 with Opt; use Opt;
46 with Osint;
47 with Par;
48 with Prep;
49 with Prepcomp;
50 with Restrict; use Restrict;
51 with Rident; use Rident;
52 with Rtsfind;
53 with Snames; use Snames;
54 with Sprint;
55 with Scn; use Scn;
56 with Sem; use Sem;
57 with Sem_Aux;
58 with Sem_Ch8;
59 with Sem_SCIL;
60 with Sem_Elab; use Sem_Elab;
61 with Sem_Prag; use Sem_Prag;
62 with Sem_Warn;
63 with Sinfo; use Sinfo;
64 with Sinfo.Nodes; use Sinfo.Nodes;
65 with Sinfo.Utils; use Sinfo.Utils;
66 with Sinput; use Sinput;
67 with Sinput.L; use Sinput.L;
68 with SCIL_LL;
69 with Tbuild; use Tbuild;
70 with Types; use Types;
71 with VAST;
72 with Warnsw; use Warnsw;
73
74 procedure Frontend is
75 begin
76 -- Carry out package initializations. These are initializations which might
77 -- logically be performed at elaboration time, were it not for the fact
78 -- that we may be doing things more than once in the big loop over files.
79 -- Like elaboration, the order in which these calls are made is in some
80 -- cases important. For example, Lib cannot be initialized before Namet,
81 -- since it uses names table entries.
82
83 Rtsfind.Initialize;
84 Nlists.Initialize;
85 Elists.Initialize;
86 Lib.Load.Initialize;
87 Sem_Aux.Initialize;
88 Sem_Ch8.Initialize;
89 Sem_Prag.Initialize;
90 Fname.UF.Initialize;
91 Checks.Initialize;
92 Sem_Warn.Initialize;
93 Prep.Initialize;
94 Sem_Elab.Initialize;
95
96 if Generate_SCIL then
97 SCIL_LL.Initialize;
98 end if;
99
100 -- Create package Standard
101
102 CStand.Create_Standard;
103
104 -- Check possible symbol definitions specified by -gnateD switches
105
106 Prepcomp.Process_Command_Line_Symbol_Definitions;
107
108 -- If -gnatep= was specified, parse the preprocessing data file
109
110 if Preprocessing_Data_File /= null then
111 Name_Len := Preprocessing_Data_File'Length;
112 Name_Buffer (1 .. Name_Len) := Preprocessing_Data_File.all;
113 Prepcomp.Parse_Preprocessing_Data_File (Name_Find);
114
115 -- Otherwise, check if there were preprocessing symbols on the command
116 -- line and set preprocessing if there are.
117
118 else
119 Prepcomp.Check_Symbols;
120 end if;
121
122 -- We set Parsing_Main_Extended_Source true here to cover processing of all
123 -- the configuration pragma files, as well as the main source unit itself.
124
125 Parsing_Main_Extended_Source := True;
126
127 -- Now that the preprocessing situation is established, we are able to
128 -- load the main source (this is no longer done by Lib.Load.Initialize).
129
130 Lib.Load.Load_Main_Source;
131
132 -- Return immediately if the main source could not be found
133
134 if Sinput.Main_Source_File <= No_Source_File then
135 return;
136 end if;
137
138 -- Read and process configuration pragma files if present
139
140 declare
141 Dot_Gnat_Adc : constant File_Name_Type := Name_Find ("./gnat.adc");
142 Gnat_Adc : constant File_Name_Type := Name_Find ("gnat.adc");
143
144 Save_Style_Check : constant Boolean := Opt.Style_Check;
145 -- Save style check mode so it can be restored later
146
147 Config_Pragmas : List_Id := Empty_List;
148 -- Gather configuration pragmas
149
150 Source_Config_File : Source_File_Index;
151 -- Source reference for -gnatec configuration file
152
153 Prag : Node_Id;
154
155 begin
156 -- We always analyze config files with style checks off, since we
157 -- don't want a miscellaneous gnat.adc that is around to discombobulate
158 -- intended -gnatg or -gnaty compilations. We also disconnect checking
159 -- for maximum line length.
160
161 Opt.Style_Check := False;
162 Style_Check := False;
163
164 -- Capture current suppress options, which may get modified
165
166 Scope_Suppress := Opt.Suppress_Options;
167
168 -- First deal with gnat.adc file
169
170 if Opt.Config_File then
171 Source_gnat_adc := Load_Config_File (Gnat_Adc);
172
173 -- Case of gnat.adc file present
174
175 if Source_gnat_adc > No_Source_File then
176
177 -- Parse the gnat.adc file for configuration pragmas
178
179 Initialize_Scanner (No_Unit, Source_gnat_adc);
180 Config_Pragmas := Par (Configuration_Pragmas => True);
181
182 -- We add a compilation dependency for gnat.adc so that if it
183 -- changes, we force a recompilation.
184
185 Prepcomp.Add_Dependency (Source_gnat_adc);
186 end if;
187 end if;
188
189 -- Now deal with specified config pragmas files if there are any
190
191 if Opt.Config_File_Names /= null then
192
193 -- Loop through config pragmas files
194
195 for Index in Opt.Config_File_Names'Range loop
196 declare
197 Len : constant Natural := Config_File_Names (Index)'Length;
198 Str : constant String (1 .. Len) :=
199 Config_File_Names (Index).all;
200
201 Config_Name : constant File_Name_Type := Name_Find (Str);
202 Temp_File : constant Boolean :=
203 Len > 4
204 and then
205 (Str (Len - 3 .. Len) = ".TMP"
206 or else
207 Str (Len - 3 .. Len) = ".tmp");
208 -- Extension indicating a temporary config file?
209
210 begin
211 -- Skip it if it's the default name, already loaded above.
212 -- Otherwise, we get confusing warning messages about seeing
213 -- the same thing twice.
214
215 if Config_Name /= Gnat_Adc
216 and then Config_Name /= Dot_Gnat_Adc
217 then
218 -- Load the file, error if we did not find it
219
220 Source_Config_File := Load_Config_File (Config_Name);
221
222 if Source_Config_File <= No_Source_File then
223 Osint.Fail
224 ("cannot find configuration pragmas file "
225 & Config_File_Names (Index).all);
226
227 -- If we did find the file, and it is not a temporary file,
228 -- then we add a compilation dependency for it so that if it
229 -- changes, we force a recompilation.
230
231 elsif not Temp_File then
232 Prepcomp.Add_Dependency (Source_Config_File);
233 end if;
234
235 -- Parse the config pragmas file, and accumulate results
236
237 Initialize_Scanner (No_Unit, Source_Config_File);
238 Append_List_To
239 (Config_Pragmas, Par (Configuration_Pragmas => True));
240 end if;
241 end;
242 end loop;
243 end if;
244
245 -- Now analyze all pragmas except those whose analysis must be
246 -- deferred till after the main unit is analyzed.
247
248 if Config_Pragmas /= Error_List
249 and then Operating_Mode /= Check_Syntax
250 then
251 Prag := First (Config_Pragmas);
252 while Present (Prag) loop
253 if not Delay_Config_Pragma_Analyze (Prag) then
254 Analyze_Pragma (Prag);
255 end if;
256
257 Next (Prag);
258 end loop;
259 end if;
260
261 -- Restore style check, but if config file turned on checks, leave on
262
263 Opt.Style_Check := Save_Style_Check or Style_Check;
264
265 -- Capture any modifications to suppress options from config pragmas
266
267 Opt.Suppress_Options := Scope_Suppress;
268
269 -- If a target dependency info file has been read through switch
270 -- -gnateT=, add it to the dependencies.
271
272 if Target_Dependent_Info_Read_Name /= null then
273 declare
274 Index : Source_File_Index;
275 begin
276 Name_Len := 0;
277 Add_Str_To_Name_Buffer (Target_Dependent_Info_Read_Name.all);
278 Index := Load_Config_File (Name_Enter);
279 Prepcomp.Add_Dependency (Index);
280 end;
281 end if;
282
283 -- This is where we can capture the value of the compilation unit
284 -- specific restrictions that have been set by the config pragma
285 -- files (or from Targparm), for later restoration when processing
286 -- e.g. subunits.
287
288 Save_Config_Cunit_Boolean_Restrictions;
289
290 -- If there was a -gnatem switch, initialize the mappings of unit names
291 -- to file names and of file names to path names from the mapping file.
292
293 if Mapping_File_Name /= null then
294 Fmap.Initialize (Mapping_File_Name.all);
295 end if;
296
297 -- Adjust Optimize_Alignment mode from debug switches if necessary
298
299 if Debug_Flag_Dot_SS then
300 Optimize_Alignment := 'S';
301 elsif Debug_Flag_Dot_TT then
302 Optimize_Alignment := 'T';
303 end if;
304
305 -- We have now processed the command line switches, and the
306 -- configuration pragma files, so this is the point at which we want to
307 -- capture the values of the configuration switches (see Opt for further
308 -- details).
309
310 Register_Config_Switches;
311
312 -- Check for file which contains No_Body pragma
313
314 if Source_File_Is_No_Body (Source_Index (Main_Unit)) then
315 Change_Main_Unit_To_Spec;
316 end if;
317
318 -- Initialize the scanner. Note that we do this after the call to
319 -- Create_Standard, which uses the scanner in its processing of
320 -- floating-point bounds.
321
322 Initialize_Scanner (Main_Unit, Source_Index (Main_Unit));
323
324 -- Here we call the parser to parse the compilation unit (or units in
325 -- the check syntax mode, but in that case we won't go on to the
326 -- semantics in any case).
327
328 Discard_List (Par (Configuration_Pragmas => False));
329 Parsing_Main_Extended_Source := False;
330
331 -- The main unit is now loaded, and subunits of it can be loaded,
332 -- without reporting spurious loading circularities.
333
334 Set_Loading (Main_Unit, False);
335
336 -- Now that the main unit is installed, we can complete the analysis
337 -- of the pragmas in gnat.adc and the configuration file, that require
338 -- a context for their semantic processing.
339
340 if Config_Pragmas /= Error_List
341 and then Operating_Mode /= Check_Syntax
342
343 -- Do not attempt to process deferred configuration pragmas if the
344 -- main unit failed to load, to avoid cascaded inconsistencies that
345 -- can lead to a compiler crash.
346
347 and then Fatal_Error (Main_Unit) /= Error_Detected
348 then
349 -- Pragmas that require some semantic activity, such as
350 -- Interrupt_State, cannot be processed until the main unit is
351 -- installed, because they require a compilation unit on which to
352 -- attach with_clauses, etc. So analyze them now.
353
354 declare
355 Prag : Node_Id;
356
357 begin
358 Prag := First (Config_Pragmas);
359 while Present (Prag) loop
360
361 -- Guard against the case where a configuration pragma may be
362 -- split into multiple pragmas and the original rewritten as a
363 -- null statement.
364
365 if Nkind (Prag) = N_Pragma
366 and then Delay_Config_Pragma_Analyze (Prag)
367 then
368 Analyze_Pragma (Prag);
369 end if;
370
371 Next (Prag);
372 end loop;
373 end;
374 end if;
375
376 -- If we have restriction No_Exception_Propagation, and we did not have
377 -- an explicit switch turning off Warn_On_Non_Local_Exception, then turn
378 -- on this warning by default if we have encountered an exception
379 -- handler.
380
381 if Restriction_Check_Required (No_Exception_Propagation)
382 and then not No_Warn_On_Non_Local_Exception
383 and then Exception_Handler_Encountered
384 then
385 Warn_On_Non_Local_Exception := True;
386 end if;
387
388 -- Disable Initialize_Scalars for runtime files to avoid circular
389 -- dependencies.
390
391 if Initialize_Scalars
392 and then Fname.Is_Predefined_File_Name (File_Name (Main_Source_File))
393 then
394 Initialize_Scalars := False;
395 Init_Or_Norm_Scalars := Normalize_Scalars;
396 end if;
397
398 -- Now on to the semantics. Skip if in syntax only mode
399
400 if Operating_Mode /= Check_Syntax then
401
402 -- Install the configuration pragmas in the tree
403
404 Set_Config_Pragmas
405 (Aux_Decls_Node (Cunit (Main_Unit)), Config_Pragmas);
406
407 -- Following steps are skipped if we had a fatal error during parsing
408
409 if Fatal_Error (Main_Unit) /= Error_Detected then
410
411 -- Reset Operating_Mode to Check_Semantics for subunits. We cannot
412 -- actually generate code for subunits, so we suppress expansion.
413 -- This also corrects certain problems that occur if we try to
414 -- incorporate subunits at a lower level.
415
416 if Operating_Mode = Generate_Code
417 and then Nkind (Unit (Cunit (Main_Unit))) = N_Subunit
418 then
419 Operating_Mode := Check_Semantics;
420 end if;
421
422 -- Analyze (and possibly expand) main unit
423
424 Scope_Suppress := Suppress_Options;
425 Semantics (Cunit (Main_Unit));
426
427 -- Cleanup processing after completing main analysis
428
429 -- In GNATprove_Mode we do not perform most expansions but body
430 -- instantiation is needed.
431
432 pragma Assert
433 (Operating_Mode = Generate_Code
434 or else Operating_Mode = Check_Semantics);
435
436 if Operating_Mode = Generate_Code
437 or else GNATprove_Mode
438 then
439 Instantiate_Bodies;
440 end if;
441
442 -- Analyze all inlined bodies, check access-before-elaboration
443 -- rules, and remove ignored Ghost code when generating code or
444 -- compiling for GNATprove.
445
446 if Operating_Mode = Generate_Code or else GNATprove_Mode then
447 if Inline_Processing_Required then
448 Analyze_Inlined_Bodies;
449 end if;
450
451 -- Remove entities from program that do not have any execution
452 -- time references.
453
454 if Debug_Flag_UU then
455 Collect_Garbage_Entities;
456 end if;
457
458 if Legacy_Elaboration_Checks then
459 Check_Elab_Calls;
460 end if;
461
462 -- Examine all top level scenarios collected during analysis
463 -- and resolution. Diagnose conditional ABEs, install run-time
464 -- checks to catch conditional ABEs, and guarantee the prior
465 -- elaboration of external units.
466
467 Check_Elaboration_Scenarios;
468
469 -- Examine all top level scenarios collected during analysis and
470 -- resolution in order to diagnose conditional ABEs, even in the
471 -- presence of serious errors.
472
473 else
474 Check_Elaboration_Scenarios;
475 end if;
476
477 -- List library units if requested
478
479 if List_Units then
480 Lib.List;
481 end if;
482
483 -- Output waiting warning messages
484
485 Sem_Warn.Output_Non_Modified_In_Out_Warnings;
486 Sem_Warn.Output_Unreferenced_Messages;
487 Sem_Warn.Check_Unused_Withs;
488 Sem_Warn.Output_Unused_Warnings_Off_Warnings;
489
490 -- Remove any ignored Ghost code as it must not appear in the
491 -- executable. This action must be performed very late because it
492 -- heavily alters the tree.
493
494 if Operating_Mode = Generate_Code or else GNATprove_Mode then
495 Remove_Ignored_Ghost_Code;
496 end if;
497
498 -- At this stage we can unnest subprogram bodies if required
499
500 if Total_Errors_Detected = 0 then
501 Exp_Unst.Unnest_Subprograms (Cunit (Main_Unit));
502 end if;
503
504 end if;
505 end if;
506 end;
507
508 -- Qualify all entity names in inner packages, package bodies, etc
509
510 if not GNATprove_Mode then
511 Exp_Dbug.Qualify_All_Entity_Names;
512 end if;
513
514 -- SCIL backend requirement. Check that SCIL nodes associated with
515 -- dispatching calls reference subprogram calls.
516
517 if Generate_SCIL then
518 pragma Debug (Sem_SCIL.Check_SCIL_Nodes (Cunit (Main_Unit)));
519 null;
520 end if;
521
522 -- Verify the validity of the tree
523
524 if Debug_Flag_Underscore_VV then
525 VAST.Check_Tree (Cunit (Main_Unit));
526 end if;
527
528 -- Validate all the subprogram calls; this work will be done by VAST; in
529 -- the meantime it is done to check extra formals and it can be disabled
530 -- using -gnatd_X (which also disables all the other assertions on extra
531 -- formals). It is invoked using pragma Debug to avoid adding any cost
532 -- when the compiler is built with assertions disabled.
533
534 if not Debug_Flag_Underscore_XX then
535 pragma Debug (Exp_Ch6.Validate_Subprogram_Calls (Cunit (Main_Unit)));
536 end if;
537
538 -- Dump the source now. Note that we do this as soon as the analysis
539 -- of the tree is complete, because it is not just a dump in the case
540 -- of -gnatD, where it rewrites all source locations in the tree.
541
542 Sprint.Source_Dump;
543
544 -- Check again for configuration pragmas that appear in the context
545 -- of the main unit. These pragmas only affect the main unit, and the
546 -- corresponding flag is reset after each call to Semantics, but they
547 -- may affect the generated ali for the unit, and therefore the flag
548 -- must be set properly after compilation. Currently we only check for
549 -- Initialize_Scalars, but others should be checked: as well???
550
551 declare
552 Item : Node_Id;
553
554 begin
555 Item := First (Context_Items (Cunit (Main_Unit)));
556 while Present (Item) loop
557 if Nkind (Item) = N_Pragma
558 and then Pragma_Name (Item) = Name_Initialize_Scalars
559 then
560 Initialize_Scalars := True;
561 end if;
562
563 Next (Item);
564 end loop;
565 end;
566
567 -- If a mapping file has been specified by a -gnatem switch, update
568 -- it if there has been some sources that were not in the mappings.
569
570 if Mapping_File_Name /= null then
571 Fmap.Update_Mapping_File (Mapping_File_Name.all);
572 end if;
573
574 return;
575 end Frontend;
This page took 0.061398 seconds and 5 git commands to generate.