1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2014, 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 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. --
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. --
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/>. --
27 -- GNAT was originally developed by the GNAT team at New York University. --
28 -- Extensive contributions were provided by Ada Core Technologies Inc. --
30 ------------------------------------------------------------------------------
32 with Namet; use Namet;
36 -- This package contains definitions of standard names (i.e. entries in the
37 -- Names table) that are used throughout the GNAT compiler. It also contains
38 -- the definitions of some enumeration types whose definitions are tied to the
39 -- order of these preset names.
45 -- The following are preset entries in the names table, which are entered
46 -- at the start of every compilation for easy access. Note that the order
47 -- of initialization of these names in the body must be coordinated with
48 -- the order of names in this table.
50 -- Note: a name may not appear more than once in the following list. If
51 -- additional pragmas or attributes are introduced which might otherwise
52 -- cause a duplicate, then list it only once in this table, and adjust the
53 -- definition of the functions for testing for pragma names and attribute
54 -- names, and returning their ID values. Of course everything is simpler if
55 -- no such duplications occur.
57 -- First we have the one character names used to optimize the lookup
58 -- process for one character identifiers (to avoid the hashing in this
59 -- case) There are a full 256 of these, but only the entries for lower
60 -- case and upper case letters have identifiers
62 -- The lower case letter entries are used for one character identifiers
63 -- appearing in the source, for example in pragma Interface (C).
65 Name_A : constant Name_Id := First_Name_Id + Character'Pos ('a');
66 Name_B : constant Name_Id := First_Name_Id + Character'Pos ('b');
67 Name_C : constant Name_Id := First_Name_Id + Character'Pos ('c');
68 Name_D : constant Name_Id := First_Name_Id + Character'Pos ('d');
69 Name_E : constant Name_Id := First_Name_Id + Character'Pos ('e');
70 Name_F : constant Name_Id := First_Name_Id + Character'Pos ('f');
71 Name_G : constant Name_Id := First_Name_Id + Character'Pos ('g');
72 Name_H : constant Name_Id := First_Name_Id + Character'Pos ('h');
73 Name_I : constant Name_Id := First_Name_Id + Character'Pos ('i');
74 Name_J : constant Name_Id := First_Name_Id + Character'Pos ('j');
75 Name_K : constant Name_Id := First_Name_Id + Character'Pos ('k');
76 Name_L : constant Name_Id := First_Name_Id + Character'Pos ('l');
77 Name_M : constant Name_Id := First_Name_Id + Character'Pos ('m');
78 Name_N : constant Name_Id := First_Name_Id + Character'Pos ('n');
79 Name_O : constant Name_Id := First_Name_Id + Character'Pos ('o');
80 Name_P : constant Name_Id := First_Name_Id + Character'Pos ('p');
81 Name_Q : constant Name_Id := First_Name_Id + Character'Pos ('q');
82 Name_R : constant Name_Id := First_Name_Id + Character'Pos ('r');
83 Name_S : constant Name_Id := First_Name_Id + Character'Pos ('s');
84 Name_T : constant Name_Id := First_Name_Id + Character'Pos ('t');
85 Name_U : constant Name_Id := First_Name_Id + Character'Pos ('u');
86 Name_V : constant Name_Id := First_Name_Id + Character'Pos ('v');
87 Name_W : constant Name_Id := First_Name_Id + Character'Pos ('w');
88 Name_X : constant Name_Id := First_Name_Id + Character'Pos ('x');
89 Name_Y : constant Name_Id := First_Name_Id + Character'Pos ('y');
90 Name_Z : constant Name_Id := First_Name_Id + Character'Pos ('z');
92 -- The upper case letter entries are used by expander code for local
93 -- variables that do not require unique names (e.g. formal parameter names
94 -- in constructed procedures).
96 Name_uA : constant Name_Id := First_Name_Id + Character'Pos ('A');
97 Name_uB : constant Name_Id := First_Name_Id + Character'Pos ('B');
98 Name_uC : constant Name_Id := First_Name_Id + Character'Pos ('C');
99 Name_uD : constant Name_Id := First_Name_Id + Character'Pos ('D');
100 Name_uE : constant Name_Id := First_Name_Id + Character'Pos ('E');
101 Name_uF : constant Name_Id := First_Name_Id + Character'Pos ('F');
102 Name_uG : constant Name_Id := First_Name_Id + Character'Pos ('G');
103 Name_uH : constant Name_Id := First_Name_Id + Character'Pos ('H');
104 Name_uI : constant Name_Id := First_Name_Id + Character'Pos ('I');
105 Name_uJ : constant Name_Id := First_Name_Id + Character'Pos ('J');
106 Name_uK : constant Name_Id := First_Name_Id + Character'Pos ('K');
107 Name_uL : constant Name_Id := First_Name_Id + Character'Pos ('L');
108 Name_uM : constant Name_Id := First_Name_Id + Character'Pos ('M');
109 Name_uN : constant Name_Id := First_Name_Id + Character'Pos ('N');
110 Name_uO : constant Name_Id := First_Name_Id + Character'Pos ('O');
111 Name_uP : constant Name_Id := First_Name_Id + Character'Pos ('P');
112 Name_uQ : constant Name_Id := First_Name_Id + Character'Pos ('Q');
113 Name_uR : constant Name_Id := First_Name_Id + Character'Pos ('R');
114 Name_uS : constant Name_Id := First_Name_Id + Character'Pos ('S');
115 Name_uT : constant Name_Id := First_Name_Id + Character'Pos ('T');
116 Name_uU : constant Name_Id := First_Name_Id + Character'Pos ('U');
117 Name_uV : constant Name_Id := First_Name_Id + Character'Pos ('V');
118 Name_uW : constant Name_Id := First_Name_Id + Character'Pos ('W');
119 Name_uX : constant Name_Id := First_Name_Id + Character'Pos ('X');
120 Name_uY : constant Name_Id := First_Name_Id + Character'Pos ('Y');
121 Name_uZ : constant Name_Id := First_Name_Id + Character'Pos ('Z');
123 -- Note: the following table is read by the utility program XSNAMES, and
124 -- its format should not be changed without coordinating with this program.
126 N : constant Name_Id := First_Name_Id + 256;
127 -- Synonym used in standard name definitions
129 -- Names referenced in snames.h
131 Name_uParent : constant Name_Id := N + $;
132 Name_uTag : constant Name_Id := N + $;
133 Name_Off : constant Name_Id := N + $;
134 Name_Space : constant Name_Id := N + $;
135 Name_Time : constant Name_Id := N + $;
137 -- Names of aspects for which there are no matching pragmas or attributes
138 -- so that they need to be included for aspect specification use.
140 Name_Default_Value : constant Name_Id := N + $;
141 Name_Default_Component_Value : constant Name_Id := N + $;
142 Name_Dimension : constant Name_Id := N + $;
143 Name_Dimension_System : constant Name_Id := N + $;
144 Name_Dynamic_Predicate : constant Name_Id := N + $;
145 Name_Static_Predicate : constant Name_Id := N + $;
146 Name_Synchronization : constant Name_Id := N + $;
148 -- Some special names used by the expander. Note that the lower case u's
149 -- at the start of these names get translated to extra underscores. These
150 -- names are only referenced internally by expander generated code.
152 Name_uAbort_Signal : constant Name_Id := N + $;
153 Name_uAlignment : constant Name_Id := N + $;
154 Name_uAssign : constant Name_Id := N + $;
155 Name_uATCB : constant Name_Id := N + $;
156 Name_uChain : constant Name_Id := N + $;
157 Name_uController : constant Name_Id := N + $;
158 Name_uCPU : constant Name_Id := N + $;
159 Name_uDispatching_Domain : constant Name_Id := N + $;
160 Name_uEntry_Bodies : constant Name_Id := N + $;
161 Name_uExpunge : constant Name_Id := N + $;
162 Name_uFinalizer : constant Name_Id := N + $;
163 Name_uIdepth : constant Name_Id := N + $;
164 Name_uInit : constant Name_Id := N + $;
165 Name_uInvariant : constant Name_Id := N + $;
166 Name_uMaster : constant Name_Id := N + $;
167 Name_uObject : constant Name_Id := N + $;
168 Name_uPost : constant Name_Id := N + $;
169 Name_uPostconditions : constant Name_Id := N + $;
170 Name_uPre : constant Name_Id := N + $;
171 Name_uPriority : constant Name_Id := N + $;
172 Name_uProcess_ATSD : constant Name_Id := N + $;
173 Name_uRelative_Deadline : constant Name_Id := N + $;
174 Name_uResult : constant Name_Id := N + $;
175 Name_uSecondary_Stack : constant Name_Id := N + $;
176 Name_uService : constant Name_Id := N + $;
177 Name_uSize : constant Name_Id := N + $;
178 Name_uStack : constant Name_Id := N + $;
179 Name_uTags : constant Name_Id := N + $;
180 Name_uTask : constant Name_Id := N + $;
181 Name_uTask_Id : constant Name_Id := N + $;
182 Name_uTask_Info : constant Name_Id := N + $;
183 Name_uTask_Name : constant Name_Id := N + $;
184 Name_uTrace_Sp : constant Name_Id := N + $;
185 Name_uType_Invariant : constant Name_Id := N + $;
187 -- Names of predefined primitives used in the expansion of dispatching
188 -- requeue and select statements, Abort, 'Callable and 'Terminated.
190 Name_uDisp_Asynchronous_Select : constant Name_Id := N + $;
191 Name_uDisp_Conditional_Select : constant Name_Id := N + $;
192 Name_uDisp_Get_Prim_Op_Kind : constant Name_Id := N + $;
193 Name_uDisp_Get_Task_Id : constant Name_Id := N + $;
194 Name_uDisp_Requeue : constant Name_Id := N + $;
195 Name_uDisp_Timed_Select : constant Name_Id := N + $;
197 -- Names of routines and fields in Ada.Finalization, needed by expander
199 Name_Initialize : constant Name_Id := N + $;
200 Name_Adjust : constant Name_Id := N + $;
201 Name_Finalize : constant Name_Id := N + $;
202 Name_Finalize_Address : constant Name_Id := N + $;
203 Name_Next : constant Name_Id := N + $;
204 Name_Prev : constant Name_Id := N + $;
206 -- Names of allocation routines, also needed by expander
208 Name_Allocate : constant Name_Id := N + $;
209 Name_Deallocate : constant Name_Id := N + $;
210 Name_Dereference : constant Name_Id := N + $;
212 -- Text_IO generic subpackages (see Rtsfind.Check_Text_IO_Special_Unit)
214 First_Text_IO_Package : constant Name_Id := N + $;
215 Name_Decimal_IO : constant Name_Id := N + $;
216 Name_Enumeration_IO : constant Name_Id := N + $;
217 Name_Fixed_IO : constant Name_Id := N + $;
218 Name_Float_IO : constant Name_Id := N + $;
219 Name_Integer_IO : constant Name_Id := N + $;
220 Name_Modular_IO : constant Name_Id := N + $;
221 Last_Text_IO_Package : constant Name_Id := N + $;
223 subtype Text_IO_Package_Name is Name_Id
224 range First_Text_IO_Package .. Last_Text_IO_Package;
226 -- Names used by the analyzer and expander for aspect Dimension and
227 -- Dimension_System to deal with Sqrt and IO routines.
229 Name_Dim_Symbol : constant Name_Id := N + $; -- Ada 12
230 Name_Item : constant Name_Id := N + $; -- Ada 12
231 Name_Put_Dim_Of : constant Name_Id := N + $; -- Ada 12
232 Name_Sqrt : constant Name_Id := N + $; -- Ada 12
233 Name_Symbol : constant Name_Id := N + $; -- Ada 12
234 Name_Unit_Symbol : constant Name_Id := N + $; -- Ada 12
236 -- Some miscellaneous names used for error detection/recovery
238 Name_Const : constant Name_Id := N + $;
239 Name_Error : constant Name_Id := N + $;
240 Name_False : constant Name_Id := N + $;
241 Name_Go : constant Name_Id := N + $;
242 Name_Put : constant Name_Id := N + $;
243 Name_Put_Line : constant Name_Id := N + $;
244 Name_To : constant Name_Id := N + $;
246 -- Name used by the integrated preprocessor
248 Name_Defined : constant Name_Id := N + $;
250 -- Names for packages that are treated specially by the compiler
252 Name_Exception_Traces : constant Name_Id := N + $;
253 Name_Finalization : constant Name_Id := N + $;
254 Name_Interfaces : constant Name_Id := N + $;
255 Name_Most_Recent_Exception : constant Name_Id := N + $;
256 Name_Standard : constant Name_Id := N + $;
257 Name_System : constant Name_Id := N + $;
258 Name_Text_IO : constant Name_Id := N + $;
259 Name_Wide_Text_IO : constant Name_Id := N + $;
260 Name_Wide_Wide_Text_IO : constant Name_Id := N + $;
262 -- Names of implementations of the distributed systems annex
264 First_PCS_Name : constant Name_Id := N + $;
265 Name_No_DSA : constant Name_Id := N + $;
266 Name_GARLIC_DSA : constant Name_Id := N + $;
267 Name_PolyORB_DSA : constant Name_Id := N + $;
268 Last_PCS_Name : constant Name_Id := N + $;
270 subtype PCS_Names is Name_Id
271 range First_PCS_Name .. Last_PCS_Name;
273 -- Names of identifiers used in expanding distribution stubs
275 Name_Addr : constant Name_Id := N + $;
276 Name_Async : constant Name_Id := N + $;
277 Name_Get_Active_Partition_ID : constant Name_Id := N + $;
278 Name_Get_RCI_Package_Receiver : constant Name_Id := N + $;
279 Name_Get_RCI_Package_Ref : constant Name_Id := N + $;
280 Name_Origin : constant Name_Id := N + $;
281 Name_Params : constant Name_Id := N + $;
282 Name_Partition : constant Name_Id := N + $;
283 Name_Partition_Interface : constant Name_Id := N + $;
284 Name_Ras : constant Name_Id := N + $;
285 Name_uCall : constant Name_Id := N + $;
286 Name_RCI_Name : constant Name_Id := N + $;
287 Name_Receiver : constant Name_Id := N + $;
288 Name_Rpc : constant Name_Id := N + $;
289 Name_Subp_Id : constant Name_Id := N + $;
290 Name_Operation : constant Name_Id := N + $;
291 Name_Argument : constant Name_Id := N + $;
292 Name_Arg_Modes : constant Name_Id := N + $;
293 Name_Handler : constant Name_Id := N + $;
294 Name_Target : constant Name_Id := N + $;
295 Name_Req : constant Name_Id := N + $;
296 Name_Obj_TypeCode : constant Name_Id := N + $;
297 Name_Stub : constant Name_Id := N + $;
299 -- Operator Symbol entries. The actual names have an upper case O at the
300 -- start in place of the Op_ prefix (e.g. the actual name that corresponds
301 -- to Name_Op_Abs is "Oabs".
303 First_Operator_Name : constant Name_Id := N + $;
304 Name_Op_Abs : constant Name_Id := N + $; -- "abs"
305 Name_Op_And : constant Name_Id := N + $; -- "and"
306 Name_Op_Mod : constant Name_Id := N + $; -- "mod"
307 Name_Op_Not : constant Name_Id := N + $; -- "not"
308 Name_Op_Or : constant Name_Id := N + $; -- "or"
309 Name_Op_Rem : constant Name_Id := N + $; -- "rem"
310 Name_Op_Xor : constant Name_Id := N + $; -- "xor"
311 Name_Op_Eq : constant Name_Id := N + $; -- "="
312 Name_Op_Ne : constant Name_Id := N + $; -- "/="
313 Name_Op_Lt : constant Name_Id := N + $; -- "<"
314 Name_Op_Le : constant Name_Id := N + $; -- "<="
315 Name_Op_Gt : constant Name_Id := N + $; -- ">"
316 Name_Op_Ge : constant Name_Id := N + $; -- ">="
317 Name_Op_Add : constant Name_Id := N + $; -- "+"
318 Name_Op_Subtract : constant Name_Id := N + $; -- "-"
319 Name_Op_Concat : constant Name_Id := N + $; -- "&"
320 Name_Op_Multiply : constant Name_Id := N + $; -- "*"
321 Name_Op_Divide : constant Name_Id := N + $; -- "/"
322 Name_Op_Expon : constant Name_Id := N + $; -- "**"
323 Last_Operator_Name : constant Name_Id := N + $;
325 -- Names for all pragmas recognized by GNAT. The entries with the comment
326 -- "Ada 83" are pragmas that are defined in Ada 83, but not in Ada 95.
327 -- These pragmas are fully implemented in all modes (Ada 83, Ada 95, and
328 -- Ada 2005). In Ada 95 and Ada 2005 modes, they are technically considered
329 -- to be implementation dependent pragmas.
331 -- The entries marked GNAT are pragmas that are defined by GNAT and that
332 -- are implemented in all modes (Ada 83, Ada 95, and Ada 2005) Complete
333 -- descriptions of the syntax of these implementation dependent pragmas may
334 -- be found in the appropriate section in unit Sem_Prag in file
335 -- sem-prag.adb, and they are documented in the GNAT reference manual.
337 -- The entries marked Ada 05 are Ada 2005 pragmas. They are implemented in
338 -- Ada 83 and Ada 95 mode as well, where they are technically considered to
339 -- be implementation dependent pragmas.
341 -- The entries marked Ada 12 are Ada 2012 pragmas. They are implemented in
342 -- Ada 83, Ada 95, and Ada 2005 mode as well, where they are technically
343 -- considered to be implementation dependent pragmas.
345 -- The entries marked AAMP are AAMP specific pragmas that are recognized
346 -- only in GNAT for the AAMP. They are ignored in other versions with
347 -- appropriate warnings.
349 First_Pragma_Name : constant Name_Id := N + $;
351 -- Configuration pragmas are grouped at start. Note that there is a list
352 -- of these names in the GNAT Users guide, be sure to update this list if
353 -- a new configuration pragma is added.
355 Name_Ada_83 : constant Name_Id := N + $; -- GNAT
356 Name_Ada_95 : constant Name_Id := N + $; -- GNAT
357 Name_Ada_05 : constant Name_Id := N + $; -- GNAT
358 Name_Ada_2005 : constant Name_Id := N + $; -- GNAT
359 Name_Ada_12 : constant Name_Id := N + $; -- GNAT
360 Name_Ada_2012 : constant Name_Id := N + $; -- GNAT
361 Name_Allow_Integer_Address : constant Name_Id := N + $; -- GNAT
362 Name_Annotate : constant Name_Id := N + $; -- GNAT
363 Name_Assertion_Policy : constant Name_Id := N + $; -- Ada 05
364 Name_Assume : constant Name_Id := N + $; -- GNAT
365 Name_Assume_No_Invalid_Values : constant Name_Id := N + $; -- GNAT
366 Name_Attribute_Definition : constant Name_Id := N + $; -- GNAT
367 Name_C_Pass_By_Copy : constant Name_Id := N + $; -- GNAT
368 Name_Check_Float_Overflow : constant Name_Id := N + $; -- GNAT
369 Name_Check_Name : constant Name_Id := N + $; -- GNAT
370 Name_Check_Policy : constant Name_Id := N + $; -- GNAT
371 Name_Compile_Time_Error : constant Name_Id := N + $; -- GNAT
372 Name_Compile_Time_Warning : constant Name_Id := N + $; -- GNAT
373 Name_Compiler_Unit : constant Name_Id := N + $; -- GNAT
374 Name_Compiler_Unit_Warning : constant Name_Id := N + $; -- GNAT
375 Name_Component_Alignment : constant Name_Id := N + $; -- GNAT
376 Name_Convention_Identifier : constant Name_Id := N + $; -- GNAT
377 Name_Debug_Policy : constant Name_Id := N + $; -- GNAT
378 Name_Detect_Blocking : constant Name_Id := N + $; -- Ada 05
379 Name_Default_Scalar_Storage_Order : constant Name_Id := N + $; -- GNAT
380 Name_Default_Storage_Pool : constant Name_Id := N + $; -- Ada 12
381 Name_Disable_Atomic_Synchronization : constant Name_Id := N + $; -- GNAT
382 Name_Discard_Names : constant Name_Id := N + $;
384 -- Note: Dispatching_Domain is not in this list because its name matches
385 -- the name of the corresponding attribute. However, it is included in the
386 -- definition of the type Pragma_Id, and the functions Get_Pragma_Id and
387 -- Is_Pragma_Id correctly recognize and process Dispatching_Domain.
388 -- Dispatching_Domain is a standard Ada 2012 pragma.
390 Name_Elaboration_Checks : constant Name_Id := N + $; -- GNAT
391 Name_Eliminate : constant Name_Id := N + $; -- GNAT
392 Name_Enable_Atomic_Synchronization : constant Name_Id := N + $; -- GNAT
393 Name_Extend_System : constant Name_Id := N + $; -- GNAT
394 Name_Extensions_Allowed : constant Name_Id := N + $; -- GNAT
395 Name_External_Name_Casing : constant Name_Id := N + $; -- GNAT
397 -- Note: Fast_Math is not in this list because its name matches the name of
398 -- the corresponding attribute. However, it is included in the definition
399 -- of the type Pragma_Id, and the functions Get_Pragma_Id,
400 -- Is_[Configuration_]Pragma_Id, and correctly recognize and process
403 Name_Favor_Top_Level : constant Name_Id := N + $; -- GNAT
404 Name_Implicit_Packing : constant Name_Id := N + $; -- GNAT
405 Name_Initialize_Scalars : constant Name_Id := N + $; -- GNAT
406 Name_Interrupt_State : constant Name_Id := N + $; -- GNAT
407 Name_License : constant Name_Id := N + $; -- GNAT
408 Name_Locking_Policy : constant Name_Id := N + $;
409 Name_Loop_Optimize : constant Name_Id := N + $; -- GNAT
410 Name_No_Run_Time : constant Name_Id := N + $; -- GNAT
411 Name_No_Strict_Aliasing : constant Name_Id := N + $; -- GNAT
412 Name_Normalize_Scalars : constant Name_Id := N + $;
413 Name_Optimize_Alignment : constant Name_Id := N + $; -- GNAT
414 Name_Overflow_Mode : constant Name_Id := N + $; -- GNAT
415 Name_Overriding_Renamings : constant Name_Id := N + $; -- GNAT
416 Name_Partition_Elaboration_Policy : constant Name_Id := N + $; -- Ada 05
417 Name_Persistent_BSS : constant Name_Id := N + $; -- GNAT
418 Name_Polling : constant Name_Id := N + $; -- GNAT
419 Name_Priority_Specific_Dispatching : constant Name_Id := N + $; -- Ada 05
420 Name_Profile : constant Name_Id := N + $; -- Ada 05
421 Name_Profile_Warnings : constant Name_Id := N + $; -- GNAT
422 Name_Propagate_Exceptions : constant Name_Id := N + $; -- GNAT
423 Name_Queuing_Policy : constant Name_Id := N + $;
424 Name_Rational : constant Name_Id := N + $; -- GNAT
425 Name_Ravenscar : constant Name_Id := N + $; -- GNAT
426 Name_Restricted_Run_Time : constant Name_Id := N + $; -- GNAT
427 Name_Restrictions : constant Name_Id := N + $;
428 Name_Restriction_Warnings : constant Name_Id := N + $; -- GNAT
429 Name_Reviewable : constant Name_Id := N + $;
430 Name_Short_Circuit_And_Or : constant Name_Id := N + $; -- GNAT
431 Name_Short_Descriptors : constant Name_Id := N + $; -- GNAT
432 Name_Source_File_Name : constant Name_Id := N + $; -- GNAT
433 Name_Source_File_Name_Project : constant Name_Id := N + $; -- GNAT
434 Name_SPARK_Mode : constant Name_Id := N + $; -- GNAT
435 Name_Style_Checks : constant Name_Id := N + $; -- GNAT
436 Name_Suppress : constant Name_Id := N + $;
437 Name_Suppress_Exception_Locations : constant Name_Id := N + $; -- GNAT
438 Name_Task_Dispatching_Policy : constant Name_Id := N + $;
439 Name_Unevaluated_Use_Of_Old : constant Name_Id := N + $; -- GNAT
440 Name_Universal_Data : constant Name_Id := N + $; -- AAMP
441 Name_Unsuppress : constant Name_Id := N + $; -- Ada 05
442 Name_Use_VADS_Size : constant Name_Id := N + $; -- GNAT
443 Name_Validity_Checks : constant Name_Id := N + $; -- GNAT
444 Name_Warning_As_Error : constant Name_Id := N + $; -- GNAT
445 Name_Warnings : constant Name_Id := N + $; -- GNAT
446 Name_Wide_Character_Encoding : constant Name_Id := N + $; -- GNAT
447 Last_Configuration_Pragma_Name : constant Name_Id := N + $;
449 -- Remaining pragma names (non-configuration pragmas)
451 Name_Abort_Defer : constant Name_Id := N + $; -- GNAT
452 Name_Abstract_State : constant Name_Id := N + $; -- GNAT
453 Name_All_Calls_Remote : constant Name_Id := N + $;
454 Name_Assert : constant Name_Id := N + $; -- Ada 05
455 Name_Assert_And_Cut : constant Name_Id := N + $; -- GNAT
456 Name_Async_Readers : constant Name_Id := N + $; -- GNAT
457 Name_Async_Writers : constant Name_Id := N + $; -- GNAT
458 Name_Asynchronous : constant Name_Id := N + $;
459 Name_Atomic : constant Name_Id := N + $;
460 Name_Atomic_Components : constant Name_Id := N + $;
461 Name_Attach_Handler : constant Name_Id := N + $;
462 Name_Check : constant Name_Id := N + $; -- GNAT
463 Name_CIL_Constructor : constant Name_Id := N + $; -- GNAT
464 Name_Comment : constant Name_Id := N + $; -- GNAT
465 Name_Common_Object : constant Name_Id := N + $; -- GNAT
466 Name_Complete_Representation : constant Name_Id := N + $; -- GNAT
467 Name_Complex_Representation : constant Name_Id := N + $; -- GNAT
468 Name_Contract_Cases : constant Name_Id := N + $; -- GNAT
469 Name_Controlled : constant Name_Id := N + $;
470 Name_Convention : constant Name_Id := N + $;
471 Name_CPP_Class : constant Name_Id := N + $; -- GNAT
472 Name_CPP_Constructor : constant Name_Id := N + $; -- GNAT
473 Name_CPP_Virtual : constant Name_Id := N + $; -- GNAT
474 Name_CPP_Vtable : constant Name_Id := N + $; -- GNAT
476 -- Note: CPU is not in this list because its name matches the name of
477 -- the corresponding attribute. However, it is included in the definition
478 -- of the type Pragma_Id, and the functions Get_Pragma_Id and Is_Pragma_Id
479 -- correctly recognize and process CPU. CPU is a standard Ada 2012
482 Name_Debug : constant Name_Id := N + $; -- GNAT
483 Name_Depends : constant Name_Id := N + $; -- GNAT
484 Name_Effective_Reads : constant Name_Id := N + $; -- GNAT
485 Name_Effective_Writes : constant Name_Id := N + $; -- GNAT
486 Name_Elaborate : constant Name_Id := N + $; -- Ada 83
487 Name_Elaborate_All : constant Name_Id := N + $;
488 Name_Elaborate_Body : constant Name_Id := N + $;
489 Name_Export : constant Name_Id := N + $;
490 Name_Export_Function : constant Name_Id := N + $; -- GNAT
491 Name_Export_Object : constant Name_Id := N + $; -- GNAT
492 Name_Export_Procedure : constant Name_Id := N + $; -- GNAT
493 Name_Export_Value : constant Name_Id := N + $; -- GNAT
494 Name_Export_Valued_Procedure : constant Name_Id := N + $; -- GNAT
495 Name_External : constant Name_Id := N + $; -- GNAT
496 Name_Finalize_Storage_Only : constant Name_Id := N + $; -- GNAT
497 Name_Global : constant Name_Id := N + $; -- GNAT
498 Name_Ident : constant Name_Id := N + $; -- GNAT
499 Name_Implementation_Defined : constant Name_Id := N + $; -- GNAT
500 Name_Implemented : constant Name_Id := N + $; -- Ada 12
501 Name_Import : constant Name_Id := N + $;
502 Name_Import_Function : constant Name_Id := N + $; -- GNAT
503 Name_Import_Object : constant Name_Id := N + $; -- GNAT
504 Name_Import_Procedure : constant Name_Id := N + $; -- GNAT
505 Name_Import_Valued_Procedure : constant Name_Id := N + $; -- GNAT
506 Name_Independent : constant Name_Id := N + $; -- Ada 12
507 Name_Independent_Components : constant Name_Id := N + $; -- Ada 12
508 Name_Initial_Condition : constant Name_Id := N + $; -- GNAT
509 Name_Initializes : constant Name_Id := N + $; -- GNAT
510 Name_Inline : constant Name_Id := N + $;
511 Name_Inline_Always : constant Name_Id := N + $; -- GNAT
512 Name_Inline_Generic : constant Name_Id := N + $; -- GNAT
513 Name_Inspection_Point : constant Name_Id := N + $;
515 -- Note: Interface is not in this list because its name matches an Ada 05
516 -- keyword. However it is included in the definition of the type
517 -- Attribute_Id, and the functions Get_Pragma_Id and Is_Pragma_Id correctly
518 -- recognize and process Name_Interface.
520 Name_Interface_Name : constant Name_Id := N + $; -- GNAT
521 Name_Interrupt_Handler : constant Name_Id := N + $;
523 -- Note: Interrupt_Priority is not in this list because its name matches
524 -- the name of the corresponding attribute. However, it is included in the
525 -- definition of the type Pragma_Id, and the functions Get_Pragma_Id and
526 -- Is_Pragma_Id correctly recognize and process Interrupt_Priority.
528 Name_Invariant : constant Name_Id := N + $; -- GNAT
529 Name_Java_Constructor : constant Name_Id := N + $; -- GNAT
530 Name_Java_Interface : constant Name_Id := N + $; -- GNAT
531 Name_Keep_Names : constant Name_Id := N + $; -- GNAT
532 Name_Link_With : constant Name_Id := N + $; -- GNAT
533 Name_Linker_Alias : constant Name_Id := N + $; -- GNAT
534 Name_Linker_Constructor : constant Name_Id := N + $; -- GNAT
535 Name_Linker_Destructor : constant Name_Id := N + $; -- GNAT
536 Name_Linker_Options : constant Name_Id := N + $;
537 Name_Linker_Section : constant Name_Id := N + $; -- GNAT
538 Name_List : constant Name_Id := N + $;
540 -- Note: Lock_Free is not in this list because its name matches the name of
541 -- the corresponding attribute. However, it is included in the definition
542 -- of the type Pragma_Id, and the functions Get_Pragma_Id and Is_Pragma_Id
543 -- correctly recognize and process Lock_Free. Lock_Free is a GNAT pragma.
545 Name_Loop_Invariant : constant Name_Id := N + $; -- GNAT
546 Name_Loop_Variant : constant Name_Id := N + $; -- GNAT
547 Name_Machine_Attribute : constant Name_Id := N + $; -- GNAT
548 Name_Main : constant Name_Id := N + $; -- GNAT
549 Name_Main_Storage : constant Name_Id := N + $; -- GNAT
550 Name_Memory_Size : constant Name_Id := N + $; -- Ada 83
551 Name_No_Body : constant Name_Id := N + $; -- GNAT
552 Name_No_Elaboration_Code_All : constant Name_Id := N + $; -- GNAT
553 Name_No_Inline : constant Name_Id := N + $; -- GNAT
554 Name_No_Return : constant Name_Id := N + $; -- Ada 05
555 Name_Obsolescent : constant Name_Id := N + $; -- GNAT
556 Name_Optimize : constant Name_Id := N + $;
557 Name_Ordered : constant Name_Id := N + $; -- GNAT
558 Name_Pack : constant Name_Id := N + $;
559 Name_Page : constant Name_Id := N + $;
560 Name_Part_Of : constant Name_Id := N + $; -- GNAT
561 Name_Passive : constant Name_Id := N + $; -- GNAT
562 Name_Post : constant Name_Id := N + $; -- GNAT
563 Name_Postcondition : constant Name_Id := N + $; -- GNAT
564 Name_Post_Class : constant Name_Id := N + $; -- GNAT
565 Name_Pre : constant Name_Id := N + $; -- GNAT
566 Name_Precondition : constant Name_Id := N + $; -- GNAT
567 Name_Predicate : constant Name_Id := N + $; -- GNAT
568 Name_Preelaborable_Initialization : constant Name_Id := N + $; -- Ada 05
569 Name_Preelaborate : constant Name_Id := N + $;
570 Name_Pre_Class : constant Name_Id := N + $; -- GNAT
572 -- Note: Priority is not in this list because its name matches the name of
573 -- the corresponding attribute. However, it is included in the definition
574 -- of the type Pragma_Id, and the functions Get_Pragma_Id and Is_Pragma_Id
575 -- correctly recognize and process Priority. Priority is a standard Ada 95
578 Name_Provide_Shift_Operators : constant Name_Id := N + $; -- GNAT
579 Name_Psect_Object : constant Name_Id := N + $; -- GNAT
580 Name_Pure : constant Name_Id := N + $;
581 Name_Pure_Function : constant Name_Id := N + $; -- GNAT
582 Name_Refined_Depends : constant Name_Id := N + $; -- GNAT
583 Name_Refined_Global : constant Name_Id := N + $; -- GNAT
584 Name_Refined_Post : constant Name_Id := N + $; -- GNAT
585 Name_Refined_State : constant Name_Id := N + $; -- GNAT
586 Name_Relative_Deadline : constant Name_Id := N + $; -- Ada 05
587 Name_Remote_Access_Type : constant Name_Id := N + $; -- GNAT
588 Name_Remote_Call_Interface : constant Name_Id := N + $;
589 Name_Remote_Types : constant Name_Id := N + $;
590 Name_Share_Generic : constant Name_Id := N + $; -- GNAT
591 Name_Shared : constant Name_Id := N + $; -- Ada 83
592 Name_Shared_Passive : constant Name_Id := N + $;
593 Name_Simple_Storage_Pool_Type : constant Name_Id := N + $; -- GNAT
595 -- Note: Storage_Size is not in this list because its name matches the name
596 -- of the corresponding attribute. However, it is included in the
597 -- definition of the type Attribute_Id, and the functions Get_Pragma_Id and
598 -- Is_Pragma_Id correctly recognize and process Name_Storage_Size.
600 -- Note: Storage_Unit is also omitted from the list because of a clash with
601 -- an attribute name, and is treated similarly.
603 Name_Source_Reference : constant Name_Id := N + $; -- GNAT
604 Name_Static_Elaboration_Desired : constant Name_Id := N + $; -- GNAT
605 Name_Stream_Convert : constant Name_Id := N + $; -- GNAT
606 Name_Subtitle : constant Name_Id := N + $; -- GNAT
607 Name_Suppress_All : constant Name_Id := N + $; -- GNAT
608 Name_Suppress_Debug_Info : constant Name_Id := N + $; -- GNAT
609 Name_Suppress_Initialization : constant Name_Id := N + $; -- GNAT
610 Name_System_Name : constant Name_Id := N + $; -- Ada 83
611 Name_Test_Case : constant Name_Id := N + $; -- GNAT
612 Name_Task_Info : constant Name_Id := N + $; -- GNAT
613 Name_Task_Name : constant Name_Id := N + $; -- GNAT
614 Name_Task_Storage : constant Name_Id := N + $; -- GNAT
615 Name_Thread_Local_Storage : constant Name_Id := N + $; -- GNAT
616 Name_Time_Slice : constant Name_Id := N + $; -- GNAT
617 Name_Title : constant Name_Id := N + $; -- GNAT
618 Name_Type_Invariant : constant Name_Id := N + $; -- GNAT
619 Name_Type_Invariant_Class : constant Name_Id := N + $; -- GNAT
620 Name_Unchecked_Union : constant Name_Id := N + $; -- Ada 05
621 Name_Unimplemented_Unit : constant Name_Id := N + $; -- GNAT
622 Name_Universal_Aliasing : constant Name_Id := N + $; -- GNAT
623 Name_Unmodified : constant Name_Id := N + $; -- GNAT
624 Name_Unreferenced : constant Name_Id := N + $; -- GNAT
625 Name_Unreferenced_Objects : constant Name_Id := N + $; -- GNAT
626 Name_Unreserve_All_Interrupts : constant Name_Id := N + $; -- GNAT
627 Name_Volatile : constant Name_Id := N + $;
628 Name_Volatile_Components : constant Name_Id := N + $;
629 Name_Weak_External : constant Name_Id := N + $; -- GNAT
630 Last_Pragma_Name : constant Name_Id := N + $;
632 -- Language convention names for pragma Convention/Export/Import/Interface
633 -- Note that Name_C is not included in this list, since it was already
634 -- declared earlier in the context of one-character identifier names (where
635 -- the order is critical to the fast look up process).
637 -- Note: there are no convention names corresponding to the conventions
638 -- Entry and Protected, this is because these conventions cannot be
639 -- specified by a pragma.
641 First_Convention_Name : constant Name_Id := N + $;
642 Name_Ada : constant Name_Id := N + $;
643 Name_Ada_Pass_By_Copy : constant Name_Id := N + $;
644 Name_Ada_Pass_By_Reference : constant Name_Id := N + $;
645 Name_Assembler : constant Name_Id := N + $;
646 Name_CIL : constant Name_Id := N + $;
647 Name_COBOL : constant Name_Id := N + $;
648 Name_CPP : constant Name_Id := N + $;
649 Name_Fortran : constant Name_Id := N + $;
650 Name_Ghost : constant Name_Id := N + $;
651 Name_Intrinsic : constant Name_Id := N + $;
652 Name_Java : constant Name_Id := N + $;
653 Name_Stdcall : constant Name_Id := N + $;
654 Name_Stubbed : constant Name_Id := N + $;
655 Last_Convention_Name : constant Name_Id := N + $;
657 -- The following names are preset as synonyms for Assembler
659 Name_Asm : constant Name_Id := N + $;
660 Name_Assembly : constant Name_Id := N + $;
662 -- The following names are preset as synonyms for C
664 Name_Default : constant Name_Id := N + $;
665 -- Name_External (previously defined as pragma)
667 -- The following names are preset as synonyms for CPP
669 Name_C_Plus_Plus : constant Name_Id := N + $;
671 -- The following names are present as synonyms for Stdcall
673 Name_DLL : constant Name_Id := N + $;
674 Name_Win32 : constant Name_Id := N + $;
676 -- Other special names used in processing pragmas
678 Name_Allow : constant Name_Id := N + $;
679 Name_Amount : constant Name_Id := N + $;
680 Name_As_Is : constant Name_Id := N + $;
681 Name_Assertion : constant Name_Id := N + $;
682 Name_Assertions : constant Name_Id := N + $;
683 Name_Attribute_Name : constant Name_Id := N + $;
684 Name_Body_File_Name : constant Name_Id := N + $;
685 Name_Boolean_Entry_Barriers : constant Name_Id := N + $;
686 Name_By_Any : constant Name_Id := N + $;
687 Name_By_Entry : constant Name_Id := N + $;
688 Name_By_Protected_Procedure : constant Name_Id := N + $;
689 Name_Casing : constant Name_Id := N + $;
690 Name_Check_All : constant Name_Id := N + $;
691 Name_Code : constant Name_Id := N + $;
692 Name_Component : constant Name_Id := N + $;
693 Name_Component_Size_4 : constant Name_Id := N + $;
694 Name_Copy : constant Name_Id := N + $;
695 Name_D_Float : constant Name_Id := N + $;
696 Name_Decreases : constant Name_Id := N + $;
697 Name_Disable : constant Name_Id := N + $;
698 Name_Dot_Replacement : constant Name_Id := N + $;
699 Name_Dynamic : constant Name_Id := N + $;
700 Name_Eliminated : constant Name_Id := N + $;
701 Name_Ensures : constant Name_Id := N + $;
702 Name_Entity : constant Name_Id := N + $;
703 Name_Entry_Count : constant Name_Id := N + $;
704 Name_External_Name : constant Name_Id := N + $;
705 Name_First_Optional_Parameter : constant Name_Id := N + $;
706 Name_Force : constant Name_Id := N + $;
707 Name_Form : constant Name_Id := N + $;
708 Name_G_Float : constant Name_Id := N + $;
709 Name_Gcc : constant Name_Id := N + $;
710 Name_General : constant Name_Id := N + $;
711 Name_Gnat : constant Name_Id := N + $;
712 Name_GPL : constant Name_Id := N + $;
713 Name_High_Order_First : constant Name_Id := N + $;
714 Name_IEEE_Float : constant Name_Id := N + $;
715 Name_Ignore : constant Name_Id := N + $;
716 Name_In_Out : constant Name_Id := N + $;
717 Name_Increases : constant Name_Id := N + $;
718 Name_Info : constant Name_Id := N + $;
719 Name_Internal : constant Name_Id := N + $;
720 Name_Ivdep : constant Name_Id := N + $;
721 Name_Link_Name : constant Name_Id := N + $;
722 Name_Low_Order_First : constant Name_Id := N + $;
723 Name_Lowercase : constant Name_Id := N + $;
724 Name_Max_Entry_Queue_Depth : constant Name_Id := N + $;
725 Name_Max_Entry_Queue_Length : constant Name_Id := N + $;
726 Name_Max_Size : constant Name_Id := N + $;
727 Name_Mechanism : constant Name_Id := N + $;
728 Name_Message : constant Name_Id := N + $;
729 Name_Minimized : constant Name_Id := N + $;
730 Name_Mixedcase : constant Name_Id := N + $;
731 Name_Mode : constant Name_Id := N + $;
732 Name_Modified_GPL : constant Name_Id := N + $;
733 Name_Name : constant Name_Id := N + $;
734 Name_NCA : constant Name_Id := N + $;
735 Name_No : constant Name_Id := N + $;
736 Name_No_Access_Parameter_Allocators : constant Name_Id := N + $;
737 Name_No_Coextensions : constant Name_Id := N + $;
738 Name_No_Dependence : constant Name_Id := N + $;
739 Name_No_Dynamic_Attachment : constant Name_Id := N + $;
740 Name_No_Dynamic_Interrupts : constant Name_Id := N + $;
741 Name_No_Elaboration_Code : constant Name_Id := N + $;
742 Name_No_Implementation_Extensions : constant Name_Id := N + $;
743 Name_No_Obsolescent_Features : constant Name_Id := N + $;
744 Name_No_Requeue : constant Name_Id := N + $;
745 Name_No_Requeue_Statements : constant Name_Id := N + $;
746 Name_No_Specification_Of_Aspect : constant Name_Id := N + $;
747 Name_No_Standard_Allocators_After_Elaboration : constant Name_Id := N + $;
748 Name_No_Task_Attributes : constant Name_Id := N + $;
749 Name_No_Task_Attributes_Package : constant Name_Id := N + $;
750 Name_No_Use_Of_Attribute : constant Name_Id := N + $;
751 Name_No_Use_Of_Pragma : constant Name_Id := N + $;
752 Name_No_Unroll : constant Name_Id := N + $;
753 Name_No_Vector : constant Name_Id := N + $;
754 Name_Nominal : constant Name_Id := N + $;
755 Name_Non_Volatile : constant Name_Id := N + $;
756 Name_On : constant Name_Id := N + $;
757 Name_Optional : constant Name_Id := N + $;
758 Name_Policy : constant Name_Id := N + $;
759 Name_Parameter_Types : constant Name_Id := N + $;
760 Name_Proof_In : constant Name_Id := N + $;
761 Name_Reason : constant Name_Id := N + $;
762 Name_Reference : constant Name_Id := N + $;
763 Name_Requires : constant Name_Id := N + $;
764 Name_Restricted : constant Name_Id := N + $;
765 Name_Result_Mechanism : constant Name_Id := N + $;
766 Name_Result_Type : constant Name_Id := N + $;
767 Name_Robustness : constant Name_Id := N + $;
768 Name_Runtime : constant Name_Id := N + $;
769 Name_SB : constant Name_Id := N + $;
770 Name_Secondary_Stack_Size : constant Name_Id := N + $;
771 Name_Section : constant Name_Id := N + $;
772 Name_Semaphore : constant Name_Id := N + $;
773 Name_Simple_Barriers : constant Name_Id := N + $;
774 Name_SPARK : constant Name_Id := N + $;
775 Name_SPARK_05 : constant Name_Id := N + $;
776 Name_Spec_File_Name : constant Name_Id := N + $;
777 Name_State : constant Name_Id := N + $;
778 Name_Statement_Assertions : constant Name_Id := N + $;
779 Name_Static : constant Name_Id := N + $;
780 Name_Stack_Size : constant Name_Id := N + $;
781 Name_Strict : constant Name_Id := N + $;
782 Name_Subunit_File_Name : constant Name_Id := N + $;
783 Name_Suppressed : constant Name_Id := N + $;
784 Name_Task_Stack_Size_Default : constant Name_Id := N + $;
785 Name_Task_Type : constant Name_Id := N + $;
786 Name_Time_Slicing_Enabled : constant Name_Id := N + $;
787 Name_Top_Guard : constant Name_Id := N + $;
788 Name_UBA : constant Name_Id := N + $;
789 Name_UBS : constant Name_Id := N + $;
790 Name_UBSB : constant Name_Id := N + $;
791 Name_Unit_Name : constant Name_Id := N + $;
792 Name_Unknown : constant Name_Id := N + $;
793 Name_Unrestricted : constant Name_Id := N + $;
794 Name_Unroll : constant Name_Id := N + $;
795 Name_Uppercase : constant Name_Id := N + $;
796 Name_User : constant Name_Id := N + $;
797 Name_Variant : constant Name_Id := N + $;
798 Name_VAX_Float : constant Name_Id := N + $;
799 Name_Vector : constant Name_Id := N + $;
800 Name_Vtable_Ptr : constant Name_Id := N + $;
801 Name_Warn : constant Name_Id := N + $;
802 Name_Working_Storage : constant Name_Id := N + $;
804 -- Names of recognized attributes. The entries with the comment "Ada 83"
805 -- are attributes that are defined in Ada 83, but not in Ada 95. These
806 -- attributes are implemented in all Ada modes in GNAT.
808 -- The entries marked GNAT are attributes that are defined by GNAT and
809 -- implemented in all Ada modes. Full descriptions of these implementation
810 -- dependent attributes may be found in the appropriate Sem_Attr section.
812 First_Attribute_Name : constant Name_Id := N + $;
813 Name_Abort_Signal : constant Name_Id := N + $; -- GNAT
814 Name_Access : constant Name_Id := N + $;
815 Name_Address : constant Name_Id := N + $;
816 Name_Address_Size : constant Name_Id := N + $; -- GNAT
817 Name_Aft : constant Name_Id := N + $;
818 Name_Alignment : constant Name_Id := N + $;
819 Name_Asm_Input : constant Name_Id := N + $; -- GNAT
820 Name_Asm_Output : constant Name_Id := N + $; -- GNAT
821 Name_Atomic_Always_Lock_Free : constant Name_Id := N + $; -- GNAT
822 Name_Bit : constant Name_Id := N + $; -- GNAT
823 Name_Bit_Order : constant Name_Id := N + $;
824 Name_Bit_Position : constant Name_Id := N + $; -- GNAT
825 Name_Body_Version : constant Name_Id := N + $;
826 Name_Callable : constant Name_Id := N + $;
827 Name_Caller : constant Name_Id := N + $;
828 Name_Code_Address : constant Name_Id := N + $; -- GNAT
829 Name_Compiler_Version : constant Name_Id := N + $; -- GNAT
830 Name_Component_Size : constant Name_Id := N + $;
831 Name_Compose : constant Name_Id := N + $;
832 Name_Constant_Indexing : constant Name_Id := N + $; -- GNAT
833 Name_Constrained : constant Name_Id := N + $;
834 Name_Count : constant Name_Id := N + $;
835 Name_Default_Bit_Order : constant Name_Id := N + $; -- GNAT
836 Name_Default_Iterator : constant Name_Id := N + $; -- GNAT
837 Name_Definite : constant Name_Id := N + $;
838 Name_Delta : constant Name_Id := N + $;
839 Name_Denorm : constant Name_Id := N + $;
840 Name_Descriptor_Size : constant Name_Id := N + $;
841 Name_Digits : constant Name_Id := N + $;
842 Name_Elaborated : constant Name_Id := N + $; -- GNAT
843 Name_Emax : constant Name_Id := N + $; -- Ada 83
844 Name_Enabled : constant Name_Id := N + $; -- GNAT
845 Name_Enum_Rep : constant Name_Id := N + $; -- GNAT
846 Name_Enum_Val : constant Name_Id := N + $; -- GNAT
847 Name_Epsilon : constant Name_Id := N + $; -- Ada 83
848 Name_Exponent : constant Name_Id := N + $;
849 Name_External_Tag : constant Name_Id := N + $;
850 Name_Fast_Math : constant Name_Id := N + $; -- GNAT
851 Name_First : constant Name_Id := N + $;
852 Name_First_Bit : constant Name_Id := N + $;
853 Name_First_Valid : constant Name_Id := N + $; -- Ada 12
854 Name_Fixed_Value : constant Name_Id := N + $; -- GNAT
855 Name_Fore : constant Name_Id := N + $;
856 Name_Has_Access_Values : constant Name_Id := N + $; -- GNAT
857 Name_Has_Discriminants : constant Name_Id := N + $; -- GNAT
858 Name_Has_Same_Storage : constant Name_Id := N + $; -- Ada 12
859 Name_Has_Tagged_Values : constant Name_Id := N + $; -- GNAT
860 Name_Identity : constant Name_Id := N + $;
861 Name_Img : constant Name_Id := N + $; -- GNAT
862 Name_Implicit_Dereference : constant Name_Id := N + $; -- GNAT
863 Name_Integer_Value : constant Name_Id := N + $; -- GNAT
864 Name_Invalid_Value : constant Name_Id := N + $; -- GNAT
865 Name_Iterator_Element : constant Name_Id := N + $; -- GNAT
866 Name_Iterable : constant Name_Id := N + $; -- GNAT
867 Name_Large : constant Name_Id := N + $; -- Ada 83
868 Name_Last : constant Name_Id := N + $;
869 Name_Last_Bit : constant Name_Id := N + $;
870 Name_Last_Valid : constant Name_Id := N + $; -- Ada 12
871 Name_Leading_Part : constant Name_Id := N + $;
872 Name_Length : constant Name_Id := N + $;
873 Name_Library_Level : constant Name_Id := N + $; -- GNAT
874 Name_Lock_Free : constant Name_Id := N + $; -- GNAT
875 Name_Loop_Entry : constant Name_Id := N + $; -- GNAT
876 Name_Machine_Emax : constant Name_Id := N + $;
877 Name_Machine_Emin : constant Name_Id := N + $;
878 Name_Machine_Mantissa : constant Name_Id := N + $;
879 Name_Machine_Overflows : constant Name_Id := N + $;
880 Name_Machine_Radix : constant Name_Id := N + $;
881 Name_Machine_Rounding : constant Name_Id := N + $; -- Ada 05
882 Name_Machine_Rounds : constant Name_Id := N + $;
883 Name_Machine_Size : constant Name_Id := N + $; -- GNAT
884 Name_Mantissa : constant Name_Id := N + $; -- Ada 83
885 Name_Max_Alignment_For_Allocation : constant Name_Id := N + $; -- Ada 12
886 Name_Max_Size_In_Storage_Elements : constant Name_Id := N + $;
887 Name_Maximum_Alignment : constant Name_Id := N + $; -- GNAT
888 Name_Mechanism_Code : constant Name_Id := N + $; -- GNAT
889 Name_Mod : constant Name_Id := N + $; -- Ada 05
890 Name_Model_Emin : constant Name_Id := N + $;
891 Name_Model_Epsilon : constant Name_Id := N + $;
892 Name_Model_Mantissa : constant Name_Id := N + $;
893 Name_Model_Small : constant Name_Id := N + $;
894 Name_Modulus : constant Name_Id := N + $;
895 Name_Null_Parameter : constant Name_Id := N + $; -- GNAT
896 Name_Object_Size : constant Name_Id := N + $; -- GNAT
897 Name_Old : constant Name_Id := N + $; -- GNAT
898 Name_Overlaps_Storage : constant Name_Id := N + $; -- GNAT
899 Name_Partition_ID : constant Name_Id := N + $;
900 Name_Passed_By_Reference : constant Name_Id := N + $; -- GNAT
901 Name_Pool_Address : constant Name_Id := N + $; -- GNAT
902 Name_Pos : constant Name_Id := N + $;
903 Name_Position : constant Name_Id := N + $;
904 Name_Priority : constant Name_Id := N + $; -- Ada 05
905 Name_Range : constant Name_Id := N + $;
906 Name_Range_Length : constant Name_Id := N + $; -- GNAT
907 Name_Ref : constant Name_Id := N + $; -- GNAT
908 Name_Restriction_Set : constant Name_Id := N + $; -- GNAT
909 Name_Result : constant Name_Id := N + $; -- GNAT
910 Name_Round : constant Name_Id := N + $;
911 Name_Safe_Emax : constant Name_Id := N + $; -- Ada 83
912 Name_Safe_First : constant Name_Id := N + $;
913 Name_Safe_Large : constant Name_Id := N + $; -- Ada 83
914 Name_Safe_Last : constant Name_Id := N + $;
915 Name_Safe_Small : constant Name_Id := N + $; -- Ada 83
916 Name_Scalar_Storage_Order : constant Name_Id := N + $; -- GNAT
917 Name_Scale : constant Name_Id := N + $;
918 Name_Scaling : constant Name_Id := N + $;
919 Name_Signed_Zeros : constant Name_Id := N + $;
920 Name_Size : constant Name_Id := N + $;
921 Name_Small : constant Name_Id := N + $; -- Ada 83
922 Name_Storage_Size : constant Name_Id := N + $;
923 Name_Storage_Unit : constant Name_Id := N + $; -- GNAT
924 Name_Stream_Size : constant Name_Id := N + $; -- Ada 05
925 Name_System_Allocator_Alignment : constant Name_Id := N + $; -- GNAT
926 Name_Tag : constant Name_Id := N + $;
927 Name_Target_Name : constant Name_Id := N + $; -- GNAT
928 Name_Terminated : constant Name_Id := N + $;
929 Name_To_Address : constant Name_Id := N + $; -- GNAT
930 Name_Type_Class : constant Name_Id := N + $; -- GNAT
931 Name_Type_Key : constant Name_Id := N + $; -- GNAT
932 Name_UET_Address : constant Name_Id := N + $; -- GNAT
933 Name_Unbiased_Rounding : constant Name_Id := N + $;
934 Name_Unchecked_Access : constant Name_Id := N + $;
935 Name_Unconstrained_Array : constant Name_Id := N + $; -- GNAT
936 Name_Universal_Literal_String : constant Name_Id := N + $; -- GNAT
937 Name_Unrestricted_Access : constant Name_Id := N + $; -- GNAT
938 Name_Update : constant Name_Id := N + $; -- GNAT
939 Name_VADS_Size : constant Name_Id := N + $; -- GNAT
940 Name_Val : constant Name_Id := N + $;
941 Name_Valid : constant Name_Id := N + $;
942 Name_Valid_Scalars : constant Name_Id := N + $; -- GNAT
943 Name_Value_Size : constant Name_Id := N + $; -- GNAT
944 Name_Variable_Indexing : constant Name_Id := N + $; -- GNAT
945 Name_Version : constant Name_Id := N + $;
946 Name_Wchar_T_Size : constant Name_Id := N + $; -- GNAT
947 Name_Wide_Wide_Width : constant Name_Id := N + $; -- Ada 05
948 Name_Wide_Width : constant Name_Id := N + $;
949 Name_Width : constant Name_Id := N + $;
950 Name_Word_Size : constant Name_Id := N + $; -- GNAT
952 -- Attributes that designate attributes returning renamable functions,
953 -- i.e. functions that return other than a universal value and that
954 -- have non-universal arguments.
956 First_Renamable_Function_Attribute : constant Name_Id := N + $;
957 Name_Adjacent : constant Name_Id := N + $;
958 Name_Ceiling : constant Name_Id := N + $;
959 Name_Copy_Sign : constant Name_Id := N + $;
960 Name_Floor : constant Name_Id := N + $;
961 Name_Fraction : constant Name_Id := N + $;
962 Name_From_Any : constant Name_Id := N + $; -- GNAT
963 Name_Image : constant Name_Id := N + $;
964 Name_Input : constant Name_Id := N + $;
965 Name_Machine : constant Name_Id := N + $;
966 Name_Max : constant Name_Id := N + $;
967 Name_Min : constant Name_Id := N + $;
968 Name_Model : constant Name_Id := N + $;
969 Name_Pred : constant Name_Id := N + $;
970 Name_Remainder : constant Name_Id := N + $;
971 Name_Rounding : constant Name_Id := N + $;
972 Name_Succ : constant Name_Id := N + $;
973 Name_To_Any : constant Name_Id := N + $; -- GNAT
974 Name_Truncation : constant Name_Id := N + $;
975 Name_TypeCode : constant Name_Id := N + $; -- GNAT
976 Name_Value : constant Name_Id := N + $;
977 Name_Wide_Image : constant Name_Id := N + $;
978 Name_Wide_Wide_Image : constant Name_Id := N + $;
979 Name_Wide_Value : constant Name_Id := N + $;
980 Name_Wide_Wide_Value : constant Name_Id := N + $;
981 Last_Renamable_Function_Attribute : constant Name_Id := N + $;
983 -- Attributes that designate procedures
985 First_Procedure_Attribute : constant Name_Id := N + $;
986 Name_Output : constant Name_Id := N + $;
987 Name_Read : constant Name_Id := N + $;
988 Name_Write : constant Name_Id := N + $;
989 Last_Procedure_Attribute : constant Name_Id := N + $;
991 -- Remaining attributes are ones that return entities
993 -- Note that Elab_Subp_Body is not considered to be a valid attribute name
994 -- unless we are operating in CodePeer mode.
996 First_Entity_Attribute_Name : constant Name_Id := N + $;
997 Name_Elab_Body : constant Name_Id := N + $; -- GNAT
998 Name_Elab_Spec : constant Name_Id := N + $; -- GNAT
999 Name_Elab_Subp_Body : constant Name_Id := N + $; -- GNAT
1000 Name_Simple_Storage_Pool : constant Name_Id := N + $; -- GNAT
1001 Name_Storage_Pool : constant Name_Id := N + $;
1003 -- These attributes are the ones that return types
1005 First_Type_Attribute_Name : constant Name_Id := N + $;
1006 Name_Base : constant Name_Id := N + $;
1007 Name_Class : constant Name_Id := N + $;
1008 Name_Stub_Type : constant Name_Id := N + $; -- GNAT
1009 Last_Type_Attribute_Name : constant Name_Id := N + $;
1010 Last_Entity_Attribute_Name : constant Name_Id := N + $;
1011 Last_Attribute_Name : constant Name_Id := N + $;
1013 -- Names of internal attributes. They are not real attributes but special
1014 -- names used internally by GNAT in order to deal with delayed aspects
1015 -- (Aspect_CPU, Aspect_Dispatching_Domain, Aspect_Interrupt_Priority) that
1016 -- don't have corresponding pragmas or user-referencable attributes.
1018 -- It is convenient to have these internal attributes available for
1019 -- processing the aspects, since the normal approach is to convert an
1020 -- aspect into its corresponding pragma or attribute specification.
1022 -- These attributes do have Attribute_Id values so that case statements
1023 -- on Attribute_Id include these cases, but they are NOT included in the
1024 -- Attribute_Name subtype defined above, which is typically used in the
1025 -- front end for checking syntax of submitted programs (where the use of
1026 -- internal attributes is not permitted).
1028 First_Internal_Attribute_Name : constant Name_Id := N + $;
1029 Name_CPU : constant Name_Id := N + $;
1030 Name_Dispatching_Domain : constant Name_Id := N + $;
1031 Name_Interrupt_Priority : constant Name_Id := N + $;
1032 Last_Internal_Attribute_Name : constant Name_Id := N + $;
1034 -- Names of recognized locking policy identifiers
1036 First_Locking_Policy_Name : constant Name_Id := N + $;
1037 Name_Ceiling_Locking : constant Name_Id := N + $;
1038 Name_Inheritance_Locking : constant Name_Id := N + $;
1039 Name_Concurrent_Readers_Locking : constant Name_Id := N + $; -- GNAT
1040 Last_Locking_Policy_Name : constant Name_Id := N + $;
1042 -- Names of recognized queuing policy identifiers
1044 -- Note: policies are identified by the first character of the name (e.g. F
1045 -- for FIFO_Queuing). If new policy names are added, the first character
1046 -- must be distinct.
1048 First_Queuing_Policy_Name : constant Name_Id := N + $;
1049 Name_FIFO_Queuing : constant Name_Id := N + $;
1050 Name_Priority_Queuing : constant Name_Id := N + $;
1051 Last_Queuing_Policy_Name : constant Name_Id := N + $;
1053 -- Names of recognized task dispatching policy identifiers
1055 -- Note: policies are identified by the first character of the name (e.g. F
1056 -- for FIFO_Within_Priorities). If new policy names are added, the first
1057 -- character must be distinct.
1059 First_Task_Dispatching_Policy_Name : constant Name_Id := N + $;
1060 Name_EDF_Across_Priorities : constant Name_Id := N + $;
1061 Name_FIFO_Within_Priorities : constant Name_Id := N + $;
1062 Name_Non_Preemptive_Within_Priorities : constant Name_Id := N + $;
1063 Name_Round_Robin_Within_Priorities : constant Name_Id := N + $;
1064 Last_Task_Dispatching_Policy_Name : constant Name_Id := N + $;
1066 -- Names of recognized partition elaboration policy identifiers
1068 -- Note: policies are identified by the first character of the name (e.g. S
1069 -- for Sequential). If new policy names are added, the first character must
1072 First_Partition_Elaboration_Policy_Name : constant Name_Id := N + $;
1073 Name_Concurrent : constant Name_Id := N + $;
1074 Name_Sequential : constant Name_Id := N + $;
1075 Last_Partition_Elaboration_Policy_Name : constant Name_Id := N + $;
1077 -- Names of recognized checks for pragma Suppress
1079 -- Note: the name Atomic_Synchronization can only be specified internally
1080 -- as a result of using pragma Enable/Disable_Atomic_Synchronization.
1082 First_Check_Name : constant Name_Id := N + $;
1083 Name_Access_Check : constant Name_Id := N + $;
1084 Name_Accessibility_Check : constant Name_Id := N + $;
1085 Name_Alignment_Check : constant Name_Id := N + $; -- GNAT
1086 Name_Allocation_Check : constant Name_Id := N + $;
1087 Name_Atomic_Synchronization : constant Name_Id := N + $; -- GNAT
1088 Name_Discriminant_Check : constant Name_Id := N + $;
1089 Name_Division_Check : constant Name_Id := N + $;
1090 Name_Duplicated_Tag_Check : constant Name_Id := N + $; -- GNAT
1091 Name_Elaboration_Check : constant Name_Id := N + $;
1092 Name_Index_Check : constant Name_Id := N + $;
1093 Name_Length_Check : constant Name_Id := N + $;
1094 Name_Overflow_Check : constant Name_Id := N + $;
1095 Name_Predicate_Check : constant Name_Id := N + $; -- GNAT
1096 Name_Range_Check : constant Name_Id := N + $;
1097 Name_Storage_Check : constant Name_Id := N + $;
1098 Name_Tag_Check : constant Name_Id := N + $;
1099 Name_Validity_Check : constant Name_Id := N + $; -- GNAT
1100 Name_All_Checks : constant Name_Id := N + $;
1101 Last_Check_Name : constant Name_Id := N + $;
1103 -- Ada 83 reserved words, excluding those already declared in the attribute
1104 -- list (Access, Delta, Digits, Mod, Range).
1106 Name_Abort : constant Name_Id := N + $;
1107 Name_Abs : constant Name_Id := N + $;
1108 Name_Accept : constant Name_Id := N + $;
1109 Name_And : constant Name_Id := N + $;
1110 Name_All : constant Name_Id := N + $;
1111 Name_Array : constant Name_Id := N + $;
1112 Name_At : constant Name_Id := N + $;
1113 Name_Begin : constant Name_Id := N + $;
1114 Name_Body : constant Name_Id := N + $;
1115 Name_Case : constant Name_Id := N + $;
1116 Name_Constant : constant Name_Id := N + $;
1117 Name_Declare : constant Name_Id := N + $;
1118 Name_Delay : constant Name_Id := N + $;
1119 Name_Do : constant Name_Id := N + $;
1120 Name_Else : constant Name_Id := N + $;
1121 Name_Elsif : constant Name_Id := N + $;
1122 Name_End : constant Name_Id := N + $;
1123 Name_Entry : constant Name_Id := N + $;
1124 Name_Exception : constant Name_Id := N + $;
1125 Name_Exit : constant Name_Id := N + $;
1126 Name_For : constant Name_Id := N + $;
1127 Name_Function : constant Name_Id := N + $;
1128 Name_Generic : constant Name_Id := N + $;
1129 Name_Goto : constant Name_Id := N + $;
1130 Name_If : constant Name_Id := N + $;
1131 Name_In : constant Name_Id := N + $;
1132 Name_Is : constant Name_Id := N + $;
1133 Name_Limited : constant Name_Id := N + $;
1134 Name_Loop : constant Name_Id := N + $;
1135 Name_New : constant Name_Id := N + $;
1136 Name_Not : constant Name_Id := N + $;
1137 Name_Null : constant Name_Id := N + $;
1138 Name_Of : constant Name_Id := N + $;
1139 Name_Or : constant Name_Id := N + $;
1140 Name_Others : constant Name_Id := N + $;
1141 Name_Out : constant Name_Id := N + $;
1142 Name_Package : constant Name_Id := N + $;
1143 Name_Pragma : constant Name_Id := N + $;
1144 Name_Private : constant Name_Id := N + $;
1145 Name_Procedure : constant Name_Id := N + $;
1146 Name_Raise : constant Name_Id := N + $;
1147 Name_Record : constant Name_Id := N + $;
1148 Name_Rem : constant Name_Id := N + $;
1149 Name_Renames : constant Name_Id := N + $;
1150 Name_Return : constant Name_Id := N + $;
1151 Name_Reverse : constant Name_Id := N + $;
1152 Name_Select : constant Name_Id := N + $;
1153 Name_Separate : constant Name_Id := N + $;
1154 Name_Subtype : constant Name_Id := N + $;
1155 Name_Task : constant Name_Id := N + $;
1156 Name_Terminate : constant Name_Id := N + $;
1157 Name_Then : constant Name_Id := N + $;
1158 Name_Type : constant Name_Id := N + $;
1159 Name_Use : constant Name_Id := N + $;
1160 Name_When : constant Name_Id := N + $;
1161 Name_While : constant Name_Id := N + $;
1162 Name_With : constant Name_Id := N + $;
1163 Name_Xor : constant Name_Id := N + $;
1165 -- Names of intrinsic subprograms
1167 -- Note: Asm is missing from this list, since Asm is a legitimate
1168 -- convention name. So is To_Address, which is a GNAT attribute.
1170 First_Intrinsic_Name : constant Name_Id := N + $;
1171 Name_Compilation_Date : constant Name_Id := N + $;
1172 Name_Compilation_Time : constant Name_Id := N + $;
1173 Name_Divide : constant Name_Id := N + $;
1174 Name_Enclosing_Entity : constant Name_Id := N + $;
1175 Name_Exception_Information : constant Name_Id := N + $;
1176 Name_Exception_Message : constant Name_Id := N + $;
1177 Name_Exception_Name : constant Name_Id := N + $;
1178 Name_File : constant Name_Id := N + $;
1179 Name_Generic_Dispatching_Constructor : constant Name_Id := N + $;
1180 Name_Import_Address : constant Name_Id := N + $;
1181 Name_Import_Largest_Value : constant Name_Id := N + $;
1182 Name_Import_Value : constant Name_Id := N + $;
1183 Name_Is_Negative : constant Name_Id := N + $;
1184 Name_Line : constant Name_Id := N + $;
1185 Name_Rotate_Left : constant Name_Id := N + $;
1186 Name_Rotate_Right : constant Name_Id := N + $;
1187 Name_Shift_Left : constant Name_Id := N + $;
1188 Name_Shift_Right : constant Name_Id := N + $;
1189 Name_Shift_Right_Arithmetic : constant Name_Id := N + $;
1190 Name_Source_Location : constant Name_Id := N + $;
1191 Name_Unchecked_Conversion : constant Name_Id := N + $;
1192 Name_Unchecked_Deallocation : constant Name_Id := N + $;
1193 Name_To_Pointer : constant Name_Id := N + $;
1194 Last_Intrinsic_Name : constant Name_Id := N + $;
1196 -- Names used in processing intrinsic calls
1198 Name_Free : constant Name_Id := N + $;
1200 -- Ada 95 reserved words
1202 First_95_Reserved_Word : constant Name_Id := N + $;
1203 Name_Abstract : constant Name_Id := N + $;
1204 Name_Aliased : constant Name_Id := N + $;
1205 Name_Protected : constant Name_Id := N + $;
1206 Name_Until : constant Name_Id := N + $;
1207 Name_Requeue : constant Name_Id := N + $;
1208 Name_Tagged : constant Name_Id := N + $;
1209 Last_95_Reserved_Word : constant Name_Id := N + $;
1211 subtype Ada_95_Reserved_Words is
1212 Name_Id range First_95_Reserved_Word .. Last_95_Reserved_Word;
1214 -- Miscellaneous names used in semantic checking
1216 Name_Raise_Exception : constant Name_Id := N + $;
1218 -- Additional reserved words and identifiers used in GNAT Project Files
1219 -- Note that Name_External is already previously declared.
1221 -- Names with a -- GB annotation are only used in gprbuild or gprclean
1223 Name_Active : constant Name_Id := N + $;
1224 Name_Aggregate : constant Name_Id := N + $;
1225 Name_Archive_Builder : constant Name_Id := N + $;
1226 Name_Archive_Builder_Append_Option : constant Name_Id := N + $;
1227 Name_Archive_Indexer : constant Name_Id := N + $;
1228 Name_Archive_Suffix : constant Name_Id := N + $;
1229 Name_Artifacts : constant Name_Id := N + $;
1230 Name_Artifacts_In_Exec_Dir : constant Name_Id := N + $; -- GB
1231 Name_Artifacts_In_Object_Dir : constant Name_Id := N + $; -- GB
1232 Name_Binder : constant Name_Id := N + $;
1233 Name_Body_Suffix : constant Name_Id := N + $;
1234 Name_Builder : constant Name_Id := N + $;
1235 Name_Clean : constant Name_Id := N + $;
1236 Name_Compiler : constant Name_Id := N + $;
1237 Name_Compiler_Command : constant Name_Id := N + $; -- GB
1238 Name_Config_Body_File_Name : constant Name_Id := N + $;
1239 Name_Config_Body_File_Name_Index : constant Name_Id := N + $;
1240 Name_Config_Body_File_Name_Pattern : constant Name_Id := N + $;
1241 Name_Config_File_Switches : constant Name_Id := N + $;
1242 Name_Config_File_Unique : constant Name_Id := N + $;
1243 Name_Config_Spec_File_Name : constant Name_Id := N + $;
1244 Name_Config_Spec_File_Name_Index : constant Name_Id := N + $;
1245 Name_Config_Spec_File_Name_Pattern : constant Name_Id := N + $;
1246 Name_Configuration : constant Name_Id := N + $;
1247 Name_Cross_Reference : constant Name_Id := N + $;
1248 Name_Default_Language : constant Name_Id := N + $;
1249 Name_Default_Switches : constant Name_Id := N + $;
1250 Name_Dependency_Driver : constant Name_Id := N + $;
1251 Name_Dependency_Kind : constant Name_Id := N + $;
1252 Name_Dependency_Switches : constant Name_Id := N + $;
1253 Name_Driver : constant Name_Id := N + $;
1254 Name_Excluded_Source_Dirs : constant Name_Id := N + $;
1255 Name_Excluded_Source_Files : constant Name_Id := N + $;
1256 Name_Excluded_Source_List_File : constant Name_Id := N + $;
1257 Name_Exec_Dir : constant Name_Id := N + $;
1258 Name_Exec_Subdir : constant Name_Id := N + $;
1259 Name_Excluded_Patterns : constant Name_Id := N + $;
1260 Name_Executable : constant Name_Id := N + $;
1261 Name_Executable_Suffix : constant Name_Id := N + $;
1262 Name_Extends : constant Name_Id := N + $;
1263 Name_External_As_List : constant Name_Id := N + $;
1264 Name_Externally_Built : constant Name_Id := N + $;
1265 Name_Finder : constant Name_Id := N + $;
1266 Name_Global_Compilation_Switches : constant Name_Id := N + $;
1267 Name_Global_Configuration_Pragmas : constant Name_Id := N + $;
1268 Name_Global_Config_File : constant Name_Id := N + $; -- GB
1269 Name_Gnatls : constant Name_Id := N + $;
1270 Name_Gnatstub : constant Name_Id := N + $;
1271 Name_Gnu : constant Name_Id := N + $;
1272 Name_Ide : constant Name_Id := N + $;
1273 Name_Ignore_Source_Sub_Dirs : constant Name_Id := N + $;
1274 Name_Implementation : constant Name_Id := N + $;
1275 Name_Implementation_Exceptions : constant Name_Id := N + $;
1276 Name_Implementation_Suffix : constant Name_Id := N + $;
1277 Name_Included_Artifact_Patterns : constant Name_Id := N + $;
1278 Name_Included_Patterns : constant Name_Id := N + $;
1279 Name_Include_Switches : constant Name_Id := N + $;
1280 Name_Include_Path : constant Name_Id := N + $;
1281 Name_Include_Path_File : constant Name_Id := N + $;
1282 Name_Inherit_Source_Path : constant Name_Id := N + $;
1283 Name_Install : constant Name_Id := N + $;
1284 Name_Languages : constant Name_Id := N + $;
1285 Name_Language_Kind : constant Name_Id := N + $;
1286 Name_Leading_Library_Options : constant Name_Id := N + $;
1287 Name_Leading_Required_Switches : constant Name_Id := N + $;
1288 Name_Leading_Switches : constant Name_Id := N + $;
1289 Name_Lib_Subdir : constant Name_Id := N + $;
1290 Name_Link_Lib_Subdir : constant Name_Id := N + $;
1291 Name_Library : constant Name_Id := N + $;
1292 Name_Library_Ali_Dir : constant Name_Id := N + $;
1293 Name_Library_Auto_Init : constant Name_Id := N + $;
1294 Name_Library_Auto_Init_Supported : constant Name_Id := N + $;
1295 Name_Library_Builder : constant Name_Id := N + $;
1296 Name_Library_Dir : constant Name_Id := N + $;
1297 Name_Library_GCC : constant Name_Id := N + $;
1298 Name_Library_Install_Name_Option : constant Name_Id := N + $;
1299 Name_Library_Interface : constant Name_Id := N + $;
1300 Name_Library_Kind : constant Name_Id := N + $;
1301 Name_Library_Name : constant Name_Id := N + $;
1302 Name_Library_Major_Minor_Id_Supported : constant Name_Id := N + $;
1303 Name_Library_Options : constant Name_Id := N + $;
1304 Name_Library_Partial_Linker : constant Name_Id := N + $;
1305 Name_Library_Reference_Symbol_File : constant Name_Id := N + $;
1306 Name_Library_Rpath_Options : constant Name_Id := N + $; -- GB
1307 Name_Library_Standalone : constant Name_Id := N + $;
1308 Name_Library_Encapsulated_Options : constant Name_Id := N + $; -- GB
1309 Name_Library_Encapsulated_Supported : constant Name_Id := N + $; -- GB
1310 Name_Library_Src_Dir : constant Name_Id := N + $;
1311 Name_Library_Support : constant Name_Id := N + $;
1312 Name_Library_Symbol_File : constant Name_Id := N + $;
1313 Name_Library_Symbol_Policy : constant Name_Id := N + $;
1314 Name_Library_Version : constant Name_Id := N + $;
1315 Name_Library_Version_Switches : constant Name_Id := N + $;
1316 Name_Linker : constant Name_Id := N + $;
1317 Name_Linker_Executable_Option : constant Name_Id := N + $;
1318 Name_Linker_Lib_Dir_Option : constant Name_Id := N + $;
1319 Name_Linker_Lib_Name_Option : constant Name_Id := N + $;
1320 Name_Local_Config_File : constant Name_Id := N + $; -- GB
1321 Name_Local_Configuration_Pragmas : constant Name_Id := N + $;
1322 Name_Locally_Removed_Files : constant Name_Id := N + $;
1323 Name_Map_File_Option : constant Name_Id := N + $;
1324 Name_Mapping_File_Switches : constant Name_Id := N + $;
1325 Name_Mapping_Spec_Suffix : constant Name_Id := N + $;
1326 Name_Mapping_Body_Suffix : constant Name_Id := N + $;
1327 Name_Max_Command_Line_Length : constant Name_Id := N + $;
1328 Name_Metrics : constant Name_Id := N + $;
1329 Name_Multi_Unit_Object_Separator : constant Name_Id := N + $;
1330 Name_Multi_Unit_Switches : constant Name_Id := N + $;
1331 Name_Naming : constant Name_Id := N + $;
1332 Name_None : constant Name_Id := N + $;
1333 Name_Object_Artifact_Extensions : constant Name_Id := N + $;
1334 Name_Object_File_Suffix : constant Name_Id := N + $;
1335 Name_Object_File_Switches : constant Name_Id := N + $;
1336 Name_Object_Generated : constant Name_Id := N + $;
1337 Name_Object_List : constant Name_Id := N + $;
1338 Name_Object_Path_Switches : constant Name_Id := N + $;
1339 Name_Objects_Linked : constant Name_Id := N + $;
1340 Name_Objects_Path : constant Name_Id := N + $;
1341 Name_Objects_Path_File : constant Name_Id := N + $;
1342 Name_Object_Dir : constant Name_Id := N + $;
1343 Name_Option_List : constant Name_Id := N + $;
1344 Name_Path_Syntax : constant Name_Id := N + $;
1345 Name_Pic_Option : constant Name_Id := N + $;
1346 Name_Pretty_Printer : constant Name_Id := N + $;
1347 Name_Prefix : constant Name_Id := N + $;
1348 Name_Project : constant Name_Id := N + $;
1349 Name_Project_Dir : constant Name_Id := N + $;
1350 Name_Project_Files : constant Name_Id := N + $;
1351 Name_Project_Path : constant Name_Id := N + $;
1352 Name_Project_Subdir : constant Name_Id := N + $;
1353 Name_Remote : constant Name_Id := N + $;
1354 Name_Response_File_Format : constant Name_Id := N + $;
1355 Name_Response_File_Switches : constant Name_Id := N + $;
1356 Name_Root_Dir : constant Name_Id := N + $;
1357 Name_Roots : constant Name_Id := N + $; -- GB
1358 Name_Required_Switches : constant Name_Id := N + $;
1359 Name_Run_Path_Option : constant Name_Id := N + $;
1360 Name_Run_Path_Origin : constant Name_Id := N + $;
1361 Name_Separate_Run_Path_Options : constant Name_Id := N + $;
1362 Name_Shared_Library_Minimum_Switches : constant Name_Id := N + $;
1363 Name_Shared_Library_Prefix : constant Name_Id := N + $;
1364 Name_Shared_Library_Suffix : constant Name_Id := N + $;
1365 Name_Separate_Suffix : constant Name_Id := N + $;
1366 Name_Source_Artifact_Extensions : constant Name_Id := N + $;
1367 Name_Source_Dirs : constant Name_Id := N + $;
1368 Name_Source_File_Switches : constant Name_Id := N + $;
1369 Name_Source_Files : constant Name_Id := N + $;
1370 Name_Source_List_File : constant Name_Id := N + $;
1371 Name_Sources_Subdir : constant Name_Id := N + $;
1372 Name_Spec : constant Name_Id := N + $;
1373 Name_Spec_Suffix : constant Name_Id := N + $;
1374 Name_Specification : constant Name_Id := N + $;
1375 Name_Specification_Exceptions : constant Name_Id := N + $;
1376 Name_Specification_Suffix : constant Name_Id := N + $;
1377 Name_Stack : constant Name_Id := N + $;
1378 Name_Switches : constant Name_Id := N + $;
1379 Name_Symbolic_Link_Supported : constant Name_Id := N + $;
1380 Name_Synchronize : constant Name_Id := N + $;
1381 Name_Toolchain_Description : constant Name_Id := N + $;
1382 Name_Toolchain_Version : constant Name_Id := N + $;
1383 Name_Trailing_Required_Switches : constant Name_Id := N + $;
1384 Name_Trailing_Switches : constant Name_Id := N + $;
1385 Name_Runtime_Library_Dir : constant Name_Id := N + $;
1386 Name_Runtime_Source_Dir : constant Name_Id := N + $;
1388 -- Other miscellaneous names used in front end
1390 Name_Unaligned_Valid : constant Name_Id := N + $;
1392 -- Names used to implement iterators over predefined containers
1394 Name_Cursor : constant Name_Id := N + $;
1395 Name_Element : constant Name_Id := N + $;
1396 Name_Element_Type : constant Name_Id := N + $;
1397 Name_Has_Element : constant Name_Id := N + $;
1398 Name_No_Element : constant Name_Id := N + $;
1399 Name_Forward_Iterator : constant Name_Id := N + $;
1400 Name_Reversible_Iterator : constant Name_Id := N + $;
1401 Name_Previous : constant Name_Id := N + $;
1403 -- Ada 2005 reserved words
1405 First_2005_Reserved_Word : constant Name_Id := N + $;
1406 Name_Interface : constant Name_Id := N + $;
1407 Name_Overriding : constant Name_Id := N + $;
1408 Name_Synchronized : constant Name_Id := N + $;
1409 Last_2005_Reserved_Word : constant Name_Id := N + $;
1411 subtype Ada_2005_Reserved_Words is
1412 Name_Id range First_2005_Reserved_Word .. Last_2005_Reserved_Word;
1414 -- Ada 2012 reserved words
1416 First_2012_Reserved_Word : constant Name_Id := N + $;
1417 Name_Some : constant Name_Id := N + $;
1418 Last_2012_Reserved_Word : constant Name_Id := N + $;
1420 subtype Ada_2012_Reserved_Words is
1421 Name_Id range First_2012_Reserved_Word .. Last_2012_Reserved_Word;
1423 -- Mark last defined name for consistency check in Snames body
1425 Last_Predefined_Name : constant Name_Id := N + $;
1427 ---------------------------------------
1428 -- Subtypes Defining Name Categories --
1429 ---------------------------------------
1431 subtype Any_Operator_Name is Name_Id range
1432 First_Operator_Name .. Last_Operator_Name;
1434 subtype Configuration_Pragma_Names is Name_Id range
1435 First_Pragma_Name .. Last_Configuration_Pragma_Name;
1437 ------------------------------
1438 -- Attribute ID Definitions --
1439 ------------------------------
1441 type Attribute_Id is (
1442 Attribute_Abort_Signal,
1445 Attribute_Address_Size,
1447 Attribute_Alignment,
1448 Attribute_Asm_Input,
1449 Attribute_Asm_Output,
1450 Attribute_Atomic_Always_Lock_Free,
1452 Attribute_Bit_Order,
1453 Attribute_Bit_Position,
1454 Attribute_Body_Version,
1457 Attribute_Code_Address,
1458 Attribute_Compiler_Version,
1459 Attribute_Component_Size,
1461 Attribute_Constant_Indexing,
1462 Attribute_Constrained,
1464 Attribute_Default_Bit_Order,
1465 Attribute_Default_Iterator,
1469 Attribute_Descriptor_Size,
1471 Attribute_Elaborated,
1478 Attribute_External_Tag,
1479 Attribute_Fast_Math,
1481 Attribute_First_Bit,
1482 Attribute_First_Valid,
1483 Attribute_Fixed_Value,
1485 Attribute_Has_Access_Values,
1486 Attribute_Has_Discriminants,
1487 Attribute_Has_Same_Storage,
1488 Attribute_Has_Tagged_Values,
1491 Attribute_Implicit_Dereference,
1492 Attribute_Integer_Value,
1493 Attribute_Invalid_Value,
1494 Attribute_Iterator_Element,
1499 Attribute_Last_Valid,
1500 Attribute_Leading_Part,
1502 Attribute_Library_Level,
1503 Attribute_Lock_Free,
1504 Attribute_Loop_Entry,
1505 Attribute_Machine_Emax,
1506 Attribute_Machine_Emin,
1507 Attribute_Machine_Mantissa,
1508 Attribute_Machine_Overflows,
1509 Attribute_Machine_Radix,
1510 Attribute_Machine_Rounding,
1511 Attribute_Machine_Rounds,
1512 Attribute_Machine_Size,
1514 Attribute_Max_Alignment_For_Allocation,
1515 Attribute_Max_Size_In_Storage_Elements,
1516 Attribute_Maximum_Alignment,
1517 Attribute_Mechanism_Code,
1519 Attribute_Model_Emin,
1520 Attribute_Model_Epsilon,
1521 Attribute_Model_Mantissa,
1522 Attribute_Model_Small,
1524 Attribute_Null_Parameter,
1525 Attribute_Object_Size,
1527 Attribute_Overlaps_Storage,
1528 Attribute_Partition_ID,
1529 Attribute_Passed_By_Reference,
1530 Attribute_Pool_Address,
1535 Attribute_Range_Length,
1537 Attribute_Restriction_Set,
1540 Attribute_Safe_Emax,
1541 Attribute_Safe_First,
1542 Attribute_Safe_Large,
1543 Attribute_Safe_Last,
1544 Attribute_Safe_Small,
1545 Attribute_Scalar_Storage_Order,
1548 Attribute_Signed_Zeros,
1551 Attribute_Storage_Size,
1552 Attribute_Storage_Unit,
1553 Attribute_Stream_Size,
1554 Attribute_System_Allocator_Alignment,
1556 Attribute_Target_Name,
1557 Attribute_Terminated,
1558 Attribute_To_Address,
1559 Attribute_Type_Class,
1561 Attribute_UET_Address,
1562 Attribute_Unbiased_Rounding,
1563 Attribute_Unchecked_Access,
1564 Attribute_Unconstrained_Array,
1565 Attribute_Universal_Literal_String,
1566 Attribute_Unrestricted_Access,
1568 Attribute_VADS_Size,
1571 Attribute_Valid_Scalars,
1572 Attribute_Value_Size,
1573 Attribute_Variable_Indexing,
1575 Attribute_Wchar_T_Size,
1576 Attribute_Wide_Wide_Width,
1577 Attribute_Wide_Width,
1579 Attribute_Word_Size,
1581 -- Attributes designating renamable functions
1585 Attribute_Copy_Sign,
1596 Attribute_Remainder,
1600 Attribute_Truncation,
1603 Attribute_Wide_Image,
1604 Attribute_Wide_Wide_Image,
1605 Attribute_Wide_Value,
1606 Attribute_Wide_Wide_Value,
1608 -- Attributes designating procedures
1614 -- Entity attributes (includes type attributes)
1616 Attribute_Elab_Body,
1617 Attribute_Elab_Spec,
1618 Attribute_Elab_Subp_Body,
1619 Attribute_Simple_Storage_Pool,
1620 Attribute_Storage_Pool,
1626 Attribute_Stub_Type,
1628 -- The internal attributes are on their own, out of order, because of
1629 -- the special processing required to deal with the fact that their
1630 -- names are not attribute names.
1633 Attribute_Dispatching_Domain,
1634 Attribute_Interrupt_Priority);
1636 subtype Internal_Attribute_Id is Attribute_Id range
1637 Attribute_CPU .. Attribute_Interrupt_Priority;
1639 type Attribute_Class_Array is array (Attribute_Id) of Boolean;
1640 -- Type used to build attribute classification flag arrays
1642 ------------------------------------
1643 -- Convention Name ID Definitions --
1644 ------------------------------------
1646 type Convention_Id is (
1648 -- The native-to-Ada (non-foreign) conventions come first. These include
1649 -- the ones defined in the RM, plus Ghost and Stubbed.
1652 Convention_Intrinsic,
1655 Convention_Protected,
1658 -- The following conventions are equivalent to Ada for all purposes
1659 -- except controlling the way parameters are passed.
1661 Convention_Ada_Pass_By_Copy,
1662 Convention_Ada_Pass_By_Reference,
1664 -- The remaining conventions are foreign language conventions
1666 Convention_Assembler, -- also Asm, Assembly
1667 Convention_C, -- also Default, External
1673 Convention_Stdcall); -- also DLL, Win32
1675 -- Note: Convention C_Pass_By_Copy is allowed only for record types
1676 -- (where it is treated like C except that the appropriate flag is set
1677 -- in the record type). Recognizing this convention is specially handled
1680 for Convention_Id'Size use 8;
1681 -- Plenty of space for expansion
1683 subtype Foreign_Convention is
1684 Convention_Id range Convention_Assembler .. Convention_Id'Last;
1686 -----------------------------------
1687 -- Locking Policy ID Definitions --
1688 -----------------------------------
1690 type Locking_Policy_Id is (
1691 Locking_Policy_Inheritance_Locking,
1692 Locking_Policy_Ceiling_Locking,
1693 Locking_Policy_Concurrent_Readers_Locking);
1695 ---------------------------
1696 -- Pragma ID Definitions --
1697 ---------------------------
1701 -- Configuration pragmas
1703 -- Note: This list is in the GNAT users guide, so be sure that if any
1704 -- additions or deletions are made to the following list, they are
1705 -- properly reflected in the users guide.
1713 Pragma_Allow_Integer_Address,
1715 Pragma_Assertion_Policy,
1717 Pragma_Assume_No_Invalid_Values,
1718 Pragma_Attribute_Definition,
1719 Pragma_C_Pass_By_Copy,
1720 Pragma_Check_Float_Overflow,
1722 Pragma_Check_Policy,
1723 Pragma_Compile_Time_Error,
1724 Pragma_Compile_Time_Warning,
1725 Pragma_Compiler_Unit,
1726 Pragma_Compiler_Unit_Warning,
1727 Pragma_Component_Alignment,
1728 Pragma_Convention_Identifier,
1729 Pragma_Debug_Policy,
1730 Pragma_Detect_Blocking,
1731 Pragma_Default_Scalar_Storage_Order,
1732 Pragma_Default_Storage_Pool,
1733 Pragma_Disable_Atomic_Synchronization,
1734 Pragma_Discard_Names,
1735 Pragma_Elaboration_Checks,
1737 Pragma_Enable_Atomic_Synchronization,
1738 Pragma_Extend_System,
1739 Pragma_Extensions_Allowed,
1740 Pragma_External_Name_Casing,
1741 Pragma_Favor_Top_Level,
1742 Pragma_Implicit_Packing,
1743 Pragma_Initialize_Scalars,
1744 Pragma_Interrupt_State,
1746 Pragma_Locking_Policy,
1747 Pragma_Loop_Optimize,
1749 Pragma_No_Strict_Aliasing,
1750 Pragma_Normalize_Scalars,
1751 Pragma_Optimize_Alignment,
1752 Pragma_Overflow_Mode,
1753 Pragma_Overriding_Renamings,
1754 Pragma_Partition_Elaboration_Policy,
1755 Pragma_Persistent_BSS,
1757 Pragma_Priority_Specific_Dispatching,
1759 Pragma_Profile_Warnings,
1760 Pragma_Propagate_Exceptions,
1761 Pragma_Queuing_Policy,
1764 Pragma_Restricted_Run_Time,
1765 Pragma_Restrictions,
1766 Pragma_Restriction_Warnings,
1768 Pragma_Short_Circuit_And_Or,
1769 Pragma_Short_Descriptors,
1770 Pragma_Source_File_Name,
1771 Pragma_Source_File_Name_Project,
1773 Pragma_Style_Checks,
1775 Pragma_Suppress_Exception_Locations,
1776 Pragma_Task_Dispatching_Policy,
1777 Pragma_Unevaluated_Use_Of_Old,
1778 Pragma_Universal_Data,
1780 Pragma_Use_VADS_Size,
1781 Pragma_Validity_Checks,
1782 Pragma_Warning_As_Error,
1784 Pragma_Wide_Character_Encoding,
1786 -- Remaining (non-configuration) pragmas
1789 Pragma_Abstract_State,
1790 Pragma_All_Calls_Remote,
1792 Pragma_Assert_And_Cut,
1793 Pragma_Async_Readers,
1794 Pragma_Async_Writers,
1795 Pragma_Asynchronous,
1797 Pragma_Atomic_Components,
1798 Pragma_Attach_Handler,
1800 Pragma_CIL_Constructor,
1802 Pragma_Common_Object,
1803 Pragma_Complete_Representation,
1804 Pragma_Complex_Representation,
1805 Pragma_Contract_Cases,
1809 Pragma_CPP_Constructor,
1814 Pragma_Effective_Reads,
1815 Pragma_Effective_Writes,
1817 Pragma_Elaborate_All,
1818 Pragma_Elaborate_Body,
1820 Pragma_Export_Function,
1821 Pragma_Export_Object,
1822 Pragma_Export_Procedure,
1823 Pragma_Export_Value,
1824 Pragma_Export_Valued_Procedure,
1826 Pragma_Finalize_Storage_Only,
1829 Pragma_Implementation_Defined,
1832 Pragma_Import_Function,
1833 Pragma_Import_Object,
1834 Pragma_Import_Procedure,
1835 Pragma_Import_Valued_Procedure,
1837 Pragma_Independent_Components,
1838 Pragma_Initial_Condition,
1841 Pragma_Inline_Always,
1842 Pragma_Inline_Generic,
1843 Pragma_Inspection_Point,
1844 Pragma_Interface_Name,
1845 Pragma_Interrupt_Handler,
1847 Pragma_Java_Constructor,
1848 Pragma_Java_Interface,
1851 Pragma_Linker_Alias,
1852 Pragma_Linker_Constructor,
1853 Pragma_Linker_Destructor,
1854 Pragma_Linker_Options,
1855 Pragma_Linker_Section,
1857 Pragma_Loop_Invariant,
1858 Pragma_Loop_Variant,
1859 Pragma_Machine_Attribute,
1861 Pragma_Main_Storage,
1864 Pragma_No_Elaboration_Code_All,
1875 Pragma_Postcondition,
1878 Pragma_Precondition,
1880 Pragma_Preelaborable_Initialization,
1881 Pragma_Preelaborate,
1883 Pragma_Provide_Shift_Operators,
1884 Pragma_Psect_Object,
1886 Pragma_Pure_Function,
1887 Pragma_Refined_Depends,
1888 Pragma_Refined_Global,
1889 Pragma_Refined_Post,
1890 Pragma_Refined_State,
1891 Pragma_Relative_Deadline,
1892 Pragma_Remote_Access_Type,
1893 Pragma_Remote_Call_Interface,
1894 Pragma_Remote_Types,
1895 Pragma_Share_Generic,
1897 Pragma_Shared_Passive,
1898 Pragma_Simple_Storage_Pool_Type,
1899 Pragma_Source_Reference,
1900 Pragma_Static_Elaboration_Desired,
1901 Pragma_Stream_Convert,
1903 Pragma_Suppress_All,
1904 Pragma_Suppress_Debug_Info,
1905 Pragma_Suppress_Initialization,
1910 Pragma_Task_Storage,
1911 Pragma_Thread_Local_Storage,
1914 Pragma_Type_Invariant,
1915 Pragma_Type_Invariant_Class,
1916 Pragma_Unchecked_Union,
1917 Pragma_Unimplemented_Unit,
1918 Pragma_Universal_Aliasing,
1920 Pragma_Unreferenced,
1921 Pragma_Unreferenced_Objects,
1922 Pragma_Unreserve_All_Interrupts,
1924 Pragma_Volatile_Components,
1925 Pragma_Weak_External,
1927 -- The following pragmas are on their own, out of order, because of the
1928 -- special processing required to deal with the fact that their names
1929 -- match existing attribute names.
1932 Pragma_Dispatching_Domain,
1935 Pragma_Interrupt_Priority,
1938 Pragma_Storage_Size,
1939 Pragma_Storage_Unit,
1941 -- The value to represent an unknown or unrecognized pragma
1945 -----------------------------------
1946 -- Queuing Policy ID definitions --
1947 -----------------------------------
1949 type Queuing_Policy_Id is (
1950 Queuing_Policy_FIFO_Queuing,
1951 Queuing_Policy_Priority_Queuing);
1953 --------------------------------------------
1954 -- Task Dispatching Policy ID definitions --
1955 --------------------------------------------
1957 type Task_Dispatching_Policy_Id is (
1958 Task_Dispatching_FIFO_Within_Priorities);
1959 -- Id values used to identify task dispatching policies
1965 procedure Initialize;
1966 -- Called to initialize the preset names in the names table
1968 function Is_Attribute_Name (N : Name_Id) return Boolean;
1969 -- Test to see if the name N is the name of a recognized attribute. Note
1970 -- that Name_Elab_Subp_Body returns False if not operating in CodePeer
1971 -- mode. This is the mechanism for considering this pragma illegal in
1972 -- normal GNAT programs.
1974 function Is_Entity_Attribute_Name (N : Name_Id) return Boolean;
1975 -- Test to see if the name N is the name of a recognized entity attribute,
1976 -- i.e. an attribute reference that returns an entity.
1978 function Is_Internal_Attribute_Name (N : Name_Id) return Boolean;
1979 -- Test to see if the name N is the name of an INT attribute (Name_CPU,
1980 -- Name_Dispatching_Domain, Name_Interrupt_Priority).
1982 function Is_Procedure_Attribute_Name (N : Name_Id) return Boolean;
1983 -- Test to see if the name N is the name of a recognized attribute that
1984 -- designates a procedure (and can therefore appear as a statement).
1986 function Is_Function_Attribute_Name (N : Name_Id) return Boolean;
1987 -- Test to see if the name N is the name of a recognized attribute
1988 -- that designates a renameable function, and can therefore appear in
1989 -- a renaming statement. Note that not all attributes designating
1990 -- functions are renamable, in particular, those returning a universal
1991 -- value cannot be renamed.
1993 function Is_Type_Attribute_Name (N : Name_Id) return Boolean;
1994 -- Test to see if the name N is the name of a recognized type attribute,
1995 -- i.e. an attribute reference that returns a type
1997 function Is_Convention_Name (N : Name_Id) return Boolean;
1998 -- Test to see if the name N is the name of one of the recognized
1999 -- language conventions, as required by pragma Convention, Import,
2000 -- Export, Interface. Returns True if so. Also returns True for a
2001 -- name that has been specified by a Convention_Identifier pragma.
2002 -- If neither case holds, returns False.
2004 function Is_Keyword_Name (N : Name_Id) return Boolean;
2005 -- Test to see if the name N is one of the (reserved) keyword names. This
2006 -- includes all the keywords defined in the Ada standard (taking into
2007 -- effect the Ada version). It also includes additional keywords in
2008 -- contexts where additional keywords have been added. For example, in the
2009 -- context of parsing project files, keywords such as PROJECT are included.
2011 function Is_Locking_Policy_Name (N : Name_Id) return Boolean;
2012 -- Test to see if the name N is the name of a recognized locking policy
2014 function Is_Partition_Elaboration_Policy_Name
2015 (N : Name_Id) return Boolean;
2016 -- Test to see if the name N is the name of a recognized partition
2017 -- elaboration policy.
2019 function Is_Operator_Symbol_Name (N : Name_Id) return Boolean;
2020 -- Test to see if the name N is the name of an operator symbol
2022 function Is_Pragma_Name (N : Name_Id) return Boolean;
2023 -- Test to see if the name N is the name of a recognized pragma. Note
2024 -- that pragmas CPU, Dispatching_Domain, Fast_Math, Interrupt_Priority,
2025 -- Lock_Free, Priority, Storage_Size, and Storage_Unit are recognized
2026 -- as pragmas by this function even though their names are separate from
2027 -- the other pragma names. For this reason, clients should always use
2028 -- this function, rather than do range tests on Name_Id values.
2030 function Is_Configuration_Pragma_Name (N : Name_Id) return Boolean;
2031 -- Test to see if the name N is the name of a recognized configuration
2032 -- pragma. Note that pragma Fast_Math is recognized as a configuration
2033 -- pragma by this function even though its name is separate from other
2034 -- configuration pragma names. For this reason, clients should always
2035 -- use this function, rather than do range tests on Name_Id values.
2037 function Is_Queuing_Policy_Name (N : Name_Id) return Boolean;
2038 -- Test to see if the name N is the name of a recognized queuing policy
2040 function Is_Task_Dispatching_Policy_Name (N : Name_Id) return Boolean;
2041 -- Test to see if the name N is the name of a recognized task
2042 -- dispatching policy.
2044 function Get_Attribute_Id (N : Name_Id) return Attribute_Id;
2045 -- Returns Id of attribute corresponding to given name. It is an error to
2046 -- call this function with a name that is not the name of a attribute. Note
2047 -- that the function also works correctly for internal attribute names even
2048 -- though there are not included in the main list of attribute Names.
2050 function Get_Convention_Id (N : Name_Id) return Convention_Id;
2051 -- Returns Id of language convention corresponding to given name. It is
2052 -- an error to call this function with a name that is not the name of a
2053 -- convention, or one that has been previously recorded using a call to
2054 -- Record_Convention_Identifier.
2056 function Get_Convention_Name (C : Convention_Id) return Name_Id;
2057 -- Returns the name of language convention corresponding to given
2060 function Get_Locking_Policy_Id (N : Name_Id) return Locking_Policy_Id;
2061 -- Returns Id of locking policy corresponding to given name. It is an error
2062 -- to call this function with a name that is not the name of a check.
2064 function Get_Pragma_Id (N : Name_Id) return Pragma_Id;
2065 -- Returns Id of pragma corresponding to given name. Returns Unknown_Pragma
2066 -- if N is not a name of a known (Ada defined or GNAT-specific) pragma.
2067 -- Note that the function also works correctly for names of pragmas that
2068 -- are not included in the main list of pragma Names (e.g. Name_CPU returns
2071 function Get_Queuing_Policy_Id (N : Name_Id) return Queuing_Policy_Id;
2072 -- Returns Id of queuing policy corresponding to given name. It is an error
2073 -- to call this function with a name that is not the name of a check.
2075 function Get_Task_Dispatching_Policy_Id
2076 (N : Name_Id) return Task_Dispatching_Policy_Id;
2077 -- Returns Id of task dispatching policy corresponding to given name. It
2078 -- is an error to call this function with a name that is not the name of
2081 procedure Record_Convention_Identifier
2083 Convention : Convention_Id);
2084 -- A call to this procedure, resulting from an occurrence of a pragma
2085 -- Convention_Identifier, records that from now on an occurrence of Id
2086 -- will be recognized as a name for the specified convention.
2089 pragma Inline (Is_Attribute_Name);
2090 pragma Inline (Is_Entity_Attribute_Name);
2091 pragma Inline (Is_Type_Attribute_Name);
2092 pragma Inline (Is_Locking_Policy_Name);
2093 pragma Inline (Is_Partition_Elaboration_Policy_Name);
2094 pragma Inline (Is_Operator_Symbol_Name);
2095 pragma Inline (Is_Queuing_Policy_Name);
2096 pragma Inline (Is_Pragma_Name);
2097 pragma Inline (Is_Task_Dispatching_Policy_Name);