1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2012, 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_Post : constant Name_Id := N + $;
146 Name_Pre : constant Name_Id := N + $;
147 Name_Static_Predicate : constant Name_Id := N + $;
148 Name_Synchronization : constant Name_Id := N + $;
149 Name_Type_Invariant : constant Name_Id := N + $;
151 -- Some special names used by the expander. Note that the lower case u's
152 -- at the start of these names get translated to extra underscores. These
153 -- names are only referenced internally by expander generated code.
155 Name_uAbort_Signal : constant Name_Id := N + $;
156 Name_uAlignment : constant Name_Id := N + $;
157 Name_uAssign : constant Name_Id := N + $;
158 Name_uATCB : constant Name_Id := N + $;
159 Name_uChain : constant Name_Id := N + $;
160 Name_uController : constant Name_Id := N + $;
161 Name_uCPU : constant Name_Id := N + $;
162 Name_uDispatching_Domain : constant Name_Id := N + $;
163 Name_uEntry_Bodies : constant Name_Id := N + $;
164 Name_uExpunge : constant Name_Id := N + $;
165 Name_uFinalizer : constant Name_Id := N + $;
166 Name_uIdepth : constant Name_Id := N + $;
167 Name_uInit : constant Name_Id := N + $;
168 Name_uMaster : constant Name_Id := N + $;
169 Name_uObject : constant Name_Id := N + $;
170 Name_uPostconditions : 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 + $;
186 -- Names of predefined primitives used in the expansion of dispatching
187 -- requeue and select statements, Abort, 'Callable and 'Terminated.
189 Name_uDisp_Asynchronous_Select : constant Name_Id := N + $;
190 Name_uDisp_Conditional_Select : constant Name_Id := N + $;
191 Name_uDisp_Get_Prim_Op_Kind : constant Name_Id := N + $;
192 Name_uDisp_Get_Task_Id : constant Name_Id := N + $;
193 Name_uDisp_Requeue : constant Name_Id := N + $;
194 Name_uDisp_Timed_Select : constant Name_Id := N + $;
196 -- Names of routines and fields in Ada.Finalization, needed by expander
198 Name_Initialize : constant Name_Id := N + $;
199 Name_Adjust : constant Name_Id := N + $;
200 Name_Finalize : constant Name_Id := N + $;
201 Name_Finalize_Address : constant Name_Id := N + $;
202 Name_Next : constant Name_Id := N + $;
203 Name_Prev : constant Name_Id := N + $;
205 -- Names of allocation routines, also needed by expander
207 Name_Allocate : constant Name_Id := N + $;
208 Name_Deallocate : constant Name_Id := N + $;
209 Name_Dereference : constant Name_Id := N + $;
211 -- Names of Text_IO generic subpackages (see Rtsfind.Text_IO_Kludge)
213 First_Text_IO_Package : constant Name_Id := N + $;
214 Name_Decimal_IO : constant Name_Id := N + $;
215 Name_Enumeration_IO : constant Name_Id := N + $;
216 Name_Fixed_IO : constant Name_Id := N + $;
217 Name_Float_IO : constant Name_Id := N + $;
218 Name_Integer_IO : constant Name_Id := N + $;
219 Name_Modular_IO : constant Name_Id := N + $;
220 Last_Text_IO_Package : constant Name_Id := N + $;
222 subtype Text_IO_Package_Name is Name_Id
223 range First_Text_IO_Package .. Last_Text_IO_Package;
225 -- Names used by the analyzer and expander for aspect Dimension and
226 -- Dimension_System to deal with Sqrt and IO routines.
228 Name_Dim_Symbol : constant Name_Id := N + $; -- Ada 12
229 Name_Item : constant Name_Id := N + $; -- Ada 12
230 Name_Put_Dim_Of : constant Name_Id := N + $; -- Ada 12
231 Name_Sqrt : constant Name_Id := N + $; -- Ada 12
232 Name_Symbol : constant Name_Id := N + $; -- Ada 12
233 Name_Unit_Symbol : constant Name_Id := N + $; -- Ada 12
235 -- Some miscellaneous names used for error detection/recovery
237 Name_Const : constant Name_Id := N + $;
238 Name_Error : constant Name_Id := N + $;
239 Name_Go : constant Name_Id := N + $;
240 Name_Put : constant Name_Id := N + $;
241 Name_Put_Line : constant Name_Id := N + $;
242 Name_To : constant Name_Id := N + $;
244 -- Name used by the integrated preprocessor
246 Name_Defined : constant Name_Id := N + $;
248 -- Names for packages that are treated specially by the compiler
250 Name_Exception_Traces : constant Name_Id := N + $;
251 Name_Finalization : constant Name_Id := N + $;
252 Name_Interfaces : constant Name_Id := N + $;
253 Name_Most_Recent_Exception : constant Name_Id := N + $;
254 Name_Standard : constant Name_Id := N + $;
255 Name_System : constant Name_Id := N + $;
256 Name_Text_IO : constant Name_Id := N + $;
257 Name_Wide_Text_IO : constant Name_Id := N + $;
258 Name_Wide_Wide_Text_IO : constant Name_Id := N + $;
260 -- Names of implementations of the distributed systems annex
262 First_PCS_Name : constant Name_Id := N + $;
263 Name_No_DSA : constant Name_Id := N + $;
264 Name_GARLIC_DSA : constant Name_Id := N + $;
265 Name_PolyORB_DSA : constant Name_Id := N + $;
266 Last_PCS_Name : constant Name_Id := N + $;
268 subtype PCS_Names is Name_Id
269 range First_PCS_Name .. Last_PCS_Name;
271 -- Names of identifiers used in expanding distribution stubs
273 Name_Addr : constant Name_Id := N + $;
274 Name_Async : constant Name_Id := N + $;
275 Name_Get_Active_Partition_ID : constant Name_Id := N + $;
276 Name_Get_RCI_Package_Receiver : constant Name_Id := N + $;
277 Name_Get_RCI_Package_Ref : constant Name_Id := N + $;
278 Name_Origin : constant Name_Id := N + $;
279 Name_Params : constant Name_Id := N + $;
280 Name_Partition : constant Name_Id := N + $;
281 Name_Partition_Interface : constant Name_Id := N + $;
282 Name_Ras : constant Name_Id := N + $;
283 Name_uCall : constant Name_Id := N + $;
284 Name_RCI_Name : constant Name_Id := N + $;
285 Name_Receiver : constant Name_Id := N + $;
286 Name_Rpc : constant Name_Id := N + $;
287 Name_Subp_Id : constant Name_Id := N + $;
288 Name_Operation : constant Name_Id := N + $;
289 Name_Argument : constant Name_Id := N + $;
290 Name_Arg_Modes : constant Name_Id := N + $;
291 Name_Handler : constant Name_Id := N + $;
292 Name_Target : constant Name_Id := N + $;
293 Name_Req : constant Name_Id := N + $;
294 Name_Obj_TypeCode : constant Name_Id := N + $;
295 Name_Stub : constant Name_Id := N + $;
297 -- Operator Symbol entries. The actual names have an upper case O at the
298 -- start in place of the Op_ prefix (e.g. the actual name that corresponds
299 -- to Name_Op_Abs is "Oabs".
301 First_Operator_Name : constant Name_Id := N + $;
302 Name_Op_Abs : constant Name_Id := N + $; -- "abs"
303 Name_Op_And : constant Name_Id := N + $; -- "and"
304 Name_Op_Mod : constant Name_Id := N + $; -- "mod"
305 Name_Op_Not : constant Name_Id := N + $; -- "not"
306 Name_Op_Or : constant Name_Id := N + $; -- "or"
307 Name_Op_Rem : constant Name_Id := N + $; -- "rem"
308 Name_Op_Xor : constant Name_Id := N + $; -- "xor"
309 Name_Op_Eq : constant Name_Id := N + $; -- "="
310 Name_Op_Ne : constant Name_Id := N + $; -- "/="
311 Name_Op_Lt : constant Name_Id := N + $; -- "<"
312 Name_Op_Le : constant Name_Id := N + $; -- "<="
313 Name_Op_Gt : constant Name_Id := N + $; -- ">"
314 Name_Op_Ge : constant Name_Id := N + $; -- ">="
315 Name_Op_Add : constant Name_Id := N + $; -- "+"
316 Name_Op_Subtract : constant Name_Id := N + $; -- "-"
317 Name_Op_Concat : constant Name_Id := N + $; -- "&"
318 Name_Op_Multiply : constant Name_Id := N + $; -- "*"
319 Name_Op_Divide : constant Name_Id := N + $; -- "/"
320 Name_Op_Expon : constant Name_Id := N + $; -- "**"
321 Last_Operator_Name : constant Name_Id := N + $;
323 -- Names for all pragmas recognized by GNAT. The entries with the comment
324 -- "Ada 83" are pragmas that are defined in Ada 83, but not in Ada 95.
325 -- These pragmas are fully implemented in all modes (Ada 83, Ada 95, and
326 -- Ada 2005). In Ada 95 and Ada 2005 modes, they are technically considered
327 -- to be implementation dependent pragmas.
329 -- The entries marked GNAT are pragmas that are defined by GNAT and that
330 -- are implemented in all modes (Ada 83, Ada 95, and Ada 2005) Complete
331 -- descriptions of the syntax of these implementation dependent pragmas may
332 -- be found in the appropriate section in unit Sem_Prag in file
333 -- sem-prag.adb, and they are documented in the GNAT reference manual.
335 -- The entries marked Ada 05 are Ada 2005 pragmas. They are implemented in
336 -- Ada 83 and Ada 95 mode as well, where they are technically considered to
337 -- be implementation dependent pragmas.
339 -- The entries marked Ada 12 are Ada 2012 pragmas. They are implemented in
340 -- Ada 83, Ada 95, and Ada 2005 mode as well, where they are technically
341 -- considered to be implementation dependent pragmas.
343 -- The entries marked VMS are VMS specific pragmas that are recognized only
344 -- in OpenVMS versions of GNAT. They are ignored in other versions with an
345 -- appropriate warning.
347 -- The entries marked AAMP are AAMP specific pragmas that are recognized
348 -- only in GNAT for the AAMP. They are ignored in other versions with
349 -- appropriate warnings.
351 First_Pragma_Name : constant Name_Id := N + $;
353 -- Configuration pragmas are grouped at start. Note that there is a list
354 -- of these names in the GNAT Users guide, be sure to update this list if
355 -- a new configuration pragma is added.
357 Name_Ada_83 : constant Name_Id := N + $; -- GNAT
358 Name_Ada_95 : constant Name_Id := N + $; -- GNAT
359 Name_Ada_05 : constant Name_Id := N + $; -- GNAT
360 Name_Ada_2005 : constant Name_Id := N + $; -- GNAT
361 Name_Ada_12 : constant Name_Id := N + $; -- GNAT
362 Name_Ada_2012 : constant Name_Id := N + $; -- GNAT
363 Name_Annotate : constant Name_Id := N + $; -- GNAT
364 Name_Assertion_Policy : constant Name_Id := N + $; -- Ada 05
365 Name_Assume_No_Invalid_Values : constant Name_Id := N + $; -- GNAT
366 Name_C_Pass_By_Copy : constant Name_Id := N + $; -- GNAT
367 Name_Check_Name : constant Name_Id := N + $; -- GNAT
368 Name_Check_Policy : constant Name_Id := N + $; -- GNAT
369 Name_Compile_Time_Error : constant Name_Id := N + $; -- GNAT
370 Name_Compile_Time_Warning : constant Name_Id := N + $; -- GNAT
371 Name_Compiler_Unit : constant Name_Id := N + $; -- GNAT
372 Name_Component_Alignment : constant Name_Id := N + $; -- GNAT
373 Name_Convention_Identifier : constant Name_Id := N + $; -- GNAT
374 Name_Debug_Policy : constant Name_Id := N + $; -- GNAT
375 Name_Detect_Blocking : constant Name_Id := N + $; -- Ada 05
376 Name_Default_Storage_Pool : constant Name_Id := N + $; -- Ada 12
377 Name_Disable_Atomic_Synchronization : constant Name_Id := N + $; -- GNAT
378 Name_Discard_Names : constant Name_Id := N + $;
380 -- Note: Dispatching_Domain is not in this list because its name matches
381 -- the name of the corresponding attribute. However, it is included in the
382 -- definition of the type Pragma_Id, and the functions Get_Pragma_Id and
383 -- Is_Pragma_Id correctly recognize and process Dispatching_Domain.
384 -- Dispatching_Domain is a standard Ada 2012 pragma.
386 Name_Elaboration_Checks : constant Name_Id := N + $; -- GNAT
387 Name_Eliminate : constant Name_Id := N + $; -- GNAT
388 Name_Enable_Atomic_Synchronization : constant Name_Id := N + $; -- GNAT
389 Name_Extend_System : constant Name_Id := N + $; -- GNAT
390 Name_Extensions_Allowed : constant Name_Id := N + $; -- GNAT
391 Name_External_Name_Casing : constant Name_Id := N + $; -- GNAT
393 -- Note: Fast_Math is not in this list because its name matches the name of
394 -- the corresponding attribute. However, it is included in the definition
395 -- of the type Pragma_Id, and the functions Get_Pragma_Id,
396 -- Is_[Configuration_]Pragma_Id, and correctly recognize and process
399 Name_Favor_Top_Level : constant Name_Id := N + $; -- GNAT
400 Name_Float_Representation : constant Name_Id := N + $; -- GNAT
401 Name_Implicit_Packing : constant Name_Id := N + $; -- GNAT
402 Name_Initialize_Scalars : constant Name_Id := N + $; -- GNAT
403 Name_Interrupt_State : constant Name_Id := N + $; -- GNAT
404 Name_License : constant Name_Id := N + $; -- GNAT
405 Name_Locking_Policy : constant Name_Id := N + $;
406 Name_Long_Float : constant Name_Id := N + $; -- VMS
407 Name_No_Run_Time : constant Name_Id := N + $; -- GNAT
408 Name_No_Strict_Aliasing : constant Name_Id := N + $; -- GNAT
409 Name_Normalize_Scalars : constant Name_Id := N + $;
410 Name_Optimize_Alignment : constant Name_Id := N + $; -- GNAT
411 Name_Persistent_BSS : constant Name_Id := N + $; -- GNAT
412 Name_Polling : constant Name_Id := N + $; -- GNAT
413 Name_Priority_Specific_Dispatching : constant Name_Id := N + $; -- Ada 05
414 Name_Profile : constant Name_Id := N + $; -- Ada 05
415 Name_Profile_Warnings : constant Name_Id := N + $; -- GNAT
416 Name_Propagate_Exceptions : constant Name_Id := N + $; -- GNAT
417 Name_Queuing_Policy : constant Name_Id := N + $;
418 Name_Ravenscar : constant Name_Id := N + $; -- GNAT
419 Name_Restricted_Run_Time : constant Name_Id := N + $; -- GNAT
420 Name_Restrictions : constant Name_Id := N + $;
421 Name_Restriction_Warnings : constant Name_Id := N + $; -- GNAT
422 Name_Reviewable : constant Name_Id := N + $;
423 Name_Short_Circuit_And_Or : constant Name_Id := N + $; -- GNAT
424 Name_Short_Descriptors : constant Name_Id := N + $; -- GNAT
425 Name_Source_File_Name : constant Name_Id := N + $; -- GNAT
426 Name_Source_File_Name_Project : constant Name_Id := N + $; -- GNAT
427 Name_Style_Checks : constant Name_Id := N + $; -- GNAT
428 Name_Suppress : constant Name_Id := N + $;
429 Name_Suppress_Exception_Locations : constant Name_Id := N + $; -- GNAT
430 Name_Task_Dispatching_Policy : constant Name_Id := N + $;
431 Name_Universal_Data : constant Name_Id := N + $; -- AAMP
432 Name_Unsuppress : constant Name_Id := N + $; -- Ada 05
433 Name_Use_VADS_Size : constant Name_Id := N + $; -- GNAT
434 Name_Validity_Checks : constant Name_Id := N + $; -- GNAT
435 Name_Warnings : constant Name_Id := N + $; -- GNAT
436 Name_Wide_Character_Encoding : constant Name_Id := N + $; -- GNAT
437 Last_Configuration_Pragma_Name : constant Name_Id := N + $;
439 -- Remaining pragma names
441 Name_Abort_Defer : constant Name_Id := N + $; -- GNAT
442 Name_All_Calls_Remote : constant Name_Id := N + $;
444 -- Note: AST_Entry is not in this list because its name matches the name of
445 -- the corresponding attribute. However, it is included in the definition
446 -- of the type Pragma_Id, and the functions Get_Pragma_Id and Is_Pragma_Id
447 -- correctly recognize and process Name_AST_Entry.
449 Name_Assert : constant Name_Id := N + $; -- Ada 05
450 Name_Asynchronous : constant Name_Id := N + $;
451 Name_Atomic : constant Name_Id := N + $;
452 Name_Atomic_Components : constant Name_Id := N + $;
453 Name_Attach_Handler : constant Name_Id := N + $;
454 Name_Check : constant Name_Id := N + $; -- GNAT
455 Name_CIL_Constructor : constant Name_Id := N + $; -- GNAT
456 Name_Comment : constant Name_Id := N + $; -- GNAT
457 Name_Common_Object : constant Name_Id := N + $; -- GNAT
458 Name_Complete_Representation : constant Name_Id := N + $; -- GNAT
459 Name_Complex_Representation : constant Name_Id := N + $; -- GNAT
460 Name_Contract_Case : constant Name_Id := N + $; -- GNAT
461 Name_Controlled : constant Name_Id := N + $;
462 Name_Convention : constant Name_Id := N + $;
463 Name_CPP_Class : constant Name_Id := N + $; -- GNAT
464 Name_CPP_Constructor : constant Name_Id := N + $; -- GNAT
465 Name_CPP_Virtual : constant Name_Id := N + $; -- GNAT
466 Name_CPP_Vtable : constant Name_Id := N + $; -- GNAT
468 -- Note: CPU is not in this list because its name matches the name of
469 -- the corresponding attribute. However, it is included in the definition
470 -- of the type Pragma_Id, and the functions Get_Pragma_Id and Is_Pragma_Id
471 -- correctly recognize and process CPU. CPU is a standard Ada 2012
474 Name_Debug : constant Name_Id := N + $; -- GNAT
475 Name_Elaborate : constant Name_Id := N + $; -- Ada 83
476 Name_Elaborate_All : constant Name_Id := N + $;
477 Name_Elaborate_Body : constant Name_Id := N + $;
478 Name_Export : constant Name_Id := N + $;
479 Name_Export_Exception : constant Name_Id := N + $; -- VMS
480 Name_Export_Function : constant Name_Id := N + $; -- GNAT
481 Name_Export_Object : constant Name_Id := N + $; -- GNAT
482 Name_Export_Procedure : constant Name_Id := N + $; -- GNAT
483 Name_Export_Value : constant Name_Id := N + $; -- GNAT
484 Name_Export_Valued_Procedure : constant Name_Id := N + $; -- GNAT
485 Name_External : constant Name_Id := N + $; -- GNAT
486 Name_Finalize_Storage_Only : constant Name_Id := N + $; -- GNAT
487 Name_Ident : constant Name_Id := N + $; -- VMS
488 Name_Implementation_Defined : constant Name_Id := N + $; -- GNAT
489 Name_Implemented : constant Name_Id := N + $; -- Ada 12
490 Name_Import : constant Name_Id := N + $;
491 Name_Import_Exception : constant Name_Id := N + $; -- VMS
492 Name_Import_Function : constant Name_Id := N + $; -- GNAT
493 Name_Import_Object : constant Name_Id := N + $; -- GNAT
494 Name_Import_Procedure : constant Name_Id := N + $; -- GNAT
495 Name_Import_Valued_Procedure : constant Name_Id := N + $; -- GNAT
496 Name_Independent : constant Name_Id := N + $; -- Ada 12
497 Name_Independent_Components : constant Name_Id := N + $; -- Ada 12
498 Name_Inline : constant Name_Id := N + $;
499 Name_Inline_Always : constant Name_Id := N + $; -- GNAT
500 Name_Inline_Generic : constant Name_Id := N + $; -- GNAT
501 Name_Inspection_Point : constant Name_Id := N + $;
503 -- Note: Interface is not in this list because its name matches an Ada 05
504 -- keyword. However it is included in the definition of the type
505 -- Attribute_Id, and the functions Get_Pragma_Id and Is_Pragma_Id correctly
506 -- recognize and process Name_Interface.
508 Name_Interface_Name : constant Name_Id := N + $; -- GNAT
509 Name_Interrupt_Handler : constant Name_Id := N + $;
511 -- Note: Interrupt_Priority is not in this list because its name matches
512 -- the name of the corresponding attribute. However, it is included in the
513 -- definition of the type Pragma_Id, and the functions Get_Pragma_Id and
514 -- Is_Pragma_Id correctly recognize and process Interrupt_Priority.
516 Name_Invariant : constant Name_Id := N + $; -- GNAT
517 Name_Java_Constructor : constant Name_Id := N + $; -- GNAT
518 Name_Java_Interface : constant Name_Id := N + $; -- GNAT
519 Name_Keep_Names : constant Name_Id := N + $; -- GNAT
520 Name_Link_With : constant Name_Id := N + $; -- GNAT
521 Name_Linker_Alias : constant Name_Id := N + $; -- GNAT
522 Name_Linker_Constructor : constant Name_Id := N + $; -- GNAT
523 Name_Linker_Destructor : constant Name_Id := N + $; -- GNAT
524 Name_Linker_Options : constant Name_Id := N + $;
525 Name_Linker_Section : constant Name_Id := N + $; -- GNAT
526 Name_List : constant Name_Id := N + $;
528 -- Note: Lock_Free is not in this list because its name matches the name of
529 -- the corresponding attribute. However, it is included in the definition
530 -- of the type Pragma_Id, and the functions Get_Pragma_Id and Is_Pragma_Id
531 -- correctly recognize and process Lock_Free. Lock_Free is a GNAT pragma.
533 Name_Machine_Attribute : constant Name_Id := N + $; -- GNAT
534 Name_Main : constant Name_Id := N + $; -- GNAT
535 Name_Main_Storage : constant Name_Id := N + $; -- GNAT
536 Name_Memory_Size : constant Name_Id := N + $; -- Ada 83
537 Name_No_Body : constant Name_Id := N + $; -- GNAT
538 Name_No_Return : constant Name_Id := N + $; -- Ada 05
539 Name_Obsolescent : constant Name_Id := N + $; -- GNAT
540 Name_Optimize : constant Name_Id := N + $;
541 Name_Ordered : constant Name_Id := N + $; -- GNAT
542 Name_Pack : constant Name_Id := N + $;
543 Name_Page : constant Name_Id := N + $;
544 Name_Passive : constant Name_Id := N + $; -- GNAT
545 Name_Postcondition : constant Name_Id := N + $; -- GNAT
546 Name_Precondition : constant Name_Id := N + $; -- GNAT
547 Name_Predicate : constant Name_Id := N + $; -- GNAT
548 Name_Preelaborable_Initialization : constant Name_Id := N + $; -- Ada 05
549 Name_Preelaborate : constant Name_Id := N + $;
550 Name_Preelaborate_05 : constant Name_Id := N + $; -- GNAT
552 -- Note: Priority is not in this list because its name matches the name of
553 -- the corresponding attribute. However, it is included in the definition
554 -- of the type Pragma_Id, and the functions Get_Pragma_Id and Is_Pragma_Id
555 -- correctly recognize and process Priority. Priority is a standard Ada 95
558 Name_Psect_Object : constant Name_Id := N + $; -- VMS
559 Name_Pure : constant Name_Id := N + $;
560 Name_Pure_05 : constant Name_Id := N + $; -- GNAT
561 Name_Pure_12 : constant Name_Id := N + $; -- GNAT
562 Name_Pure_Function : constant Name_Id := N + $; -- GNAT
563 Name_Relative_Deadline : constant Name_Id := N + $; -- Ada 05
564 Name_Remote_Access_Type : constant Name_Id := N + $; -- GNAT
565 Name_Remote_Call_Interface : constant Name_Id := N + $;
566 Name_Remote_Types : constant Name_Id := N + $;
567 Name_Share_Generic : constant Name_Id := N + $; -- GNAT
568 Name_Shared : constant Name_Id := N + $; -- Ada 83
569 Name_Shared_Passive : constant Name_Id := N + $;
570 Name_Simple_Storage_Pool_Type : constant Name_Id := N + $; -- GNAT
572 -- Note: Storage_Size is not in this list because its name matches the name
573 -- of the corresponding attribute. However, it is included in the
574 -- definition of the type Attribute_Id, and the functions Get_Pragma_Id and
575 -- Is_Pragma_Id correctly recognize and process Name_Storage_Size.
577 -- Note: Storage_Unit is also omitted from the list because of a clash with
578 -- an attribute name, and is treated similarly.
580 Name_Source_Reference : constant Name_Id := N + $; -- GNAT
581 Name_Static_Elaboration_Desired : constant Name_Id := N + $; -- GNAT
582 Name_Stream_Convert : constant Name_Id := N + $; -- GNAT
583 Name_Subtitle : constant Name_Id := N + $; -- GNAT
584 Name_Suppress_All : constant Name_Id := N + $; -- GNAT
585 Name_Suppress_Debug_Info : constant Name_Id := N + $; -- GNAT
586 Name_Suppress_Initialization : constant Name_Id := N + $; -- GNAT
587 Name_System_Name : constant Name_Id := N + $; -- Ada 83
588 Name_Test_Case : constant Name_Id := N + $; -- GNAT
589 Name_Task_Info : constant Name_Id := N + $; -- GNAT
590 Name_Task_Name : constant Name_Id := N + $; -- GNAT
591 Name_Task_Storage : constant Name_Id := N + $; -- VMS
592 Name_Thread_Local_Storage : constant Name_Id := N + $; -- GNAT
593 Name_Time_Slice : constant Name_Id := N + $; -- GNAT
594 Name_Title : constant Name_Id := N + $; -- GNAT
595 Name_Unchecked_Union : constant Name_Id := N + $; -- Ada 05
596 Name_Unimplemented_Unit : constant Name_Id := N + $; -- GNAT
597 Name_Universal_Aliasing : constant Name_Id := N + $; -- GNAT
598 Name_Unmodified : constant Name_Id := N + $; -- GNAT
599 Name_Unreferenced : constant Name_Id := N + $; -- GNAT
600 Name_Unreferenced_Objects : constant Name_Id := N + $; -- GNAT
601 Name_Unreserve_All_Interrupts : constant Name_Id := N + $; -- GNAT
602 Name_Volatile : constant Name_Id := N + $;
603 Name_Volatile_Components : constant Name_Id := N + $;
604 Name_Weak_External : constant Name_Id := N + $; -- GNAT
605 Last_Pragma_Name : constant Name_Id := N + $;
607 -- Language convention names for pragma Convention/Export/Import/Interface
608 -- Note that Name_C is not included in this list, since it was already
609 -- declared earlier in the context of one-character identifier names (where
610 -- the order is critical to the fast look up process).
612 -- Note: there are no convention names corresponding to the conventions
613 -- Entry and Protected, this is because these conventions cannot be
614 -- specified by a pragma.
616 First_Convention_Name : constant Name_Id := N + $;
617 Name_Ada : constant Name_Id := N + $;
618 Name_Ada_Pass_By_Copy : constant Name_Id := N + $;
619 Name_Ada_Pass_By_Reference : constant Name_Id := N + $;
620 Name_Assembler : constant Name_Id := N + $;
621 Name_CIL : constant Name_Id := N + $;
622 Name_COBOL : constant Name_Id := N + $;
623 Name_CPP : constant Name_Id := N + $;
624 Name_Fortran : constant Name_Id := N + $;
625 Name_Intrinsic : constant Name_Id := N + $;
626 Name_Java : constant Name_Id := N + $;
627 Name_Stdcall : constant Name_Id := N + $;
628 Name_Stubbed : constant Name_Id := N + $;
629 Last_Convention_Name : constant Name_Id := N + $;
631 -- The following names are preset as synonyms for Assembler
633 Name_Asm : constant Name_Id := N + $;
634 Name_Assembly : constant Name_Id := N + $;
636 -- The following names are preset as synonyms for C
638 Name_Default : constant Name_Id := N + $;
639 -- Name_External (previously defined as pragma)
641 -- The following names are preset as synonyms for CPP
643 Name_C_Plus_Plus : constant Name_Id := N + $;
645 -- The following names are present as synonyms for Stdcall
647 Name_DLL : constant Name_Id := N + $;
648 Name_Win32 : constant Name_Id := N + $;
650 -- Other special names used in processing pragmas
652 Name_As_Is : constant Name_Id := N + $;
653 Name_Assertion : constant Name_Id := N + $;
654 Name_Attribute_Name : constant Name_Id := N + $;
655 Name_Body_File_Name : constant Name_Id := N + $;
656 Name_Boolean_Entry_Barriers : constant Name_Id := N + $;
657 Name_By_Any : constant Name_Id := N + $;
658 Name_By_Entry : constant Name_Id := N + $;
659 Name_By_Protected_Procedure : constant Name_Id := N + $;
660 Name_Casing : constant Name_Id := N + $;
661 Name_Code : constant Name_Id := N + $;
662 Name_Component : constant Name_Id := N + $;
663 Name_Component_Size_4 : constant Name_Id := N + $;
664 Name_Copy : constant Name_Id := N + $;
665 Name_D_Float : constant Name_Id := N + $;
666 Name_Descriptor : constant Name_Id := N + $;
667 Name_Disable : constant Name_Id := N + $;
668 Name_Dot_Replacement : constant Name_Id := N + $;
669 Name_Dynamic : constant Name_Id := N + $;
670 Name_Ensures : constant Name_Id := N + $;
671 Name_Entity : constant Name_Id := N + $;
672 Name_Entry_Count : constant Name_Id := N + $;
673 Name_External_Name : constant Name_Id := N + $;
674 Name_First_Optional_Parameter : constant Name_Id := N + $;
675 Name_Force : constant Name_Id := N + $;
676 Name_Form : constant Name_Id := N + $;
677 Name_G_Float : constant Name_Id := N + $;
678 Name_Gcc : constant Name_Id := N + $;
679 Name_Gnat : constant Name_Id := N + $;
680 Name_GPL : constant Name_Id := N + $;
681 Name_IEEE_Float : constant Name_Id := N + $;
682 Name_Ignore : constant Name_Id := N + $;
683 Name_Info : constant Name_Id := N + $;
684 Name_Internal : constant Name_Id := N + $;
685 Name_Link_Name : constant Name_Id := N + $;
686 Name_Lowercase : constant Name_Id := N + $;
687 Name_Max_Entry_Queue_Depth : constant Name_Id := N + $;
688 Name_Max_Entry_Queue_Length : constant Name_Id := N + $;
689 Name_Max_Size : constant Name_Id := N + $;
690 Name_Mechanism : constant Name_Id := N + $;
691 Name_Message : constant Name_Id := N + $;
692 Name_Mixedcase : constant Name_Id := N + $;
693 Name_Mode : constant Name_Id := N + $;
694 Name_Modified_GPL : constant Name_Id := N + $;
695 Name_Name : constant Name_Id := N + $;
696 Name_NCA : constant Name_Id := N + $;
697 Name_No : constant Name_Id := N + $;
698 Name_No_Dependence : constant Name_Id := N + $;
699 Name_No_Dynamic_Attachment : constant Name_Id := N + $;
700 Name_No_Dynamic_Interrupts : constant Name_Id := N + $;
701 Name_No_Implementation_Extensions : constant Name_Id := N + $;
702 Name_No_Requeue : constant Name_Id := N + $;
703 Name_No_Requeue_Statements : constant Name_Id := N + $;
704 Name_No_Specification_Of_Aspect : constant Name_Id := N + $;
705 Name_No_Task_Attributes : constant Name_Id := N + $;
706 Name_No_Task_Attributes_Package : constant Name_Id := N + $;
707 Name_Nominal : constant Name_Id := N + $;
708 Name_On : constant Name_Id := N + $;
709 Name_Optional : constant Name_Id := N + $;
710 Name_Policy : constant Name_Id := N + $;
711 Name_Parameter_Types : constant Name_Id := N + $;
712 Name_Reference : constant Name_Id := N + $;
713 Name_Requires : constant Name_Id := N + $;
714 Name_Restricted : constant Name_Id := N + $;
715 Name_Result_Mechanism : constant Name_Id := N + $;
716 Name_Result_Type : constant Name_Id := N + $;
717 Name_Robustness : constant Name_Id := N + $;
718 Name_Runtime : constant Name_Id := N + $;
719 Name_SB : constant Name_Id := N + $;
720 Name_Secondary_Stack_Size : constant Name_Id := N + $;
721 Name_Section : constant Name_Id := N + $;
722 Name_Semaphore : constant Name_Id := N + $;
723 Name_Short_Descriptor : constant Name_Id := N + $;
724 Name_Simple_Barriers : constant Name_Id := N + $;
725 Name_Spec_File_Name : constant Name_Id := N + $;
726 Name_State : constant Name_Id := N + $;
727 Name_Static : constant Name_Id := N + $;
728 Name_Stack_Size : constant Name_Id := N + $;
729 Name_Subunit_File_Name : constant Name_Id := N + $;
730 Name_Task_Stack_Size_Default : constant Name_Id := N + $;
731 Name_Task_Type : constant Name_Id := N + $;
732 Name_Time_Slicing_Enabled : constant Name_Id := N + $;
733 Name_Top_Guard : constant Name_Id := N + $;
734 Name_UBA : constant Name_Id := N + $;
735 Name_UBS : constant Name_Id := N + $;
736 Name_UBSB : constant Name_Id := N + $;
737 Name_Unit_Name : constant Name_Id := N + $;
738 Name_Unknown : constant Name_Id := N + $;
739 Name_Unrestricted : constant Name_Id := N + $;
740 Name_Uppercase : constant Name_Id := N + $;
741 Name_User : constant Name_Id := N + $;
742 Name_VAX_Float : constant Name_Id := N + $;
743 Name_VMS : constant Name_Id := N + $;
744 Name_Vtable_Ptr : constant Name_Id := N + $;
745 Name_Working_Storage : constant Name_Id := N + $;
747 -- Names of recognized attributes. The entries with the comment "Ada 83"
748 -- are attributes that are defined in Ada 83, but not in Ada 95. These
749 -- attributes are implemented in both Ada 83 and Ada 95 modes in GNAT.
751 -- The entries marked GNAT are attributes that are defined by GNAT and
752 -- implemented in both Ada 83 and Ada 95 modes. Full descriptions of these
753 -- implementation dependent attributes may be found in the appropriate
754 -- section in Sem_Attr.
756 -- The entries marked VMS are recognized only in OpenVMS implementations
757 -- of GNAT, and are treated as illegal in all other contexts.
759 First_Attribute_Name : constant Name_Id := N + $;
760 Name_Abort_Signal : constant Name_Id := N + $; -- GNAT
761 Name_Access : constant Name_Id := N + $;
762 Name_Address : constant Name_Id := N + $;
763 Name_Address_Size : constant Name_Id := N + $; -- GNAT
764 Name_Aft : constant Name_Id := N + $;
765 Name_Alignment : constant Name_Id := N + $;
766 Name_Asm_Input : constant Name_Id := N + $; -- GNAT
767 Name_Asm_Output : constant Name_Id := N + $; -- GNAT
768 Name_AST_Entry : constant Name_Id := N + $; -- VMS
769 Name_Atomic_Always_Lock_Free : constant Name_Id := N + $; -- GNAT
770 Name_Bit : constant Name_Id := N + $; -- GNAT
771 Name_Bit_Order : constant Name_Id := N + $;
772 Name_Bit_Position : constant Name_Id := N + $; -- GNAT
773 Name_Body_Version : constant Name_Id := N + $;
774 Name_Callable : constant Name_Id := N + $;
775 Name_Caller : constant Name_Id := N + $;
776 Name_Code_Address : constant Name_Id := N + $; -- GNAT
777 Name_Compiler_Version : constant Name_Id := N + $; -- GNAT
778 Name_Component_Size : constant Name_Id := N + $;
779 Name_Compose : constant Name_Id := N + $;
780 Name_Constant_Indexing : constant Name_Id := N + $; -- GNAT
781 Name_Constrained : constant Name_Id := N + $;
782 Name_Count : constant Name_Id := N + $;
783 Name_Default_Bit_Order : constant Name_Id := N + $; -- GNAT
784 Name_Default_Iterator : constant Name_Id := N + $; -- GNAT
785 Name_Definite : constant Name_Id := N + $;
786 Name_Delta : constant Name_Id := N + $;
787 Name_Denorm : constant Name_Id := N + $;
788 Name_Descriptor_Size : constant Name_Id := N + $;
789 Name_Digits : constant Name_Id := N + $;
790 Name_Elaborated : constant Name_Id := N + $; -- GNAT
791 Name_Emax : constant Name_Id := N + $; -- Ada 83
792 Name_Enabled : constant Name_Id := N + $; -- GNAT
793 Name_Enum_Rep : constant Name_Id := N + $; -- GNAT
794 Name_Enum_Val : constant Name_Id := N + $; -- GNAT
795 Name_Epsilon : constant Name_Id := N + $; -- Ada 83
796 Name_Exponent : constant Name_Id := N + $;
797 Name_External_Tag : constant Name_Id := N + $;
798 Name_Fast_Math : constant Name_Id := N + $; -- GNAT
799 Name_First : constant Name_Id := N + $;
800 Name_First_Bit : constant Name_Id := N + $;
801 Name_First_Valid : constant Name_Id := N + $; -- Ada 12
802 Name_Fixed_Value : constant Name_Id := N + $; -- GNAT
803 Name_Fore : constant Name_Id := N + $;
804 Name_Has_Access_Values : constant Name_Id := N + $; -- GNAT
805 Name_Has_Discriminants : constant Name_Id := N + $; -- GNAT
806 Name_Has_Tagged_Values : constant Name_Id := N + $; -- GNAT
807 Name_Identity : constant Name_Id := N + $;
808 Name_Img : constant Name_Id := N + $; -- GNAT
809 Name_Implicit_Dereference : constant Name_Id := N + $; -- GNAT
810 Name_Integer_Value : constant Name_Id := N + $; -- GNAT
811 Name_Invalid_Value : constant Name_Id := N + $; -- GNAT
812 Name_Iterator_Element : constant Name_Id := N + $; -- GNAT
813 Name_Large : constant Name_Id := N + $; -- Ada 83
814 Name_Last : constant Name_Id := N + $;
815 Name_Last_Bit : constant Name_Id := N + $;
816 Name_Last_Valid : constant Name_Id := N + $; -- Ada 12
817 Name_Leading_Part : constant Name_Id := N + $;
818 Name_Length : constant Name_Id := N + $;
819 Name_Lock_Free : constant Name_Id := N + $; -- GNAT
820 Name_Machine_Emax : constant Name_Id := N + $;
821 Name_Machine_Emin : constant Name_Id := N + $;
822 Name_Machine_Mantissa : constant Name_Id := N + $;
823 Name_Machine_Overflows : constant Name_Id := N + $;
824 Name_Machine_Radix : constant Name_Id := N + $;
825 Name_Machine_Rounding : constant Name_Id := N + $; -- Ada 05
826 Name_Machine_Rounds : constant Name_Id := N + $;
827 Name_Machine_Size : constant Name_Id := N + $; -- GNAT
828 Name_Mantissa : constant Name_Id := N + $; -- Ada 83
829 Name_Max_Alignment_For_Allocation : constant Name_Id := N + $; -- Ada 12
830 Name_Max_Size_In_Storage_Elements : constant Name_Id := N + $;
831 Name_Maximum_Alignment : constant Name_Id := N + $; -- GNAT
832 Name_Mechanism_Code : constant Name_Id := N + $; -- GNAT
833 Name_Mod : constant Name_Id := N + $; -- Ada 05
834 Name_Model_Emin : constant Name_Id := N + $;
835 Name_Model_Epsilon : constant Name_Id := N + $;
836 Name_Model_Mantissa : constant Name_Id := N + $;
837 Name_Model_Small : constant Name_Id := N + $;
838 Name_Modulus : constant Name_Id := N + $;
839 Name_Null_Parameter : constant Name_Id := N + $; -- GNAT
840 Name_Object_Size : constant Name_Id := N + $; -- GNAT
841 Name_Old : constant Name_Id := N + $; -- GNAT
842 Name_Overlaps_Storage : constant Name_Id := N + $; -- GNAT
843 Name_Partition_ID : constant Name_Id := N + $;
844 Name_Passed_By_Reference : constant Name_Id := N + $; -- GNAT
845 Name_Pool_Address : constant Name_Id := N + $;
846 Name_Pos : constant Name_Id := N + $;
847 Name_Position : constant Name_Id := N + $;
848 Name_Priority : constant Name_Id := N + $; -- Ada 05
849 Name_Range : constant Name_Id := N + $;
850 Name_Range_Length : constant Name_Id := N + $; -- GNAT
851 Name_Ref : constant Name_Id := N + $; -- GNAT
852 Name_Result : constant Name_Id := N + $; -- GNAT
853 Name_Round : constant Name_Id := N + $;
854 Name_Safe_Emax : constant Name_Id := N + $; -- Ada 83
855 Name_Safe_First : constant Name_Id := N + $;
856 Name_Safe_Large : constant Name_Id := N + $; -- Ada 83
857 Name_Safe_Last : constant Name_Id := N + $;
858 Name_Safe_Small : constant Name_Id := N + $; -- Ada 83
859 Name_Same_Storage : constant Name_Id := N + $; -- Ada 12
860 Name_Scalar_Storage_Order : constant Name_Id := N + $; -- GNAT
861 Name_Scale : constant Name_Id := N + $;
862 Name_Scaling : constant Name_Id := N + $;
863 Name_Signed_Zeros : constant Name_Id := N + $;
864 Name_Size : constant Name_Id := N + $;
865 Name_Small : constant Name_Id := N + $;
866 Name_Storage_Size : constant Name_Id := N + $;
867 Name_Storage_Unit : constant Name_Id := N + $; -- GNAT
868 Name_Stream_Size : constant Name_Id := N + $; -- Ada 05
869 Name_System_Allocator_Alignment : constant Name_Id := N + $; -- GNAT
870 Name_Tag : constant Name_Id := N + $;
871 Name_Target_Name : constant Name_Id := N + $; -- GNAT
872 Name_Terminated : constant Name_Id := N + $;
873 Name_To_Address : constant Name_Id := N + $; -- GNAT
874 Name_Type_Class : constant Name_Id := N + $; -- GNAT
875 Name_Type_Key : constant Name_Id := N + $; -- GNAT
876 Name_UET_Address : constant Name_Id := N + $; -- GNAT
877 Name_Unbiased_Rounding : constant Name_Id := N + $;
878 Name_Unchecked_Access : constant Name_Id := N + $;
879 Name_Unconstrained_Array : constant Name_Id := N + $;
880 Name_Universal_Literal_String : constant Name_Id := N + $; -- GNAT
881 Name_Unrestricted_Access : constant Name_Id := N + $; -- GNAT
882 Name_VADS_Size : constant Name_Id := N + $; -- GNAT
883 Name_Val : constant Name_Id := N + $;
884 Name_Valid : constant Name_Id := N + $;
885 Name_Valid_Scalars : constant Name_Id := N + $; -- GNAT
886 Name_Value_Size : constant Name_Id := N + $; -- GNAT
887 Name_Variable_Indexing : constant Name_Id := N + $; -- GNAT
888 Name_Version : constant Name_Id := N + $;
889 Name_Wchar_T_Size : constant Name_Id := N + $; -- GNAT
890 Name_Wide_Wide_Width : constant Name_Id := N + $; -- Ada 05
891 Name_Wide_Width : constant Name_Id := N + $;
892 Name_Width : constant Name_Id := N + $;
893 Name_Word_Size : constant Name_Id := N + $; -- GNAT
895 -- Attributes that designate attributes returning renamable functions,
896 -- i.e. functions that return other than a universal value and that
897 -- have non-universal arguments.
899 First_Renamable_Function_Attribute : constant Name_Id := N + $;
900 Name_Adjacent : constant Name_Id := N + $;
901 Name_Ceiling : constant Name_Id := N + $;
902 Name_Copy_Sign : constant Name_Id := N + $;
903 Name_Floor : constant Name_Id := N + $;
904 Name_Fraction : constant Name_Id := N + $;
905 Name_From_Any : constant Name_Id := N + $; -- GNAT
906 Name_Image : constant Name_Id := N + $;
907 Name_Input : constant Name_Id := N + $;
908 Name_Machine : constant Name_Id := N + $;
909 Name_Max : constant Name_Id := N + $;
910 Name_Min : constant Name_Id := N + $;
911 Name_Model : constant Name_Id := N + $;
912 Name_Pred : constant Name_Id := N + $;
913 Name_Remainder : constant Name_Id := N + $;
914 Name_Rounding : constant Name_Id := N + $;
915 Name_Succ : constant Name_Id := N + $;
916 Name_To_Any : constant Name_Id := N + $; -- GNAT
917 Name_Truncation : constant Name_Id := N + $;
918 Name_TypeCode : constant Name_Id := N + $; -- GNAT
919 Name_Value : constant Name_Id := N + $;
920 Name_Wide_Image : constant Name_Id := N + $;
921 Name_Wide_Wide_Image : constant Name_Id := N + $;
922 Name_Wide_Value : constant Name_Id := N + $;
923 Name_Wide_Wide_Value : constant Name_Id := N + $;
924 Last_Renamable_Function_Attribute : constant Name_Id := N + $;
926 -- Attributes that designate procedures
928 First_Procedure_Attribute : constant Name_Id := N + $;
929 Name_Output : constant Name_Id := N + $;
930 Name_Read : constant Name_Id := N + $;
931 Name_Write : constant Name_Id := N + $;
932 Last_Procedure_Attribute : constant Name_Id := N + $;
934 -- Remaining attributes are ones that return entities
936 -- Note that Elab_Subp_Body is not considered to be a valid attribute name
937 -- unless we are operating in CodePeer mode.
939 First_Entity_Attribute_Name : constant Name_Id := N + $;
940 Name_Elab_Body : constant Name_Id := N + $; -- GNAT
941 Name_Elab_Spec : constant Name_Id := N + $; -- GNAT
942 Name_Elab_Subp_Body : constant Name_Id := N + $; -- GNAT
943 Name_Simple_Storage_Pool : constant Name_Id := N + $; -- GNAT
944 Name_Storage_Pool : constant Name_Id := N + $;
946 -- These attributes are the ones that return types
948 First_Type_Attribute_Name : constant Name_Id := N + $;
949 Name_Base : constant Name_Id := N + $;
950 Name_Class : constant Name_Id := N + $;
951 Name_Stub_Type : constant Name_Id := N + $;
952 Last_Type_Attribute_Name : constant Name_Id := N + $;
953 Last_Entity_Attribute_Name : constant Name_Id := N + $;
954 Last_Attribute_Name : constant Name_Id := N + $;
956 -- Names of internal attributes. They are not real attributes but special
957 -- names used internally by GNAT in order to deal with delayed aspects
958 -- (Aspect_CPU, Aspect_Dispatching_Domain, Aspect_Interrupt_Priority) that
959 -- don't have corresponding pragmas or user-referencable attributes.
961 -- It is convenient to have these internal attributes available for
962 -- processing the aspects, since the normal approach is to convert an
963 -- aspect into its corresponding pragma or attribute specification.
965 -- These attributes do have Attribute_Id values so that case statements
966 -- on Attribute_Id include these cases, but they are NOT included in the
967 -- Attribute_Name subtype defined above, which is typically used in the
968 -- front end for checking syntax of submitted programs (where the use of
969 -- internal attributes is not permitted).
971 First_Internal_Attribute_Name : constant Name_Id := N + $;
972 Name_CPU : constant Name_Id := N + $;
973 Name_Dispatching_Domain : constant Name_Id := N + $;
974 Name_Interrupt_Priority : constant Name_Id := N + $;
975 Last_Internal_Attribute_Name : constant Name_Id := N + $;
977 -- Names of recognized locking policy identifiers
979 First_Locking_Policy_Name : constant Name_Id := N + $;
980 Name_Ceiling_Locking : constant Name_Id := N + $;
981 Name_Inheritance_Locking : constant Name_Id := N + $;
982 Name_Concurrent_Readers_Locking : constant Name_Id := N + $; -- GNAT
983 Last_Locking_Policy_Name : constant Name_Id := N + $;
985 -- Names of recognized queuing policy identifiers
987 -- Note: policies are identified by the first character of the name (e.g. F
988 -- for FIFO_Queuing). If new policy names are added, the first character
991 First_Queuing_Policy_Name : constant Name_Id := N + $;
992 Name_FIFO_Queuing : constant Name_Id := N + $;
993 Name_Priority_Queuing : constant Name_Id := N + $;
994 Last_Queuing_Policy_Name : constant Name_Id := N + $;
996 -- Names of recognized task dispatching policy identifiers
998 -- Note: policies are identified by the first character of the name (e.g. F
999 -- for FIFO_Within_Priorities). If new policy names are added, the first
1000 -- character must be distinct.
1002 First_Task_Dispatching_Policy_Name : constant Name_Id := N + $;
1003 Name_EDF_Across_Priorities : constant Name_Id := N + $;
1004 Name_FIFO_Within_Priorities : constant Name_Id := N + $;
1005 Name_Non_Preemptive_Within_Priorities : constant Name_Id := N + $;
1006 Name_Round_Robin_Within_Priorities : constant Name_Id := N + $;
1007 Last_Task_Dispatching_Policy_Name : constant Name_Id := N + $;
1009 -- Names of recognized checks for pragma Suppress
1011 -- Note: the name Atomic_Synchronization can only be specified internally
1012 -- as a result of using pragma Enable/Disable_Atomic_Synchronization.
1014 First_Check_Name : constant Name_Id := N + $;
1015 Name_Access_Check : constant Name_Id := N + $;
1016 Name_Accessibility_Check : constant Name_Id := N + $;
1017 Name_Alignment_Check : constant Name_Id := N + $; -- GNAT
1018 Name_Atomic_Synchronization : constant Name_Id := N + $; -- GNAT
1019 Name_Discriminant_Check : constant Name_Id := N + $;
1020 Name_Division_Check : constant Name_Id := N + $;
1021 Name_Elaboration_Check : constant Name_Id := N + $;
1022 Name_Index_Check : constant Name_Id := N + $;
1023 Name_Length_Check : constant Name_Id := N + $;
1024 Name_Overflow_Check : constant Name_Id := N + $;
1025 Name_Range_Check : constant Name_Id := N + $;
1026 Name_Storage_Check : constant Name_Id := N + $;
1027 Name_Tag_Check : constant Name_Id := N + $;
1028 Name_Validity_Check : constant Name_Id := N + $; -- GNAT
1029 Name_All_Checks : constant Name_Id := N + $;
1030 Last_Check_Name : constant Name_Id := N + $;
1032 -- Ada 83 reserved words, excluding those already declared in the attribute
1033 -- list (Access, Delta, Digits, Mod, Range).
1035 Name_Abort : constant Name_Id := N + $;
1036 Name_Abs : constant Name_Id := N + $;
1037 Name_Accept : constant Name_Id := N + $;
1038 Name_And : constant Name_Id := N + $;
1039 Name_All : constant Name_Id := N + $;
1040 Name_Array : constant Name_Id := N + $;
1041 Name_At : constant Name_Id := N + $;
1042 Name_Begin : constant Name_Id := N + $;
1043 Name_Body : constant Name_Id := N + $;
1044 Name_Case : constant Name_Id := N + $;
1045 Name_Constant : constant Name_Id := N + $;
1046 Name_Declare : constant Name_Id := N + $;
1047 Name_Delay : constant Name_Id := N + $;
1048 Name_Do : constant Name_Id := N + $;
1049 Name_Else : constant Name_Id := N + $;
1050 Name_Elsif : constant Name_Id := N + $;
1051 Name_End : constant Name_Id := N + $;
1052 Name_Entry : constant Name_Id := N + $;
1053 Name_Exception : constant Name_Id := N + $;
1054 Name_Exit : constant Name_Id := N + $;
1055 Name_For : constant Name_Id := N + $;
1056 Name_Function : constant Name_Id := N + $;
1057 Name_Generic : constant Name_Id := N + $;
1058 Name_Goto : constant Name_Id := N + $;
1059 Name_If : constant Name_Id := N + $;
1060 Name_In : constant Name_Id := N + $;
1061 Name_Is : constant Name_Id := N + $;
1062 Name_Limited : constant Name_Id := N + $;
1063 Name_Loop : constant Name_Id := N + $;
1064 Name_New : constant Name_Id := N + $;
1065 Name_Not : constant Name_Id := N + $;
1066 Name_Null : constant Name_Id := N + $;
1067 Name_Of : constant Name_Id := N + $;
1068 Name_Or : constant Name_Id := N + $;
1069 Name_Others : constant Name_Id := N + $;
1070 Name_Out : constant Name_Id := N + $;
1071 Name_Package : constant Name_Id := N + $;
1072 Name_Pragma : constant Name_Id := N + $;
1073 Name_Private : constant Name_Id := N + $;
1074 Name_Procedure : constant Name_Id := N + $;
1075 Name_Raise : constant Name_Id := N + $;
1076 Name_Record : constant Name_Id := N + $;
1077 Name_Rem : constant Name_Id := N + $;
1078 Name_Renames : constant Name_Id := N + $;
1079 Name_Return : constant Name_Id := N + $;
1080 Name_Reverse : constant Name_Id := N + $;
1081 Name_Select : constant Name_Id := N + $;
1082 Name_Separate : constant Name_Id := N + $;
1083 Name_Subtype : constant Name_Id := N + $;
1084 Name_Task : constant Name_Id := N + $;
1085 Name_Terminate : constant Name_Id := N + $;
1086 Name_Then : constant Name_Id := N + $;
1087 Name_Type : constant Name_Id := N + $;
1088 Name_Use : constant Name_Id := N + $;
1089 Name_When : constant Name_Id := N + $;
1090 Name_While : constant Name_Id := N + $;
1091 Name_With : constant Name_Id := N + $;
1092 Name_Xor : constant Name_Id := N + $;
1094 -- Names of intrinsic subprograms
1096 -- Note: Asm is missing from this list, since Asm is a legitimate
1097 -- convention name. So is To_Address, which is a GNAT attribute.
1099 First_Intrinsic_Name : constant Name_Id := N + $;
1100 Name_Divide : constant Name_Id := N + $;
1101 Name_Enclosing_Entity : constant Name_Id := N + $;
1102 Name_Exception_Information : constant Name_Id := N + $;
1103 Name_Exception_Message : constant Name_Id := N + $;
1104 Name_Exception_Name : constant Name_Id := N + $;
1105 Name_File : constant Name_Id := N + $;
1106 Name_Generic_Dispatching_Constructor : constant Name_Id := N + $;
1107 Name_Import_Address : constant Name_Id := N + $;
1108 Name_Import_Largest_Value : constant Name_Id := N + $;
1109 Name_Import_Value : constant Name_Id := N + $;
1110 Name_Is_Negative : constant Name_Id := N + $;
1111 Name_Line : constant Name_Id := N + $;
1112 Name_Rotate_Left : constant Name_Id := N + $;
1113 Name_Rotate_Right : constant Name_Id := N + $;
1114 Name_Shift_Left : constant Name_Id := N + $;
1115 Name_Shift_Right : constant Name_Id := N + $;
1116 Name_Shift_Right_Arithmetic : constant Name_Id := N + $;
1117 Name_Source_Location : constant Name_Id := N + $;
1118 Name_Unchecked_Conversion : constant Name_Id := N + $;
1119 Name_Unchecked_Deallocation : constant Name_Id := N + $;
1120 Name_To_Pointer : constant Name_Id := N + $;
1121 Last_Intrinsic_Name : constant Name_Id := N + $;
1123 -- Names used in processing intrinsic calls
1125 Name_Free : constant Name_Id := N + $;
1127 -- Ada 95 reserved words
1129 First_95_Reserved_Word : constant Name_Id := N + $;
1130 Name_Abstract : constant Name_Id := N + $;
1131 Name_Aliased : constant Name_Id := N + $;
1132 Name_Protected : constant Name_Id := N + $;
1133 Name_Until : constant Name_Id := N + $;
1134 Name_Requeue : constant Name_Id := N + $;
1135 Name_Tagged : constant Name_Id := N + $;
1136 Last_95_Reserved_Word : constant Name_Id := N + $;
1138 subtype Ada_95_Reserved_Words is
1139 Name_Id range First_95_Reserved_Word .. Last_95_Reserved_Word;
1141 -- Miscellaneous names used in semantic checking
1143 Name_Raise_Exception : constant Name_Id := N + $;
1145 -- Additional reserved words and identifiers used in GNAT Project Files
1146 -- Note that Name_External is already previously declared.
1148 -- The names with the -- GB annotation are only used in gprbuild.
1150 Name_Active : constant Name_Id := N + $;
1151 Name_Aggregate : constant Name_Id := N + $;
1152 Name_Archive_Builder : constant Name_Id := N + $;
1153 Name_Archive_Builder_Append_Option : constant Name_Id := N + $;
1154 Name_Archive_Indexer : constant Name_Id := N + $;
1155 Name_Archive_Suffix : constant Name_Id := N + $;
1156 Name_Binder : constant Name_Id := N + $;
1157 Name_Body_Suffix : constant Name_Id := N + $;
1158 Name_Builder : constant Name_Id := N + $;
1159 Name_Clean : constant Name_Id := N + $;
1160 Name_Compiler : constant Name_Id := N + $;
1161 Name_Compiler_Command : constant Name_Id := N + $; -- GB
1162 Name_Config_Body_File_Name : constant Name_Id := N + $;
1163 Name_Config_Body_File_Name_Index : constant Name_Id := N + $;
1164 Name_Config_Body_File_Name_Pattern : constant Name_Id := N + $;
1165 Name_Config_File_Switches : constant Name_Id := N + $;
1166 Name_Config_File_Unique : constant Name_Id := N + $;
1167 Name_Config_Spec_File_Name : constant Name_Id := N + $;
1168 Name_Config_Spec_File_Name_Index : constant Name_Id := N + $;
1169 Name_Config_Spec_File_Name_Pattern : constant Name_Id := N + $;
1170 Name_Configuration : constant Name_Id := N + $;
1171 Name_Cross_Reference : constant Name_Id := N + $;
1172 Name_Default_Language : constant Name_Id := N + $;
1173 Name_Default_Switches : constant Name_Id := N + $;
1174 Name_Dependency_Driver : constant Name_Id := N + $;
1175 Name_Dependency_Kind : constant Name_Id := N + $;
1176 Name_Dependency_Switches : constant Name_Id := N + $;
1177 Name_Driver : constant Name_Id := N + $;
1178 Name_Excluded_Source_Dirs : constant Name_Id := N + $;
1179 Name_Excluded_Source_Files : constant Name_Id := N + $;
1180 Name_Excluded_Source_List_File : constant Name_Id := N + $;
1181 Name_Exec_Dir : constant Name_Id := N + $;
1182 Name_Exec_Subdir : constant Name_Id := N + $;
1183 Name_Executable : constant Name_Id := N + $;
1184 Name_Executable_Suffix : constant Name_Id := N + $;
1185 Name_Extends : constant Name_Id := N + $;
1186 Name_External_As_List : constant Name_Id := N + $;
1187 Name_Externally_Built : constant Name_Id := N + $;
1188 Name_Finder : constant Name_Id := N + $;
1189 Name_Global_Compilation_Switches : constant Name_Id := N + $;
1190 Name_Global_Configuration_Pragmas : constant Name_Id := N + $;
1191 Name_Global_Config_File : constant Name_Id := N + $; -- GB
1192 Name_Gnatls : constant Name_Id := N + $;
1193 Name_Gnatstub : constant Name_Id := N + $;
1194 Name_Gnu : constant Name_Id := N + $;
1195 Name_Ide : constant Name_Id := N + $;
1196 Name_Ignore_Source_Sub_Dirs : constant Name_Id := N + $;
1197 Name_Implementation : constant Name_Id := N + $;
1198 Name_Implementation_Exceptions : constant Name_Id := N + $;
1199 Name_Implementation_Suffix : constant Name_Id := N + $;
1200 Name_Include_Switches : constant Name_Id := N + $;
1201 Name_Include_Path : constant Name_Id := N + $;
1202 Name_Include_Path_File : constant Name_Id := N + $;
1203 Name_Inherit_Source_Path : constant Name_Id := N + $;
1204 Name_Install : constant Name_Id := N + $;
1205 Name_Languages : constant Name_Id := N + $;
1206 Name_Language_Kind : constant Name_Id := N + $;
1207 Name_Leading_Library_Options : constant Name_Id := N + $;
1208 Name_Leading_Required_Switches : constant Name_Id := N + $;
1209 Name_Leading_Switches : constant Name_Id := N + $;
1210 Name_Lib_Subdir : constant Name_Id := N + $;
1211 Name_Library : constant Name_Id := N + $;
1212 Name_Library_Ali_Dir : constant Name_Id := N + $;
1213 Name_Library_Auto_Init : constant Name_Id := N + $;
1214 Name_Library_Auto_Init_Supported : constant Name_Id := N + $;
1215 Name_Library_Builder : constant Name_Id := N + $;
1216 Name_Library_Dir : constant Name_Id := N + $;
1217 Name_Library_GCC : constant Name_Id := N + $;
1218 Name_Library_Install_Name_Option : constant Name_Id := N + $;
1219 Name_Library_Interface : constant Name_Id := N + $;
1220 Name_Library_Kind : constant Name_Id := N + $;
1221 Name_Library_Name : constant Name_Id := N + $;
1222 Name_Library_Major_Minor_Id_Supported : constant Name_Id := N + $;
1223 Name_Library_Options : constant Name_Id := N + $;
1224 Name_Library_Partial_Linker : constant Name_Id := N + $;
1225 Name_Library_Reference_Symbol_File : constant Name_Id := N + $;
1226 Name_Library_Standalone : constant Name_Id := N + $;
1227 Name_Library_Encapsulated_Options : constant Name_Id := N + $; -- GB
1228 Name_Library_Encapsulated_Supported : constant Name_Id := N + $; -- GB
1229 Name_Library_Src_Dir : constant Name_Id := N + $;
1230 Name_Library_Support : constant Name_Id := N + $;
1231 Name_Library_Symbol_File : constant Name_Id := N + $;
1232 Name_Library_Symbol_Policy : constant Name_Id := N + $;
1233 Name_Library_Version : constant Name_Id := N + $;
1234 Name_Library_Version_Switches : constant Name_Id := N + $;
1235 Name_Linker : constant Name_Id := N + $;
1236 Name_Linker_Executable_Option : constant Name_Id := N + $;
1237 Name_Linker_Lib_Dir_Option : constant Name_Id := N + $;
1238 Name_Linker_Lib_Name_Option : constant Name_Id := N + $;
1239 Name_Local_Config_File : constant Name_Id := N + $; -- GB
1240 Name_Local_Configuration_Pragmas : constant Name_Id := N + $;
1241 Name_Locally_Removed_Files : constant Name_Id := N + $;
1242 Name_Map_File_Option : constant Name_Id := N + $;
1243 Name_Mapping_File_Switches : constant Name_Id := N + $;
1244 Name_Mapping_Spec_Suffix : constant Name_Id := N + $;
1245 Name_Mapping_Body_Suffix : constant Name_Id := N + $;
1246 Name_Max_Command_Line_Length : constant Name_Id := N + $;
1247 Name_Metrics : constant Name_Id := N + $;
1248 Name_Multi_Unit_Object_Separator : constant Name_Id := N + $;
1249 Name_Multi_Unit_Switches : constant Name_Id := N + $;
1250 Name_Naming : constant Name_Id := N + $;
1251 Name_None : constant Name_Id := N + $;
1252 Name_Object_Artifact_Extensions : constant Name_Id := N + $;
1253 Name_Object_File_Suffix : constant Name_Id := N + $;
1254 Name_Object_File_Switches : constant Name_Id := N + $;
1255 Name_Object_Generated : constant Name_Id := N + $;
1256 Name_Object_List : constant Name_Id := N + $;
1257 Name_Object_Path_Switches : constant Name_Id := N + $;
1258 Name_Objects_Linked : constant Name_Id := N + $;
1259 Name_Objects_Path : constant Name_Id := N + $;
1260 Name_Objects_Path_File : constant Name_Id := N + $;
1261 Name_Object_Dir : constant Name_Id := N + $;
1262 Name_Option_List : constant Name_Id := N + $;
1263 Name_Path_Syntax : constant Name_Id := N + $;
1264 Name_Pic_Option : constant Name_Id := N + $;
1265 Name_Pretty_Printer : constant Name_Id := N + $;
1266 Name_Prefix : constant Name_Id := N + $;
1267 Name_Project : constant Name_Id := N + $;
1268 Name_Project_Dir : constant Name_Id := N + $;
1269 Name_Project_Files : constant Name_Id := N + $;
1270 Name_Project_Path : constant Name_Id := N + $;
1271 Name_Project_Subdir : constant Name_Id := N + $;
1272 Name_Response_File_Format : constant Name_Id := N + $;
1273 Name_Response_File_Switches : constant Name_Id := N + $;
1274 Name_Roots : constant Name_Id := N + $; -- GB
1275 Name_Required_Switches : constant Name_Id := N + $;
1276 Name_Run_Path_Option : constant Name_Id := N + $;
1277 Name_Run_Path_Origin : constant Name_Id := N + $;
1278 Name_Separate_Run_Path_Options : constant Name_Id := N + $;
1279 Name_Shared_Library_Minimum_Switches : constant Name_Id := N + $;
1280 Name_Shared_Library_Prefix : constant Name_Id := N + $;
1281 Name_Shared_Library_Suffix : constant Name_Id := N + $;
1282 Name_Separate_Suffix : constant Name_Id := N + $;
1283 Name_Source_Artifact_Extensions : constant Name_Id := N + $;
1284 Name_Source_Dirs : constant Name_Id := N + $;
1285 Name_Source_File_Switches : constant Name_Id := N + $;
1286 Name_Source_Files : constant Name_Id := N + $;
1287 Name_Source_List_File : constant Name_Id := N + $;
1288 Name_Sources_Subdir : constant Name_Id := N + $;
1289 Name_Spec : constant Name_Id := N + $;
1290 Name_Spec_Suffix : constant Name_Id := N + $;
1291 Name_Specification : constant Name_Id := N + $;
1292 Name_Specification_Exceptions : constant Name_Id := N + $;
1293 Name_Specification_Suffix : constant Name_Id := N + $;
1294 Name_Stack : constant Name_Id := N + $;
1295 Name_Switches : constant Name_Id := N + $;
1296 Name_Symbolic_Link_Supported : constant Name_Id := N + $;
1297 Name_Synchronize : constant Name_Id := N + $;
1298 Name_Toolchain_Description : constant Name_Id := N + $;
1299 Name_Toolchain_Version : constant Name_Id := N + $;
1300 Name_Trailing_Required_Switches : constant Name_Id := N + $;
1301 Name_Runtime_Library_Dir : constant Name_Id := N + $;
1302 Name_Runtime_Source_Dir : constant Name_Id := N + $;
1304 -- Other miscellaneous names used in front end
1306 Name_Unaligned_Valid : constant Name_Id := N + $;
1308 -- Names used to implement iterators over predefined containers
1310 Name_Cursor : constant Name_Id := N + $;
1311 Name_Element : constant Name_Id := N + $;
1312 Name_Element_Type : constant Name_Id := N + $;
1313 Name_Has_Element : constant Name_Id := N + $;
1314 Name_No_Element : constant Name_Id := N + $;
1315 Name_Forward_Iterator : constant Name_Id := N + $;
1316 Name_Reversible_Iterator : constant Name_Id := N + $;
1317 Name_Previous : constant Name_Id := N + $;
1319 -- Ada 2005 reserved words
1321 First_2005_Reserved_Word : constant Name_Id := N + $;
1322 Name_Interface : constant Name_Id := N + $;
1323 Name_Overriding : constant Name_Id := N + $;
1324 Name_Synchronized : constant Name_Id := N + $;
1325 Last_2005_Reserved_Word : constant Name_Id := N + $;
1327 subtype Ada_2005_Reserved_Words is
1328 Name_Id range First_2005_Reserved_Word .. Last_2005_Reserved_Word;
1330 -- Ada 2012 reserved words
1332 First_2012_Reserved_Word : constant Name_Id := N + $;
1333 Name_Some : constant Name_Id := N + $;
1334 Last_2012_Reserved_Word : constant Name_Id := N + $;
1336 subtype Ada_2012_Reserved_Words is
1337 Name_Id range First_2012_Reserved_Word .. Last_2012_Reserved_Word;
1339 -- Mark last defined name for consistency check in Snames body
1341 Last_Predefined_Name : constant Name_Id := N + $;
1343 ---------------------------------------
1344 -- Subtypes Defining Name Categories --
1345 ---------------------------------------
1347 subtype Any_Operator_Name is Name_Id range
1348 First_Operator_Name .. Last_Operator_Name;
1350 subtype Configuration_Pragma_Names is Name_Id range
1351 First_Pragma_Name .. Last_Configuration_Pragma_Name;
1353 ------------------------------
1354 -- Attribute ID Definitions --
1355 ------------------------------
1357 type Attribute_Id is (
1358 Attribute_Abort_Signal,
1361 Attribute_Address_Size,
1363 Attribute_Alignment,
1364 Attribute_Asm_Input,
1365 Attribute_Asm_Output,
1366 Attribute_AST_Entry,
1367 Attribute_Atomic_Always_Lock_Free,
1369 Attribute_Bit_Order,
1370 Attribute_Bit_Position,
1371 Attribute_Body_Version,
1374 Attribute_Code_Address,
1375 Attribute_Compiler_Version,
1376 Attribute_Component_Size,
1378 Attribute_Constant_Indexing,
1379 Attribute_Constrained,
1381 Attribute_Default_Bit_Order,
1382 Attribute_Default_Iterator,
1386 Attribute_Descriptor_Size,
1388 Attribute_Elaborated,
1395 Attribute_External_Tag,
1396 Attribute_Fast_Math,
1398 Attribute_First_Bit,
1399 Attribute_First_Valid,
1400 Attribute_Fixed_Value,
1402 Attribute_Has_Access_Values,
1403 Attribute_Has_Discriminants,
1404 Attribute_Has_Tagged_Values,
1407 Attribute_Implicit_Dereference,
1408 Attribute_Integer_Value,
1409 Attribute_Invalid_Value,
1410 Attribute_Iterator_Element,
1414 Attribute_Last_Valid,
1415 Attribute_Leading_Part,
1417 Attribute_Lock_Free,
1418 Attribute_Machine_Emax,
1419 Attribute_Machine_Emin,
1420 Attribute_Machine_Mantissa,
1421 Attribute_Machine_Overflows,
1422 Attribute_Machine_Radix,
1423 Attribute_Machine_Rounding,
1424 Attribute_Machine_Rounds,
1425 Attribute_Machine_Size,
1427 Attribute_Max_Alignment_For_Allocation,
1428 Attribute_Max_Size_In_Storage_Elements,
1429 Attribute_Maximum_Alignment,
1430 Attribute_Mechanism_Code,
1432 Attribute_Model_Emin,
1433 Attribute_Model_Epsilon,
1434 Attribute_Model_Mantissa,
1435 Attribute_Model_Small,
1437 Attribute_Null_Parameter,
1438 Attribute_Object_Size,
1440 Attribute_Overlaps_Storage,
1441 Attribute_Partition_ID,
1442 Attribute_Passed_By_Reference,
1443 Attribute_Pool_Address,
1448 Attribute_Range_Length,
1452 Attribute_Safe_Emax,
1453 Attribute_Safe_First,
1454 Attribute_Safe_Large,
1455 Attribute_Safe_Last,
1456 Attribute_Safe_Small,
1457 Attribute_Same_Storage,
1458 Attribute_Scalar_Storage_Order,
1461 Attribute_Signed_Zeros,
1464 Attribute_Storage_Size,
1465 Attribute_Storage_Unit,
1466 Attribute_Stream_Size,
1467 Attribute_System_Allocator_Alignment,
1469 Attribute_Target_Name,
1470 Attribute_Terminated,
1471 Attribute_To_Address,
1472 Attribute_Type_Class,
1474 Attribute_UET_Address,
1475 Attribute_Unbiased_Rounding,
1476 Attribute_Unchecked_Access,
1477 Attribute_Unconstrained_Array,
1478 Attribute_Universal_Literal_String,
1479 Attribute_Unrestricted_Access,
1480 Attribute_VADS_Size,
1483 Attribute_Valid_Scalars,
1484 Attribute_Value_Size,
1485 Attribute_Variable_Indexing,
1487 Attribute_Wchar_T_Size,
1488 Attribute_Wide_Wide_Width,
1489 Attribute_Wide_Width,
1491 Attribute_Word_Size,
1493 -- Attributes designating renamable functions
1497 Attribute_Copy_Sign,
1508 Attribute_Remainder,
1512 Attribute_Truncation,
1515 Attribute_Wide_Image,
1516 Attribute_Wide_Wide_Image,
1517 Attribute_Wide_Value,
1518 Attribute_Wide_Wide_Value,
1520 -- Attributes designating procedures
1526 -- Entity attributes (includes type attributes)
1528 Attribute_Elab_Body,
1529 Attribute_Elab_Spec,
1530 Attribute_Elab_Subp_Body,
1531 Attribute_Simple_Storage_Pool,
1532 Attribute_Storage_Pool,
1538 Attribute_Stub_Type,
1540 -- The internal attributes are on their own, out of order, because of
1541 -- the special processing required to deal with the fact that their
1542 -- names are not attribute names.
1545 Attribute_Dispatching_Domain,
1546 Attribute_Interrupt_Priority);
1548 subtype Internal_Attribute_Id is Attribute_Id range
1549 Attribute_CPU .. Attribute_Interrupt_Priority;
1551 type Attribute_Class_Array is array (Attribute_Id) of Boolean;
1552 -- Type used to build attribute classification flag arrays
1554 ------------------------------------
1555 -- Convention Name ID Definitions --
1556 ------------------------------------
1558 type Convention_Id is (
1560 -- The native-to-Ada (non-foreign) conventions come first. These include
1561 -- the ones defined in the RM, plus Stubbed.
1564 Convention_Intrinsic,
1566 Convention_Protected,
1569 -- The following conventions are equivalent to Ada for all purposes
1570 -- except controlling the way parameters are passed.
1572 Convention_Ada_Pass_By_Copy,
1573 Convention_Ada_Pass_By_Reference,
1575 -- The remaining conventions are foreign language conventions
1577 Convention_Assembler, -- also Asm, Assembly
1578 Convention_C, -- also Default, External
1584 Convention_Stdcall); -- also DLL, Win32
1586 -- Note: Convention C_Pass_By_Copy is allowed only for record types
1587 -- (where it is treated like C except that the appropriate flag is set
1588 -- in the record type). Recognizing this convention is specially handled
1591 for Convention_Id'Size use 8;
1592 -- Plenty of space for expansion
1594 subtype Foreign_Convention is
1595 Convention_Id range Convention_Assembler .. Convention_Id'Last;
1597 -----------------------------------
1598 -- Locking Policy ID Definitions --
1599 -----------------------------------
1601 type Locking_Policy_Id is (
1602 Locking_Policy_Inheritance_Locking,
1603 Locking_Policy_Ceiling_Locking,
1604 Locking_Policy_Concurrent_Readers_Locking);
1606 ---------------------------
1607 -- Pragma ID Definitions --
1608 ---------------------------
1612 -- Configuration pragmas
1614 -- Note: This list is in the GNAT users guide, so be sure that if any
1615 -- additions or deletions are made to the following list, they are
1616 -- properly reflected in the users guide.
1625 Pragma_Assertion_Policy,
1626 Pragma_Assume_No_Invalid_Values,
1627 Pragma_C_Pass_By_Copy,
1629 Pragma_Check_Policy,
1630 Pragma_Compile_Time_Error,
1631 Pragma_Compile_Time_Warning,
1632 Pragma_Compiler_Unit,
1633 Pragma_Component_Alignment,
1634 Pragma_Convention_Identifier,
1635 Pragma_Debug_Policy,
1636 Pragma_Detect_Blocking,
1637 Pragma_Default_Storage_Pool,
1638 Pragma_Disable_Atomic_Synchronization,
1639 Pragma_Discard_Names,
1640 Pragma_Elaboration_Checks,
1642 Pragma_Enable_Atomic_Synchronization,
1643 Pragma_Extend_System,
1644 Pragma_Extensions_Allowed,
1645 Pragma_External_Name_Casing,
1646 Pragma_Favor_Top_Level,
1647 Pragma_Float_Representation,
1648 Pragma_Implicit_Packing,
1649 Pragma_Initialize_Scalars,
1650 Pragma_Interrupt_State,
1652 Pragma_Locking_Policy,
1655 Pragma_No_Strict_Aliasing,
1656 Pragma_Normalize_Scalars,
1657 Pragma_Optimize_Alignment,
1658 Pragma_Persistent_BSS,
1660 Pragma_Priority_Specific_Dispatching,
1662 Pragma_Profile_Warnings,
1663 Pragma_Propagate_Exceptions,
1664 Pragma_Queuing_Policy,
1666 Pragma_Restricted_Run_Time,
1667 Pragma_Restrictions,
1668 Pragma_Restriction_Warnings,
1670 Pragma_Short_Circuit_And_Or,
1671 Pragma_Short_Descriptors,
1672 Pragma_Source_File_Name,
1673 Pragma_Source_File_Name_Project,
1674 Pragma_Style_Checks,
1676 Pragma_Suppress_Exception_Locations,
1677 Pragma_Task_Dispatching_Policy,
1678 Pragma_Universal_Data,
1680 Pragma_Use_VADS_Size,
1681 Pragma_Validity_Checks,
1683 Pragma_Wide_Character_Encoding,
1685 -- Remaining (non-configuration) pragmas
1688 Pragma_All_Calls_Remote,
1690 Pragma_Asynchronous,
1692 Pragma_Atomic_Components,
1693 Pragma_Attach_Handler,
1695 Pragma_CIL_Constructor,
1697 Pragma_Common_Object,
1698 Pragma_Complete_Representation,
1699 Pragma_Complex_Representation,
1700 Pragma_Contract_Case,
1704 Pragma_CPP_Constructor,
1709 Pragma_Elaborate_All,
1710 Pragma_Elaborate_Body,
1712 Pragma_Export_Exception,
1713 Pragma_Export_Function,
1714 Pragma_Export_Object,
1715 Pragma_Export_Procedure,
1716 Pragma_Export_Value,
1717 Pragma_Export_Valued_Procedure,
1719 Pragma_Finalize_Storage_Only,
1721 Pragma_Implementation_Defined,
1724 Pragma_Import_Exception,
1725 Pragma_Import_Function,
1726 Pragma_Import_Object,
1727 Pragma_Import_Procedure,
1728 Pragma_Import_Valued_Procedure,
1730 Pragma_Independent_Components,
1732 Pragma_Inline_Always,
1733 Pragma_Inline_Generic,
1734 Pragma_Inspection_Point,
1735 Pragma_Interface_Name,
1736 Pragma_Interrupt_Handler,
1738 Pragma_Java_Constructor,
1739 Pragma_Java_Interface,
1742 Pragma_Linker_Alias,
1743 Pragma_Linker_Constructor,
1744 Pragma_Linker_Destructor,
1745 Pragma_Linker_Options,
1746 Pragma_Linker_Section,
1748 Pragma_Machine_Attribute,
1750 Pragma_Main_Storage,
1760 Pragma_Postcondition,
1761 Pragma_Precondition,
1763 Pragma_Preelaborable_Initialization,
1764 Pragma_Preelaborate,
1765 Pragma_Preelaborate_05,
1766 Pragma_Psect_Object,
1770 Pragma_Pure_Function,
1771 Pragma_Relative_Deadline,
1772 Pragma_Remote_Access_Type,
1773 Pragma_Remote_Call_Interface,
1774 Pragma_Remote_Types,
1775 Pragma_Share_Generic,
1777 Pragma_Shared_Passive,
1778 Pragma_Simple_Storage_Pool_Type,
1779 Pragma_Source_Reference,
1780 Pragma_Static_Elaboration_Desired,
1781 Pragma_Stream_Convert,
1783 Pragma_Suppress_All,
1784 Pragma_Suppress_Debug_Info,
1785 Pragma_Suppress_Initialization,
1790 Pragma_Task_Storage,
1791 Pragma_Thread_Local_Storage,
1794 Pragma_Unchecked_Union,
1795 Pragma_Unimplemented_Unit,
1796 Pragma_Universal_Aliasing,
1798 Pragma_Unreferenced,
1799 Pragma_Unreferenced_Objects,
1800 Pragma_Unreserve_All_Interrupts,
1802 Pragma_Volatile_Components,
1803 Pragma_Weak_External,
1805 -- The following pragmas are on their own, out of order, because of the
1806 -- special processing required to deal with the fact that their names
1807 -- match existing attribute names.
1811 Pragma_Dispatching_Domain,
1814 Pragma_Interrupt_Priority,
1817 Pragma_Storage_Size,
1818 Pragma_Storage_Unit,
1820 -- The value to represent an unknown or unrecognized pragma
1824 -----------------------------------
1825 -- Queuing Policy ID definitions --
1826 -----------------------------------
1828 type Queuing_Policy_Id is (
1829 Queuing_Policy_FIFO_Queuing,
1830 Queuing_Policy_Priority_Queuing);
1832 --------------------------------------------
1833 -- Task Dispatching Policy ID definitions --
1834 --------------------------------------------
1836 type Task_Dispatching_Policy_Id is (
1837 Task_Dispatching_FIFO_Within_Priorities);
1838 -- Id values used to identify task dispatching policies
1844 procedure Initialize;
1845 -- Called to initialize the preset names in the names table
1847 function Is_Attribute_Name (N : Name_Id) return Boolean;
1848 -- Test to see if the name N is the name of a recognized attribute. Note
1849 -- that Name_Elab_Subp_Body returns False if not operating in CodePeer
1850 -- mode. This is the mechanism for considering this pragma illegal in
1851 -- normal GNAT programs.
1853 function Is_Entity_Attribute_Name (N : Name_Id) return Boolean;
1854 -- Test to see if the name N is the name of a recognized entity attribute,
1855 -- i.e. an attribute reference that returns an entity.
1857 function Is_Internal_Attribute_Name (N : Name_Id) return Boolean;
1858 -- Test to see if the name N is the name of an INT attribute (Name_CPU,
1859 -- Name_Dispatching_Domain, Name_Interrupt_Priority).
1861 function Is_Procedure_Attribute_Name (N : Name_Id) return Boolean;
1862 -- Test to see if the name N is the name of a recognized attribute that
1863 -- designates a procedure (and can therefore appear as a statement).
1865 function Is_Function_Attribute_Name (N : Name_Id) return Boolean;
1866 -- Test to see if the name N is the name of a recognized attribute
1867 -- that designates a renameable function, and can therefore appear in
1868 -- a renaming statement. Note that not all attributes designating
1869 -- functions are renamable, in particular, those returning a universal
1870 -- value cannot be renamed.
1872 function Is_Type_Attribute_Name (N : Name_Id) return Boolean;
1873 -- Test to see if the name N is the name of a recognized type attribute,
1874 -- i.e. an attribute reference that returns a type
1876 function Is_Convention_Name (N : Name_Id) return Boolean;
1877 -- Test to see if the name N is the name of one of the recognized
1878 -- language conventions, as required by pragma Convention, Import,
1879 -- Export, Interface. Returns True if so. Also returns True for a
1880 -- name that has been specified by a Convention_Identifier pragma.
1881 -- If neither case holds, returns False.
1883 function Is_Keyword_Name (N : Name_Id) return Boolean;
1884 -- Test to see if the name N is one of the (reserved) keyword names. This
1885 -- includes all the keywords defined in the Ada standard (taking into
1886 -- effect the Ada version). It also includes additional keywords in
1887 -- contexts where additional keywords have been added. For example, in the
1888 -- context of parsing project files, keywords such as PROJECT are included.
1890 function Is_Locking_Policy_Name (N : Name_Id) return Boolean;
1891 -- Test to see if the name N is the name of a recognized locking policy
1893 function Is_Operator_Symbol_Name (N : Name_Id) return Boolean;
1894 -- Test to see if the name N is the name of an operator symbol
1896 function Is_Pragma_Name (N : Name_Id) return Boolean;
1897 -- Test to see if the name N is the name of a recognized pragma. Note that
1898 -- pragmas AST_Entry, CPU, Dispatching_Domain, Fast_Math,
1899 -- Interrupt_Priority, Lock_Free, Priority, Storage_Size, and Storage_Unit
1900 -- are recognized as pragmas by this function even though their names are
1901 -- separate from the other pragma names. For this reason, clients should
1902 -- always use this function, rather than do range tests on Name_Id values.
1904 function Is_Configuration_Pragma_Name (N : Name_Id) return Boolean;
1905 -- Test to see if the name N is the name of a recognized configuration
1906 -- pragma. Note that pragma Fast_Math is recognized as a configuration
1907 -- pragma by this function even though its name is separate from other
1908 -- configuration pragma names. For this reason, clients should always
1909 -- use this function, rather than do range tests on Name_Id values.
1911 function Is_Queuing_Policy_Name (N : Name_Id) return Boolean;
1912 -- Test to see if the name N is the name of a recognized queuing policy
1914 function Is_Task_Dispatching_Policy_Name (N : Name_Id) return Boolean;
1915 -- Test to see if the name N is the name of a recognized task
1916 -- dispatching policy.
1918 function Get_Attribute_Id (N : Name_Id) return Attribute_Id;
1919 -- Returns Id of attribute corresponding to given name. It is an error to
1920 -- call this function with a name that is not the name of a attribute. Note
1921 -- that the function also works correctly for internal attribute names even
1922 -- though there are not included in the main list of attribute Names.
1924 function Get_Convention_Id (N : Name_Id) return Convention_Id;
1925 -- Returns Id of language convention corresponding to given name. It is
1926 -- an error to call this function with a name that is not the name of a
1927 -- convention, or one that has been previously recorded using a call to
1928 -- Record_Convention_Identifier.
1930 function Get_Convention_Name (C : Convention_Id) return Name_Id;
1931 -- Returns the name of language convention corresponding to given
1934 function Get_Locking_Policy_Id (N : Name_Id) return Locking_Policy_Id;
1935 -- Returns Id of locking policy corresponding to given name. It is an error
1936 -- to call this function with a name that is not the name of a check.
1938 function Get_Pragma_Id (N : Name_Id) return Pragma_Id;
1939 -- Returns Id of pragma corresponding to given name. Returns Unknown_Pragma
1940 -- if N is not a name of a known (Ada defined or GNAT-specific) pragma.
1941 -- Note that the function also works correctly for names of pragmas that
1942 -- are not included in the main list of pragma Names (AST_Entry, CPU,
1943 -- Dispatching_Domain, Interrupt_Priority, Lock_Free, Priority,
1944 -- Storage_Size, and Storage_Unit (e.g. Name_Storage_Size returns
1945 -- Pragma_Storage_Size).
1947 function Get_Queuing_Policy_Id (N : Name_Id) return Queuing_Policy_Id;
1948 -- Returns Id of queuing policy corresponding to given name. It is an error
1949 -- to call this function with a name that is not the name of a check.
1951 function Get_Task_Dispatching_Policy_Id
1952 (N : Name_Id) return Task_Dispatching_Policy_Id;
1953 -- Returns Id of task dispatching policy corresponding to given name. It
1954 -- is an error to call this function with a name that is not the name of
1957 procedure Record_Convention_Identifier
1959 Convention : Convention_Id);
1960 -- A call to this procedure, resulting from an occurrence of a pragma
1961 -- Convention_Identifier, records that from now on an occurrence of Id
1962 -- will be recognized as a name for the specified convention.
1965 pragma Inline (Is_Attribute_Name);
1966 pragma Inline (Is_Entity_Attribute_Name);
1967 pragma Inline (Is_Type_Attribute_Name);
1968 pragma Inline (Is_Locking_Policy_Name);
1969 pragma Inline (Is_Operator_Symbol_Name);
1970 pragma Inline (Is_Queuing_Policy_Name);
1971 pragma Inline (Is_Pragma_Name);
1972 pragma Inline (Is_Task_Dispatching_Policy_Name);