SVE Intrinsics: Change return type of redirect_call to gcall.
[official-gcc.git] / gcc / ada / libgnat / s-parame__posix2008.ads
blob2652e563e88a2bea0e284a58458138786573f4c1
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- S Y S T E M . P A R A M E T E R S --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 1992-2024, 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. --
17 -- --
18 -- As a special exception under Section 7 of GPL version 3, you are granted --
19 -- additional permissions described in the GCC Runtime Library Exception, --
20 -- version 3.1, as published by the Free Software Foundation. --
21 -- --
22 -- You should have received a copy of the GNU General Public License and --
23 -- a copy of the GCC Runtime Library Exception along with this program; --
24 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
25 -- <http://www.gnu.org/licenses/>. --
26 -- --
27 -- GNAT was originally developed by the GNAT team at New York University. --
28 -- Extensive contributions were provided by Ada Core Technologies Inc. --
29 -- --
30 ------------------------------------------------------------------------------
32 -- This is the Posix 2008 version for 64 bit time_t.
34 -- This package defines some system dependent parameters for GNAT. These
35 -- are values that are referenced by the runtime library and are therefore
36 -- relevant to the target machine.
38 -- The parameters whose value is defined in the spec are not generally
39 -- expected to be changed. If they are changed, it will be necessary to
40 -- recompile the run-time library.
42 -- The parameters which are defined by functions can be changed by modifying
43 -- the body of System.Parameters in file s-parame.adb. A change to this body
44 -- requires only rebinding and relinking of the application.
46 -- Note: do not introduce any pragma Inline statements into this unit, since
47 -- otherwise the relinking and rebinding capability would be deactivated.
49 package System.Parameters is
50 pragma Pure;
52 ---------------------------------------
53 -- Task And Stack Allocation Control --
54 ---------------------------------------
56 type Size_Type is range -Memory_Size / 2 .. Memory_Size / 2 - 1;
57 -- Type used to provide task stack sizes to the runtime. Sized to permit
58 -- stack sizes of up to half the total addressable memory space. This may
59 -- seem excessively large (even for 32-bit systems), however there are many
60 -- instances of users requiring large stack sizes (for example string
61 -- processing).
63 Unspecified_Size : constant Size_Type := Size_Type'First;
64 -- Value used to indicate that no size type is set
66 function Default_Stack_Size return Size_Type;
67 -- Default task stack size used if none is specified
69 function Minimum_Stack_Size return Size_Type;
70 -- Minimum task stack size permitted
72 function Adjust_Storage_Size (Size : Size_Type) return Size_Type;
73 -- Given the storage size stored in the TCB, return the Storage_Size
74 -- value required by the RM for the Storage_Size attribute. The
75 -- required adjustment is as follows:
77 -- when Size = Unspecified_Size, return Default_Stack_Size
78 -- when Size < Minimum_Stack_Size, return Minimum_Stack_Size
79 -- otherwise return given Size
81 Default_Env_Stack_Size : constant Size_Type := 8_192_000;
82 -- Assumed size of the environment task, if no other information is
83 -- available. This value is used when stack checking is enabled and
84 -- no GNAT_STACK_LIMIT environment variable is set.
86 Stack_Grows_Down : constant Boolean := True;
87 -- This constant indicates whether the stack grows up (False) or
88 -- down (True) in memory as functions are called. It is used for
89 -- proper implementation of the stack overflow check.
91 Runtime_Default_Sec_Stack_Size : constant Size_Type := 10 * 1024;
92 -- The run-time chosen default size for secondary stacks that may be
93 -- overridden by the user with the use of binder -D switch.
95 Sec_Stack_Dynamic : constant Boolean := True;
96 -- Indicates if secondary stacks can grow and shrink at run-time. If False,
97 -- the size of a secondary stack is fixed at the point of its creation.
99 ------------------------------------
100 -- Characteristics of time_t type --
101 ------------------------------------
103 time_t_bits : constant := Long_Long_Integer'Size;
104 -- Number of bits in type time_t. Use for targets that are Posix 2008
105 -- compliant (fixes the year 2038 time_t overflow).
107 ----------------------------------------------
108 -- Characteristics of types in Interfaces.C --
109 ----------------------------------------------
111 long_bits : constant := Long_Integer'Size;
112 -- Number of bits in type long and unsigned_long. The normal convention
113 -- is that this is the same as type Long_Integer, but this may not be true
114 -- of all targets.
116 ptr_bits : constant := Standard'Address_Size;
117 subtype C_Address is System.Address;
118 -- Number of bits in Interfaces.C pointers, normally a standard address
120 C_Malloc_Linkname : constant String := "__gnat_malloc";
121 -- Name of runtime function used to allocate such a pointer
123 ----------------------------------------------
124 -- Behavior of Pragma Finalize_Storage_Only --
125 ----------------------------------------------
127 -- Garbage_Collected is a Boolean constant whose value indicates the
128 -- effect of the pragma Finalize_Storage_Entry on a controlled type.
130 -- Garbage_Collected = False
132 -- The system releases all storage on program termination only,
133 -- but not other garbage collection occurs, so finalization calls
134 -- are omitted only for outer level objects can be omitted if
135 -- pragma Finalize_Storage_Only is used.
137 -- Garbage_Collected = True
139 -- The system provides full garbage collection, so it is never
140 -- necessary to release storage for controlled objects for which
141 -- a pragma Finalize_Storage_Only is used.
143 Garbage_Collected : constant Boolean := False;
144 -- The storage mode for this system (release on program exit)
146 ---------------------
147 -- Tasking Profile --
148 ---------------------
150 -- In the following sections, constant parameters are defined to
151 -- allow some optimizations and fine tuning within the tasking run time
152 -- based on restrictions on the tasking features.
154 -------------------
155 -- Task Abortion --
156 -------------------
158 No_Abort : constant Boolean := False;
159 -- This constant indicates whether abort statements and asynchronous
160 -- transfer of control (ATC) are disallowed. If set to True, it is
161 -- assumed that neither construct is used, and the run time does not
162 -- need to defer/undefer abort and check for pending actions at
163 -- completion points. A value of True for No_Abort corresponds to:
164 -- pragma Restrictions (No_Abort_Statements);
165 -- pragma Restrictions (Max_Asynchronous_Select_Nesting => 0);
167 ---------------------
168 -- Task Attributes --
169 ---------------------
171 Max_Attribute_Count : constant := 32;
172 -- Number of task attributes stored in the task control block
174 -----------------------
175 -- Task Image Length --
176 -----------------------
178 Max_Task_Image_Length : constant := 256;
179 -- This constant specifies the maximum length of a task's image
181 ------------------------------
182 -- Exception Message Length --
183 ------------------------------
185 Default_Exception_Msg_Max_Length : constant := 200;
186 -- This constant specifies the default number of characters to allow
187 -- in an exception message (200 is minimum required by RM 11.4.1(18)).
189 end System.Parameters;