Avoid no-stack-protector-attr fails on hppa*-*-*.
[official-gcc.git] / gcc / ada / targparm.ads
blob5195a39f7d5eb9d6a9a1ab2b10c50bdc3fdf28e5
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT RUN-TIME COMPONENTS --
4 -- --
5 -- T A R G P A R M --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 1999-2020, 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 obtains parameters from the target runtime version of System,
27 -- to indicate parameters relevant to the target environment.
29 -- Conceptually, these parameters could be obtained using rtsfind, but
30 -- we do not do this for four reasons:
32 -- 1. Compiling System for every compilation wastes time
34 -- 2. This compilation impedes debugging by adding extra compile steps
36 -- 3. There are recursion problems coming from compiling System itself
37 -- or any of its children.
39 -- 4. The binder also needs the parameters, and we do not want to have
40 -- to drag a lot of front end stuff into the binder.
42 -- For all these reasons, we read in the source of System, and then scan
43 -- it at the text level to extract the parameter values.
45 -- Note however, that later on, when the ali file is written, we make sure
46 -- that the System file is at least parsed, so that the checksum is properly
47 -- computed and set in the ali file. This partially negates points 1 and 2
48 -- above although just parsing is quick and does not impact debugging much.
50 -- The parameters acquired by this routine from system.ads fall into four
51 -- categories:
53 -- 1. Configuration pragmas, that must appear at the start of the file.
54 -- Any such pragmas automatically apply to any unit compiled in the
55 -- presence of this system file. Only a limited set of such pragmas
56 -- may appear as documented in the corresponding section below.
58 -- 2. Target parameters. These are boolean constants that are defined
59 -- in the private part of the package giving fixed information
60 -- about the target architecture, and the capabilities of the
61 -- code generator and run-time library.
63 -- 3. Identification information. This is an optional string constant
64 -- that gives the name of the run-time library configuration. This
65 -- line may be omitted for a version of system.ads to be used with
66 -- the full Ada 95 run time.
68 -- 4. Other characteristics of package System. At the current time the
69 -- only item in this category is whether type Address is private.
71 with Rident; use Rident;
72 with Namet; use Namet;
73 with Types; use Types;
75 package Targparm is
77 ---------------------------
78 -- Configuration Pragmas --
79 ---------------------------
81 -- The following switches get set if the corresponding configuration
82 -- pragma is scanned from the source of system.ads. No other pragmas
83 -- are permitted to appear at the start of the system.ads source file.
85 -- If a pragma Discard_Names appears, then Opt.Global_Discard_Names is
86 -- set to True to indicate that all units must be compiled in this mode.
88 -- If a pragma Locking_Policy appears, then Opt.Locking_Policy is set
89 -- to the first character of the policy name, and Opt.Locking_Policy_Sloc
90 -- is set to System_Location.
92 -- If a pragma Normalize_Scalars appears, then Opt.Normalize_Scalars
93 -- is set True, as well as Opt.Init_Or_Norm_Scalars.
95 -- If a pragma Queuing_Policy appears, then Opt.Queuing_Policy is set
96 -- to the first character of the policy name, and Opt.Queuing_Policy_Sloc
97 -- is set to System_Location.
99 -- If a pragma Task_Dispatching_Policy appears, then the flag
100 -- Opt.Task_Dispatching_Policy is set to the first character of the
101 -- policy name, and Opt.Task_Dispatching_Policy_Sloc is set to
102 -- System_Location.
104 -- If a pragma Detect_Blocking appears, then the flag Opt.Detect_Blocking
105 -- is set to True.
107 -- If a pragma Suppress_Exception_Locations appears, then the flag
108 -- Opt.Exception_Locations_Suppressed is set to True.
110 -- If a pragma Profile with a valid profile argument appears, then
111 -- the appropriate restrictions and policy flags are set.
113 -- The only other pragma allowed is a pragma Restrictions that specifies
114 -- a restriction that will be imposed on all units in the partition. Note
115 -- that in this context, only one restriction can be specified in a single
116 -- pragma, and the pragma must appear on its own on a single source line.
118 -- If package System contains exactly the line "type Address is private;"
119 -- then the flag Opt.Address_Is_Private is set True, otherwise this flag
120 -- is set False.
122 Restrictions_On_Target : Restrictions_Info := No_Restrictions;
123 -- Records restrictions specified by system.ads. Only the Set and Value
124 -- members are modified. The Violated and Count fields are never modified.
125 -- Note that entries can be set either by a pragma Restrictions or by
126 -- a pragma Profile.
128 -------------------
129 -- Run Time Name --
130 -------------------
132 -- This parameter should be regarded as read only by all clients of
133 -- of package. The only way they get modified is by calling the
134 -- Get_Target_Parameters routine which reads the values from a provided
135 -- text buffer containing the source of the system package.
137 -- The corresponding string constant is placed immediately at the start
138 -- of the private part of system.ads if is present, e.g. in the form:
140 -- Run_Time_Name : constant String := "Zero Footprint Run Time";
142 -- the corresponding messages will look something like
144 -- xxx not supported (Zero Footprint Run Time)
146 Run_Time_Name_On_Target : Name_Id := No_Name;
147 -- Set to appropriate names table entry Id value if a Run_Time_Name
148 -- string constant is defined in system.ads. This name is used only
149 -- for the configurable run-time case, and is used to parameterize
150 -- messages that complain about non-supported run-time features.
151 -- The name should contain only letters A-Z, digits 1-9, spaces,
152 -- and underscores.
154 --------------------------
155 -- Executable Extension --
156 --------------------------
158 Executable_Extension_On_Target : Name_Id := No_Name;
159 -- Executable extension on the target. This name is useful for setting
160 -- the executable extension in a dynamic way, e.g. depending on the
161 -- run time used, rather than using a configure-time macro as done by
162 -- Get_Target_Executable_Suffix. If not set (No_Name), instead use
163 -- System.OS_Lib.Get_Target_Executable_Suffix.
165 -----------------------
166 -- Target Parameters --
167 -----------------------
169 -- The following parameters correspond to the variables defined in the
170 -- private part of System (without the terminating _On_Target). Note
171 -- that it is required that all parameters defined here be specified
172 -- in the target specific version of system.ads. Thus, to add a new
173 -- parameter, add it to all system*.ads files. (There is a defaulting
174 -- mechanism, but we don't normally take advantage of it, as explained
175 -- below.)
177 -- The default values here are used if no value is found in system.ads.
178 -- This should normally happen if the special version of system.ads used
179 -- by the compiler itself is in use or if the value is only relevant to a
180 -- particular target (e.g. AAMP). The default values are suitable for use
181 -- in normal environments. This approach allows the possibility of new
182 -- versions of the compiler (possibly with new system parameters added)
183 -- being used to compile older versions of the compiler sources, as well as
184 -- avoiding duplicating values in all system-*.ads files for flags that are
185 -- used on a few platforms only.
187 -- All these parameters should be regarded as read only by all clients
188 -- of the package. The only way they get modified is by calling the
189 -- Get_Target_Parameters routine which reads the values from a provided
190 -- text buffer containing the source of the system package.
192 -------------------------------
193 -- Backend Arithmetic Checks --
194 -------------------------------
196 -- Divide and overflow checks are either done in the front end or
197 -- back end. The front end will generate checks when required unless
198 -- the corresponding parameter here is set to indicate that the back
199 -- end will generate the required checks (or that the checks are
200 -- automatically performed by the hardware in an appropriate form).
202 Backend_Divide_Checks_On_Target : Boolean := False;
203 -- Set True if the back end generates divide checks, or if the hardware
204 -- checks automatically. Set False if the front end must generate the
205 -- required tests using explicit expanded code.
207 Backend_Overflow_Checks_On_Target : Boolean := False;
208 -- Set True if the back end generates arithmetic overflow checks, or if
209 -- the hardware checks automatically. Set False if the front end must
210 -- generate the required tests using explicit expanded code.
212 -----------------------------------
213 -- Control of Exception Handling --
214 -----------------------------------
216 -- GNAT implements three methods of implementing exceptions:
218 -- Front-End Longjmp/Setjmp Exceptions
220 -- This approach uses longjmp/setjmp to handle exceptions. It
221 -- uses less storage, and can often propagate exceptions faster,
222 -- at the expense of (sometimes considerable) overhead in setting
223 -- up an exception handler.
225 -- The generation of the setjmp and longjmp calls is handled by
226 -- the front end of the compiler (this includes gigi in the case
227 -- of the standard GCC back end). It does not use any back end
228 -- support (such as the GCC3 exception handling mechanism). When
229 -- this approach is used, the compiler generates special exception
230 -- handlers for handling cleanups (AT-END actions) when an exception
231 -- is raised.
233 -- Back-End Zero Cost Exceptions
235 -- With this approach, the back end handles the generation and
236 -- handling of exceptions. For example, the GCC3 exception handling
237 -- mechanisms are used in this mode. The front end simply generates
238 -- code for explicit exception handlers, and AT-END cleanup handlers
239 -- are simply passed unchanged to the backend for generating cleanups
240 -- both in the exceptional and non-exceptional cases.
242 -- As the name implies, this approach uses a table-based mechanism,
243 -- which incurs no setup when entering a region covered by handlers
244 -- but requires complex unwinding to walk up the call chain and search
245 -- for handlers at propagation time.
247 -- Back-End Setjmp/Longjmp Exceptions
249 -- With this approach, the back end also handles the generation and
250 -- handling of exceptions, using setjmp/longjmp to set up receivers and
251 -- propagate. AT-END actions on exceptional paths are also taken care
252 -- of by the back end and the front end doesn't need to generate
253 -- explicit exception handlers for these.
255 -- Control of Available Methods and Defaults
257 -- The following switches specify whether we're using a front-end or a
258 -- back-end mechanism and whether this is a zero-cost or a sjlj scheme.
260 -- The per-switch default values correspond to the default value of
261 -- Opt.Exception_Mechanism.
263 ZCX_By_Default_On_Target : Boolean := False;
264 -- Indicates if zero cost scheme for exceptions
266 Frontend_Exceptions_On_Target : Boolean := True;
267 -- Indicates if we're using a front-end scheme for exceptions
269 ------------------------------------
270 -- Run-Time Library Configuration --
271 ------------------------------------
273 -- In configurable run-time mode, the system run-time may not support
274 -- the full Ada language. The effect of setting this switch is to let
275 -- the compiler know that it is not surprising (i.e. the system is not
276 -- misconfigured) if run-time library units or entities within units are
277 -- not present in the run-time.
279 Configurable_Run_Time_On_Target : Boolean := False;
280 -- Indicates that the system.ads file is for a configurable run-time
282 -- This has some specific effects as follows
284 -- The binder generates the gnat_argc/argv/envp variables in the
285 -- binder file instead of being imported from the run-time library.
286 -- If Command_Line_Args_On_Target is set to False, then the
287 -- generation of these variables is suppressed completely.
289 -- The binder generates the gnat_exit_status variable in the binder
290 -- file instead of being imported from the run-time library. If
291 -- Exit_Status_Supported_On_Target is set to False, then the
292 -- generation of this variable is suppressed entirely.
294 -- The routine __gnat_break_start is defined within the binder file
295 -- instead of being imported from the run-time library.
297 -- The variable __gnat_exit_status is generated within the binder file
298 -- instead of being imported from the run-time library.
300 Suppress_Standard_Library_On_Target : Boolean := False;
301 -- If this flag is True, then the standard library is not included by
302 -- default in the executable (see unit System.Standard_Library in file
303 -- s-stalib.ads for details of what this includes). This is for example
304 -- set True for the zero foot print case, where these files should not
305 -- be included by default.
307 -- This flag has some other related effects:
309 -- The generation of global variables in the bind file is suppressed,
310 -- with the exception of the priority of the environment task, which
311 -- is needed by the Ravenscar run-time.
313 -- The calls to __gnat_initialize and __gnat_finalize are omitted
315 -- All finalization and initialization (controlled types) is omitted
317 Preallocated_Stacks_On_Target : Boolean := False;
318 -- If this flag is True, then the expander preallocates all task stacks
319 -- at compile time. If the flag is False, then task stacks are not pre-
320 -- allocated, and task stack allocation is the responsibility of the
321 -- run-time (which typically delegates the task to the underlying
322 -- operating system environment).
324 ---------------------
325 -- Duration Format --
326 ---------------------
328 -- By default, type Duration is a 64-bit fixed-point type with a delta
329 -- and small of 10**(-9) (i.e. it is a count in nanoseconds). This flag
330 -- allows that standard format to be modified.
332 Duration_32_Bits_On_Target : Boolean := False;
333 -- If True, then Duration is represented in 32 bits and the delta and
334 -- small values are set to 20.0*(10**(-3)) (i.e. it is a count in units
335 -- of 20 milliseconds).
337 ------------------------------------
338 -- Back-End Code Generation Flags --
339 ------------------------------------
341 -- These flags indicate possible limitations in what the code generator
342 -- can handle. They will all be True for a full run-time, but one or more
343 -- of these may be false for a configurable run-time, and if a feature is
344 -- used at the source level, and the corresponding flag is false, then an
345 -- error message will be issued saying the feature is not supported.
347 Atomic_Sync_Default_On_Target : Boolean := True;
348 -- Access to atomic variables requires memory barrier synchronization in
349 -- the general case to ensure proper behavior when such accesses are used
350 -- on a multi-processor to synchronize tasks (e.g. by using spin locks).
351 -- The setting of this flag determines the default behavior. Normally this
352 -- is True, which will mean that appropriate synchronization instructions
353 -- are generated by default. If it is False, then the default will be that
354 -- these synchronization instructions are not generated. This may be a more
355 -- appropriate default in some cases, e.g. on embedded targets which do not
356 -- allow the possibility of multi-processors. The default can be overridden
357 -- using pragmas Enable/Disable_Atomic_Synchronization and also by use of
358 -- the corresponding debug flags -gnatd.e and -gnatd.d.
360 Support_Aggregates_On_Target : Boolean := True;
361 -- In the general case, the use of aggregates may generate calls
362 -- to run-time routines in the C library, including memset, memcpy,
363 -- memmove, and bcopy. This flag is set to True if these routines
364 -- are available. If any of these routines is not available, then
365 -- this flag is False, and the use of aggregates is not permitted.
367 Support_Atomic_Primitives_On_Target : Boolean := False;
368 -- If this flag is True, then the back-end support GCC built-in atomic
369 -- operations for memory model such as atomic load or atomic compare
370 -- exchange (see the GCC manual for more information). If the flag is
371 -- False, then the back-end doesn't provide this support. Note this flag is
372 -- set to True only if the target supports all atomic primitives up to 64
373 -- bits. ??? To be modified.
375 Support_Composite_Assign_On_Target : Boolean := True;
376 -- The assignment of composite objects other than small records and
377 -- arrays whose size is 64-bits or less and is set by an explicit
378 -- size clause may generate calls to memcpy, memmove, and bcopy.
379 -- If versions of all these routines are available, then this flag
380 -- is set to True. If any of these routines is not available, then
381 -- the flag is set False, and composite assignments are not allowed.
383 Support_Composite_Compare_On_Target : Boolean := True;
384 -- If this flag is True, then the back end supports bit-wise comparison
385 -- of composite objects for equality, either generating inline code or
386 -- calling appropriate (and available) run-time routines. If this flag
387 -- is False, then the back end does not provide this support, and the
388 -- front end uses component by component comparison for composites.
390 Support_Long_Shifts_On_Target : Boolean := True;
391 -- If True, the back end supports 64-bit shift operations. If False, then
392 -- the source program may not contain explicit 64-bit shifts. In addition,
393 -- the code generated for packed arrays will avoid the use of long shifts.
395 Support_Nondefault_SSO_On_Target : Boolean := True;
396 -- If True, the back end supports the non-default Scalar_Storage_Order
397 -- (i.e. allows non-confirming Scalar_Storage_Order attribute definition
398 -- clauses).
400 --------------------
401 -- Indirect Calls --
402 --------------------
404 Always_Compatible_Rep_On_Target : Boolean := True;
405 -- If True, the Can_Use_Internal_Rep flag (see Einfo) is set to False in
406 -- all cases. This corresponds to the traditional code generation
407 -- strategy. False allows the front end to choose a policy that partly or
408 -- entirely eliminates dynamically generated trampolines.
410 -------------------------------
411 -- Control of Stack Checking --
412 -------------------------------
414 -- GNAT provides three methods of implementing exceptions:
416 -- GCC Probing Mechanism
418 -- This approach uses the standard GCC mechanism for
419 -- stack checking. The method assumes that accessing
420 -- storage immediately beyond the end of the stack
421 -- will result in a trap that is converted to a storage
422 -- error by the runtime system. This mechanism has
423 -- minimal overhead, but requires complex hardware,
424 -- operating system and run-time support. Probing is
425 -- the default method where it is available. The stack
426 -- size for the environment task depends on the operating
427 -- system and cannot be set in a system-independent way.
429 -- GCC Stack-limit Mechanism
431 -- This approach uses the GCC stack limits mechanism.
432 -- It relies on comparing the stack pointer with the
433 -- values of a global symbol. If the check fails, a
434 -- trap is explicitly generated. The advantage is
435 -- that the mechanism requires no memory protection,
436 -- but operating system and run-time support are
437 -- needed to manage the per-task values of the symbol.
438 -- This is the default method after probing where it
439 -- is available.
441 -- GNAT Stack-limit Checking
443 -- This method relies on comparing the stack pointer
444 -- with per-task stack limits. If the check fails, an
445 -- exception is explicitly raised. The advantage is
446 -- that the method requires no extra system dependent
447 -- runtime support and can be used on systems without
448 -- memory protection as well, but at the cost of more
449 -- overhead for doing the check. This is the fallback
450 -- method if the above two are not supported.
452 Stack_Check_Probes_On_Target : Boolean := False;
453 -- Indicates if the GCC probing mechanism is used
455 -- WARNING: There is a matching C declaration of this variable in fe.h
457 Stack_Check_Limits_On_Target : Boolean := False;
458 -- Indicates if the GCC stack-limit mechanism is used
460 -- Both flags cannot be simultaneously set to True. If neither
461 -- is, the target independent fallback method is used.
463 -- WARNING: There is a matching C declaration of this variable in fe.h
465 Stack_Check_Default_On_Target : Boolean := False;
466 -- Indicates if stack checking is on by default
468 ----------------------------
469 -- Command Line Arguments --
470 ----------------------------
472 -- For most ports of GNAT, command line arguments are supported. The
473 -- following flag is set to False for targets that do not support
474 -- command line arguments (VxWorks and AAMP). Note that support of
475 -- command line arguments is not required on such targets (RM A.15(13)).
477 Command_Line_Args_On_Target : Boolean := True;
478 -- Set False if no command line arguments on target. Note that if this
479 -- is False in with Configurable_Run_Time_On_Target set to True, then
480 -- this causes suppression of generation of the argv/argc variables
481 -- used to record command line arguments.
483 -- Similarly, most ports support the use of an exit status, but AAMP
484 -- is an exception (as allowed by RM A.15(18-20))
486 Exit_Status_Supported_On_Target : Boolean := True;
487 -- Set False if returning of an exit status is not supported on target.
488 -- Note that if this False in with Configurable_Run_Time_On_Target
489 -- set to True, then this causes suppression of the gnat_exit_status
490 -- variable used to record the exit status.
492 -----------------------
493 -- Main Program Name --
494 -----------------------
496 -- When the binder generates the main program to be used to create the
497 -- executable, the main program name is main by default (to match the
498 -- usual Unix practice). If this parameter is set to True, then the
499 -- name is instead by default taken from the actual Ada main program
500 -- name (just the name of the child if the main program is a child unit).
501 -- In either case, this value can be overridden using -M name.
503 Use_Ada_Main_Program_Name_On_Target : Boolean := False;
504 -- Set True to use the Ada main program name as the main name
506 ----------------------------------------------
507 -- Boolean-Valued Floating-Point Attributes --
508 ----------------------------------------------
510 -- The constants below give the values for representation oriented
511 -- floating-point attributes that are the same for all float types
512 -- on the target. These are all boolean values.
514 -- A value is only True if the target reliably supports the corresponding
515 -- feature. Reliably here means that support is guaranteed for all
516 -- possible settings of the relevant compiler switches (like -mieee),
517 -- since we cannot control the user setting of those switches.
519 -- The attributes cannot dependent on the current setting of compiler
520 -- switches, since the values must be static and consistent throughout
521 -- the partition. We probably should add such consistency checks in future,
522 -- but for now we don't do this.
524 -- Note: the compiler itself does not use floating-point, so the
525 -- settings of the defaults here are not really relevant.
527 -- Note: in some cases, proper support of some of these floating point
528 -- features may require a specific switch (e.g. -mieee on the Alpha)
529 -- to be used to obtain full RM compliant support.
531 Denorm_On_Target : Boolean := False;
532 -- Set to False on targets that do not reliably support denormals
534 Machine_Rounds_On_Target : Boolean := True;
535 -- Set to False for targets where S'Machine_Rounds is False
537 Machine_Overflows_On_Target : Boolean := False;
538 -- Set to True for targets where S'Machine_Overflows is True
540 -- WARNING: There is a matching C declaration of this variable in fe.h
542 Signed_Zeros_On_Target : Boolean := True;
543 -- Set to False on targets that do not reliably support signed zeros
545 -- WARNING: There is a matching C declaration of this variable in fe.h
547 -----------------
548 -- Subprograms --
549 -----------------
551 -- These subprograms are used to initialize the target parameter values
552 -- from the system.ads file. Note that this is only done once, so if more
553 -- than one call is made to either routine, the second and subsequent
554 -- calls are ignored. It also reads restriction pragmas from system.ads
555 -- and records them, though as further detailed below, the caller has some
556 -- control over the handling of No_Dependence restrictions.
558 type Make_Id_Type is access function (Str : Text_Buffer) return Node_Id;
559 -- Parameter type for Get_Target_Parameters for function that creates an
560 -- identifier node with Sloc value System_Location and given string as the
561 -- Chars value.
563 type Make_SC_Type is access function (Pre, Sel : Node_Id) return Node_Id;
564 -- Parameter type for Get_Target_Parameters for function that creates a
565 -- selected component with Sloc value System_Location and given Prefix
566 -- (Pre) and Selector (Sel) values.
568 type Set_NOD_Type is access procedure (Unit : Node_Id);
569 -- Parameter type for Get_Target_Parameters that records a Restriction
570 -- No_Dependence for the given unit (identifier or selected component).
572 type Set_NSA_Type is access procedure (Asp : Name_Id; OK : out Boolean);
573 -- Parameter type for Get_Target_Parameters that records a Restriction
574 -- No_Specification_Of_Aspect. Asp is the aspect name. OK is set True
575 -- if this is an OK aspect name, and False if it is not an aspect name.
577 type Set_NUA_Type is access procedure (Attr : Name_Id; OK : out Boolean);
578 -- Parameter type for Get_Target_Parameters that records a Restriction
579 -- No_Use_Of_Attribute. Attr is the attribute name. OK is set True if
580 -- this is an OK attribute name, and False if it is not an attribute name.
582 type Set_NUP_Type is access procedure (Prag : Name_Id; OK : out Boolean);
583 -- Parameter type for Get_Target_Parameters that records a Restriction
584 -- No_Use_Of_Pragma. Prag is the pragma name. OK is set True if this is
585 -- an OK pragma name, and False if it is not a recognized pragma name.
587 procedure Get_Target_Parameters
588 (System_Text : Source_Buffer_Ptr;
589 Source_First : Source_Ptr;
590 Source_Last : Source_Ptr;
591 Make_Id : Make_Id_Type := null;
592 Make_SC : Make_SC_Type := null;
593 Set_NOD : Set_NOD_Type := null;
594 Set_NSA : Set_NSA_Type := null;
595 Set_NUA : Set_NUA_Type := null;
596 Set_NUP : Set_NUP_Type := null);
597 -- Called at the start of execution to obtain target parameters from the
598 -- source of package System. The parameters provide the source text to be
599 -- scanned (in System_Text (Source_First .. Source_Last)). If the three
600 -- subprograms Make_Id, Make_SC, and Set_NOD are left at their default
601 -- value of null, Get_Target_Parameters will ignore pragma Restrictions
602 -- (No_Dependence) lines; otherwise it will use these three subprograms to
603 -- record them. Similarly, if Set_NUP is left at its default value of null,
604 -- then any occurrences of pragma Restrictions (No_Use_Of_Pragma => XXX)
605 -- will be ignored; otherwise it will use this procedure to record the
606 -- pragma. Similarly for the NSA and NUA cases.
608 procedure Get_Target_Parameters
609 (Make_Id : Make_Id_Type := null;
610 Make_SC : Make_SC_Type := null;
611 Set_NOD : Set_NOD_Type := null;
612 Set_NSA : Set_NSA_Type := null;
613 Set_NUA : Set_NUA_Type := null;
614 Set_NUP : Set_NUP_Type := null);
615 -- This version reads in system.ads using Osint. The idea is that the
616 -- caller uses the first version if they have to read system.ads anyway
617 -- (e.g. the compiler) and uses this simpler interface if system.ads is
618 -- not otherwise needed.
620 end Targparm;