1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2013, 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 case
60 -- 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 -- Names of Text_IO generic subpackages (see Rtsfind.Text_IO_Kludge)
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_Go : constant Name_Id := N + $;
241 Name_Put : constant Name_Id := N + $;
242 Name_Put_Line : constant Name_Id := N + $;
243 Name_To : constant Name_Id := N + $;
245 -- Name used by the integrated preprocessor
247 Name_Defined : constant Name_Id := N + $;
249 -- Names for packages that are treated specially by the compiler
251 Name_Exception_Traces : constant Name_Id := N + $;
252 Name_Finalization : constant Name_Id := N + $;
253 Name_Interfaces : constant Name_Id := N + $;
254 Name_Most_Recent_Exception : constant Name_Id := N + $;
255 Name_Standard : constant Name_Id := N + $;
256 Name_System : constant Name_Id := N + $;
257 Name_Text_IO : constant Name_Id := N + $;
258 Name_Wide_Text_IO : constant Name_Id := N + $;
259 Name_Wide_Wide_Text_IO : constant Name_Id := N + $;
261 -- Names of implementations of the distributed systems annex
263 First_PCS_Name : constant Name_Id := N + $;
264 Name_No_DSA : constant Name_Id := N + $;
265 Name_GARLIC_DSA : constant Name_Id := N + $;
266 Name_PolyORB_DSA : constant Name_Id := N + $;
267 Last_PCS_Name : constant Name_Id := N + $;
269 subtype PCS_Names is Name_Id
270 range First_PCS_Name .. Last_PCS_Name;
272 -- Names of identifiers used in expanding distribution stubs
274 Name_Addr : constant Name_Id := N + $;
275 Name_Async : constant Name_Id := N + $;
276 Name_Get_Active_Partition_ID : constant Name_Id := N + $;
277 Name_Get_RCI_Package_Receiver : constant Name_Id := N + $;
278 Name_Get_RCI_Package_Ref : constant Name_Id := N + $;
279 Name_Origin : constant Name_Id := N + $;
280 Name_Params : constant Name_Id := N + $;
281 Name_Partition : constant Name_Id := N + $;
282 Name_Partition_Interface : constant Name_Id := N + $;
283 Name_Ras : constant Name_Id := N + $;
284 Name_uCall : constant Name_Id := N + $;
285 Name_RCI_Name : constant Name_Id := N + $;
286 Name_Receiver : constant Name_Id := N + $;
287 Name_Rpc : constant Name_Id := N + $;
288 Name_Subp_Id : constant Name_Id := N + $;
289 Name_Operation : constant Name_Id := N + $;
290 Name_Argument : constant Name_Id := N + $;
291 Name_Arg_Modes : constant Name_Id := N + $;
292 Name_Handler : constant Name_Id := N + $;
293 Name_Target : constant Name_Id := N + $;
294 Name_Req : constant Name_Id := N + $;
295 Name_Obj_TypeCode : constant Name_Id := N + $;
296 Name_Stub : constant Name_Id := N + $;
298 -- Operator Symbol entries. The actual names have an upper case O at the
299 -- start in place of the Op_ prefix (e.g. the actual name that corresponds
300 -- to Name_Op_Abs is "Oabs".
302 First_Operator_Name : constant Name_Id := N + $;
303 Name_Op_Abs : constant Name_Id := N + $; -- "abs"
304 Name_Op_And : constant Name_Id := N + $; -- "and"
305 Name_Op_Mod : constant Name_Id := N + $; -- "mod"
306 Name_Op_Not : constant Name_Id := N + $; -- "not"
307 Name_Op_Or : constant Name_Id := N + $; -- "or"
308 Name_Op_Rem : constant Name_Id := N + $; -- "rem"
309 Name_Op_Xor : constant Name_Id := N + $; -- "xor"
310 Name_Op_Eq : constant Name_Id := N + $; -- "="
311 Name_Op_Ne : constant Name_Id := N + $; -- "/="
312 Name_Op_Lt : constant Name_Id := N + $; -- "<"
313 Name_Op_Le : constant Name_Id := N + $; -- "<="
314 Name_Op_Gt : constant Name_Id := N + $; -- ">"
315 Name_Op_Ge : constant Name_Id := N + $; -- ">="
316 Name_Op_Add : constant Name_Id := N + $; -- "+"
317 Name_Op_Subtract : constant Name_Id := N + $; -- "-"
318 Name_Op_Concat : constant Name_Id := N + $; -- "&"
319 Name_Op_Multiply : constant Name_Id := N + $; -- "*"
320 Name_Op_Divide : constant Name_Id := N + $; -- "/"
321 Name_Op_Expon : constant Name_Id := N + $; -- "**"
322 Last_Operator_Name : constant Name_Id := N + $;
324 -- Names for all pragmas recognized by GNAT. The entries with the comment
325 -- "Ada 83" are pragmas that are defined in Ada 83, but not in Ada 95.
326 -- These pragmas are fully implemented in all modes (Ada 83, Ada 95, and
327 -- Ada 2005). In Ada 95 and Ada 2005 modes, they are technically considered
328 -- to be implementation dependent pragmas.
330 -- The entries marked GNAT are pragmas that are defined by GNAT and that
331 -- are implemented in all modes (Ada 83, Ada 95, and Ada 2005) Complete
332 -- descriptions of the syntax of these implementation dependent pragmas may
333 -- be found in the appropriate section in unit Sem_Prag in file
334 -- sem-prag.adb, and they are documented in the GNAT reference manual.
336 -- The entries marked Ada 05 are Ada 2005 pragmas. They are implemented in
337 -- Ada 83 and Ada 95 mode as well, where they are technically considered to
338 -- be implementation dependent pragmas.
340 -- The entries marked Ada 12 are Ada 2012 pragmas. They are implemented in
341 -- Ada 83, Ada 95, and Ada 2005 mode as well, where they are technically
342 -- considered to be implementation dependent pragmas.
344 -- The entries marked VMS are VMS specific pragmas that are recognized only
345 -- in OpenVMS versions of GNAT. They are ignored in other versions with an
346 -- appropriate warning.
348 -- The entries marked AAMP are AAMP specific pragmas that are recognized
349 -- only in GNAT for the AAMP. They are ignored in other versions with
350 -- appropriate warnings.
352 First_Pragma_Name : constant Name_Id := N + $;
354 -- Configuration pragmas are grouped at start. Note that there is a list
355 -- of these names in the GNAT Users guide, be sure to update this list if
356 -- a new configuration pragma is added.
358 Name_Ada_83 : constant Name_Id := N + $; -- GNAT
359 Name_Ada_95 : constant Name_Id := N + $; -- GNAT
360 Name_Ada_05 : constant Name_Id := N + $; -- GNAT
361 Name_Ada_2005 : constant Name_Id := N + $; -- GNAT
362 Name_Ada_12 : constant Name_Id := N + $; -- GNAT
363 Name_Ada_2012 : constant Name_Id := N + $; -- GNAT
364 Name_Annotate : constant Name_Id := N + $; -- GNAT
365 Name_Assertion_Policy : constant Name_Id := N + $; -- Ada 05
366 Name_Assume : constant Name_Id := N + $; -- GNAT
367 Name_Assume_No_Invalid_Values : constant Name_Id := N + $; -- GNAT
368 Name_Attribute_Definition : constant Name_Id := N + $; -- GNAT
369 Name_C_Pass_By_Copy : constant Name_Id := N + $; -- GNAT
370 Name_Check_Float_Overflow : constant Name_Id := N + $; -- GNAT
371 Name_Check_Name : constant Name_Id := N + $; -- GNAT
372 Name_Check_Policy : constant Name_Id := N + $; -- GNAT
373 Name_Compile_Time_Error : constant Name_Id := N + $; -- GNAT
374 Name_Compile_Time_Warning : constant Name_Id := N + $; -- GNAT
375 Name_Compiler_Unit : constant Name_Id := N + $; -- GNAT
376 Name_Component_Alignment : constant Name_Id := N + $; -- GNAT
377 Name_Convention_Identifier : constant Name_Id := N + $; -- GNAT
378 Name_Debug_Policy : constant Name_Id := N + $; -- GNAT
379 Name_Detect_Blocking : constant Name_Id := N + $; -- Ada 05
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_Float_Representation : constant Name_Id := N + $; -- GNAT
405 Name_Implicit_Packing : constant Name_Id := N + $; -- GNAT
406 Name_Initialize_Scalars : constant Name_Id := N + $; -- GNAT
407 Name_Interrupt_State : constant Name_Id := N + $; -- GNAT
408 Name_License : constant Name_Id := N + $; -- GNAT
409 Name_Locking_Policy : constant Name_Id := N + $;
410 Name_Long_Float : constant Name_Id := N + $; -- VMS
411 Name_Loop_Optimize : constant Name_Id := N + $; -- GNAT
412 Name_No_Run_Time : constant Name_Id := N + $; -- GNAT
413 Name_No_Strict_Aliasing : constant Name_Id := N + $; -- GNAT
414 Name_Normalize_Scalars : constant Name_Id := N + $;
415 Name_Optimize_Alignment : constant Name_Id := N + $; -- GNAT
416 Name_Overflow_Mode : constant Name_Id := N + $; -- GNAT
417 Name_Overriding_Renamings : constant Name_Id := N + $; -- GNAT
418 Name_Partition_Elaboration_Policy : constant Name_Id := N + $; -- Ada 05
419 Name_Persistent_BSS : constant Name_Id := N + $; -- GNAT
420 Name_Polling : constant Name_Id := N + $; -- GNAT
421 Name_Priority_Specific_Dispatching : constant Name_Id := N + $; -- Ada 05
422 Name_Profile : constant Name_Id := N + $; -- Ada 05
423 Name_Profile_Warnings : constant Name_Id := N + $; -- GNAT
424 Name_Propagate_Exceptions : constant Name_Id := N + $; -- GNAT
425 Name_Queuing_Policy : constant Name_Id := N + $;
426 Name_Rational : constant Name_Id := N + $; -- GNAT
427 Name_Ravenscar : constant Name_Id := N + $; -- GNAT
428 Name_Restricted_Run_Time : constant Name_Id := N + $; -- GNAT
429 Name_Restrictions : constant Name_Id := N + $;
430 Name_Restriction_Warnings : constant Name_Id := N + $; -- GNAT
431 Name_Reviewable : constant Name_Id := N + $;
432 Name_Short_Circuit_And_Or : constant Name_Id := N + $; -- GNAT
433 Name_Short_Descriptors : constant Name_Id := N + $; -- GNAT
434 Name_Source_File_Name : constant Name_Id := N + $; -- GNAT
435 Name_Source_File_Name_Project : constant Name_Id := N + $; -- GNAT
436 Name_SPARK_Mode : constant Name_Id := N + $; -- GNAT
437 Name_Style_Checks : constant Name_Id := N + $; -- GNAT
438 Name_Suppress : constant Name_Id := N + $;
439 Name_Suppress_Exception_Locations : constant Name_Id := N + $; -- GNAT
440 Name_Task_Dispatching_Policy : constant Name_Id := N + $;
441 Name_Universal_Data : constant Name_Id := N + $; -- AAMP
442 Name_Unsuppress : constant Name_Id := N + $; -- Ada 05
443 Name_Use_VADS_Size : constant Name_Id := N + $; -- GNAT
444 Name_Validity_Checks : 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 + $;
455 -- Note: AST_Entry is not in this list because its name matches the name of
456 -- the corresponding attribute. However, it is included in the definition
457 -- of the type Pragma_Id, and the functions Get_Pragma_Id and Is_Pragma_Id
458 -- correctly recognize and process Name_AST_Entry.
460 Name_Assert : constant Name_Id := N + $; -- Ada 05
461 Name_Assert_And_Cut : constant Name_Id := N + $; -- GNAT
462 Name_Asynchronous : constant Name_Id := N + $;
463 Name_Atomic : constant Name_Id := N + $;
464 Name_Atomic_Components : constant Name_Id := N + $;
465 Name_Attach_Handler : constant Name_Id := N + $;
466 Name_Check : constant Name_Id := N + $; -- GNAT
467 Name_CIL_Constructor : constant Name_Id := N + $; -- GNAT
468 Name_Comment : constant Name_Id := N + $; -- GNAT
469 Name_Common_Object : constant Name_Id := N + $; -- GNAT
470 Name_Complete_Representation : constant Name_Id := N + $; -- GNAT
471 Name_Complex_Representation : constant Name_Id := N + $; -- GNAT
472 Name_Contract_Cases : constant Name_Id := N + $; -- GNAT
473 Name_Controlled : constant Name_Id := N + $;
474 Name_Convention : constant Name_Id := N + $;
475 Name_CPP_Class : constant Name_Id := N + $; -- GNAT
476 Name_CPP_Constructor : constant Name_Id := N + $; -- GNAT
477 Name_CPP_Virtual : constant Name_Id := N + $; -- GNAT
478 Name_CPP_Vtable : constant Name_Id := N + $; -- GNAT
480 -- Note: CPU is not in this list because its name matches the name of
481 -- the corresponding attribute. However, it is included in the definition
482 -- of the type Pragma_Id, and the functions Get_Pragma_Id and Is_Pragma_Id
483 -- correctly recognize and process CPU. CPU is a standard Ada 2012
486 Name_Debug : constant Name_Id := N + $; -- GNAT
487 Name_Depends : constant Name_Id := N + $; -- GNAT
488 Name_Elaborate : constant Name_Id := N + $; -- Ada 83
489 Name_Elaborate_All : constant Name_Id := N + $;
490 Name_Elaborate_Body : constant Name_Id := N + $;
491 Name_Export : constant Name_Id := N + $;
492 Name_Export_Exception : constant Name_Id := N + $; -- VMS
493 Name_Export_Function : constant Name_Id := N + $; -- GNAT
494 Name_Export_Object : constant Name_Id := N + $; -- GNAT
495 Name_Export_Procedure : constant Name_Id := N + $; -- GNAT
496 Name_Export_Value : constant Name_Id := N + $; -- GNAT
497 Name_Export_Valued_Procedure : constant Name_Id := N + $; -- GNAT
498 Name_External : constant Name_Id := N + $; -- GNAT
499 Name_Finalize_Storage_Only : constant Name_Id := N + $; -- GNAT
500 Name_Global : constant Name_Id := N + $; -- GNAT
501 Name_Ident : constant Name_Id := N + $; -- VMS
502 Name_Implementation_Defined : constant Name_Id := N + $; -- GNAT
503 Name_Implemented : constant Name_Id := N + $; -- Ada 12
504 Name_Import : constant Name_Id := N + $;
505 Name_Import_Exception : constant Name_Id := N + $; -- VMS
506 Name_Import_Function : constant Name_Id := N + $; -- GNAT
507 Name_Import_Object : constant Name_Id := N + $; -- GNAT
508 Name_Import_Procedure : constant Name_Id := N + $; -- GNAT
509 Name_Import_Valued_Procedure : constant Name_Id := N + $; -- GNAT
510 Name_Independent : constant Name_Id := N + $; -- Ada 12
511 Name_Independent_Components : constant Name_Id := N + $; -- Ada 12
512 Name_Initial_Condition : constant Name_Id := N + $; -- GNAT
513 Name_Initializes : constant Name_Id := N + $; -- GNAT
514 Name_Inline : constant Name_Id := N + $;
515 Name_Inline_Always : constant Name_Id := N + $; -- GNAT
516 Name_Inline_Generic : constant Name_Id := N + $; -- GNAT
517 Name_Inspection_Point : constant Name_Id := N + $;
519 -- Note: Interface is not in this list because its name matches an Ada 05
520 -- keyword. However it is included in the definition of the type
521 -- Attribute_Id, and the functions Get_Pragma_Id and Is_Pragma_Id correctly
522 -- recognize and process Name_Interface.
524 Name_Interface_Name : constant Name_Id := N + $; -- GNAT
525 Name_Interrupt_Handler : constant Name_Id := N + $;
527 -- Note: Interrupt_Priority is not in this list because its name matches
528 -- the name of the corresponding attribute. However, it is included in the
529 -- definition of the type Pragma_Id, and the functions Get_Pragma_Id and
530 -- Is_Pragma_Id correctly recognize and process Interrupt_Priority.
532 Name_Invariant : constant Name_Id := N + $; -- GNAT
533 Name_Java_Constructor : constant Name_Id := N + $; -- GNAT
534 Name_Java_Interface : constant Name_Id := N + $; -- GNAT
535 Name_Keep_Names : constant Name_Id := N + $; -- GNAT
536 Name_Link_With : constant Name_Id := N + $; -- GNAT
537 Name_Linker_Alias : constant Name_Id := N + $; -- GNAT
538 Name_Linker_Constructor : constant Name_Id := N + $; -- GNAT
539 Name_Linker_Destructor : constant Name_Id := N + $; -- GNAT
540 Name_Linker_Options : constant Name_Id := N + $;
541 Name_Linker_Section : constant Name_Id := N + $; -- GNAT
542 Name_List : constant Name_Id := N + $;
544 -- Note: Lock_Free is not in this list because its name matches the name of
545 -- the corresponding attribute. However, it is included in the definition
546 -- of the type Pragma_Id, and the functions Get_Pragma_Id and Is_Pragma_Id
547 -- correctly recognize and process Lock_Free. Lock_Free is a GNAT pragma.
549 Name_Loop_Invariant : constant Name_Id := N + $; -- GNAT
550 Name_Loop_Variant : constant Name_Id := N + $; -- GNAT
551 Name_Machine_Attribute : constant Name_Id := N + $; -- GNAT
552 Name_Main : constant Name_Id := N + $; -- GNAT
553 Name_Main_Storage : constant Name_Id := N + $; -- GNAT
554 Name_Memory_Size : constant Name_Id := N + $; -- Ada 83
555 Name_No_Body : constant Name_Id := N + $; -- GNAT
556 Name_No_Inline : constant Name_Id := N + $; -- GNAT
557 Name_No_Return : constant Name_Id := N + $; -- Ada 05
558 Name_Obsolescent : constant Name_Id := N + $; -- GNAT
559 Name_Optimize : constant Name_Id := N + $;
560 Name_Ordered : constant Name_Id := N + $; -- GNAT
561 Name_Pack : constant Name_Id := N + $;
562 Name_Page : constant Name_Id := N + $;
563 Name_Passive : constant Name_Id := N + $; -- GNAT
564 Name_Post : constant Name_Id := N + $; -- GNAT
565 Name_Postcondition : constant Name_Id := N + $; -- GNAT
566 Name_Post_Class : constant Name_Id := N + $; -- GNAT
567 Name_Pre : constant Name_Id := N + $; -- GNAT
568 Name_Precondition : constant Name_Id := N + $; -- GNAT
569 Name_Predicate : constant Name_Id := N + $; -- GNAT
570 Name_Preelaborable_Initialization : constant Name_Id := N + $; -- Ada 05
571 Name_Preelaborate : constant Name_Id := N + $;
572 Name_Preelaborate_05 : constant Name_Id := N + $; -- GNAT
573 Name_Pre_Class : constant Name_Id := N + $; -- GNAT
575 -- Note: Priority is not in this list because its name matches the name of
576 -- the corresponding attribute. However, it is included in the definition
577 -- of the type Pragma_Id, and the functions Get_Pragma_Id and Is_Pragma_Id
578 -- correctly recognize and process Priority. Priority is a standard Ada 95
581 Name_Psect_Object : constant Name_Id := N + $; -- VMS
582 Name_Pure : constant Name_Id := N + $;
583 Name_Pure_05 : constant Name_Id := N + $; -- GNAT
584 Name_Pure_12 : constant Name_Id := N + $; -- GNAT
585 Name_Pure_Function : constant Name_Id := N + $; -- GNAT
586 Name_Refined_Depends : constant Name_Id := N + $; -- GNAT
587 Name_Refined_Global : constant Name_Id := N + $; -- GNAT
588 Name_Refined_Post : constant Name_Id := N + $; -- GNAT
589 Name_Refined_State : constant Name_Id := N + $; -- GNAT
590 Name_Relative_Deadline : constant Name_Id := N + $; -- Ada 05
591 Name_Remote_Access_Type : constant Name_Id := N + $; -- GNAT
592 Name_Remote_Call_Interface : constant Name_Id := N + $;
593 Name_Remote_Types : constant Name_Id := N + $;
594 Name_Share_Generic : constant Name_Id := N + $; -- GNAT
595 Name_Shared : constant Name_Id := N + $; -- Ada 83
596 Name_Shared_Passive : constant Name_Id := N + $;
597 Name_Simple_Storage_Pool_Type : constant Name_Id := N + $; -- GNAT
599 -- Note: Storage_Size is not in this list because its name matches the name
600 -- of the corresponding attribute. However, it is included in the
601 -- definition of the type Attribute_Id, and the functions Get_Pragma_Id and
602 -- Is_Pragma_Id correctly recognize and process Name_Storage_Size.
604 -- Note: Storage_Unit is also omitted from the list because of a clash with
605 -- an attribute name, and is treated similarly.
607 Name_Source_Reference : constant Name_Id := N + $; -- GNAT
608 Name_Static_Elaboration_Desired : constant Name_Id := N + $; -- GNAT
609 Name_Stream_Convert : constant Name_Id := N + $; -- GNAT
610 Name_Subtitle : constant Name_Id := N + $; -- GNAT
611 Name_Suppress_All : constant Name_Id := N + $; -- GNAT
612 Name_Suppress_Debug_Info : constant Name_Id := N + $; -- GNAT
613 Name_Suppress_Initialization : constant Name_Id := N + $; -- GNAT
614 Name_System_Name : constant Name_Id := N + $; -- Ada 83
615 Name_Test_Case : constant Name_Id := N + $; -- GNAT
616 Name_Task_Info : constant Name_Id := N + $; -- GNAT
617 Name_Task_Name : constant Name_Id := N + $; -- GNAT
618 Name_Task_Storage : constant Name_Id := N + $; -- VMS
619 Name_Thread_Local_Storage : constant Name_Id := N + $; -- GNAT
620 Name_Time_Slice : constant Name_Id := N + $; -- GNAT
621 Name_Title : constant Name_Id := N + $; -- GNAT
622 Name_Type_Invariant : constant Name_Id := N + $; -- GNAT
623 Name_Type_Invariant_Class : constant Name_Id := N + $; -- GNAT
624 Name_Unchecked_Union : constant Name_Id := N + $; -- Ada 05
625 Name_Unimplemented_Unit : constant Name_Id := N + $; -- GNAT
626 Name_Universal_Aliasing : constant Name_Id := N + $; -- GNAT
627 Name_Unmodified : constant Name_Id := N + $; -- GNAT
628 Name_Unreferenced : constant Name_Id := N + $; -- GNAT
629 Name_Unreferenced_Objects : constant Name_Id := N + $; -- GNAT
630 Name_Unreserve_All_Interrupts : constant Name_Id := N + $; -- GNAT
631 Name_Volatile : constant Name_Id := N + $;
632 Name_Volatile_Components : constant Name_Id := N + $;
633 Name_Weak_External : constant Name_Id := N + $; -- GNAT
634 Last_Pragma_Name : constant Name_Id := N + $;
636 -- Language convention names for pragma Convention/Export/Import/Interface
637 -- Note that Name_C is not included in this list, since it was already
638 -- declared earlier in the context of one-character identifier names (where
639 -- the order is critical to the fast look up process).
641 -- Note: there are no convention names corresponding to the conventions
642 -- Entry and Protected, this is because these conventions cannot be
643 -- specified by a pragma.
645 First_Convention_Name : constant Name_Id := N + $;
646 Name_Ada : constant Name_Id := N + $;
647 Name_Ada_Pass_By_Copy : constant Name_Id := N + $;
648 Name_Ada_Pass_By_Reference : constant Name_Id := N + $;
649 Name_Assembler : constant Name_Id := N + $;
650 Name_CIL : constant Name_Id := N + $;
651 Name_COBOL : constant Name_Id := N + $;
652 Name_CPP : constant Name_Id := N + $;
653 Name_Fortran : constant Name_Id := N + $;
654 Name_Ghost : constant Name_Id := N + $;
655 Name_Intrinsic : constant Name_Id := N + $;
656 Name_Java : constant Name_Id := N + $;
657 Name_Stdcall : constant Name_Id := N + $;
658 Name_Stubbed : constant Name_Id := N + $;
659 Last_Convention_Name : constant Name_Id := N + $;
661 -- The following names are preset as synonyms for Assembler
663 Name_Asm : constant Name_Id := N + $;
664 Name_Assembly : constant Name_Id := N + $;
666 -- The following names are preset as synonyms for C
668 Name_Default : constant Name_Id := N + $;
669 -- Name_External (previously defined as pragma)
671 -- The following names are preset as synonyms for CPP
673 Name_C_Plus_Plus : constant Name_Id := N + $;
675 -- The following names are present as synonyms for Stdcall
677 Name_DLL : constant Name_Id := N + $;
678 Name_Win32 : constant Name_Id := N + $;
680 -- Other special names used in processing pragmas
682 Name_As_Is : constant Name_Id := N + $;
683 Name_Assertion : constant Name_Id := N + $;
684 Name_Assertions : constant Name_Id := N + $;
685 Name_Attribute_Name : constant Name_Id := N + $;
686 Name_Auto : constant Name_Id := N + $;
687 Name_Body_File_Name : constant Name_Id := N + $;
688 Name_Boolean_Entry_Barriers : constant Name_Id := N + $;
689 Name_By_Any : constant Name_Id := N + $;
690 Name_By_Entry : constant Name_Id := N + $;
691 Name_By_Protected_Procedure : constant Name_Id := N + $;
692 Name_Casing : constant Name_Id := N + $;
693 Name_Check_All : constant Name_Id := N + $;
694 Name_Code : constant Name_Id := N + $;
695 Name_Component : constant Name_Id := N + $;
696 Name_Component_Size_4 : constant Name_Id := N + $;
697 Name_Copy : constant Name_Id := N + $;
698 Name_D_Float : constant Name_Id := N + $;
699 Name_Decreases : constant Name_Id := N + $;
700 Name_Descriptor : constant Name_Id := N + $;
701 Name_Disable : constant Name_Id := N + $;
702 Name_Dot_Replacement : constant Name_Id := N + $;
703 Name_Dynamic : constant Name_Id := N + $;
704 Name_Eliminated : constant Name_Id := N + $;
705 Name_Ensures : constant Name_Id := N + $;
706 Name_Entity : constant Name_Id := N + $;
707 Name_Entry_Count : constant Name_Id := N + $;
708 Name_External_Name : constant Name_Id := N + $;
709 Name_First_Optional_Parameter : constant Name_Id := N + $;
710 Name_Force : constant Name_Id := N + $;
711 Name_Form : constant Name_Id := N + $;
712 Name_G_Float : constant Name_Id := N + $;
713 Name_Gcc : constant Name_Id := N + $;
714 Name_General : constant Name_Id := N + $;
715 Name_Gnat : constant Name_Id := N + $;
716 Name_GPL : constant Name_Id := N + $;
717 Name_IEEE_Float : constant Name_Id := N + $;
718 Name_Ignore : constant Name_Id := N + $;
719 Name_In_Out : constant Name_Id := N + $;
720 Name_Increases : constant Name_Id := N + $;
721 Name_Info : constant Name_Id := N + $;
722 Name_Input_Only : constant Name_Id := N + $;
723 Name_Internal : constant Name_Id := N + $;
724 Name_Link_Name : constant Name_Id := N + $;
725 Name_Lowercase : constant Name_Id := N + $;
726 Name_Max_Entry_Queue_Depth : constant Name_Id := N + $;
727 Name_Max_Entry_Queue_Length : constant Name_Id := N + $;
728 Name_Max_Size : constant Name_Id := N + $;
729 Name_Mechanism : constant Name_Id := N + $;
730 Name_Message : constant Name_Id := N + $;
731 Name_Minimized : constant Name_Id := N + $;
732 Name_Mixedcase : constant Name_Id := N + $;
733 Name_Mode : constant Name_Id := N + $;
734 Name_Modified_GPL : constant Name_Id := N + $;
735 Name_Name : constant Name_Id := N + $;
736 Name_NCA : constant Name_Id := N + $;
737 Name_No : constant Name_Id := N + $;
738 Name_No_Access_Parameter_Allocators : constant Name_Id := N + $;
739 Name_No_Coextensions : constant Name_Id := N + $;
740 Name_No_Dependence : constant Name_Id := N + $;
741 Name_No_Dynamic_Attachment : constant Name_Id := N + $;
742 Name_No_Dynamic_Interrupts : constant Name_Id := N + $;
743 Name_No_Implementation_Extensions : constant Name_Id := N + $;
744 Name_No_Obsolescent_Features : constant Name_Id := N + $;
745 Name_No_Requeue : constant Name_Id := N + $;
746 Name_No_Requeue_Statements : constant Name_Id := N + $;
747 Name_No_Specification_Of_Aspect : constant Name_Id := N + $;
748 Name_No_Standard_Allocators_After_Elaboration : constant Name_Id := N + $;
749 Name_No_Task_Attributes : constant Name_Id := N + $;
750 Name_No_Task_Attributes_Package : constant Name_Id := N + $;
751 Name_No_Use_Of_Attribute : constant Name_Id := N + $;
752 Name_No_Use_Of_Pragma : constant Name_Id := N + $;
753 Name_No_Unroll : constant Name_Id := N + $;
754 Name_No_Vector : constant Name_Id := N + $;
755 Name_Nominal : constant Name_Id := N + $;
756 Name_Non_Volatile : constant Name_Id := N + $;
757 Name_On : constant Name_Id := N + $;
758 Name_Optional : constant Name_Id := N + $;
759 Name_Output_Only : constant Name_Id := N + $;
760 Name_Policy : constant Name_Id := N + $;
761 Name_Parameter_Types : constant Name_Id := N + $;
762 Name_Part_Of : constant Name_Id := N + $;
763 Name_Proof_In : constant Name_Id := N + $;
764 Name_Reason : constant Name_Id := N + $;
765 Name_Reference : constant Name_Id := N + $;
766 Name_Requires : constant Name_Id := N + $;
767 Name_Restricted : constant Name_Id := N + $;
768 Name_Result_Mechanism : constant Name_Id := N + $;
769 Name_Result_Type : constant Name_Id := N + $;
770 Name_Robustness : constant Name_Id := N + $;
771 Name_Runtime : constant Name_Id := N + $;
772 Name_SB : constant Name_Id := N + $;
773 Name_Secondary_Stack_Size : constant Name_Id := N + $;
774 Name_Section : constant Name_Id := N + $;
775 Name_Semaphore : constant Name_Id := N + $;
776 Name_Short_Descriptor : constant Name_Id := N + $;
777 Name_Simple_Barriers : constant Name_Id := N + $;
778 Name_SPARK : constant Name_Id := N + $;
779 Name_SPARK_05 : constant Name_Id := N + $;
780 Name_Spec_File_Name : constant Name_Id := N + $;
781 Name_State : constant Name_Id := N + $;
782 Name_Statement_Assertions : constant Name_Id := N + $;
783 Name_Static : constant Name_Id := N + $;
784 Name_Stack_Size : constant Name_Id := N + $;
785 Name_Strict : constant Name_Id := N + $;
786 Name_Subunit_File_Name : constant Name_Id := N + $;
787 Name_Suppressed : constant Name_Id := N + $;
788 Name_Task_Stack_Size_Default : constant Name_Id := N + $;
789 Name_Task_Type : constant Name_Id := N + $;
790 Name_Time_Slicing_Enabled : constant Name_Id := N + $;
791 Name_Top_Guard : constant Name_Id := N + $;
792 Name_UBA : constant Name_Id := N + $;
793 Name_UBS : constant Name_Id := N + $;
794 Name_UBSB : constant Name_Id := N + $;
795 Name_Unit_Name : constant Name_Id := N + $;
796 Name_Unknown : constant Name_Id := N + $;
797 Name_Unrestricted : constant Name_Id := N + $;
798 Name_Unroll : constant Name_Id := N + $;
799 Name_Uppercase : constant Name_Id := N + $;
800 Name_User : constant Name_Id := N + $;
801 Name_Variant : constant Name_Id := N + $;
802 Name_VAX_Float : constant Name_Id := N + $;
803 Name_Vector : constant Name_Id := N + $;
804 Name_VMS : constant Name_Id := N + $;
805 Name_Vtable_Ptr : constant Name_Id := N + $;
806 Name_Working_Storage : constant Name_Id := N + $;
808 -- Names of recognized attributes. The entries with the comment "Ada 83"
809 -- are attributes that are defined in Ada 83, but not in Ada 95. These
810 -- attributes are implemented in all Ada modes in GNAT.
812 -- The entries marked GNAT are attributes that are defined by GNAT and
813 -- implemented in all Ada modes. Full descriptions of these implementation
814 -- dependent attributes may be found in the appropriate Sem_Attr section.
816 -- The entries marked VMS are recognized only in OpenVMS implementations
817 -- of GNAT, and are treated as illegal in all other contexts.
819 First_Attribute_Name : constant Name_Id := N + $;
820 Name_Abort_Signal : constant Name_Id := N + $; -- GNAT
821 Name_Access : constant Name_Id := N + $;
822 Name_Address : constant Name_Id := N + $;
823 Name_Address_Size : constant Name_Id := N + $; -- GNAT
824 Name_Aft : constant Name_Id := N + $;
825 Name_Alignment : constant Name_Id := N + $;
826 Name_Asm_Input : constant Name_Id := N + $; -- GNAT
827 Name_Asm_Output : constant Name_Id := N + $; -- GNAT
828 Name_AST_Entry : constant Name_Id := N + $; -- VMS
829 Name_Atomic_Always_Lock_Free : constant Name_Id := N + $; -- GNAT
830 Name_Bit : constant Name_Id := N + $; -- GNAT
831 Name_Bit_Order : constant Name_Id := N + $;
832 Name_Bit_Position : constant Name_Id := N + $; -- GNAT
833 Name_Body_Version : constant Name_Id := N + $;
834 Name_Callable : constant Name_Id := N + $;
835 Name_Caller : constant Name_Id := N + $;
836 Name_Code_Address : constant Name_Id := N + $; -- GNAT
837 Name_Compiler_Version : constant Name_Id := N + $; -- GNAT
838 Name_Component_Size : constant Name_Id := N + $;
839 Name_Compose : constant Name_Id := N + $;
840 Name_Constant_Indexing : constant Name_Id := N + $; -- GNAT
841 Name_Constrained : constant Name_Id := N + $;
842 Name_Count : constant Name_Id := N + $;
843 Name_Default_Bit_Order : constant Name_Id := N + $; -- GNAT
844 Name_Default_Iterator : constant Name_Id := N + $; -- GNAT
845 Name_Definite : constant Name_Id := N + $;
846 Name_Delta : constant Name_Id := N + $;
847 Name_Denorm : constant Name_Id := N + $;
848 Name_Descriptor_Size : constant Name_Id := N + $;
849 Name_Digits : constant Name_Id := N + $;
850 Name_Elaborated : constant Name_Id := N + $; -- GNAT
851 Name_Emax : constant Name_Id := N + $; -- Ada 83
852 Name_Enabled : constant Name_Id := N + $; -- GNAT
853 Name_Enum_Rep : constant Name_Id := N + $; -- GNAT
854 Name_Enum_Val : constant Name_Id := N + $; -- GNAT
855 Name_Epsilon : constant Name_Id := N + $; -- Ada 83
856 Name_Exponent : constant Name_Id := N + $;
857 Name_External_Tag : constant Name_Id := N + $;
858 Name_Fast_Math : constant Name_Id := N + $; -- GNAT
859 Name_First : constant Name_Id := N + $;
860 Name_First_Bit : constant Name_Id := N + $;
861 Name_First_Valid : constant Name_Id := N + $; -- Ada 12
862 Name_Fixed_Value : constant Name_Id := N + $; -- GNAT
863 Name_Fore : constant Name_Id := N + $;
864 Name_Has_Access_Values : constant Name_Id := N + $; -- GNAT
865 Name_Has_Discriminants : constant Name_Id := N + $; -- GNAT
866 Name_Has_Tagged_Values : constant Name_Id := N + $; -- GNAT
867 Name_Identity : constant Name_Id := N + $;
868 Name_Img : constant Name_Id := N + $; -- GNAT
869 Name_Implicit_Dereference : constant Name_Id := N + $; -- GNAT
870 Name_Integer_Value : constant Name_Id := N + $; -- GNAT
871 Name_Invalid_Value : constant Name_Id := N + $; -- GNAT
872 Name_Iterator_Element : constant Name_Id := N + $; -- GNAT
873 Name_Large : constant Name_Id := N + $; -- Ada 83
874 Name_Last : constant Name_Id := N + $;
875 Name_Last_Bit : constant Name_Id := N + $;
876 Name_Last_Valid : constant Name_Id := N + $; -- Ada 12
877 Name_Leading_Part : constant Name_Id := N + $;
878 Name_Length : constant Name_Id := N + $;
879 Name_Library_Level : constant Name_Id := N + $; -- GNAT
880 Name_Lock_Free : constant Name_Id := N + $; -- GNAT
881 Name_Loop_Entry : constant Name_Id := N + $; -- GNAT
882 Name_Machine_Emax : constant Name_Id := N + $;
883 Name_Machine_Emin : constant Name_Id := N + $;
884 Name_Machine_Mantissa : constant Name_Id := N + $;
885 Name_Machine_Overflows : constant Name_Id := N + $;
886 Name_Machine_Radix : constant Name_Id := N + $;
887 Name_Machine_Rounding : constant Name_Id := N + $; -- Ada 05
888 Name_Machine_Rounds : constant Name_Id := N + $;
889 Name_Machine_Size : constant Name_Id := N + $; -- GNAT
890 Name_Mantissa : constant Name_Id := N + $; -- Ada 83
891 Name_Max_Alignment_For_Allocation : constant Name_Id := N + $; -- Ada 12
892 Name_Max_Size_In_Storage_Elements : constant Name_Id := N + $;
893 Name_Maximum_Alignment : constant Name_Id := N + $; -- GNAT
894 Name_Mechanism_Code : constant Name_Id := N + $; -- GNAT
895 Name_Mod : constant Name_Id := N + $; -- Ada 05
896 Name_Model_Emin : constant Name_Id := N + $;
897 Name_Model_Epsilon : constant Name_Id := N + $;
898 Name_Model_Mantissa : constant Name_Id := N + $;
899 Name_Model_Small : constant Name_Id := N + $;
900 Name_Modulus : constant Name_Id := N + $;
901 Name_Null_Parameter : constant Name_Id := N + $; -- GNAT
902 Name_Object_Size : constant Name_Id := N + $; -- GNAT
903 Name_Old : constant Name_Id := N + $; -- GNAT
904 Name_Overlaps_Storage : constant Name_Id := N + $; -- GNAT
905 Name_Partition_ID : constant Name_Id := N + $;
906 Name_Passed_By_Reference : constant Name_Id := N + $; -- GNAT
907 Name_Pool_Address : constant Name_Id := N + $;
908 Name_Pos : constant Name_Id := N + $;
909 Name_Position : constant Name_Id := N + $;
910 Name_Priority : constant Name_Id := N + $; -- Ada 05
911 Name_Range : constant Name_Id := N + $;
912 Name_Range_Length : constant Name_Id := N + $; -- GNAT
913 Name_Ref : constant Name_Id := N + $; -- GNAT
914 Name_Restriction_Set : constant Name_Id := N + $; -- GNAT
915 Name_Result : constant Name_Id := N + $; -- GNAT
916 Name_Round : constant Name_Id := N + $;
917 Name_Safe_Emax : constant Name_Id := N + $; -- Ada 83
918 Name_Safe_First : constant Name_Id := N + $;
919 Name_Safe_Large : constant Name_Id := N + $; -- Ada 83
920 Name_Safe_Last : constant Name_Id := N + $;
921 Name_Safe_Small : constant Name_Id := N + $; -- Ada 83
922 Name_Same_Storage : constant Name_Id := N + $; -- Ada 12
923 Name_Scalar_Storage_Order : constant Name_Id := N + $; -- GNAT
924 Name_Scale : constant Name_Id := N + $;
925 Name_Scaling : constant Name_Id := N + $;
926 Name_Signed_Zeros : constant Name_Id := N + $;
927 Name_Size : constant Name_Id := N + $;
928 Name_Small : constant Name_Id := N + $;
929 Name_Storage_Size : constant Name_Id := N + $;
930 Name_Storage_Unit : constant Name_Id := N + $; -- GNAT
931 Name_Stream_Size : constant Name_Id := N + $; -- Ada 05
932 Name_System_Allocator_Alignment : constant Name_Id := N + $; -- GNAT
933 Name_Tag : constant Name_Id := N + $;
934 Name_Target_Name : constant Name_Id := N + $; -- GNAT
935 Name_Terminated : constant Name_Id := N + $;
936 Name_To_Address : constant Name_Id := N + $; -- GNAT
937 Name_Type_Class : constant Name_Id := N + $; -- GNAT
938 Name_Type_Key : constant Name_Id := N + $; -- GNAT
939 Name_UET_Address : constant Name_Id := N + $; -- GNAT
940 Name_Unbiased_Rounding : constant Name_Id := N + $;
941 Name_Unchecked_Access : constant Name_Id := N + $;
942 Name_Unconstrained_Array : constant Name_Id := N + $;
943 Name_Universal_Literal_String : constant Name_Id := N + $; -- GNAT
944 Name_Unrestricted_Access : constant Name_Id := N + $; -- GNAT
945 Name_Update : constant Name_Id := N + $; -- GNAT
946 Name_VADS_Size : constant Name_Id := N + $; -- GNAT
947 Name_Val : constant Name_Id := N + $;
948 Name_Valid : constant Name_Id := N + $;
949 Name_Valid_Scalars : constant Name_Id := N + $; -- GNAT
950 Name_Value_Size : constant Name_Id := N + $; -- GNAT
951 Name_Variable_Indexing : constant Name_Id := N + $; -- GNAT
952 Name_Version : constant Name_Id := N + $;
953 Name_Wchar_T_Size : constant Name_Id := N + $; -- GNAT
954 Name_Wide_Wide_Width : constant Name_Id := N + $; -- Ada 05
955 Name_Wide_Width : constant Name_Id := N + $;
956 Name_Width : constant Name_Id := N + $;
957 Name_Word_Size : constant Name_Id := N + $; -- GNAT
959 -- Attributes that designate attributes returning renamable functions,
960 -- i.e. functions that return other than a universal value and that
961 -- have non-universal arguments.
963 First_Renamable_Function_Attribute : constant Name_Id := N + $;
964 Name_Adjacent : constant Name_Id := N + $;
965 Name_Ceiling : constant Name_Id := N + $;
966 Name_Copy_Sign : constant Name_Id := N + $;
967 Name_Floor : constant Name_Id := N + $;
968 Name_Fraction : constant Name_Id := N + $;
969 Name_From_Any : constant Name_Id := N + $; -- GNAT
970 Name_Image : constant Name_Id := N + $;
971 Name_Input : constant Name_Id := N + $;
972 Name_Machine : constant Name_Id := N + $;
973 Name_Max : constant Name_Id := N + $;
974 Name_Min : constant Name_Id := N + $;
975 Name_Model : constant Name_Id := N + $;
976 Name_Pred : constant Name_Id := N + $;
977 Name_Remainder : constant Name_Id := N + $;
978 Name_Rounding : constant Name_Id := N + $;
979 Name_Succ : constant Name_Id := N + $;
980 Name_To_Any : constant Name_Id := N + $; -- GNAT
981 Name_Truncation : constant Name_Id := N + $;
982 Name_TypeCode : constant Name_Id := N + $; -- GNAT
983 Name_Value : constant Name_Id := N + $;
984 Name_Wide_Image : constant Name_Id := N + $;
985 Name_Wide_Wide_Image : constant Name_Id := N + $;
986 Name_Wide_Value : constant Name_Id := N + $;
987 Name_Wide_Wide_Value : constant Name_Id := N + $;
988 Last_Renamable_Function_Attribute : constant Name_Id := N + $;
990 -- Attributes that designate procedures
992 First_Procedure_Attribute : constant Name_Id := N + $;
993 Name_Output : constant Name_Id := N + $;
994 Name_Read : constant Name_Id := N + $;
995 Name_Write : constant Name_Id := N + $;
996 Last_Procedure_Attribute : constant Name_Id := N + $;
998 -- Remaining attributes are ones that return entities
1000 -- Note that Elab_Subp_Body is not considered to be a valid attribute name
1001 -- unless we are operating in CodePeer mode.
1003 First_Entity_Attribute_Name : constant Name_Id := N + $;
1004 Name_Elab_Body : constant Name_Id := N + $; -- GNAT
1005 Name_Elab_Spec : constant Name_Id := N + $; -- GNAT
1006 Name_Elab_Subp_Body : constant Name_Id := N + $; -- GNAT
1007 Name_Simple_Storage_Pool : constant Name_Id := N + $; -- GNAT
1008 Name_Storage_Pool : constant Name_Id := N + $;
1010 -- These attributes are the ones that return types
1012 First_Type_Attribute_Name : constant Name_Id := N + $;
1013 Name_Base : constant Name_Id := N + $;
1014 Name_Class : constant Name_Id := N + $;
1015 Name_Stub_Type : constant Name_Id := N + $;
1016 Last_Type_Attribute_Name : constant Name_Id := N + $;
1017 Last_Entity_Attribute_Name : constant Name_Id := N + $;
1018 Last_Attribute_Name : constant Name_Id := N + $;
1020 -- Names of internal attributes. They are not real attributes but special
1021 -- names used internally by GNAT in order to deal with delayed aspects
1022 -- (Aspect_CPU, Aspect_Dispatching_Domain, Aspect_Interrupt_Priority) that
1023 -- don't have corresponding pragmas or user-referencable attributes.
1025 -- It is convenient to have these internal attributes available for
1026 -- processing the aspects, since the normal approach is to convert an
1027 -- aspect into its corresponding pragma or attribute specification.
1029 -- These attributes do have Attribute_Id values so that case statements
1030 -- on Attribute_Id include these cases, but they are NOT included in the
1031 -- Attribute_Name subtype defined above, which is typically used in the
1032 -- front end for checking syntax of submitted programs (where the use of
1033 -- internal attributes is not permitted).
1035 First_Internal_Attribute_Name : constant Name_Id := N + $;
1036 Name_CPU : constant Name_Id := N + $;
1037 Name_Dispatching_Domain : constant Name_Id := N + $;
1038 Name_Interrupt_Priority : constant Name_Id := N + $;
1039 Last_Internal_Attribute_Name : constant Name_Id := N + $;
1041 -- Names of recognized locking policy identifiers
1043 First_Locking_Policy_Name : constant Name_Id := N + $;
1044 Name_Ceiling_Locking : constant Name_Id := N + $;
1045 Name_Inheritance_Locking : constant Name_Id := N + $;
1046 Name_Concurrent_Readers_Locking : constant Name_Id := N + $; -- GNAT
1047 Last_Locking_Policy_Name : constant Name_Id := N + $;
1049 -- Names of recognized queuing policy identifiers
1051 -- Note: policies are identified by the first character of the name (e.g. F
1052 -- for FIFO_Queuing). If new policy names are added, the first character
1053 -- must be distinct.
1055 First_Queuing_Policy_Name : constant Name_Id := N + $;
1056 Name_FIFO_Queuing : constant Name_Id := N + $;
1057 Name_Priority_Queuing : constant Name_Id := N + $;
1058 Last_Queuing_Policy_Name : constant Name_Id := N + $;
1060 -- Names of recognized task dispatching policy identifiers
1062 -- Note: policies are identified by the first character of the name (e.g. F
1063 -- for FIFO_Within_Priorities). If new policy names are added, the first
1064 -- character must be distinct.
1066 First_Task_Dispatching_Policy_Name : constant Name_Id := N + $;
1067 Name_EDF_Across_Priorities : constant Name_Id := N + $;
1068 Name_FIFO_Within_Priorities : constant Name_Id := N + $;
1069 Name_Non_Preemptive_Within_Priorities : constant Name_Id := N + $;
1070 Name_Round_Robin_Within_Priorities : constant Name_Id := N + $;
1071 Last_Task_Dispatching_Policy_Name : constant Name_Id := N + $;
1073 -- Names of recognized partition elaboration policy identifiers
1075 -- Note: policies are identified by the first character of the name (e.g. S
1076 -- for Sequential). If new policy names are added, the first character must
1079 First_Partition_Elaboration_Policy_Name : constant Name_Id := N + $;
1080 Name_Concurrent : constant Name_Id := N + $;
1081 Name_Sequential : constant Name_Id := N + $;
1082 Last_Partition_Elaboration_Policy_Name : constant Name_Id := N + $;
1084 -- Names of recognized checks for pragma Suppress
1086 -- Note: the name Atomic_Synchronization can only be specified internally
1087 -- as a result of using pragma Enable/Disable_Atomic_Synchronization.
1089 First_Check_Name : constant Name_Id := N + $;
1090 Name_Access_Check : constant Name_Id := N + $;
1091 Name_Accessibility_Check : constant Name_Id := N + $;
1092 Name_Alignment_Check : constant Name_Id := N + $; -- GNAT
1093 Name_Atomic_Synchronization : constant Name_Id := N + $; -- GNAT
1094 Name_Discriminant_Check : constant Name_Id := N + $;
1095 Name_Division_Check : constant Name_Id := N + $;
1096 Name_Elaboration_Check : constant Name_Id := N + $;
1097 Name_Index_Check : constant Name_Id := N + $;
1098 Name_Length_Check : constant Name_Id := N + $;
1099 Name_Overflow_Check : constant Name_Id := N + $;
1100 Name_Predicate_Check : constant Name_Id := N + $; -- GNAT
1101 Name_Range_Check : constant Name_Id := N + $;
1102 Name_Storage_Check : constant Name_Id := N + $;
1103 Name_Tag_Check : constant Name_Id := N + $;
1104 Name_Validity_Check : constant Name_Id := N + $; -- GNAT
1105 Name_All_Checks : constant Name_Id := N + $;
1106 Last_Check_Name : constant Name_Id := N + $;
1108 -- Ada 83 reserved words, excluding those already declared in the attribute
1109 -- list (Access, Delta, Digits, Mod, Range).
1111 Name_Abort : constant Name_Id := N + $;
1112 Name_Abs : constant Name_Id := N + $;
1113 Name_Accept : constant Name_Id := N + $;
1114 Name_And : constant Name_Id := N + $;
1115 Name_All : constant Name_Id := N + $;
1116 Name_Array : constant Name_Id := N + $;
1117 Name_At : constant Name_Id := N + $;
1118 Name_Begin : constant Name_Id := N + $;
1119 Name_Body : constant Name_Id := N + $;
1120 Name_Case : constant Name_Id := N + $;
1121 Name_Constant : constant Name_Id := N + $;
1122 Name_Declare : constant Name_Id := N + $;
1123 Name_Delay : constant Name_Id := N + $;
1124 Name_Do : constant Name_Id := N + $;
1125 Name_Else : constant Name_Id := N + $;
1126 Name_Elsif : constant Name_Id := N + $;
1127 Name_End : constant Name_Id := N + $;
1128 Name_Entry : constant Name_Id := N + $;
1129 Name_Exception : constant Name_Id := N + $;
1130 Name_Exit : constant Name_Id := N + $;
1131 Name_For : constant Name_Id := N + $;
1132 Name_Function : constant Name_Id := N + $;
1133 Name_Generic : constant Name_Id := N + $;
1134 Name_Goto : constant Name_Id := N + $;
1135 Name_If : constant Name_Id := N + $;
1136 Name_In : constant Name_Id := N + $;
1137 Name_Is : constant Name_Id := N + $;
1138 Name_Limited : constant Name_Id := N + $;
1139 Name_Loop : constant Name_Id := N + $;
1140 Name_New : constant Name_Id := N + $;
1141 Name_Not : constant Name_Id := N + $;
1142 Name_Null : constant Name_Id := N + $;
1143 Name_Of : constant Name_Id := N + $;
1144 Name_Or : constant Name_Id := N + $;
1145 Name_Others : constant Name_Id := N + $;
1146 Name_Out : constant Name_Id := N + $;
1147 Name_Package : constant Name_Id := N + $;
1148 Name_Pragma : constant Name_Id := N + $;
1149 Name_Private : constant Name_Id := N + $;
1150 Name_Procedure : constant Name_Id := N + $;
1151 Name_Raise : constant Name_Id := N + $;
1152 Name_Record : constant Name_Id := N + $;
1153 Name_Rem : constant Name_Id := N + $;
1154 Name_Renames : constant Name_Id := N + $;
1155 Name_Return : constant Name_Id := N + $;
1156 Name_Reverse : constant Name_Id := N + $;
1157 Name_Select : constant Name_Id := N + $;
1158 Name_Separate : constant Name_Id := N + $;
1159 Name_Subtype : constant Name_Id := N + $;
1160 Name_Task : constant Name_Id := N + $;
1161 Name_Terminate : constant Name_Id := N + $;
1162 Name_Then : constant Name_Id := N + $;
1163 Name_Type : constant Name_Id := N + $;
1164 Name_Use : constant Name_Id := N + $;
1165 Name_When : constant Name_Id := N + $;
1166 Name_While : constant Name_Id := N + $;
1167 Name_With : constant Name_Id := N + $;
1168 Name_Xor : constant Name_Id := N + $;
1170 -- Names of intrinsic subprograms
1172 -- Note: Asm is missing from this list, since Asm is a legitimate
1173 -- convention name. So is To_Address, which is a GNAT attribute.
1175 First_Intrinsic_Name : constant Name_Id := N + $;
1176 Name_Divide : constant Name_Id := N + $;
1177 Name_Enclosing_Entity : constant Name_Id := N + $;
1178 Name_Exception_Information : constant Name_Id := N + $;
1179 Name_Exception_Message : constant Name_Id := N + $;
1180 Name_Exception_Name : constant Name_Id := N + $;
1181 Name_File : constant Name_Id := N + $;
1182 Name_Generic_Dispatching_Constructor : constant Name_Id := N + $;
1183 Name_Import_Address : constant Name_Id := N + $;
1184 Name_Import_Largest_Value : constant Name_Id := N + $;
1185 Name_Import_Value : constant Name_Id := N + $;
1186 Name_Is_Negative : constant Name_Id := N + $;
1187 Name_Line : constant Name_Id := N + $;
1188 Name_Rotate_Left : constant Name_Id := N + $;
1189 Name_Rotate_Right : constant Name_Id := N + $;
1190 Name_Shift_Left : constant Name_Id := N + $;
1191 Name_Shift_Right : constant Name_Id := N + $;
1192 Name_Shift_Right_Arithmetic : constant Name_Id := N + $;
1193 Name_Source_Location : constant Name_Id := N + $;
1194 Name_Unchecked_Conversion : constant Name_Id := N + $;
1195 Name_Unchecked_Deallocation : constant Name_Id := N + $;
1196 Name_To_Pointer : constant Name_Id := N + $;
1197 Last_Intrinsic_Name : constant Name_Id := N + $;
1199 -- Names used in processing intrinsic calls
1201 Name_Free : constant Name_Id := N + $;
1203 -- Ada 95 reserved words
1205 First_95_Reserved_Word : constant Name_Id := N + $;
1206 Name_Abstract : constant Name_Id := N + $;
1207 Name_Aliased : constant Name_Id := N + $;
1208 Name_Protected : constant Name_Id := N + $;
1209 Name_Until : constant Name_Id := N + $;
1210 Name_Requeue : constant Name_Id := N + $;
1211 Name_Tagged : constant Name_Id := N + $;
1212 Last_95_Reserved_Word : constant Name_Id := N + $;
1214 subtype Ada_95_Reserved_Words is
1215 Name_Id range First_95_Reserved_Word .. Last_95_Reserved_Word;
1217 -- Miscellaneous names used in semantic checking
1219 Name_Raise_Exception : constant Name_Id := N + $;
1221 -- Additional reserved words and identifiers used in GNAT Project Files
1222 -- Note that Name_External is already previously declared.
1224 -- Names with a -- GB annotation are only used in gprbuild or gprclean
1226 Name_Active : constant Name_Id := N + $;
1227 Name_Aggregate : constant Name_Id := N + $;
1228 Name_Archive_Builder : constant Name_Id := N + $;
1229 Name_Archive_Builder_Append_Option : constant Name_Id := N + $;
1230 Name_Archive_Indexer : constant Name_Id := N + $;
1231 Name_Archive_Suffix : constant Name_Id := N + $;
1232 Name_Artifacts_In_Exec_Dir : constant Name_Id := N + $; -- GB
1233 Name_Artifacts_In_Object_Dir : constant Name_Id := N + $; -- GB
1234 Name_Binder : constant Name_Id := N + $;
1235 Name_Body_Suffix : constant Name_Id := N + $;
1236 Name_Builder : constant Name_Id := N + $;
1237 Name_Clean : constant Name_Id := N + $;
1238 Name_Compiler : constant Name_Id := N + $;
1239 Name_Compiler_Command : constant Name_Id := N + $; -- GB
1240 Name_Config_Body_File_Name : constant Name_Id := N + $;
1241 Name_Config_Body_File_Name_Index : constant Name_Id := N + $;
1242 Name_Config_Body_File_Name_Pattern : constant Name_Id := N + $;
1243 Name_Config_File_Switches : constant Name_Id := N + $;
1244 Name_Config_File_Unique : constant Name_Id := N + $;
1245 Name_Config_Spec_File_Name : constant Name_Id := N + $;
1246 Name_Config_Spec_File_Name_Index : constant Name_Id := N + $;
1247 Name_Config_Spec_File_Name_Pattern : constant Name_Id := N + $;
1248 Name_Configuration : constant Name_Id := N + $;
1249 Name_Cross_Reference : constant Name_Id := N + $;
1250 Name_Default_Language : constant Name_Id := N + $;
1251 Name_Default_Switches : constant Name_Id := N + $;
1252 Name_Dependency_Driver : constant Name_Id := N + $;
1253 Name_Dependency_Kind : constant Name_Id := N + $;
1254 Name_Dependency_Switches : constant Name_Id := N + $;
1255 Name_Driver : constant Name_Id := N + $;
1256 Name_Excluded_Source_Dirs : constant Name_Id := N + $;
1257 Name_Excluded_Source_Files : constant Name_Id := N + $;
1258 Name_Excluded_Source_List_File : constant Name_Id := N + $;
1259 Name_Exec_Dir : constant Name_Id := N + $;
1260 Name_Exec_Subdir : constant Name_Id := N + $;
1261 Name_Executable : constant Name_Id := N + $;
1262 Name_Executable_Suffix : constant Name_Id := N + $;
1263 Name_Extends : constant Name_Id := N + $;
1264 Name_External_As_List : constant Name_Id := N + $;
1265 Name_Externally_Built : constant Name_Id := N + $;
1266 Name_Finder : constant Name_Id := N + $;
1267 Name_Global_Compilation_Switches : constant Name_Id := N + $;
1268 Name_Global_Configuration_Pragmas : constant Name_Id := N + $;
1269 Name_Global_Config_File : constant Name_Id := N + $; -- GB
1270 Name_Gnatls : constant Name_Id := N + $;
1271 Name_Gnatstub : constant Name_Id := N + $;
1272 Name_Gnu : constant Name_Id := N + $;
1273 Name_Ide : constant Name_Id := N + $;
1274 Name_Ignore_Source_Sub_Dirs : constant Name_Id := N + $;
1275 Name_Implementation : constant Name_Id := N + $;
1276 Name_Implementation_Exceptions : constant Name_Id := N + $;
1277 Name_Implementation_Suffix : constant Name_Id := N + $;
1278 Name_Include_Switches : constant Name_Id := N + $;
1279 Name_Include_Path : constant Name_Id := N + $;
1280 Name_Include_Path_File : constant Name_Id := N + $;
1281 Name_Inherit_Source_Path : constant Name_Id := N + $;
1282 Name_Install : constant Name_Id := N + $;
1283 Name_Languages : constant Name_Id := N + $;
1284 Name_Language_Kind : constant Name_Id := N + $;
1285 Name_Leading_Library_Options : constant Name_Id := N + $;
1286 Name_Leading_Required_Switches : constant Name_Id := N + $;
1287 Name_Leading_Switches : constant Name_Id := N + $;
1288 Name_Lib_Subdir : constant Name_Id := N + $;
1289 Name_Link_Lib_Subdir : constant Name_Id := N + $;
1290 Name_Library : constant Name_Id := N + $;
1291 Name_Library_Ali_Dir : constant Name_Id := N + $;
1292 Name_Library_Auto_Init : constant Name_Id := N + $;
1293 Name_Library_Auto_Init_Supported : constant Name_Id := N + $;
1294 Name_Library_Builder : constant Name_Id := N + $;
1295 Name_Library_Dir : constant Name_Id := N + $;
1296 Name_Library_GCC : constant Name_Id := N + $;
1297 Name_Library_Install_Name_Option : constant Name_Id := N + $;
1298 Name_Library_Interface : constant Name_Id := N + $;
1299 Name_Library_Kind : constant Name_Id := N + $;
1300 Name_Library_Name : constant Name_Id := N + $;
1301 Name_Library_Major_Minor_Id_Supported : constant Name_Id := N + $;
1302 Name_Library_Options : constant Name_Id := N + $;
1303 Name_Library_Partial_Linker : constant Name_Id := N + $;
1304 Name_Library_Reference_Symbol_File : constant Name_Id := N + $;
1305 Name_Library_Rpath_Options : constant Name_Id := N + $; -- GB
1306 Name_Library_Standalone : constant Name_Id := N + $;
1307 Name_Library_Encapsulated_Options : constant Name_Id := N + $; -- GB
1308 Name_Library_Encapsulated_Supported : constant Name_Id := N + $; -- GB
1309 Name_Library_Src_Dir : constant Name_Id := N + $;
1310 Name_Library_Support : constant Name_Id := N + $;
1311 Name_Library_Symbol_File : constant Name_Id := N + $;
1312 Name_Library_Symbol_Policy : constant Name_Id := N + $;
1313 Name_Library_Version : constant Name_Id := N + $;
1314 Name_Library_Version_Switches : constant Name_Id := N + $;
1315 Name_Linker : constant Name_Id := N + $;
1316 Name_Linker_Executable_Option : constant Name_Id := N + $;
1317 Name_Linker_Lib_Dir_Option : constant Name_Id := N + $;
1318 Name_Linker_Lib_Name_Option : constant Name_Id := N + $;
1319 Name_Local_Config_File : constant Name_Id := N + $; -- GB
1320 Name_Local_Configuration_Pragmas : constant Name_Id := N + $;
1321 Name_Locally_Removed_Files : constant Name_Id := N + $;
1322 Name_Map_File_Option : constant Name_Id := N + $;
1323 Name_Mapping_File_Switches : constant Name_Id := N + $;
1324 Name_Mapping_Spec_Suffix : constant Name_Id := N + $;
1325 Name_Mapping_Body_Suffix : constant Name_Id := N + $;
1326 Name_Max_Command_Line_Length : constant Name_Id := N + $;
1327 Name_Metrics : constant Name_Id := N + $;
1328 Name_Multi_Unit_Object_Separator : constant Name_Id := N + $;
1329 Name_Multi_Unit_Switches : constant Name_Id := N + $;
1330 Name_Naming : constant Name_Id := N + $;
1331 Name_None : constant Name_Id := N + $;
1332 Name_Object_Artifact_Extensions : constant Name_Id := N + $;
1333 Name_Object_File_Suffix : constant Name_Id := N + $;
1334 Name_Object_File_Switches : constant Name_Id := N + $;
1335 Name_Object_Generated : constant Name_Id := N + $;
1336 Name_Object_List : constant Name_Id := N + $;
1337 Name_Object_Path_Switches : constant Name_Id := N + $;
1338 Name_Objects_Linked : constant Name_Id := N + $;
1339 Name_Objects_Path : constant Name_Id := N + $;
1340 Name_Objects_Path_File : constant Name_Id := N + $;
1341 Name_Object_Dir : constant Name_Id := N + $;
1342 Name_Option_List : constant Name_Id := N + $;
1343 Name_Path_Syntax : constant Name_Id := N + $;
1344 Name_Pic_Option : constant Name_Id := N + $;
1345 Name_Pretty_Printer : constant Name_Id := N + $;
1346 Name_Prefix : constant Name_Id := N + $;
1347 Name_Project : constant Name_Id := N + $;
1348 Name_Project_Dir : constant Name_Id := N + $;
1349 Name_Project_Files : constant Name_Id := N + $;
1350 Name_Project_Path : constant Name_Id := N + $;
1351 Name_Project_Subdir : constant Name_Id := N + $;
1352 Name_Remote : constant Name_Id := N + $;
1353 Name_Response_File_Format : constant Name_Id := N + $;
1354 Name_Response_File_Switches : constant Name_Id := N + $;
1355 Name_Root_Dir : constant Name_Id := N + $;
1356 Name_Roots : constant Name_Id := N + $; -- GB
1357 Name_Required_Switches : constant Name_Id := N + $;
1358 Name_Run_Path_Option : constant Name_Id := N + $;
1359 Name_Run_Path_Origin : constant Name_Id := N + $;
1360 Name_Separate_Run_Path_Options : constant Name_Id := N + $;
1361 Name_Shared_Library_Minimum_Switches : constant Name_Id := N + $;
1362 Name_Shared_Library_Prefix : constant Name_Id := N + $;
1363 Name_Shared_Library_Suffix : constant Name_Id := N + $;
1364 Name_Separate_Suffix : constant Name_Id := N + $;
1365 Name_Source_Artifact_Extensions : constant Name_Id := N + $;
1366 Name_Source_Dirs : constant Name_Id := N + $;
1367 Name_Source_File_Switches : constant Name_Id := N + $;
1368 Name_Source_Files : constant Name_Id := N + $;
1369 Name_Source_List_File : constant Name_Id := N + $;
1370 Name_Sources_Subdir : constant Name_Id := N + $;
1371 Name_Spec : constant Name_Id := N + $;
1372 Name_Spec_Suffix : constant Name_Id := N + $;
1373 Name_Specification : constant Name_Id := N + $;
1374 Name_Specification_Exceptions : constant Name_Id := N + $;
1375 Name_Specification_Suffix : constant Name_Id := N + $;
1376 Name_Stack : constant Name_Id := N + $;
1377 Name_Switches : constant Name_Id := N + $;
1378 Name_Symbolic_Link_Supported : constant Name_Id := N + $;
1379 Name_Synchronize : constant Name_Id := N + $;
1380 Name_Toolchain_Description : constant Name_Id := N + $;
1381 Name_Toolchain_Version : constant Name_Id := N + $;
1382 Name_Trailing_Required_Switches : constant Name_Id := N + $;
1383 Name_Trailing_Switches : constant Name_Id := N + $;
1384 Name_Runtime_Library_Dir : constant Name_Id := N + $;
1385 Name_Runtime_Source_Dir : constant Name_Id := N + $;
1387 -- Other miscellaneous names used in front end
1389 Name_Unaligned_Valid : constant Name_Id := N + $;
1391 -- Names used to implement iterators over predefined containers
1393 Name_Cursor : constant Name_Id := N + $;
1394 Name_Element : constant Name_Id := N + $;
1395 Name_Element_Type : constant Name_Id := N + $;
1396 Name_Has_Element : constant Name_Id := N + $;
1397 Name_No_Element : constant Name_Id := N + $;
1398 Name_Forward_Iterator : constant Name_Id := N + $;
1399 Name_Reversible_Iterator : constant Name_Id := N + $;
1400 Name_Previous : constant Name_Id := N + $;
1402 -- Ada 2005 reserved words
1404 First_2005_Reserved_Word : constant Name_Id := N + $;
1405 Name_Interface : constant Name_Id := N + $;
1406 Name_Overriding : constant Name_Id := N + $;
1407 Name_Synchronized : constant Name_Id := N + $;
1408 Last_2005_Reserved_Word : constant Name_Id := N + $;
1410 subtype Ada_2005_Reserved_Words is
1411 Name_Id range First_2005_Reserved_Word .. Last_2005_Reserved_Word;
1413 -- Ada 2012 reserved words
1415 First_2012_Reserved_Word : constant Name_Id := N + $;
1416 Name_Some : constant Name_Id := N + $;
1417 Last_2012_Reserved_Word : constant Name_Id := N + $;
1419 subtype Ada_2012_Reserved_Words is
1420 Name_Id range First_2012_Reserved_Word .. Last_2012_Reserved_Word;
1422 -- Mark last defined name for consistency check in Snames body
1424 Last_Predefined_Name : constant Name_Id := N + $;
1426 ---------------------------------------
1427 -- Subtypes Defining Name Categories --
1428 ---------------------------------------
1430 subtype Any_Operator_Name is Name_Id range
1431 First_Operator_Name .. Last_Operator_Name;
1433 subtype Configuration_Pragma_Names is Name_Id range
1434 First_Pragma_Name .. Last_Configuration_Pragma_Name;
1436 ------------------------------
1437 -- Attribute ID Definitions --
1438 ------------------------------
1440 type Attribute_Id is (
1441 Attribute_Abort_Signal,
1444 Attribute_Address_Size,
1446 Attribute_Alignment,
1447 Attribute_Asm_Input,
1448 Attribute_Asm_Output,
1449 Attribute_AST_Entry,
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_Tagged_Values,
1490 Attribute_Implicit_Dereference,
1491 Attribute_Integer_Value,
1492 Attribute_Invalid_Value,
1493 Attribute_Iterator_Element,
1497 Attribute_Last_Valid,
1498 Attribute_Leading_Part,
1500 Attribute_Library_Level,
1501 Attribute_Lock_Free,
1502 Attribute_Loop_Entry,
1503 Attribute_Machine_Emax,
1504 Attribute_Machine_Emin,
1505 Attribute_Machine_Mantissa,
1506 Attribute_Machine_Overflows,
1507 Attribute_Machine_Radix,
1508 Attribute_Machine_Rounding,
1509 Attribute_Machine_Rounds,
1510 Attribute_Machine_Size,
1512 Attribute_Max_Alignment_For_Allocation,
1513 Attribute_Max_Size_In_Storage_Elements,
1514 Attribute_Maximum_Alignment,
1515 Attribute_Mechanism_Code,
1517 Attribute_Model_Emin,
1518 Attribute_Model_Epsilon,
1519 Attribute_Model_Mantissa,
1520 Attribute_Model_Small,
1522 Attribute_Null_Parameter,
1523 Attribute_Object_Size,
1525 Attribute_Overlaps_Storage,
1526 Attribute_Partition_ID,
1527 Attribute_Passed_By_Reference,
1528 Attribute_Pool_Address,
1533 Attribute_Range_Length,
1535 Attribute_Restriction_Set,
1538 Attribute_Safe_Emax,
1539 Attribute_Safe_First,
1540 Attribute_Safe_Large,
1541 Attribute_Safe_Last,
1542 Attribute_Safe_Small,
1543 Attribute_Same_Storage,
1544 Attribute_Scalar_Storage_Order,
1547 Attribute_Signed_Zeros,
1550 Attribute_Storage_Size,
1551 Attribute_Storage_Unit,
1552 Attribute_Stream_Size,
1553 Attribute_System_Allocator_Alignment,
1555 Attribute_Target_Name,
1556 Attribute_Terminated,
1557 Attribute_To_Address,
1558 Attribute_Type_Class,
1560 Attribute_UET_Address,
1561 Attribute_Unbiased_Rounding,
1562 Attribute_Unchecked_Access,
1563 Attribute_Unconstrained_Array,
1564 Attribute_Universal_Literal_String,
1565 Attribute_Unrestricted_Access,
1567 Attribute_VADS_Size,
1570 Attribute_Valid_Scalars,
1571 Attribute_Value_Size,
1572 Attribute_Variable_Indexing,
1574 Attribute_Wchar_T_Size,
1575 Attribute_Wide_Wide_Width,
1576 Attribute_Wide_Width,
1578 Attribute_Word_Size,
1580 -- Attributes designating renamable functions
1584 Attribute_Copy_Sign,
1595 Attribute_Remainder,
1599 Attribute_Truncation,
1602 Attribute_Wide_Image,
1603 Attribute_Wide_Wide_Image,
1604 Attribute_Wide_Value,
1605 Attribute_Wide_Wide_Value,
1607 -- Attributes designating procedures
1613 -- Entity attributes (includes type attributes)
1615 Attribute_Elab_Body,
1616 Attribute_Elab_Spec,
1617 Attribute_Elab_Subp_Body,
1618 Attribute_Simple_Storage_Pool,
1619 Attribute_Storage_Pool,
1625 Attribute_Stub_Type,
1627 -- The internal attributes are on their own, out of order, because of
1628 -- the special processing required to deal with the fact that their
1629 -- names are not attribute names.
1632 Attribute_Dispatching_Domain,
1633 Attribute_Interrupt_Priority);
1635 subtype Internal_Attribute_Id is Attribute_Id range
1636 Attribute_CPU .. Attribute_Interrupt_Priority;
1638 type Attribute_Class_Array is array (Attribute_Id) of Boolean;
1639 -- Type used to build attribute classification flag arrays
1641 ------------------------------------
1642 -- Convention Name ID Definitions --
1643 ------------------------------------
1645 type Convention_Id is (
1647 -- The native-to-Ada (non-foreign) conventions come first. These include
1648 -- the ones defined in the RM, plus Ghost and Stubbed.
1651 Convention_Intrinsic,
1654 Convention_Protected,
1657 -- The following conventions are equivalent to Ada for all purposes
1658 -- except controlling the way parameters are passed.
1660 Convention_Ada_Pass_By_Copy,
1661 Convention_Ada_Pass_By_Reference,
1663 -- The remaining conventions are foreign language conventions
1665 Convention_Assembler, -- also Asm, Assembly
1666 Convention_C, -- also Default, External
1672 Convention_Stdcall); -- also DLL, Win32
1674 -- Note: Convention C_Pass_By_Copy is allowed only for record types
1675 -- (where it is treated like C except that the appropriate flag is set
1676 -- in the record type). Recognizing this convention is specially handled
1679 for Convention_Id'Size use 8;
1680 -- Plenty of space for expansion
1682 subtype Foreign_Convention is
1683 Convention_Id range Convention_Assembler .. Convention_Id'Last;
1685 -----------------------------------
1686 -- Locking Policy ID Definitions --
1687 -----------------------------------
1689 type Locking_Policy_Id is (
1690 Locking_Policy_Inheritance_Locking,
1691 Locking_Policy_Ceiling_Locking,
1692 Locking_Policy_Concurrent_Readers_Locking);
1694 ---------------------------
1695 -- Pragma ID Definitions --
1696 ---------------------------
1700 -- Configuration pragmas
1702 -- Note: This list is in the GNAT users guide, so be sure that if any
1703 -- additions or deletions are made to the following list, they are
1704 -- properly reflected in the users guide.
1713 Pragma_Assertion_Policy,
1715 Pragma_Assume_No_Invalid_Values,
1716 Pragma_Attribute_Definition,
1717 Pragma_C_Pass_By_Copy,
1718 Pragma_Check_Float_Overflow,
1720 Pragma_Check_Policy,
1721 Pragma_Compile_Time_Error,
1722 Pragma_Compile_Time_Warning,
1723 Pragma_Compiler_Unit,
1724 Pragma_Component_Alignment,
1725 Pragma_Convention_Identifier,
1726 Pragma_Debug_Policy,
1727 Pragma_Detect_Blocking,
1728 Pragma_Default_Storage_Pool,
1729 Pragma_Disable_Atomic_Synchronization,
1730 Pragma_Discard_Names,
1731 Pragma_Elaboration_Checks,
1733 Pragma_Enable_Atomic_Synchronization,
1734 Pragma_Extend_System,
1735 Pragma_Extensions_Allowed,
1736 Pragma_External_Name_Casing,
1737 Pragma_Favor_Top_Level,
1738 Pragma_Float_Representation,
1739 Pragma_Implicit_Packing,
1740 Pragma_Initialize_Scalars,
1741 Pragma_Interrupt_State,
1743 Pragma_Locking_Policy,
1745 Pragma_Loop_Optimize,
1747 Pragma_No_Strict_Aliasing,
1748 Pragma_Normalize_Scalars,
1749 Pragma_Optimize_Alignment,
1750 Pragma_Overflow_Mode,
1751 Pragma_Overriding_Renamings,
1752 Pragma_Partition_Elaboration_Policy,
1753 Pragma_Persistent_BSS,
1755 Pragma_Priority_Specific_Dispatching,
1757 Pragma_Profile_Warnings,
1758 Pragma_Propagate_Exceptions,
1759 Pragma_Queuing_Policy,
1762 Pragma_Restricted_Run_Time,
1763 Pragma_Restrictions,
1764 Pragma_Restriction_Warnings,
1766 Pragma_Short_Circuit_And_Or,
1767 Pragma_Short_Descriptors,
1768 Pragma_Source_File_Name,
1769 Pragma_Source_File_Name_Project,
1771 Pragma_Style_Checks,
1773 Pragma_Suppress_Exception_Locations,
1774 Pragma_Task_Dispatching_Policy,
1775 Pragma_Universal_Data,
1777 Pragma_Use_VADS_Size,
1778 Pragma_Validity_Checks,
1780 Pragma_Wide_Character_Encoding,
1782 -- Remaining (non-configuration) pragmas
1785 Pragma_Abstract_State,
1786 Pragma_All_Calls_Remote,
1788 Pragma_Assert_And_Cut,
1789 Pragma_Asynchronous,
1791 Pragma_Atomic_Components,
1792 Pragma_Attach_Handler,
1794 Pragma_CIL_Constructor,
1796 Pragma_Common_Object,
1797 Pragma_Complete_Representation,
1798 Pragma_Complex_Representation,
1799 Pragma_Contract_Cases,
1803 Pragma_CPP_Constructor,
1809 Pragma_Elaborate_All,
1810 Pragma_Elaborate_Body,
1812 Pragma_Export_Exception,
1813 Pragma_Export_Function,
1814 Pragma_Export_Object,
1815 Pragma_Export_Procedure,
1816 Pragma_Export_Value,
1817 Pragma_Export_Valued_Procedure,
1819 Pragma_Finalize_Storage_Only,
1822 Pragma_Implementation_Defined,
1825 Pragma_Import_Exception,
1826 Pragma_Import_Function,
1827 Pragma_Import_Object,
1828 Pragma_Import_Procedure,
1829 Pragma_Import_Valued_Procedure,
1831 Pragma_Independent_Components,
1832 Pragma_Initial_Condition,
1835 Pragma_Inline_Always,
1836 Pragma_Inline_Generic,
1837 Pragma_Inspection_Point,
1838 Pragma_Interface_Name,
1839 Pragma_Interrupt_Handler,
1841 Pragma_Java_Constructor,
1842 Pragma_Java_Interface,
1845 Pragma_Linker_Alias,
1846 Pragma_Linker_Constructor,
1847 Pragma_Linker_Destructor,
1848 Pragma_Linker_Options,
1849 Pragma_Linker_Section,
1851 Pragma_Loop_Invariant,
1852 Pragma_Loop_Variant,
1853 Pragma_Machine_Attribute,
1855 Pragma_Main_Storage,
1867 Pragma_Postcondition,
1870 Pragma_Precondition,
1872 Pragma_Preelaborable_Initialization,
1873 Pragma_Preelaborate,
1874 Pragma_Preelaborate_05,
1876 Pragma_Psect_Object,
1880 Pragma_Pure_Function,
1881 Pragma_Refined_Depends,
1882 Pragma_Refined_Global,
1883 Pragma_Refined_Post,
1884 Pragma_Refined_State,
1885 Pragma_Relative_Deadline,
1886 Pragma_Remote_Access_Type,
1887 Pragma_Remote_Call_Interface,
1888 Pragma_Remote_Types,
1889 Pragma_Share_Generic,
1891 Pragma_Shared_Passive,
1892 Pragma_Simple_Storage_Pool_Type,
1893 Pragma_Source_Reference,
1894 Pragma_Static_Elaboration_Desired,
1895 Pragma_Stream_Convert,
1897 Pragma_Suppress_All,
1898 Pragma_Suppress_Debug_Info,
1899 Pragma_Suppress_Initialization,
1904 Pragma_Task_Storage,
1905 Pragma_Thread_Local_Storage,
1908 Pragma_Type_Invariant,
1909 Pragma_Type_Invariant_Class,
1910 Pragma_Unchecked_Union,
1911 Pragma_Unimplemented_Unit,
1912 Pragma_Universal_Aliasing,
1914 Pragma_Unreferenced,
1915 Pragma_Unreferenced_Objects,
1916 Pragma_Unreserve_All_Interrupts,
1918 Pragma_Volatile_Components,
1919 Pragma_Weak_External,
1921 -- The following pragmas are on their own, out of order, because of the
1922 -- special processing required to deal with the fact that their names
1923 -- match existing attribute names.
1927 Pragma_Dispatching_Domain,
1930 Pragma_Interrupt_Priority,
1933 Pragma_Storage_Size,
1934 Pragma_Storage_Unit,
1936 -- The value to represent an unknown or unrecognized pragma
1940 -----------------------------------
1941 -- Queuing Policy ID definitions --
1942 -----------------------------------
1944 type Queuing_Policy_Id is (
1945 Queuing_Policy_FIFO_Queuing,
1946 Queuing_Policy_Priority_Queuing);
1948 --------------------------------------------
1949 -- Task Dispatching Policy ID definitions --
1950 --------------------------------------------
1952 type Task_Dispatching_Policy_Id is (
1953 Task_Dispatching_FIFO_Within_Priorities);
1954 -- Id values used to identify task dispatching policies
1960 procedure Initialize;
1961 -- Called to initialize the preset names in the names table
1963 function Is_Attribute_Name (N : Name_Id) return Boolean;
1964 -- Test to see if the name N is the name of a recognized attribute. Note
1965 -- that Name_Elab_Subp_Body returns False if not operating in CodePeer
1966 -- mode. This is the mechanism for considering this pragma illegal in
1967 -- normal GNAT programs.
1969 function Is_Entity_Attribute_Name (N : Name_Id) return Boolean;
1970 -- Test to see if the name N is the name of a recognized entity attribute,
1971 -- i.e. an attribute reference that returns an entity.
1973 function Is_Internal_Attribute_Name (N : Name_Id) return Boolean;
1974 -- Test to see if the name N is the name of an INT attribute (Name_CPU,
1975 -- Name_Dispatching_Domain, Name_Interrupt_Priority).
1977 function Is_Procedure_Attribute_Name (N : Name_Id) return Boolean;
1978 -- Test to see if the name N is the name of a recognized attribute that
1979 -- designates a procedure (and can therefore appear as a statement).
1981 function Is_Function_Attribute_Name (N : Name_Id) return Boolean;
1982 -- Test to see if the name N is the name of a recognized attribute
1983 -- that designates a renameable function, and can therefore appear in
1984 -- a renaming statement. Note that not all attributes designating
1985 -- functions are renamable, in particular, those returning a universal
1986 -- value cannot be renamed.
1988 function Is_Type_Attribute_Name (N : Name_Id) return Boolean;
1989 -- Test to see if the name N is the name of a recognized type attribute,
1990 -- i.e. an attribute reference that returns a type
1992 function Is_Convention_Name (N : Name_Id) return Boolean;
1993 -- Test to see if the name N is the name of one of the recognized
1994 -- language conventions, as required by pragma Convention, Import,
1995 -- Export, Interface. Returns True if so. Also returns True for a
1996 -- name that has been specified by a Convention_Identifier pragma.
1997 -- If neither case holds, returns False.
1999 function Is_Keyword_Name (N : Name_Id) return Boolean;
2000 -- Test to see if the name N is one of the (reserved) keyword names. This
2001 -- includes all the keywords defined in the Ada standard (taking into
2002 -- effect the Ada version). It also includes additional keywords in
2003 -- contexts where additional keywords have been added. For example, in the
2004 -- context of parsing project files, keywords such as PROJECT are included.
2006 function Is_Locking_Policy_Name (N : Name_Id) return Boolean;
2007 -- Test to see if the name N is the name of a recognized locking policy
2009 function Is_Partition_Elaboration_Policy_Name
2010 (N : Name_Id) return Boolean;
2011 -- Test to see if the name N is the name of a recognized partition
2012 -- elaboration policy.
2014 function Is_Operator_Symbol_Name (N : Name_Id) return Boolean;
2015 -- Test to see if the name N is the name of an operator symbol
2017 function Is_Pragma_Name (N : Name_Id) return Boolean;
2018 -- Test to see if the name N is the name of a recognized pragma. Note that
2019 -- pragmas AST_Entry, CPU, Dispatching_Domain, Fast_Math,
2020 -- Interrupt_Priority, Lock_Free, Priority, Storage_Size, and Storage_Unit
2021 -- are recognized as pragmas by this function even though their names are
2022 -- separate from the other pragma names. For this reason, clients should
2023 -- always use this function, rather than do range tests on Name_Id values.
2025 function Is_Configuration_Pragma_Name (N : Name_Id) return Boolean;
2026 -- Test to see if the name N is the name of a recognized configuration
2027 -- pragma. Note that pragma Fast_Math is recognized as a configuration
2028 -- pragma by this function even though its name is separate from other
2029 -- configuration pragma names. For this reason, clients should always
2030 -- use this function, rather than do range tests on Name_Id values.
2032 function Is_Queuing_Policy_Name (N : Name_Id) return Boolean;
2033 -- Test to see if the name N is the name of a recognized queuing policy
2035 function Is_Task_Dispatching_Policy_Name (N : Name_Id) return Boolean;
2036 -- Test to see if the name N is the name of a recognized task
2037 -- dispatching policy.
2039 function Get_Attribute_Id (N : Name_Id) return Attribute_Id;
2040 -- Returns Id of attribute corresponding to given name. It is an error to
2041 -- call this function with a name that is not the name of a attribute. Note
2042 -- that the function also works correctly for internal attribute names even
2043 -- though there are not included in the main list of attribute Names.
2045 function Get_Convention_Id (N : Name_Id) return Convention_Id;
2046 -- Returns Id of language convention corresponding to given name. It is
2047 -- an error to call this function with a name that is not the name of a
2048 -- convention, or one that has been previously recorded using a call to
2049 -- Record_Convention_Identifier.
2051 function Get_Convention_Name (C : Convention_Id) return Name_Id;
2052 -- Returns the name of language convention corresponding to given
2055 function Get_Locking_Policy_Id (N : Name_Id) return Locking_Policy_Id;
2056 -- Returns Id of locking policy corresponding to given name. It is an error
2057 -- to call this function with a name that is not the name of a check.
2059 function Get_Pragma_Id (N : Name_Id) return Pragma_Id;
2060 -- Returns Id of pragma corresponding to given name. Returns Unknown_Pragma
2061 -- if N is not a name of a known (Ada defined or GNAT-specific) pragma.
2062 -- Note that the function also works correctly for names of pragmas that
2063 -- are not included in the main list of pragma Names (AST_Entry, CPU,
2064 -- Dispatching_Domain, Interrupt_Priority, Lock_Free, Priority,
2065 -- Storage_Size, and Storage_Unit (e.g. Name_Storage_Size returns
2066 -- Pragma_Storage_Size).
2068 function Get_Queuing_Policy_Id (N : Name_Id) return Queuing_Policy_Id;
2069 -- Returns Id of queuing policy corresponding to given name. It is an error
2070 -- to call this function with a name that is not the name of a check.
2072 function Get_Task_Dispatching_Policy_Id
2073 (N : Name_Id) return Task_Dispatching_Policy_Id;
2074 -- Returns Id of task dispatching policy corresponding to given name. It
2075 -- is an error to call this function with a name that is not the name of
2078 procedure Record_Convention_Identifier
2080 Convention : Convention_Id);
2081 -- A call to this procedure, resulting from an occurrence of a pragma
2082 -- Convention_Identifier, records that from now on an occurrence of Id
2083 -- will be recognized as a name for the specified convention.
2086 pragma Inline (Is_Attribute_Name);
2087 pragma Inline (Is_Entity_Attribute_Name);
2088 pragma Inline (Is_Type_Attribute_Name);
2089 pragma Inline (Is_Locking_Policy_Name);
2090 pragma Inline (Is_Partition_Elaboration_Policy_Name);
2091 pragma Inline (Is_Operator_Symbol_Name);
2092 pragma Inline (Is_Queuing_Policy_Name);
2093 pragma Inline (Is_Pragma_Name);
2094 pragma Inline (Is_Task_Dispatching_Policy_Name);