1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2006, Free Software Foundation, Inc. --
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 2, 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 COPYING. If not, write --
19 -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
20 -- Boston, MA 02110-1301, USA. --
22 -- GNAT was originally developed by the GNAT team at New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc. --
25 ------------------------------------------------------------------------------
28 with ALI
.Util
; use ALI
.Util
;
29 with Bcheck
; use Bcheck
;
30 with Binde
; use Binde
;
31 with Binderr
; use Binderr
;
32 with Bindgen
; use Bindgen
;
34 with Butil
; use Butil
;
35 with Casing
; use Casing
;
37 with Debug
; use Debug
;
39 with Gnatvsn
; use Gnatvsn
;
40 with Namet
; use Namet
;
42 with Osint
; use Osint
;
43 with Osint
.B
; use Osint
.B
;
44 with Output
; use Output
;
45 with Rident
; use Rident
;
47 with Switch
; use Switch
;
48 with Switch
.B
; use Switch
.B
;
49 with Targparm
; use Targparm
;
50 with Types
; use Types
;
52 with System
.Case_Util
; use System
.Case_Util
;
56 Total_Errors
: Nat
:= 0;
57 -- Counts total errors in all files
59 Total_Warnings
: Nat
:= 0;
60 -- Total warnings in all files
62 Main_Lib_File
: File_Name_Type
;
63 -- Current main library file
65 Std_Lib_File
: File_Name_Type
;
68 Text
: Text_Buffer_Ptr
;
71 Output_File_Name_Seen
: Boolean := False;
72 Output_File_Name
: String_Ptr
:= new String'("");
74 L_Switch_Seen : Boolean := False;
76 Mapping_File : String_Ptr := null;
78 function Gnatbind_Supports_Auto_Init return Boolean;
79 -- Indicates if automatic initialization of elaboration procedure
80 -- through the constructor mechanism is possible on the platform.
82 procedure List_Applicable_Restrictions;
83 -- List restrictions that apply to this partition if option taken
85 procedure Scan_Bind_Arg (Argv : String);
86 -- Scan and process binder specific arguments. Argv is a single argument.
87 -- All the one character arguments are still handled by Switch. This
88 -- routine handles -aO -aI and -I-. The lower bound of Argv must be 1.
90 function Is_Cross_Compiler return Boolean;
91 -- Returns True iff this is a cross-compiler
93 ---------------------------------
94 -- Gnatbind_Supports_Auto_Init --
95 ---------------------------------
97 function Gnatbind_Supports_Auto_Init return Boolean is
98 function gnat_binder_supports_auto_init return Integer;
99 pragma Import (C, gnat_binder_supports_auto_init,
100 "__gnat_binder_supports_auto_init");
102 return gnat_binder_supports_auto_init /= 0;
103 end Gnatbind_Supports_Auto_Init;
105 -----------------------
106 -- Is_Cross_Compiler --
107 -----------------------
109 function Is_Cross_Compiler return Boolean is
110 Cross_Compiler : Integer;
111 pragma Import (C, Cross_Compiler, "__gnat_is_cross_compiler");
113 return Cross_Compiler = 1;
114 end Is_Cross_Compiler;
116 ----------------------------------
117 -- List_Applicable_Restrictions --
118 ----------------------------------
120 procedure List_Applicable_Restrictions is
122 -- Define those restrictions that should be output if the gnatbind
123 -- -r switch is used. Not all restrictions are output for the reasons
124 -- given above in the list, and this array is used to test whether
125 -- the corresponding pragma should be listed. True means that it
126 -- should not be listed.
128 No_Restriction_List : constant array (All_Restrictions) of Boolean :=
129 (No_Exceptions => True,
130 -- Has unexpected Suppress (All_Checks) effect
132 No_Implicit_Conditionals => True,
133 -- This could modify and pessimize generated code
135 No_Implicit_Dynamic_Code => True,
136 -- This could modify and pessimize generated code
138 No_Implicit_Loops => True,
139 -- This could modify and pessimize generated code
141 No_Recursion => True,
142 -- Not checkable at compile time
144 No_Reentrancy => True,
145 -- Not checkable at compile time
147 Max_Entry_Queue_Length => True,
148 -- Not checkable at compile time
150 Max_Storage_At_Blocking => True,
151 -- Not checkable at compile time
155 Additional_Restrictions_Listed : Boolean := False;
156 -- Set True if we have listed header for restrictions
159 -- Loop through restrictions
161 for R in All_Restrictions loop
162 if not No_Restriction_List (R) then
164 -- We list a restriction if it is not violated, or if
165 -- it is violated but the violation count is exactly known.
167 if Cumulative_Restrictions.Violated (R) = False
168 or else (R in All_Parameter_Restrictions
170 Cumulative_Restrictions.Unknown (R) = False)
172 if not Additional_Restrictions_Listed then
175 ("The following additional restrictions may be" &
176 " applied to this partition:");
177 Additional_Restrictions_Listed := True;
180 Write_Str ("pragma Restrictions (");
183 S : constant String := Restriction_Id'Image (R);
185 Name_Len := S'Length;
186 Name_Buffer (1 .. Name_Len) := S;
189 Set_Casing (Mixed_Case);
190 Write_Str (Name_Buffer (1 .. Name_Len));
192 if R in All_Parameter_Restrictions then
194 Write_Int (Int (Cumulative_Restrictions.Count (R)));
202 end List_Applicable_Restrictions;
208 procedure Scan_Bind_Arg (Argv : String) is
209 pragma Assert (Argv'First = 1);
212 -- Now scan arguments that are specific to the binder and are not
213 -- handled by the common circuitry in Switch.
215 if Opt.Output_File_Name_Present
216 and then not Output_File_Name_Seen
218 Output_File_Name_Seen := True;
221 or else (Argv'Length >= 1 and then Argv (1) = '-')
223 Fail ("output File_Name missing after -o");
226 Output_File_Name := new String'(Argv
);
229 elsif Argv
'Length >= 2 and then Argv
(1) = '-' then
233 if Argv
(2 .. Argv
'Last) = "I-" then
234 Opt
.Look_In_Primary_Dir
:= False;
238 elsif Argv
(2) = 'I' then
239 Add_Src_Search_Dir
(Argv
(3 .. Argv
'Last));
240 Add_Lib_Search_Dir
(Argv
(3 .. Argv
'Last));
244 elsif Argv
(2) = 'L' then
245 if Argv
'Length >= 3 then
247 -- Remember that the -L switch was specified, so that if this
248 -- is on OpenVMS, the export names are put in uppercase.
249 -- This is not known before the target parameters are read.
251 L_Switch_Seen
:= True;
253 Opt
.Bind_For_Library
:= True;
255 new String'(Argv (3 .. Argv'Last) & Opt.Ada_Init_Suffix);
256 Opt.Ada_Final_Name :=
257 new String'(Argv
(3 .. Argv
'Last) & Opt
.Ada_Final_Suffix
);
259 new String'(Argv (3 .. Argv'Last) & Opt.Ada_Main_Name_Suffix);
261 -- This option (-Lxxx) implies -n
263 Opt.Bind_Main_Program := False;
267 ("Prefix of initialization and finalization " &
268 "procedure names missing in -L");
271 -- -Sin -Slo -Shi -Sxx
273 elsif Argv'Length = 4
274 and then Argv (2) = 'S
'
277 C1 : Character := Argv (3);
278 C2 : Character := Argv (4);
281 -- Fold to upper case
283 if C1 in 'a
' .. 'z
' then
284 C1 := Character'Val (Character'Pos (C1) - 32);
287 if C2 in 'a
' .. 'z
' then
288 C2 := Character'Val (Character'Pos (C2) - 32);
291 -- Test valid option and set mode accordingly
293 if C1 = 'E
' and then C2 = 'V
' then
296 elsif C1 = 'I
' and then C2 = 'N
' then
299 elsif C1 = 'L
' and then C2 = 'O
' then
302 elsif C1 = 'H
' and then C2 = 'I
' then
305 elsif (C1 in '0' .. '9' or else C1 in 'A
' .. 'F
')
307 (C2 in '0' .. '9' or else C2 in 'A
' .. 'F
')
311 -- Invalid -S switch, let Switch give error, set defalut of IN
314 Scan_Binder_Switches (Argv);
319 Initialize_Scalars_Mode1 := C1;
320 Initialize_Scalars_Mode2 := C2;
325 elsif Argv'Length >= 3
326 and then Argv (2 .. 3) = "aI"
328 Add_Src_Search_Dir (Argv (4 .. Argv'Last));
332 elsif Argv'Length >= 3
333 and then Argv (2 .. 3) = "aO"
335 Add_Lib_Search_Dir (Argv (4 .. Argv'Last));
339 elsif Argv (2 .. Argv'Last) = "nostdlib" then
340 Opt.No_Stdlib := True;
344 elsif Argv (2 .. Argv'Last) = "nostdinc" then
345 Opt.No_Stdinc := True;
349 elsif Argv (2 .. Argv'Last) = "static" then
350 Opt.Shared_Libgnat := False;
354 elsif Argv (2 .. Argv'Last) = "shared" then
355 Opt.Shared_Libgnat := True;
359 elsif Argv'Length >= 4 and then Argv (2 .. 3) = "F=" then
360 if Mapping_File /= null then
361 Fail ("cannot specify several mapping files");
364 Mapping_File := new String'(Argv
(4 .. Argv
'Last));
368 elsif Argv
'Length >= 3 and then Argv
(2) = 'M' then
369 if not Is_Cross_Compiler
then
371 ("gnatbind: -M not expected to be used on native platforms");
374 Opt
.Bind_Alternate_Main_Name
:= True;
375 Opt
.Alternate_Main_Name
:= new String'(Argv (3 .. Argv'Last));
377 -- All other options are single character and are handled by
378 -- Scan_Binder_Switches.
381 Scan_Binder_Switches (Argv);
384 -- Not a switch, so must be a file name (if non-empty)
386 elsif Argv'Length /= 0 then
388 and then Argv (Argv'Last - 3 .. Argv'Last) = ".ali"
392 Add_File (Argv & ".ali");
397 -- Start of processing for Gnatbind
401 -- Set default for Shared_Libgnat option
404 Shared_Libgnat_Default : Character;
406 (C, Shared_Libgnat_Default, "__gnat_shared_libgnat_default");
408 SHARED : constant Character := 'H
';
409 STATIC : constant Character := 'T
';
413 (Shared_Libgnat_Default = SHARED
415 Shared_Libgnat_Default = STATIC);
416 Shared_Libgnat := (Shared_Libgnat_Default = SHARED);
419 -- Use low level argument routines to avoid dragging in the secondary stack
422 Scan_Args : while Next_Arg < Arg_Count loop
424 Next_Argv : String (1 .. Len_Arg (Next_Arg));
426 Fill_Arg (Next_Argv'Address, Next_Arg);
427 Scan_Bind_Arg (Next_Argv);
430 Next_Arg := Next_Arg + 1;
433 if Use_Pragma_Linker_Constructor then
434 if Bind_Main_Program then
435 Fail ("switch -a must be used in conjunction with -n or -Lxxx");
437 elsif not Gnatbind_Supports_Auto_Init then
438 Fail ("automatic initialisation of elaboration " &
439 "not supported on this platform");
443 -- Test for trailing -o switch
445 if Opt.Output_File_Name_Present
446 and then not Output_File_Name_Seen
448 Fail ("output file name missing after -o");
451 -- Output usage if requested
453 if Usage_Requested then
457 -- Check that the Ada binder file specified has extension .adb and that
458 -- the C binder file has extension .c
460 if Opt.Output_File_Name_Present
461 and then Output_File_Name_Seen
463 Check_Extensions : declare
464 Length : constant Natural := Output_File_Name'Length;
465 Last : constant Natural := Output_File_Name'Last;
468 if Ada_Bind_File then
470 or else Output_File_Name (Last - 3 .. Last) /= ".adb"
472 Fail ("output file name should have .adb extension");
477 or else Output_File_Name (Last - 1 .. Last) /= ".c"
479 Fail ("output file name should have .c extension");
482 end Check_Extensions;
485 Osint.Add_Default_Search_Dirs;
487 -- Carry out package initializations. These are initializations which
488 -- might logically be performed at elaboration time, but Namet at least
489 -- can't be done that way (because it is used in the Compiler), and we
490 -- decide to be consistent. Like elaboration, the order in which these
491 -- calls are made is in some cases important.
497 -- Acquire target parameters
499 Targparm.Get_Target_Parameters;
501 -- Initialize Cumulative_Restrictions with the restrictions on the target
502 -- scanned from the system.ads file. Then as we read ALI files, we will
503 -- accumulate additional restrictions specified in other files.
505 Cumulative_Restrictions := Targparm.Restrictions_On_Target;
507 -- On OpenVMS, when -L is used, all external names used in pragmas Export
508 -- are in upper case. The reason is that on OpenVMS, the macro-assembler
509 -- MACASM-32, used to build Stand-Alone Libraries, only understands
512 if L_Switch_Seen and then OpenVMS_On_Target then
513 To_Upper (Opt.Ada_Init_Name.all);
514 To_Upper (Opt.Ada_Final_Name.all);
515 To_Upper (Opt.Ada_Main_Name.all);
518 -- Acquire configurable run-time mode
520 if Configurable_Run_Time_On_Target then
521 Configurable_Run_Time_Mode := True;
524 -- Output copyright notice if in verbose mode
528 Write_Str ("GNATBIND ");
529 Write_Str (Gnat_Version_String);
531 Write_Str ("Copyright 1995-" &
533 ", Free Software Foundation, Inc.");
537 -- Output usage information if no files
539 if not More_Lib_Files then
541 Exit_Program (E_Fatal);
544 -- If a mapping file was specified, initialize the file mapping
546 if Mapping_File /= null then
547 Fmap.Initialize (Mapping_File.all);
550 -- The block here is to catch the Unrecoverable_Error exception in the
551 -- case where we exceed the maximum number of permissible errors or some
552 -- other unrecoverable error occurs.
555 -- Initialize binder packages
559 Initialize_ALI_Source;
567 while More_Lib_Files loop
568 Main_Lib_File := Next_Main_Lib_File;
572 Write_Str ("Checking: ");
574 Write_Str ("Binding: ");
577 Write_Name (Main_Lib_File);
581 Text := Read_Library_Info (Main_Lib_File, True);
585 pragma Warnings (Off, Id);
593 Ignore_Errors => Debug_Flag_I);
601 if No_Run_Time_Mode then
603 -- Set standard configuration parameters
605 Suppress_Standard_Library_On_Target := True;
606 Configurable_Run_Time_Mode := True;
609 -- For main ALI files, even if they are interfaces, we get their
610 -- dependencies. To be sure, we reset the Interface flag for all main
613 for Index in ALIs.First .. ALIs.Last loop
614 ALIs.Table (Index).SAL_Interface := False;
617 -- Add System.Standard_Library to list to ensure that these files are
618 -- included in the bind, even if not directly referenced from Ada code
619 -- This is suppressed if the appropriate targparm switch is set.
621 if not Suppress_Standard_Library_On_Target then
622 Name_Buffer (1 .. 12) := "s-stalib.ali";
624 Std_Lib_File := Name_Find;
625 Text := Read_Library_Info (Std_Lib_File, True);
629 pragma Warnings (Off, Id);
638 Ignore_Errors => Debug_Flag_I);
644 -- Acquire all information in ALI files that have been read in
646 for Index in ALIs.First .. ALIs.Last loop
650 -- Quit if some file needs compiling
652 if No_Object_Specified then
653 raise Unrecoverable_Error;
656 -- Build source file table from the ALI files we have read in
660 -- Check that main library file is a suitable main program
663 and then ALIs.Table (ALIs.First).Main_Program = None
664 and then not No_Main_Subprogram
666 Error_Msg_Name_1 := Main_Lib_File;
667 Error_Msg ("% does not contain a unit that can be a main program");
670 -- Perform consistency and correctness checks
672 Check_Duplicated_Subunits;
675 Check_Configuration_Consistency;
677 -- List restrictions that could be applied to this partition
679 if List_Restrictions then
680 List_Applicable_Restrictions;
683 -- Complete bind if no errors
685 if Errors_Detected = 0 then
688 if Errors_Detected = 0 then
689 if Elab_Order_Output then
691 Write_Str ("ELABORATION ORDER");
694 for J in Elab_Order.First .. Elab_Order.Last loop
695 if not Units.Table (Elab_Order.Table (J)).SAL_Interface then
698 (Units.Table (Elab_Order.Table (J)).Uname);
706 if not Check_Only then
707 Gen_Output_File (Output_File_Name.all);
712 Total_Errors := Total_Errors + Errors_Detected;
713 Total_Warnings := Total_Warnings + Warnings_Detected;
716 when Unrecoverable_Error =>
717 Total_Errors := Total_Errors + Errors_Detected;
718 Total_Warnings := Total_Warnings + Warnings_Detected;
721 -- All done. Set proper exit status
726 if Total_Errors > 0 then
727 Exit_Program (E_Errors);
729 elsif Total_Warnings > 0 then
730 Exit_Program (E_Warnings);
733 -- Do not call Exit_Program (E_Success), so that finalization occurs