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
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- G E T _ T A R G --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2024, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING3. If not, go to --
-- http://www.gnu.org/licenses for a complete copy of the license. --
-- --
------------------------------------------------------------------------------
-- Version shared by various Ada based back-ends (e.g. gnat2scil, gnat2why)
with System.OS_Lib; use System.OS_Lib;
with GNAT.Directory_Operations; use GNAT.Directory_Operations;
package body Get_Targ is
-----------------------
-- Get_Bits_Per_Unit --
-----------------------
function Get_Bits_Per_Unit return Pos is
begin
return 8;
end Get_Bits_Per_Unit;
-----------------------
-- Get_Bits_Per_Word --
-----------------------
function Get_Bits_Per_Word return Pos is
begin
return 32;
end Get_Bits_Per_Word;
-------------------
-- Get_Char_Size --
-------------------
function Get_Char_Size return Pos is
begin
return 8;
end Get_Char_Size;
----------------------
-- Get_Wchar_T_Size --
----------------------
function Get_Wchar_T_Size return Pos is
begin
return 16;
end Get_Wchar_T_Size;
--------------------
-- Get_Short_Size --
--------------------
function Get_Short_Size return Pos is
begin
return 16;
end Get_Short_Size;
------------------
-- Get_Int_Size --
------------------
function Get_Int_Size return Pos is
begin
return 32;
end Get_Int_Size;
-------------------
-- Get_Long_Size --
-------------------
function Get_Long_Size return Pos is
begin
return 64;
end Get_Long_Size;
------------------------
-- Get_Long_Long_Size --
------------------------
function Get_Long_Long_Size return Pos is
begin
return 64;
end Get_Long_Long_Size;
-----------------------------
-- Get_Long_Long_Long_Size --
-----------------------------
function Get_Long_Long_Long_Size return Pos is
begin
return 64;
end Get_Long_Long_Long_Size;
----------------------
-- Get_Pointer_Size --
----------------------
function Get_Pointer_Size return Pos is
begin
return 64;
end Get_Pointer_Size;
---------------------------
-- Get_Maximum_Alignment --
---------------------------
function Get_Maximum_Alignment return Pos is
begin
return 4;
end Get_Maximum_Alignment;
------------------------
-- Get_Float_Words_BE --
------------------------
function Get_Float_Words_BE return Nat is
begin
return 1;
end Get_Float_Words_BE;
------------------
-- Get_Words_BE --
------------------
function Get_Words_BE return Nat is
begin
return 1;
end Get_Words_BE;
------------------
-- Get_Bytes_BE --
------------------
function Get_Bytes_BE return Nat is
begin
return 1;
end Get_Bytes_BE;
-----------------
-- Get_Bits_BE --
-----------------
function Get_Bits_BE return Nat is
begin
return 1;
end Get_Bits_BE;
---------------------
-- Get_Short_Enums --
---------------------
function Get_Short_Enums return Int is
begin
return 0;
end Get_Short_Enums;
--------------------------
-- Get_Strict_Alignment --
--------------------------
function Get_Strict_Alignment return Nat is
begin
return 1;
end Get_Strict_Alignment;
------------------------------------
-- Get_System_Allocator_Alignment --
------------------------------------
function Get_System_Allocator_Alignment return Nat is
begin
return 1;
end Get_System_Allocator_Alignment;
--------------------------------
-- Get_Double_Float_Alignment --
--------------------------------
function Get_Double_Float_Alignment return Nat is
begin
return 0;
end Get_Double_Float_Alignment;
---------------------------------
-- Get_Double_Scalar_Alignment --
---------------------------------
function Get_Double_Scalar_Alignment return Nat is
begin
return 0;
end Get_Double_Scalar_Alignment;
-----------------------------
-- Register_Back_End_Types --
-----------------------------
procedure Register_Back_End_Types (Call_Back : Register_Type_Proc) is
Float_Str : C_String := (others => ASCII.NUL);
Double_Str : C_String := (others => ASCII.NUL);
begin
Float_Str (Float_Str'First .. Float_Str'First + 4) := "float";
Call_Back
(C_Name => Float_Str, Digs => 6, Complex => False, Count => 0,
Float_Rep => IEEE_Binary,
Precision => 32, Size => 32, Alignment => 32);
Double_Str (Double_Str'First .. Double_Str'First + 5) := "double";
Call_Back
(C_Name => Double_Str,
Digs => 15,
Complex => False,
Count => 0,
Float_Rep => IEEE_Binary,
Precision => 64,
Size => 64,
Alignment => 64);
end Register_Back_End_Types;
------------------------------
-- Get_Back_End_Config_File --
------------------------------
function Get_Back_End_Config_File return String_Ptr is
function Exec_Name return String;
-- Return name of the current executable (from argv[0])
function Get_Target_File (Dir : String) return String_Ptr;
-- Return Dir & "target.atp" if found, null otherwise
---------------
-- Exec_Name --
---------------
function Exec_Name return String is
type Arg_Array is array (Nat) of Big_String_Ptr;
type Arg_Array_Ptr is access all Arg_Array;
gnat_argv : Arg_Array_Ptr;
pragma Import (C, gnat_argv);
begin
for J in 1 .. Natural'Last loop
if gnat_argv (0) (J) = ASCII.NUL then
return gnat_argv (0) (1 .. J - 1);
end if;
end loop;
raise Program_Error;
end Exec_Name;
---------------------
-- Get_Target_File --
---------------------
function Get_Target_File (Dir : String) return String_Ptr is
F : constant String := Dir & "target.atp";
begin
if Is_Regular_File (F) then
return new String'(F);
else
return null;
end if;
end Get_Target_File;
Exec : constant String := Exec_Name;
-- Start of processing for Get_Back_End_Config_File
begin
if Is_Absolute_Path (Exec) then
return Get_Target_File (Dir_Name (Exec));
else
return Get_Target_File (Dir_Name (Locate_Exec_On_Path (Exec).all));
end if;
end Get_Back_End_Config_File;
end Get_Targ;
|