Implement -mmemcpy-strategy= and -mmemset-strategy= options
[official-gcc.git] / gcc / ada / get_targ.ads
blob08af7f33855da44f9279d7944e2ce29dfc339690
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- G E T _ T A R G --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 1992-2013, 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 ------------------------------------------------------------------------------
26 -- This package provides an Import to the C functions which provide
27 -- values related to types on the target system. It is only needed for
28 -- exp_dbug and the elaboration of ttypes, via the Set_Targs package.
29 -- It also contains the routine for registering floating-point types.
31 -- NOTE: Any changes in this package must be reflected in jgettarg.ads
32 -- and aa_getta.ads and any other versions of this package.
34 -- Note that all these values return sizes of C types with corresponding
35 -- names. This allows GNAT to define the corresponding Ada types to have
36 -- the same representation. There is one exception to this general rule:
37 -- the Wide_Character_Type uses twice the size of a C char, instead of the
38 -- size of wchar_t.
40 with Einfo; use Einfo;
41 with Types; use Types;
43 package Get_Targ is
45 -- Functions returning individual runtime values
47 function Get_Bits_Per_Unit return Pos;
48 -- System.Storage_Unit
50 function Get_Bits_Per_Word return Pos;
51 -- System.Word_Size
53 function Get_Char_Size return Pos;
54 -- Size of Standard.Character
56 function Get_Wchar_T_Size return Pos;
57 -- Size of Interfaces.C.wchar_t
59 function Get_Short_Size return Pos;
60 -- Size of Standard.Short_Integer
62 function Get_Int_Size return Pos;
63 -- Size of Standard.Integer
65 function Get_Long_Size return Pos;
66 -- Size of Standard.Long_Integer
68 function Get_Long_Long_Size return Pos;
69 -- Size of Standard.Long_Long_Integer
71 function Get_Float_Size return Pos;
72 -- Size of Standard.Float
74 function Get_Double_Size return Pos;
75 -- Size of Standard.Long_Float
77 function Get_Long_Double_Size return Pos;
78 -- Size of Standard.Long_Long_Float
80 function Get_Pointer_Size return Pos;
81 -- Size of System.Address
83 function Get_Maximum_Alignment return Pos;
84 -- Maximum supported alignment
86 function Get_Float_Words_BE return Nat;
87 -- Non-zero iff float words big endian
89 function Get_Words_BE return Nat;
90 -- Non-zero iff integer words big endian
92 function Get_Bytes_BE return Nat;
93 -- Non-zero iff bytes big-endian
95 function Get_Bits_BE return Nat;
96 -- Non-zero iff bit order big endian
98 function Get_Strict_Alignment return Nat;
99 -- Non-zero if target requires strict alignent
101 function Get_System_Allocator_Alignment return Nat;
102 -- Alignment guaranteed by malloc falls
104 function Get_Double_Float_Alignment return Nat;
105 -- Alignment required for Long_Float or 0 if no special requirement
107 function Get_Double_Scalar_Alignment return Nat;
108 -- Alignment required for Long_Long_Integer or larger integer types
109 -- or 0 if no special requirement.
111 -- Other subprograms
113 function Get_Max_Unaligned_Field return Pos;
114 -- Returns the maximum supported size in bits for a field that is
115 -- not aligned on a storage unit boundary.
117 function Width_From_Size (Size : Pos) return Pos;
118 function Digits_From_Size (Size : Pos) return Pos;
119 -- Calculate values for 'Width or 'Digits from 'Size
121 type C_String is array (0 .. 255) of aliased Character;
122 pragma Convention (C, C_String);
124 type Register_Type_Proc is access procedure
125 (C_Name : C_String; -- Nul-terminated string with name of type
126 Digs : Natural; -- Digits for floating point, 0 otherwise
127 Complex : Boolean; -- True iff type has real and imaginary parts
128 Count : Natural; -- Number of elements in vector, 0 otherwise
129 Float_Rep : Float_Rep_Kind; -- Representation used for fpt type
130 Size : Positive; -- Size of representation in bits
131 Alignment : Natural); -- Required alignment in bits
132 pragma Convention (C, Register_Type_Proc);
133 -- Call back procedure for Register_Back_End_Types. This is to be used by
134 -- Create_Standard to create predefined types for all types supported by
135 -- the back end.
137 procedure Register_Back_End_Types (Call_Back : Register_Type_Proc);
138 -- Calls the Call_Back function with information for each supported type
140 end Get_Targ;